This page summarizes federal procurement activity for award number DEAC0506OR23177 over the last 10 years. The record shows 194 award actions and total obligations of $1,824,031,072.06, with an average action value of $9,402,222.02.
Award Number
Award Number 8900 / DEAC0506OR23177 Federal Contract Action Summary (Last 10 Years)
FPDS award record for PIID DEAC0506OR23177 under Agency ID 8900, covering the last 10 years of obligations and award actions.
Figures reflect the provided analysis window and may change if the underlying award record is updated.
Overview
Over the last 10 years, award number DEAC0506OR23177 accumulated $1,824,031,072.06 in obligations across 194 actions. That produces an average action value of $9,402,222.02 for the period. The page is tied to Agency ID 8900 and presents the award as a single procurement record.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for PIID DEAC0506OR23177. It is most useful for comparing activity over time, checking the scale of obligations, and identifying whether the record has a concentrated or distributed action pattern within the 10-year window.
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 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 | 1,824,031,072.06 | 1.82 billion | 194 |
Insight
For PIID DEAC0506OR23177 over the 10-year window, obligations are entirely concentrated within the Department of Energy (Agency 8900). The award reflects 194 recorded obligations totaling $1.82 billion, indicating a highly concentrated funding profile with no diversification across other agencies in the provided data.
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 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 |
|---|---|---|---|---|
| JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY | 48VY8 | 1,664,312,832.49 | 1.66 billion | 166 |
| JEFFERSON SCIENCE ASSOCIATES LIMITED LIABILITY COMPANY A SURA/CSC COMPANY | 159,718,239.57 | 159.72 million | 28 |
Insight
Award activity under PIID DEAC0506OR23177 is highly concentrated with Jefferson Science Associates LLC A SURA/CSC Company. One row with CAGE 48VY8 accounts for $1.66 billion across 166 awards, while a second row for the same vendor name without a CAGE accounts for an additional $159.72 million across 28 awards. Combined, the vendor represents the clear dominant recipient in this 10-year window, indicating sustained award concentration to a single contractor identity.
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 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 | 1,824,031,072.06 | 1.82 billion | 194 |
Insight
The award is fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. Over the 10-year window, this category accounts for $1.82 billion across 194 awards, indicating a sustained and highly focused procurement profile. No other NAICS codes are present in the provided rows, so the award activity is not diversified across industries.
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 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 | 1,824,031,072.06 | 1.82 billion | 194 |
Insight
Obligations for this award are fully concentrated in PSC M181, OPER OF GOVT R&D GOCO FACILITIES, with $1.82 billion across 194 actions over the 10-year window. This indicates a highly focused procurement profile centered on operation of government-owned, contractor-operated R&D facilities rather than a diversified mix of product or service categories.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2016 | 159,721,617.00 | 159.72 million | 26 |
| 2017 | 85,792,898.08 | 85.79 million | 19 |
| 2018 | 136,231,389.36 | 136.23 million | 18 |
| 2019 | 137,406,727.49 | 137.41 million | 20 |
| 2020 | 158,266,583.51 | 158.27 million | 23 |
| 2021 | 177,871,481.00 | 177.87 million | 21 |
| 2022 | 250,817,467.17 | 250.82 million | 17 |
| 2023 | 250,132,054.35 | 250.13 million | 14 |
| 2024 | 192,485,123.63 | 192.49 million | 14 |
| 2025 | 275,305,730.47 | 275.31 million | 22 |
Insight
Obligations for PIID DEAC0506OR23177 were generally in the $85.79 million to $275.31 million range over the 10-year window, with a noticeable increase after 2020. Annual obligations peaked in 2025 at $275.31 million across 22 awards, following similarly high levels in 2022 and 2023 at about $250 million each, while the lowest level occurred in 2017 at $85.79 million across 19 awards. Award counts were highest in 2016 and 2025, but did not move in lockstep with obligated dollars, indicating some year-to-year concentration in funding rather than a steady volume trend.
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.