Award Number

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

Federal procurement summary for award number DEAC0207CH11359 under Agency ID 8900, showing obligations and actions over the last 5 years.

This award page summarizes federal activity for PIID DEAC0207CH11359 within Agency ID 8900 for the last 5 years. The record shows 124 actions and total obligated funds of 1.94 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and the exact obligated amount of 1,938,146,172.2 with an average action value of 15,630,211.07.

Agency ID
8900
PIID
DEAC0207CH11359
Type
Award
Total Obligated
1.94 billion
1,938,146,172.20
Actions
124
Average Action Value
15,630,211.07

Overview

The award record for DEAC0207CH11359 shows 124 actions across the last 5 years. Total obligated funding is 1,938,146,172.2, with an average action value of 15,630,211.07.

How to use this page

Use this page to review obligation trends and action volume tied to this award number. It provides a concise starting point for analyzing federal spend activity within Agency ID 8900.

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 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 1,938,146,172.20 1.94 billion 124

Insight

For PIID DEAC0207CH11359 over the 5-year window, all reported obligation is concentrated within the Department of Energy (agency ID 8900), which accounts for the full 1.94 billion in obligations. This reflects a single-agency funding profile rather than a distributed obligation base across multiple agencies. The 124 awards associated with this agency indicate repeated activity within the same funding source rather than broader interagency spread.

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 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
FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY 4GUN4 1,938,146,172.20 1.94 billion 124

Insight

Obligations for PIID DEAC0207CH11359 over the 5-year window are fully concentrated with a single vendor, FERMI RESEARCH ALLIANCE LIMITED LIABILITY COMPANY (CAGE 4GUN4). This vendor accounts for $1.94 billion across 124 awards, indicating a highly concentrated award distribution with no other vendors represented in the provided results. The pattern suggests sustained reliance on one contractor rather than a diversified vendor base.

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 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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 1,938,146,172.20 1.94 billion 124

Insight

Over the 5-year window, obligations for award DEAC0207CH11359 are entirely concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This NAICS accounts for $1.94 billion across 124 awards, indicating a highly focused procurement profile with no diversification across other NAICS categories in the provided data. The distribution suggests sustained activity centered on research and development services within this award.

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 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
M181 OPER OF GOVT R&D GOCO FACILITIES 1,938,146,172.20 1.94 billion 124

Insight

Over the 5-year window, obligations for award DEAC0207CH11359 are entirely concentrated in PSC M181, Operating of Government R&D GOCO Facilities. This PSC accounts for $1.94 billion across 124 awards, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards suggests recurring funding activity within the same service category rather than a broad mix of purchase types.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID DEAC0207CH11359 were concentrated in 2021–2023, with annual totals remaining above $733.9 million and peaking at $837.8 million in 2023. Award activity was relatively stable in that period at 29–31 awards per year, indicating consistent distribution despite year-to-year funding variation. In 2024, obligations turned negative at $48.1 million, and 2025 remains negative at $328.2 million with only 4 awards, indicating a sharp recent downward shift in net obligated value.

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.