This page presents the federal procurement profile for award number DEAC5207NA27344 in agency ID 8900 across the last 5 years. The record shows 147 actions and total obligated dollars of 15.98 billion.
Award Number
Award Number 8900 / DEAC5207NA27344 Federal Contract Action Summary (Last 5 Years)
FPDS award record for award number DEAC5207NA27344 under agency ID 8900, summarizing obligations and actions over the last 5 years.
Totals are based on the provided 5-year analysis window and reflect a total obligated exact value of 15975246939.69 with an average action value of 108675149.25.
Overview
This award record summarizes procurement activity associated with PIID DEAC5207NA27344 for agency ID 8900 over the last 5 years. The record includes 147 award actions and a total obligated amount of 15,975,246,939.69, with an average action value of 108,675,149.25.
How to use this page
Use this page to review the scale and cadence of obligation activity tied to the award number within the stated analysis window. The figures support basic award-level comparison, trend review, and identification of high-value actions without adding information beyond the recorded totals.
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 = 'DEAC5207NA27344'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 | 15,975,246,939.69 | 15.98 billion | 147 |
Insight
For the 5-year period, obligations for PIID DEAC5207NA27344 are entirely concentrated within the Department of Energy, which accounts for $15.98 billion across 147 awards. This indicates a fully single-agency obligation profile, with no distribution across other agencies in the provided data. The concentration suggests this award activity is heavily associated with DOE funding and management over the review window.
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 = 'DEAC5207NA27344'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY | 4K7L1 | 15,975,246,939.69 | 15.98 billion | 147 |
Insight
For award DEAC5207NA27344 over the last 5 years, obligations are highly concentrated in a single vendor. LAWRENCE LIVERMORE NATIONAL SECURITY LIMITED LIABILITY COMPANY (CAGE 4K7L1) accounts for $15.98 billion across 147 awards, indicating sustained reliance on one contractor rather than a diversified vendor base.
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 = 'DEAC5207NA27344'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 | 15,975,246,939.69 | 15.98 billion | 147 |
Insight
Over the last 5 years, obligations for PIID DEAC5207NA27344 are fully concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This NAICS accounts for $15.98 billion across 147 awards, indicating a narrow and highly concentrated award profile within the observed period.
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 = 'DEAC5207NA27344'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 |
|---|---|---|---|---|
| AZ11 | R&D- OTHER RESEARCH AND DEVELOPMENT (BASIC RESEARCH) | 15,975,246,939.69 | 15.98 billion | 147 |
Insight
Over the 5-year window, award activity for PIID DEAC5207NA27344 is fully concentrated in PSC AZ11, R&D - Other Research and Development (Basic Research). The identified PSC accounts for $15.98 billion across 147 awards, indicating a highly concentrated obligation profile with no diversification reflected in this section.
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 = 'DEAC5207NA27344'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2021 | 3,211,891,536.32 | 3.21 billion | 26 |
| 2022 | 2,522,292,379.34 | 2.52 billion | 31 |
| 2023 | 3,259,883,063.29 | 3.26 billion | 28 |
| 2024 | 3,019,255,350.66 | 3.02 billion | 30 |
| 2025 | 3,961,924,610.08 | 3.96 billion | 32 |
Insight
Obligations for PIID DEAC5207NA27344 were consistently high over the 5-year window, ranging from $2.52 billion in 2022 to $3.96 billion in 2025. After a decline in 2022, annual obligations increased in 2023, dipped modestly in 2024, and then rose sharply in 2025 to the period high. Award volume was relatively stable at 26 to 32 awards per year, indicating that year-to-year obligation changes were driven more by award size than by a material change in award count.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.