Award Number

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

Award number DEAC0576RL01830 for Agency ID 8900 shows 590 actions and $12.70 billion obligated over the last 10 years.

This award page summarizes procurement activity for PIID DEAC0576RL01830 within Agency ID 8900 across the last 10 years. The record reflects 590 award actions and total obligations of $12,702,754,690.79.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and the readable obligation amount of $12.70 billion.

Agency ID
8900
PIID
DEAC0576RL01830
Type
Award
Total Obligated
12.70 billion
12,702,754,690.79
Actions
590
Average Action Value
21,530,092.70

Overview

This award record covers PIID DEAC0576RL01830 under Agency ID 8900 for the last 10 years. It includes 590 award actions with an average action value of $21,530,092.70 and total obligated value of $12,702,754,690.79.

How to use this page

Use this page to review the scale and frequency of award activity tied to DEAC0576RL01830. The totals provide a concise view of obligation volume and action count for procurement 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 = 'DEAC0576RL01830'
    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 12,702,754,690.79 12.70 billion 590

Insight

Over the 10-year window, obligations for PIID DEAC0576RL01830 are fully concentrated within the Department of Energy (Agency ID 8900). The award accounts for $12.70 billion across 590 awards, indicating sustained obligation activity under a single agency rather than distribution across multiple agencies. This concentration suggests the award has been managed entirely within DOE and is not cross-agency in scope.

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 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 MEMORIAL INSTITUTE 1A453 11,508,902,878.15 11.51 billion 546
BATTELLE MEMORIAL INSTITUTE 1,193,851,812.64 1.19 billion 44

Insight

Obligations are highly concentrated with BATTELLE MEMORIAL INSTITUTE, which accounts for the vast majority of the identified award value over the 10-year window. The vendor appears twice in the results: one entry with CAGE 1A453 totals 11.51 billion across 546 awards, and a second entry without a CAGE code totals 1.19 billion across 44 awards. This pattern suggests the award activity is dominated by a single vendor name, with the no-CAGE record representing a smaller but still material share of obligations.

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 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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 12,702,754,690.79 12.70 billion 590

Insight

Over the 10-year window, obligations for this award are entirely concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This NAICS accounts for $12.70 billion across 590 awards, indicating sustained and highly focused support within a single industry category. The absence of any other NAICS rows suggests no meaningful diversification in obligated activity for this award in the period reviewed.

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 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 12,702,754,690.79 12.70 billion 590

Insight

Obligations under PIID DEAC0576RL01830 are fully concentrated in PSC M181, Operating of Government R&D GOCO Facilities, with $12.70 billion obligated across 590 awards over the 10-year window. This indicates a highly focused procurement profile centered on the operation of government-owned, contractor-operated research and development facilities. No additional PSC distribution is present in the provided data, so the award activity is entirely aligned to this single service 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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 1,057,257,092.40 1.06 billion 39
2017 792,955,087.70 792.96 million 59
2018 1,152,907,103.58 1.15 billion 54
2019 826,281,646.33 826.28 million 50
2020 1,103,928,284.12 1.10 billion 64
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 under PIID DEAC0576RL01830 were volatile early in the period, ranging from 792.96 million in 2017 to 1.15 billion in 2018, then generally trended upward from 2020 onward. Annual obligations exceeded 1.4 billion in each year from 2021 through 2025, peaking at 1.71 billion in 2023 before easing slightly in 2024 and 2025. Award counts also expanded over time, moving from 39 in 2016 to a high of 75 in 2022, indicating broader annual award distribution alongside the higher 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.