Award Number

Award Number 8900 / 89233018CNR000004 Federal Contract Action Summary (Last 5 Years)

Federal award record for PIID 89233018CNR000004 under Agency ID 8900, showing obligations and action activity over the last 5 years.

This award page summarizes procurement activity tied to PIID 89233018CNR000004 for Agency ID 8900. Over the last 5 years, the award has 92 actions and total obligations of 9.28 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar values are based on the provided analysis window and may differ from single-action values because they aggregate multiple award actions.

Agency ID
8900
PIID
89233018CNR000004
Type
Award
Total Obligated
9.28 billion
9,279,509,169.31
Actions
92
Average Action Value
100,864,230.10

Overview

This award record covers PIID 89233018CNR000004 for Agency ID 8900. The last 5 years of activity show 92 award actions and total obligations of 9,279,509,169.31, with an average action value of 100,864,230.1.

How to use this page

Use this page to review the award's obligation total and action count within the selected 5-year window. It is useful for comparing award activity, checking scale, and tracing procurement trends tied to this PIID.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89233018CNR000004'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
8900 ENERGY, DEPARTMENT OF 9,279,509,169.31 9.28 billion 92

Insight

Over the past 5 years, obligations for this award are concentrated entirely within the Department of Energy, which accounts for $9.28 billion across 92 awards. This indicates a highly concentrated agency footprint rather than a broad distribution across multiple departments. The volume of awards, combined with the magnitude of obligations, suggests sustained procurement activity within a single agency relationship.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89233018CNR000004'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
FLUOR MARINE PROPULSION, LLC 81QQ2 9,279,509,169.31 9.28 billion 92

Insight

Obligations in this 5-year window are fully concentrated with FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2), which accounts for $9.28 billion across 92 awards. This indicates a highly concentrated award distribution for PIID 89233018CNR000004 within Agency 8900. The volume of awards alongside the total obligated amount suggests sustained funding activity rather than a one-time obligation.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89233018CNR000004'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 9,279,509,169.31 9.28 billion 92

Insight

Obligations for this award are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $9.28 billion obligated across 92 awards in the 5-year window. This indicates a highly focused procurement profile within a single technical services category. No other NAICS codes are represented in the provided rows, so no distribution across additional industries is evident here.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89233018CNR000004'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
M1HA OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES 9,279,509,169.31 9.28 billion 92

Insight

Over the 5-year window, award 89233018CNR000004 is entirely concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities. This PSC accounts for 92 actions and $9.28 billion in total obligated funding, indicating a highly concentrated award profile with no diversification across other PSCs in the provided data.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89233018CNR000004'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 1,928,412,739.51 1.93 billion 14
2022 1,643,521,621.51 1.64 billion 19
2023 2,221,685,241.56 2.22 billion 18
2024 1,556,193,753.04 1.56 billion 20
2025 1,929,695,813.69 1.93 billion 21

Insight

Obligations for PIID 89233018CNR000004 remain consistently high across the five-year window, ranging from $1.56 billion to $2.22 billion annually. The peak obligation occurred in 2023 at $2.22 billion, followed by a decline in 2024 and a partial rebound in 2025 to $1.93 billion. Award volume is also steady and slightly increasing, moving from 14 awards in 2021 to 21 awards in 2025, which suggests distributed activity rather than reliance on a single year or award event.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.