Award Number

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

Award number DEAC0206CH11357 for agency ID 8900 shows federal procurement activity over the last 10 years with 302 actions and $10.30 billion in obligated funds.

This award page summarizes the procurement record tied to PIID DEAC0206CH11357 for agency ID 8900. The record shows 302 award actions and total obligations of $10,296,740,293.48 across the last 10 years.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligated values are shown as both readable and exact amounts, and the average action value is $34,095,166.53.

Agency ID
8900
PIID
DEAC0206CH11357
Type
Award
Total Obligated
10.30 billion
10,296,740,293.48
Actions
302
Average Action Value
34,095,166.53

Overview

The award record for PIID DEAC0206CH11357 under agency ID 8900 reflects 302 actions during the analysis window. Total obligated funding equals $10,296,740,293.48, with an average action value of $34,095,166.53. The readable total rounds to $10.30 billion for summary display.

How to use this page

Use this page to review the award-level procurement history associated with DEAC0206CH11357 over the last 10 years. The action count and obligated totals provide a compact view of activity volume and funding scale for this award. The exact and rounded figures support both detailed analysis and quick reference.

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 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 10,296,740,293.48 10.30 billion 302

Insight

For PIID DEAC0206CH11357 over the 10-year window, obligations are fully concentrated under the Department of Energy, with $10.30 billion across 302 awards. This indicates a highly centralized award distribution within a single agency rather than a broad spread across multiple agencies. The award profile suggests sustained, repeated obligational activity under DOE for this PIID.

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 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
UCHICAGO ARGONNE, LLC 4E6E0 9,324,464,337.40 9.32 billion 275
UCHICAGO ARGONNE, LLC 972,275,956.08 972.28 million 27

Insight

Over the 10-year window, UCHICAGO ARGONNE, LLC accounts for all listed vendor obligations under this PIID, indicating a highly concentrated vendor profile. The record shows 275 awards tied to CAGE 4E6E0 totaling $9.32 billion, with an additional 27 awards and $972.28 million recorded under the same vendor name without a CAGE code. This suggests the obligation history is concentrated in a single vendor identity, with a smaller portion not matched to the CAGE code field.

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 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 10,296,740,293.48 10.30 billion 302

Insight

Obligations for PIID DEAC0206CH11357 are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, with $10.30 billion obligated across 302 awards over the 10-year window. This indicates a highly concentrated procurement profile with no evidence of NAICS diversification in the provided data. The volume of awards suggests repeated procurement activity within a single research-and-development category.

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 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 10,296,740,293.48 10.30 billion 302

Insight

Over the 10-year window, obligations under PIID DEAC0206CH11357 are fully concentrated in PSC M181, Oper of Govt R&D GOCO Facilities. This PSC accounts for $10.30 billion across 302 awards, indicating a highly focused procurement profile rather than a diversified mix of product or service categories. The volume of awards alongside the large obligated amount suggests sustained, repeated activity within the same functional area.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 824,693,497.23 824.69 million 24
2017 707,692,376.98 707.69 million 21
2018 1,019,589,139.53 1.02 billion 17
2019 921,991,720.37 921.99 million 19
2020 1,027,577,975.44 1.03 billion 27
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 were concentrated in a relatively steady annual band of about $707.69 million to $1.29 billion over 2016–2025, with no single year dominating the 10-year window. After a decline in 2017, obligated amounts generally rebounded and remained above $1.0 billion in most years from 2018 onward, peaking in 2025 at $1.29 billion. Award counts increased materially over time, rising from 17–24 awards in 2016–2019 to 37–46 awards in 2022–2024, indicating broader distribution across more actions even as obligations remained high.

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.