Award Number

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

FPDS award page for award number DEAC0205CH11231 under agency ID 8900, summarizing activity over the last 5 years.

This page summarizes federal procurement activity for award number DEAC0205CH11231 under agency ID 8900 during the last 5 years. The award shows 191 actions and total obligated funding of 6.57 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and reported obligated amounts; the exact total obligated value is 6566109584.18.

Agency ID
8900
PIID
DEAC0205CH11231
Type
Award
Total Obligated
6.57 billion
6,566,109,584.18
Actions
191
Average Action Value
34,377,537.09

Overview

Award number DEAC0205CH11231 is associated with agency ID 8900 and shows sustained award activity across the last 5 years. The record includes 191 award actions, with an average action value of 34,377,537.09 and total obligated funding of 6,566,109,584.18.

How to use this page

Use this page to review award-level obligation trends, action volume, and average action value for DEAC0205CH11231. It is suitable for identifying the scale of activity tied to this award and for comparing it with other awards in the same agency ID.

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 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 6,566,109,584.18 6.57 billion 191

Insight

Within the 5-year window, obligations for PIID DEAC0205CH11231 are fully concentrated in a single top agency: the Department of Energy (agency ID 8900). DOE accounts for $6.57 billion across 191 awards, indicating that this award’s obligation activity is heavily focused within one agency rather than distributed across multiple agencies. The concentration suggests the award is tightly tied to DOE funding and procurement activity over the period.

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 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
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) 1V9S8 2,689,810,029.94 2.69 billion 71

Insight

Obligations for PIID DEAC0205CH11231 are highly concentrated in two University of California vendor records over the past 5 years. THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1GGD0) accounts for $3.88 billion across 120 awards, while THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741) (CAGE 1V9S8) accounts for $2.69 billion across 71 awards. Together, these two entries represent the dominant share of recorded obligations in this vendor set, indicating a narrow distribution concentrated within related recipient records.

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 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 6,566,109,584.18 6.57 billion 191

Insight

Over the 5-year window, obligations under PIID DEAC0205CH11231 are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This category accounts for $6.57 billion across 191 awards, indicating a highly focused award profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award is consistently tied to R&D activities within this 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 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 6,566,109,584.18 6.57 billion 191

Insight

Over the 5-year window, obligations for this award are fully concentrated in PSC M181, Operations of Government R&D GOCO Facilities. The award accounts for $6.57 billion across 191 awards, indicating a sustained and highly focused procurement profile with no other PSCs reflected 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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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

Annual obligations for PIID DEAC0205CH11231 under Agency 8900 are concentrated at the billion-dollar level across the five-year window, ranging from $1.20 billion to $1.57 billion. Obligations increased from 2021 through 2023, peaking in 2023, then declined in 2024 and remained near that level in 2025. Award activity expanded materially from 23 awards in 2021 to 41–48 awards in 2022–2025, indicating a broader distribution of obligations in later 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.