This award page tracks the procurement record for PIID DEAC0206CH11357 under agency ID 8900. Over the last full year, it shows 40 award actions and total obligations of 1.28664555081 billion dollars.
Award Number
Award Number 8900 / DEAC0206CH11357 Federal Contract Action Summary (Last Year)
Federal award number DEAC0206CH11357 for agency 8900 summarizes obligations and action activity over the last full year.
Totals reflect the selected analysis window and the obligated amount shown in both readable and exact forms.
Overview
The award number DEAC0206CH11357 is associated with agency ID 8900 and reflects activity recorded across 40 actions in the last full year. Total obligated dollars for the period equal 1,286,645,550.81, with an average action value of 32,166,138.77. This page is intended to support review of obligation volume and action frequency for the selected award record.
How to use this page
Use this page to review the award-level procurement record for DEAC0206CH11357 within the selected time window. The action count and average action value provide a quick view of how obligations were distributed across the period, while the total obligated amount shows the full dollar volume captured in the analysis.
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 1 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,286,645,550.81 | 1.29 billion | 40 |
Insight
The Department of Energy accounts for all reported obligation activity for PIID DEAC0206CH11357 in the 1-year window, with 40 awards totaling $1.29 billion. This indicates full concentration of obligations within a single agency, with no evidence of distribution across multiple departments in the provided data. The award pattern is consistent with a highly agency-specific procurement profile.
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 1 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 | 1,286,645,550.81 | 1.29 billion | 40 |
Insight
Obligations for PIID DEAC0206CH11357 over the 1-year window are fully concentrated with a single vendor, UCHICAGO ARGONNE, LLC (CAGE 4E6E0), totaling $1.29 billion across 40 awards. This indicates a highly concentrated award distribution with no evidence of vendor diversification in the provided data. The volume of awards suggests repeated obligation activity to the same contractor rather than broad vendor spread.
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 1 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,286,645,550.81 | 1.29 billion | 40 |
Insight
Obligations under PIID DEAC0206CH11357 are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, totaling $1.29 billion across 40 awards in the 1-year window. This indicates a highly specialized award portfolio with no observable NAICS diversification in the provided data. The concentration suggests the award activity is driven entirely by R&D-related work within this period.
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 1 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,286,645,550.81 | 1.29 billion | 40 |
Insight
Within the 1-year window, obligations on this award are fully concentrated in PSC M181, Oper of Govt R&D GOCO Facilities. This PSC accounts for $1.29 billion across 40 awards, indicating a narrow functional distribution tied to a single service category. The concentration suggests this award activity is dominated by GOCO facilities operations rather than a diversified mix of procurement 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 = 'DEAC0206CH11357'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 1,286,645,550.81 | 1.29 billion | 40 |
Insight
For FY2025, this award records 40 actions with total obligations of $1.29 billion, indicating a high-value, moderately concentrated obligation profile within the 1-year window. The volume of actions suggests distribution across multiple award events rather than a single transaction, but the obligated amount remains heavily concentrated in this award.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.