Award Number

Award Number 8900 / DEAC2701RV14136 Federal Contract Action Summary (Last 5 Years)

Federal procurement profile for award DEAC2701RV14136 under agency 8900, showing obligations and action history over the last 5 years.

This award record covers PIID DEAC2701RV14136 for agency 8900. Over the last 5 years, it shows 107 actions and total obligated dollars of 3.60 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated value is 3,595,731,150.83 and average action value is 33,604,964.03 across the analysis window.

Agency ID
8900
PIID
DEAC2701RV14136
Type
Award
Total Obligated
3.60 billion
3,595,731,150.83
Actions
107
Average Action Value
33,604,964.03

Overview

This page summarizes award DEAC2701RV14136 for agency 8900 over the last 5 years. The record shows 107 award actions, with total obligated dollars of 3,595,731,150.83 and an average action value of 33,604,964.03. These figures describe the action history captured for this PIID in the selected window.

How to use this page

Use this page to review the award-level obligation total and action count for DEAC2701RV14136. The values support quick comparison across awards, trend review within the 5-year window, and identification of high-value action activity tied to agency 8900.

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 = 'DEAC2701RV14136'
    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 3,595,731,150.83 3.60 billion 107

Insight

All reported obligations for PIID DEAC2701RV14136 over the 5-year window are concentrated within the Department of Energy (Agency 8900). The award is fully attributable to a single agency, with $3.60 billion obligated across 107 actions/records, indicating a high concentration of activity within one organization rather than a distributed interagency footprint. This pattern suggests the award’s funding and execution are tightly centered in DOE.

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 = 'DEAC2701RV14136'
        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
BECHTEL NATIONAL, INC 1S307 3,595,731,150.83 3.60 billion 107

Insight

BECHTEL NATIONAL, INC is the only vendor listed for this award over the 5-year window, indicating complete concentration of obligated dollars and award activity in a single contractor. The vendor received 107 awards totaling $3.60 billion, suggesting a sustained and highly concentrated award relationship rather than a broad distribution across multiple vendors.

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 = 'DEAC2701RV14136'
    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
234930 INDUSTRIAL NONBUILDING STRUCTURE CONSTRUCTION 3,595,731,150.83 3.60 billion 107

Insight

Over the 5-year window, this award is entirely concentrated in NAICS 234930, Industrial Nonbuilding Structure Construction, with $3.60 billion obligated across 107 awards. This indicates a highly focused obligation profile with no observed NAICS diversification in the provided data. The volume of awards suggests repeated activity within the same construction category rather than broad spending across multiple industry sectors.

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 = 'DEAC2701RV14136'
    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
Y181 CONSTRUCT/R&D - GOCO FACILITIES 3,595,731,150.83 3.60 billion 107

Insight

Obligations for PIID DEAC2701RV14136 over the 5-year window are fully concentrated in PSC Y181, CONSTRUCT/R&D - GOCO FACILITIES. This PSC accounts for 107 awards and $3.60 billion in total obligations, indicating a highly concentrated mix with no evidence of distribution across other PSCs in the provided data.

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 = 'DEAC2701RV14136'
    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 949,448,321.09 949.45 million 28
2022 143,600,024.81 143.60 million 13
2023 787,512,595.17 787.51 million 21
2024 735,977,598.57 735.98 million 16
2025 979,192,611.19 979.19 million 29

Insight

Obligations for PIID DEAC2701RV14136 are uneven across the five-year window, with a low point in 2022 at $143.60 million across 13 awards and substantially higher levels in the other years. Funding rebounded in 2023 and 2024 to $787.51 million and $735.98 million, respectively, before rising to the period high of $979.19 million in 2025 across 29 awards. The pattern indicates a concentrated and volatile obligation stream, with both award volume and dollars increasing sharply in the most recent year.

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.