Award Number

Award Number 8900 / DEAC0576RL01830 Federal Contract Action Summary (Last 5 Years)

Federal procurement award record for Agency 8900, PIID DEAC0576RL01830, showing actions and obligations over the last 5 years.

This award page summarizes obligation activity for PIID DEAC0576RL01830 within Agency ID 8900 across the last 5 years. The record shows 324 award actions and total obligated funds of 7.77 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated exact is 7769425476.66, with an average action value of 23979708.26 across 324 actions.

Agency ID
8900
PIID
DEAC0576RL01830
Type
Award
Total Obligated
7.77 billion
7,769,425,476.66
Actions
324
Average Action Value
23,979,708.26

Overview

Over the last 5 years, this award record for PIID DEAC0576RL01830 shows 324 actions tied to Agency ID 8900. Total obligated funding is 7,769,425,476.66, which reads as 7.77 billion in the summary view.

How to use this page

Use this page to review the scale and timing of award activity associated with the PIID and agency identifier. The average action value of 23,979,708.26 provides a simple indicator of the typical obligation size across the recorded actions.

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 = 'DEAC0576RL01830'
    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 7,769,425,476.66 7.77 billion 324

Insight

For PIID DEAC0576RL01830 over the 5-year window, obligations are fully concentrated within the Department of Energy, which accounts for $7.77 billion across 324 awards. This indicates the award activity is entirely within a single agency channel, with no distribution across other top agencies in the provided data. The pattern suggests a sustained and agency-specific funding profile rather than a diversified award base.

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 = 'DEAC0576RL01830'
        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 MEMORIAL INSTITUTE 1A453 7,769,425,476.66 7.77 billion 324

Insight

BATTELLE MEMORIAL INSTITUTE accounts for the full reported top-vendor obligation within this award view over the 5-year window, with $7.77 billion obligated across 324 awards. This indicates a highly concentrated vendor distribution for PIID DEAC0576RL01830 under agency 8900, with spend overwhelmingly associated with a single contractor. The volume of awards suggests recurring use of the same vendor rather than a broad vendor base.

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 = 'DEAC0576RL01830'
    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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 7,769,425,476.66 7.77 billion 324

Insight

Obligations for this award are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 5-year window, this category accounts for $7.77 billion across 324 awards, indicating a highly focused funding profile rather than a diversified NAICS mix.

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 = 'DEAC0576RL01830'
    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 7,769,425,476.66 7.77 billion 324

Insight

Obligations under PIID DEAC0576RL01830 are fully concentrated in PSC M181, “OPER OF GOVT R&D GOCO FACILITIES,” totaling $7.77 billion across 324 awards over the 5-year window. This indicates a highly focused funding profile with no visible PSC diversification in the provided data. The award activity appears consistently aligned to a single facilities operations 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 = 'DEAC0576RL01830'
    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,407,561,139.69 1.41 billion 61
2022 1,406,610,007.48 1.41 billion 75
2023 1,705,631,999.62 1.71 billion 66
2024 1,677,854,600.72 1.68 billion 60
2025 1,571,767,729.15 1.57 billion 62

Insight

Obligations for PIID DEAC0576RL01830 were concentrated at a relatively stable level across the five-year window, ranging from $1.41 billion to $1.71 billion annually. Annual funding increased in 2023 to the period high of $1.71 billion, then moderated in 2024 and 2025 to $1.68 billion and $1.57 billion, respectively. Award volume fluctuated modestly between 60 and 75 awards per year, indicating a fairly consistent distribution of activity rather than a sharp change in award frequency.

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.