This page presents FPDS award data for PIID DESC0012704 under agency ID 8900 for the last 5 years. The award shows 151 actions and total obligated value of 4.18 billion.
Award Number
Award Number 8900 / DESC0012704 Federal Contract Action Summary (Last 5 Years)
Federal procurement award page for award number DESC0012704 at agency 8900, summarizing obligations and action activity over the last 5 years.
Totals are based on the analysis window provided, with exact obligated value of 4181013359.47 and average action value of 27688830.2.
Overview
The award record for DESC0012704 under agency ID 8900 reflects 151 reported actions across the last 5 years. Total obligated amount is 4,181,013,359.47, which is approximately 4.18 billion, with an average action value of 27,688,830.2.
How to use this page
Use this page to review the award’s obligation volume and action activity within the selected 5-year window. The record can support procurement analysis, award-level tracking, and comparison with other FPDS award entries.
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 = 'DESC0012704'
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 | 4,181,013,359.47 | 4.18 billion | 151 |
Insight
Over the 5-year window, all reported obligations for PIID DESC0012704 are concentrated in the Department of Energy (agency ID 8900), which accounts for the full $4.18 billion observed. This indicates no distribution across additional agencies in the provided data. The award was associated with 151 actions, suggesting a high-volume obligation pattern within a single agency relationship.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| BROOKHAVEN SCIENCE ASSOCIATES, LLC | 4KUZ2 | 4,181,013,359.47 | 4.18 billion | 151 |
Insight
Over the 5-year window, BROOKHAVEN SCIENCE ASSOCIATES, LLC (CAGE 4KUZ2) accounted for the only listed vendor position under this award, with $4.18 billion in obligated funding across 151 awards. This indicates complete concentration in the provided top-vendor view, with all visible obligation activity attributed to a single contractor. The award pattern suggests a sustained and highly concentrated vendor relationship over the period.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 4,181,013,359.47 | 4.18 billion | 151 |
Insight
Over the 5-year window, obligations for award DESC0012704 are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This single NAICS accounts for $4.18 billion across 151 awards, indicating a highly focused procurement pattern with no visible diversification across other NAICS codes in the provided data. The concentration suggests this award is used primarily for R&D activities within this technical field.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| M1HA | OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES | 4,181,013,359.47 | 4.18 billion | 151 |
Insight
Across the 5-year window for award DESC0012704, obligations are fully concentrated in PSC M1HA, “Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities,” with $4.18 billion across 151 awards. This indicates a highly focused procurement profile with no diversification across PSCs in the provided data. The award pattern suggests sustained recurring obligations tied to a single functional category.
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 = 'DESC0012704'
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 | 777,092,381.56 | 777.09 million | 20 |
| 2022 | 873,406,089.00 | 873.41 million | 32 |
| 2023 | 885,000,338.21 | 885.00 million | 30 |
| 2024 | 745,152,067.67 | 745.15 million | 32 |
| 2025 | 900,362,483.03 | 900.36 million | 37 |
Insight
Obligations under PIID DESC0012704 remained at a high level across the five-year window, ranging from $745.15 million in 2024 to $900.36 million in 2025. Annual award volume increased overall from 20 awards in 2021 to 37 awards in 2025, with a dip in 2021–2023 followed by higher activity in 2024–2025. The pattern indicates sustained funding concentration in this award, with the largest obligation levels occurring in 2023 and 2025.
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.