Award Number

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

Procurement analysis for award number DEAC0276SF00515 under agency ID 8900 during the last full year.

This page summarizes award activity for PIID DEAC0276SF00515 using the last full year of available data. The award shows 48 actions and $746.15 million in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is $746,148,479.30 across 48 award actions, for an average action value of $15,544,759.99.

Agency ID
8900
PIID
DEAC0276SF00515
Type
Award
Total Obligated
746.15 million
746,148,479.30
Actions
48
Average Action Value
15,544,759.99

Overview

The award record for DEAC0276SF00515 under agency ID 8900 totals $746,148,479.30 in obligated value across 48 actions. The average action value is $15,544,759.99, which indicates substantial activity over the analysis window. This page is limited to the provided award-level metrics for the last full year.

How to use this page

Use this page to review the scale and frequency of award activity tied to PIID DEAC0276SF00515. The figures support quick comparison against other awards by total obligated value, action count, and average action size.

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 = 'DEAC0276SF00515'
    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 746,148,479.30 746.15 million 48

Insight

Within the 1-year window for PIID DEAC0276SF00515, obligations are fully concentrated in a single top agency: the Department of Energy, with $746.15 million across 48 awards. This indicates the award activity is entirely concentrated within one agency rather than distributed across multiple agencies. The volume of awards alongside the total obligated amount suggests sustained activity within the agency over the period.

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 = 'DEAC0276SF00515'
        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
STANFORD UNIVERSITY 1KN27 746,148,479.30 746.15 million 48

Insight

STANFORD UNIVERSITY is the sole top vendor listed for this award over the past year, indicating complete concentration of obligations with a single recipient in the provided results. The vendor accounts for $746.15 million across 48 awards, suggesting a high-volume, recurring funding relationship rather than a one-time obligation. No distribution across additional vendors is reflected in the provided rows.

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 = 'DEAC0276SF00515'
    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 746,148,479.30 746.15 million 48

Insight

For PIID DEAC0276SF00515 over the 1-year window, obligations are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This category accounts for $746.15 million across 48 awards, indicating a highly concentrated award profile with all reported activity in a single NAICS code. The distribution suggests the award is entirely aligned to R&D activity within this classification.

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 = 'DEAC0276SF00515'
    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 746,148,479.30 746.15 million 48

Insight

Obligations are fully concentrated in PSC M181, Operating of Government R&D GOCO Facilities, with $746.15 million across 48 awards in the last year. This indicates a highly focused procurement profile for this award, with no evidence of PSC diversification within the provided data. The average obligation per award is substantial, consistent with large recurring facility operations activity.

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 = 'DEAC0276SF00515'
    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 746,148,479.30 746.15 million 48

Insight

Over the 1-year window, this award recorded 48 actions in FY 2025 with total obligated funding of $746.15 million. Obligation activity is concentrated in a single fiscal year, indicating no observable year-over-year dispersion within the provided window. The combination of substantial obligated value and a moderate action count suggests relatively high-dollar activity per award action.

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.