Award Number

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

Award number DEAC3010CC40017 for agency 8900 shows 18 actions in the last full year and 250.72 million in obligated value.

This page summarizes federal award activity for award number DEAC3010CC40017 under agency ID 8900 over the last full year. The award recorded 18 actions and $250,720,847.40 in total obligated amount.

Generated at 03/20/2026

Analysis period: Last full year

Obligated values are shown using the provided exact total of 250720847.4 and a readable total of 250.72 million.

Agency ID
8900
PIID
DEAC3010CC40017
Type
Award
Total Obligated
250.72 million
250,720,847.40
Actions
18
Average Action Value
13,928,935.97

Overview

In the last full year, award number DEAC3010CC40017 had 18 recorded actions with total obligated funding of $250,720,847.40. The average action value was $13,928,935.97, which indicates substantial value across the recorded action history. This page is limited to the award identifier, agency ID, and provided obligation metrics.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for DEAC3010CC40017. It can support basic FPDS review, cross-checking of award activity, and comparison with other awards under agency ID 8900 for the same analysis 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 = 'DEAC3010CC40017'
    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 250,720,847.40 250.72 million 18

Insight

For PIID DEAC3010CC40017 over the 1-year window, all reported obligations are concentrated within the Department of Energy (Agency 8900). The agency accounts for $250.72 million across 18 awards, indicating a concentrated obligation profile within a single top agency. This distribution suggests the award activity is heavily centered on one agency rather than spread across multiple agencies.

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 = 'DEAC3010CC40017'
        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
FLUOR-B&W PORTSMOUTH LLC 5SMD3 250,720,847.40 250.72 million 18

Insight

Within the 1-year window for PIID DEAC3010CC40017 under agency 8900, obligated dollars are fully concentrated with a single vendor: FLUOR-B&W PORTSMOUTH LLC (CAGE 5SMD3). The vendor accounts for 18 awards totaling $250.72 million, indicating a highly concentrated award distribution for this instrument.

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 = 'DEAC3010CC40017'
    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
562910 REMEDIATION SERVICES 250,720,847.40 250.72 million 18

Insight

Obligations for PIID DEAC3010CC40017 in the 1-year window are fully concentrated in NAICS 562910, Remediation Services. The award records 18 obligations totaling $250.72 million, indicating a single-industry profile with no diversification across NAICS codes in this period. This concentration suggests the award’s activity is entirely aligned to remediation services.

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 = 'DEAC3010CC40017'
    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
P500 SALVAGE- DEMOLITION OF STRUCTURES/FACILITIES (OTHER THAN BUILDINGS) 250,720,847.40 250.72 million 18

Insight

All obligations in this 1-year window are concentrated in PSC P500, covering salvage and demolition of structures/facilities other than buildings. The PIID DEAC3010CC40017 reflects 18 awards totaling $250.72 million in this PSC, indicating a fully concentrated spend profile for the period.

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 = 'DEAC3010CC40017'
    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 250,720,847.40 250.72 million 18

Insight

Over the 1-year window, obligations for PIID DEAC3010CC40017 are concentrated entirely in FY2025, with $250.72 million obligated across 18 awards. This indicates a single-year funding profile rather than a multi-year trend, so year-over-year change cannot be assessed from the provided data. The average obligation per award is relatively high, suggesting obligations are distributed across a limited number of sizable actions rather than many small ones.

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.