Award Number

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

Award number DEAC0207CH11359 for agency 8900 shows $4.51 billion in obligated value across 214 actions over the last 10 years.

This page summarizes federal procurement activity for award number DEAC0207CH11359 under agency ID 8900. The record reflects $4,505,489,777.06 in total obligated value across 214 actions during the last 10 years.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligated values are shown as provided for the last 10-year analysis window, with a readable total of $4.51 billion and an exact total of $4,505,489,777.06.

Agency ID
8900
PIID
DEAC0207CH11359
Type
Award
Total Obligated
4.51 billion
4,505,489,777.06
Actions
214
Average Action Value
21,053,690.55

Overview

Award number DEAC0207CH11359 is associated with agency ID 8900 and a 10-year obligated total of $4,505,489,777.06. The award has 214 recorded actions, with an average action value of $21,053,690.55. These figures provide a compact view of the award’s procurement volume and funding level over the analysis window.

How to use this page

Use this page to review the scale of obligation activity tied to award number DEAC0207CH11359. The combination of total obligated value, action count, and average action value can help users assess transaction density and funding concentration within the award record. This summary is limited to the inputs provided for the last 10 years.

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 = 'DEAC0207CH11359'
    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 4,505,489,777.06 4.51 billion 214

Insight

Over the 10-year window, obligations for PIID DEAC0207CH11359 are entirely concentrated within the Department of Energy. The single listed agency accounts for $4.51 billion across 214 awards, indicating a sustained and highly concentrated award pattern rather than a broad distribution across multiple agencies.

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 = 'DEAC0207CH11359'
        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
FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY 4GUN4 3,967,837,486.22 3.97 billion 192
FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY 537,652,290.84 537.65 million 22

Insight

Award obligations for this PIID are highly concentrated in FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY. Across the 10-year window, the vendor with CAGE 4GUN4 received 3.97 billion across 192 awards, while the same vendor name without a CAGE code accounts for an additional 537.65 million across 22 awards. This indicates that substantially all recorded obligations are concentrated with a single vendor identity, with only limited segmentation in the vendor identifiers.

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 = 'DEAC0207CH11359'
    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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 4,505,489,777.06 4.51 billion 214

Insight

Award activity under PIID DEAC0207CH11359 is fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 10-year window, this NAICS accounts for $4.51 billion across 214 awards, indicating a sustained and highly specialized procurement profile. No other NAICS codes are present in the provided rows, so the observed distribution is entirely singular rather than diversified.

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 = 'DEAC0207CH11359'
    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
M181 OPER OF GOVT R&D GOCO FACILITIES 4,505,489,777.06 4.51 billion 214

Insight

The award is highly concentrated in PSC M181, Operating of Government R&D GOCO Facilities, which accounts for the full reported obligation total of $4.51 billion over the 10-year window. This PSC appears across 214 awards, indicating sustained and repeated procurement activity rather than a single large action. The distribution suggests the award is primarily associated with long-term operations and management of government-owned, contractor-operated research and development facilities.

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 = 'DEAC0207CH11359'
    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
2016 537,326,290.84 537.33 million 21
2017 295,013,252.77 295.01 million 19
2018 547,977,556.43 547.98 million 15
2019 577,781,550.58 577.78 million 17
2020 609,244,954.24 609.24 million 18
2021 742,709,170.41 742.71 million 29
2022 733,935,275.64 733.94 million 31
2023 837,788,301.22 837.79 million 29
2024 -48,119,978.82 -48.12 million 31
2025 -328,166,596.25 -328.17 million 4

Insight

Obligations under PIID DEAC0207CH11359 were concentrated in the later years of the 10-year window, with annual totals rising from 295.01 million in 2017 to a peak of 837.79 million in 2023. Award activity also increased over time, reaching 29-31 awards annually in 2021-2025 after a lower range of 15-21 awards in 2016-2020. The negative obligations in 2024 and 2025 indicate significant deobligations or downward adjustments, reducing net obligated amounts in those years.

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.