Award Number

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

Federal procurement profile for award number 89233018CNR000004 under agency 8900, summarizing obligation and action history over the last 10 years.

This award record for PIID 89233018CNR000004 shows 13.40 billion in total obligated value across 136 actions in the last 10 years. The average action value is 98,544,478.09, indicating a large and active award history.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated is shown in readable form as 13.40 billion and in exact form as 13,402,049,020.88.

Agency ID
8900
PIID
89233018CNR000004
Type
Award
Total Obligated
13.40 billion
13,402,049,020.88
Actions
136
Average Action Value
98,544,478.09

Overview

This award page summarizes the obligation history tied to PIID 89233018CNR000004 for agency 8900. Over the last 10 years, the award records 13,402,049,020.88 in total obligated value across 136 actions, with an average action value of 98,544,478.09. The figures reflect an award with repeated modification or activity rather than a single one-time obligation.

How to use this page

Use this page to review the award's total obligated amount, action count, and average action value over the selected 10-year window. It is useful for identifying the scale and cadence of activity associated with this award and for comparing it with other award records by agency or 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 10 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 13,402,049,020.88 13.40 billion 136

Insight

Over the 10-year window, obligations for this award are fully concentrated within the Department of Energy, which accounts for $13.40 billion across 136 awards. This indicates a single-agency distribution with no evidence of cross-agency spread in the provided data. The volume of awards suggests sustained procurement activity under DOE, with value concentrated in this 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 10 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 13,402,049,020.88 13.40 billion 136

Insight

All reported obligations in the 10-year window are concentrated with a single vendor, FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2). The vendor accounts for $13.40 billion across 136 awards, indicating a highly concentrated award distribution rather than a diversified vendor base. This level of concentration suggests sustained reliance on one contractor for the activity captured under PIID 89233018CNR000004.

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 10 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) 13,402,049,020.88 13.40 billion 136

Insight

Across the 10-year window, obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $13.40 billion across 136 awards, indicating a high concentration of spending in a single R&D sector rather than a diversified NAICS distribution.

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 10 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 13,402,049,020.88 13.40 billion 136

Insight

Obligations for PIID 89233018CNR000004 are fully concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities. Over the 10-year window, this PSC accounts for $13.40 billion across 136 awards, indicating a highly concentrated spending profile rather than a diversified PSC distribution.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 2,189,363,837.07 2.19 billion 7
2019 448,507,071.44 448.51 million 15
2020 1,484,668,943.06 1.48 billion 22
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 are consistently high across the 10-year window, ranging from 448.51 million in 2019 to 2.22 billion in 2023. Award activity is broadly distributed over time, with annual award counts generally between 14 and 22, indicating recurring obligation rather than a single-year concentration. The series shows a notable dip in 2019 followed by sustained billion-dollar obligations from 2020 through 2025, with a peak in 2023 and a moderate decline in 2024 before rebounding in 2025.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.