Award Number

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

Award number DEAC0705ID14517 for agency 8900 shows procurement activity over the last 10 years.

This award page summarizes obligation history tied to award number DEAC0705ID14517 for agency ID 8900. The record shows 266 award actions and total obligated amounts of 15.97 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the last 10 years and an exact obligated amount of 15,968,703,720.78 with an average action value of 60,032,720.75.

Agency ID
8900
PIID
DEAC0705ID14517
Type
Award
Total Obligated
15.97 billion
15,968,703,720.78
Actions
266
Average Action Value
60,032,720.75

Overview

The award record for DEAC0705ID14517 captures procurement activity under agency ID 8900 across the last 10 years. Total obligated amounts are 15,968,703,720.78, with 266 recorded actions and an average action value of 60,032,720.75.

How to use this page

Use this page to review obligation totals, action volume, and average action value for award number DEAC0705ID14517. The figures support basic FPDS analysis and comparison within the selected 10-year 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 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 15,968,703,720.78 15.97 billion 266

Insight

For PIID DEAC0705ID14517 over the 10-year window, all reported obligations are concentrated within the Department of Energy (Agency 8900). The award reflects 266 actions totaling $15.97 billion, indicating a highly concentrated obligational profile with no visible distribution across other agencies in the provided data. This suggests the award is managed entirely within a single agency context.

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 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
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY 36EV6 14,704,227,339.36 14.70 billion 235
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY 1,264,476,381.42 1.26 billion 31

Insight

Obligations for PIID DEAC0705ID14517 are highly concentrated in BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY, which accounts for two vendor entries in the top-vendor view over the 10-year window. The CAGE-coded entry (36EV6) received $14.70 billion across 235 awards, while the uncoded entry for the same vendor name received an additional $1.26 billion across 31 awards. Together, these records indicate sustained, dominant award concentration with limited vendor distribution.

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 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
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 15,968,703,720.78 15.97 billion 266

Insight

Across the 10-year window for award DEAC0705ID14517, obligations are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. The single reported NAICS category accounts for $15.97 billion across 266 awards, indicating a highly concentrated activity profile within this code. With no other NAICS rows provided, the available data do not show diversification across industry categories.

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 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 15,968,703,720.78 15.97 billion 266

Insight

Over the 10-year window, obligations under award DEAC0705ID14517 are fully concentrated in PSC M181, OPER OF GOVT R&D GOCO FACILITIES, with $15.97 billion obligated across 266 awards. This indicates a highly focused procurement profile with no diversification across PSCs in the provided data. The volume of awards suggests repeated use of the same service category over time rather than broad PSC distribution.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 994,605,212.56 994.61 million 29
2017 1,093,271,078.78 1.09 billion 27
2018 1,727,274,868.57 1.73 billion 20
2019 1,285,217,076.63 1.29 billion 16
2020 1,422,891,552.47 1.42 billion 22
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 generally concentrated at the billion-dollar level across the 10-year window, ranging from 994.61 million in 2016 to 2.08 billion in 2025. Annual obligations increased from 2016 through 2018, declined in 2019, then recovered and remained above 1.4 billion each year from 2020 onward, with peaks in 2022 and 2025 at just over 2.0 billion. Award counts were relatively stable but varied between 16 and 36 per year, indicating moderate annual fluctuation in activity volume despite sustained high obligation levels.

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.