Award Number

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

Federal procurement analysis for award number DEAC0205CH11231 under agency ID 8900 over the last 10 years, showing 378 actions and $11.35 billion obligated.

This page summarizes award number DEAC0205CH11231 for agency ID 8900 using a 10-year analysis window. The award shows $11,354,126,936.22 in total obligations across 378 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures reflect the provided readable and exact obligated totals, and the average action value is $30,037,372.85.

Agency ID
8900
PIID
DEAC0205CH11231
Type
Award
Total Obligated
11.35 billion
11,354,126,936.22
Actions
378
Average Action Value
30,037,372.85

Overview

Award number DEAC0205CH11231 is associated with agency ID 8900 and records 378 award actions in the last 10 years. Total obligated amount is $11,354,126,936.22, with an average action value of $30,037,372.85. These figures describe the award-level obligation profile for the selected analysis window.

How to use this page

Use this page to review obligation volume and action frequency for award number DEAC0205CH11231. The totals support basic comparison across awards, trend review within the 10-year window, and identification of high-value award activity under 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 = 'DEAC0205CH11231'
    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 11,354,126,936.22 11.35 billion 378

Insight

For PIID DEAC0205CH11231 over the 10-year window, obligations are fully concentrated within the Department of Energy (agency ID 8900). The award totals 378 obligations and $11.35 billion to a single top agency, indicating no interagency distribution within the provided data. This pattern reflects a highly concentrated funding profile under DOE rather than a diversified award footprint.

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 = 'DEAC0205CH11231'
        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
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741) 1V9S8 6,357,668,973.86 6.36 billion 216
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA 1GGD0 3,876,299,554.24 3.88 billion 120
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741) 1,120,158,408.12 1.12 billion 42

Insight

Obligations under PIID DEAC0205CH11231 are highly concentrated among The Regents of the University of California. The top three vendor entries account for 258 awards and $11.37 billion in obligations over the 10-year window, with one vendor name appearing multiple times across different CAGE codes/records. The largest entry alone represents $6.36 billion across 216 awards, indicating sustained award concentration with secondary, but materially smaller, obligations to the same organization.

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 = 'DEAC0205CH11231'
    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 11,354,126,936.22 11.35 billion 378

Insight

All reported obligations for this award are concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 10-year window, this category accounts for $11.35 billion across 378 awards, indicating a highly focused procurement profile with no other NAICS codes listed in the provided data. This concentration suggests the award’s obligations are consistently tied to R&D activities within the physical, engineering, and life sciences sector.

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 = 'DEAC0205CH11231'
    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 11,354,126,936.22 11.35 billion 378

Insight

For PIID DEAC0205CH11231 over the 10-year window, obligations are concentrated entirely in PSC M181, “OPER OF GOVT R&D GOCO FACILITIES.” This PSC accounts for $11.35 billion across 378 awards, indicating a highly focused obligation 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 = 'DEAC0205CH11231'
    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 926,284,394.99 926.28 million 39
2017 812,778,390.84 812.78 million 40
2018 1,047,975,891.07 1.05 billion 36
2019 932,521,952.38 932.52 million 32
2020 1,068,456,722.76 1.07 billion 40
2021 1,196,245,250.93 1.20 billion 23
2022 1,278,286,262.20 1.28 billion 41
2023 1,572,114,369.77 1.57 billion 42
2024 1,272,456,603.79 1.27 billion 37
2025 1,247,007,097.49 1.25 billion 48

Insight

Obligations for PIID DEAC0205CH11231 were consistently high across the 2016–2025 window, ranging from $812.78 million to $1.57 billion annually, with an upward shift after 2020. Funding peaked in 2023 at $1.57 billion, then moderated in 2024 and 2025 to about $1.27 billion and $1.25 billion, respectively, while award counts remained relatively stable overall, aside from a low of 23 awards in 2021 and a high of 48 in 2025. This pattern indicates sustained obligation concentration at a high annual level rather than a single-year spike.

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.