This page summarizes federal procurement activity for award number DEAC0705ID14517 in agency 8900 over the last 5 years. The award shows 152 actions and total obligated amount of $9,445,443,931.77.
Award Number
Award Number 8900 / DEAC0705ID14517 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number DEAC0705ID14517 under agency 8900, showing obligations and action history over the last 5 years.
Amounts reflect the last 5 years of available award activity and use the exact total obligated value of 9445443931.77.
Overview
For the last 5 years, award number DEAC0705ID14517 is associated with $9,445,443,931.77 in total obligated value across 152 award actions. The average action value is $62,141,078.50, which provides a simple indicator of the scale of recorded activity. This page is organized to support review of the award’s obligation history within agency 8900.
How to use this page
Use this page to review the award-level totals, action count, and average action value for DEAC0705ID14517. It is useful for quick procurement analysis, cross-checking award history, and comparing activity within the selected analysis window.
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 = 'DEAC0705ID14517'
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 | 9,445,443,931.77 | 9.45 billion | 152 |
Insight
Over the 5-year window, obligations for PIID DEAC0705ID14517 are fully concentrated within the Department of Energy. The award reflects 152 obligations totaling $9.45 billion, indicating a single-agency funding pattern rather than a distributed obligation base. This concentration suggests the award’s financial activity is driven exclusively by DOE, with no evidence in the provided data of obligations to other agencies.
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 = 'DEAC0705ID14517'
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 |
|---|---|---|---|---|
| BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY | 36EV6 | 9,445,443,931.77 | 9.45 billion | 152 |
Insight
Obligations for PIID DEAC0705ID14517 over the 5-year window are fully concentrated with a single vendor, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY (CAGE 36EV6). This vendor accounts for $9.45 billion across 152 awards, indicating sustained and highly concentrated award activity under this instrument. No other vendors are represented in the provided rows, so distribution across suppliers cannot be assessed from this extract.
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 = 'DEAC0705ID14517'
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 |
|---|---|---|---|---|
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 9,445,443,931.77 | 9.45 billion | 152 |
Insight
Over the 5-year window, obligations are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services, totaling $9.45 billion across 152 awards. This indicates a single-NAICS award profile for this PIID, with no observable distribution across other NAICS codes in the provided data. The volume and dollar value suggest sustained use of this contracting vehicle within one broad professional services 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 = 'DEAC0705ID14517'
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 | 9,445,443,931.77 | 9.45 billion | 152 |
Insight
Over the 5-year window, obligations on this award are fully concentrated in PSC M181, Operating of Government R&D GOCO Facilities. The award records 152 actions totaling $9.45 billion, indicating a single PSC dominates the award’s obligation profile with no other PSCs reflected in the provided data. This concentration suggests the award’s activity is narrowly focused on government R&D GOCO facility operations.
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 = 'DEAC0705ID14517'
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,493,195,565.59 | 1.49 billion | 28 |
| 2022 | 2,033,779,753.18 | 2.03 billion | 28 |
| 2023 | 2,025,497,521.71 | 2.03 billion | 36 |
| 2024 | 1,817,060,647.03 | 1.82 billion | 29 |
| 2025 | 2,075,910,444.26 | 2.08 billion | 31 |
Insight
Obligations for PIID DEAC0705ID14517 were concentrated in the $1.49 billion to $2.08 billion range across the five-year window, indicating sustained high-value activity. Annual obligated amounts rose from $1.49 billion in 2021 to about $2.03 billion in 2022 and remained near that level in 2023 before dipping to $1.82 billion in 2024 and increasing to $2.08 billion in 2025. Award counts were relatively stable overall, ranging from 28 to 36 per year, with the highest count in 2023.
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.