Award Number

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

Award number DEAC0576RL01830 for agency 8900 shows 62 actions in the last full year with $1.57 billion obligated.

This award record covers PIID DEAC0576RL01830 for agency 8900 over the last full year. Total obligations reached $1,571,767,729.15 across 62 award actions.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are shown in readable and exact forms; average action value is $25,351,092.41.

Agency ID
8900
PIID
DEAC0576RL01830
Type
Award
Total Obligated
1.57 billion
1,571,767,729.15
Actions
62
Average Action Value
25,351,092.41

Overview

The award number DEAC0576RL01830 is associated with agency 8900 and records 62 award actions in the last full year. Total obligated amount is $1,571,767,729.15, with an average action value of $25,351,092.41. This page summarizes the award at the PIID level and reflects the provided analysis window only.

How to use this page

Use this page to review the award’s obligated amount, action count, and average action value for the last full year. The figures support quick comparison across award records and can be used as a starting point for reviewing procurement activity tied to PIID DEAC0576RL01830.

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 1 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 1,571,767,729.15 1.57 billion 62

Insight

Obligations for PIID DEAC0576RL01830 are fully concentrated within the Department of Energy, with 62 awards totaling $1.57 billion over the 1-year window. This indicates a single-agency funding profile with no observable distribution across other agencies in the provided data. The concentration suggests agency-specific financing activity rather than a broadly distributed federal award pattern.

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 1 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 1,571,767,729.15 1.57 billion 62

Insight

Obligations under this award are fully concentrated with BATTELLE MEMORIAL INSTITUTE (CAGE 1A453), which accounts for $1.57 billion across 62 awards in the 1-year window. This indicates a highly concentrated vendor profile with no evidence of distribution across additional vendors in the provided data. The award relationship appears sustained and recurring rather than fragmented.

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 1 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 1,571,767,729.15 1.57 billion 62

Insight

Award obligations are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 1-year window, this category accounts for $1.57 billion across 62 awards, indicating a highly focused obligation profile with no diversification across other NAICS codes in the provided data. This concentration suggests the award activity under PIID DEAC0576RL01830 is centered on R&D-related work.

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 1 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 1,571,767,729.15 1.57 billion 62

Insight

Obligations for this award over the 1-year window are entirely concentrated in PSC M181, “OPER OF GOVT R&D GOCO FACILITIES,” with $1.57 billion across 62 actions. This indicates a highly focused procurement profile centered on government-owned, contractor-operated R&D facility operations. No other PSCs are reflected in the provided row set, so the observed spend is fully concentrated in this 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,571,767,729.15 1.57 billion 62

Insight

In the 1-year window, FY 2025 accounts for the full observed obligation total of $1.57 billion across 62 awards, indicating that the activity is entirely concentrated in a single fiscal year. The average obligation per award is approximately $25.4 million, suggesting a relatively high-value award distribution rather than a large number of small awards. No multi-year dispersion is present in the provided data.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.