Award Number

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

Federal procurement summary for award number DEAC0506OR23177 under agency ID 8900 for the last full year.

This award page summarizes obligation activity for PIID DEAC0506OR23177 during the last full year. The award recorded 22 actions and $275.31 million in total obligations.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided analysis window and reflect the exact obligated amount of $275,305,730.47.

Agency ID
8900
PIID
DEAC0506OR23177
Type
Award
Total Obligated
275.31 million
275,305,730.47
Actions
22
Average Action Value
12,513,896.84

Overview

PIID DEAC0506OR23177 shows 22 award actions in the last full year, with an exact total obligation of $275,305,730.47. The average action value was $12,513,896.84, which indicates substantial dollar amounts across the recorded actions. This page is scoped to award number and agency ID 8900 only.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected period. The figures support basic FPDS analysis of activity volume and funding concentration for award DEAC0506OR23177. No additional contract scope or performance details are inferred beyond the supplied data.

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 = 'DEAC0506OR23177'
    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 275,305,730.47 275.31 million 22

Insight

Within the 1-year window for award PIID DEAC0506OR23177, all reported obligation activity is concentrated in the Department of Energy (Agency 8900). The agency accounts for $275.31 million across 22 awards, indicating a single-agency distribution with no visible cross-agency spread in the provided data. This pattern suggests obligation activity is fully centered within DOE for this query 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 = 'DEAC0506OR23177'
        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
JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY 48VY8 275,305,730.47 275.31 million 22

Insight

Within the 1-year window for PIID DEAC0506OR23177, obligations are fully concentrated with a single vendor: JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY (CAGE 48VY8). This vendor accounts for $275.31 million across 22 awards, indicating repeated award activity and a highly concentrated obligation pattern for this action. No other vendors are present in the provided rows, so there is no evidence here of broader distribution across suppliers.

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 = 'DEAC0506OR23177'
    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 275,305,730.47 275.31 million 22

Insight

Over the past 1 year, obligations for award DEAC0506OR23177 were fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This category accounts for 100% of the reported obligation total, with 22 awards totaling $275.31 million. The distribution indicates a single-industry funding profile with no diversification across other NAICS codes in the provided data.

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 = 'DEAC0506OR23177'
    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 275,305,730.47 275.31 million 22

Insight

Within the 1-year window for award DEAC0506OR23177, PSC M181 (OPER OF GOVT R&D GOCO FACILITIES) accounts for all recorded obligated dollars in this section, totaling $275.31 million across 22 awards. This indicates a highly concentrated obligation pattern centered on government R&D GOCO facility operations. The award mix suggests recurring activity rather than a broad distribution across multiple PSCs.

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 = 'DEAC0506OR23177'
    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 275,305,730.47 275.31 million 22

Insight

For FY 2025, this award obligated $275.31 million across 22 actions, indicating a high-value but limited set of transactions within the 1-year window. Obligations are concentrated in a single year, so the recent funding profile is not distributed over multiple fiscal years and suggests a focused award activity pattern.

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.