Award Number

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

Federal award page for PIID DEAC0206CH11357 under Agency ID 8900, summarizing obligations and award activity over the last 5 years.

This page presents award-level procurement data for PIID DEAC0206CH11357 for Agency ID 8900 across the last 5 years. The record shows 194 award actions and total obligated funding of 5.80 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

The total obligated exact amount is 5,795,195,583.93 and the average action value is 29,872,142.19.

Agency ID
8900
PIID
DEAC0206CH11357
Type
Award
Total Obligated
5.80 billion
5,795,195,583.93
Actions
194
Average Action Value
29,872,142.19

Overview

This award record identifies PIID DEAC0206CH11357 under Agency ID 8900 and aggregates activity across the last 5 years. Total obligated funding is 5,795,195,583.93 across 194 award actions, with an average action value of 29,872,142.19. The page is centered on award-level totals rather than transaction detail.

How to use this page

Use this page to review the overall funding scale and action volume associated with this award. It is suitable for quick procurement analysis, comparison with related award records, and review of obligation trends within the selected analysis window.

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 = 'DEAC0206CH11357'
    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 5,795,195,583.93 5.80 billion 194

Insight

Over the 5-year window, all reported obligations for PIID DEAC0206CH11357 are concentrated within the Department of Energy (agency 8900), with $5.80 billion across 194 awards. This indicates a highly concentrated award profile with no diversification across other agencies in the provided data. The volume of awards suggests repeated obligation activity under this PIID rather than a single isolated action.

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 = 'DEAC0206CH11357'
        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
UCHICAGO ARGONNE, LLC 4E6E0 5,795,195,583.93 5.80 billion 194

Insight

Within the 5-year window, UCHICAGO ARGONNE, LLC (CAGE 4E6E0) is the only listed top vendor for PIID DEAC0206CH11357 and accounts for the full observed obligation total of $5.80 billion across 194 awards. This indicates a highly concentrated vendor profile, with all reported top-vendor activity captured by a single contractor. The award count suggests repeated obligation activity rather than a one-time action.

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 = 'DEAC0206CH11357'
    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 5,795,195,583.93 5.80 billion 194

Insight

Over the 5-year window, obligations for PIID DEAC0206CH11357 under Agency ID 8900 are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This category accounts for $5.80 billion across 194 awards, indicating a highly concentrated award profile with no observable diversification across NAICS codes in the provided data.

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 = 'DEAC0206CH11357'
    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 5,795,195,583.93 5.80 billion 194

Insight

Obligations under PIID DEAC0206CH11357 are fully concentrated in PSC M181, OPER OF GOVT R&D GOCO FACILITIES, with $5.80 billion across 194 awards over the last 5 years. This indicates a highly focused obligation pattern, with no evidence in the provided rows of meaningful PSC diversification. The award activity is consistent with sustained support for government-owned, contractor-operated R&D facility operations.

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 = 'DEAC0206CH11357'
    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,108,789,411.80 1.11 billion 26
2022 1,002,404,388.67 1.00 billion 37
2023 1,267,694,891.38 1.27 billion 46
2024 1,129,661,341.27 1.13 billion 45
2025 1,286,645,550.81 1.29 billion 40

Insight

Obligations for PIID DEAC0206CH11357 remained consistently above $1.0 billion annually over the five-year period, indicating a high-value, sustained award profile. Funding dipped in 2022 to $1.00 billion, then increased to a peak of $1.27 billion in 2023, eased to $1.13 billion in 2024, and rose again to $1.29 billion in 2025. Award counts increased from 26 in 2021 to a high of 46 in 2023, then declined modestly to 40 in 2025, suggesting relatively stable but slightly contracting transaction volume after 2023.

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.