This page summarizes obligation activity for award number N0002418C2130 within agency ID 9700 over the last 5 years. The award shows 103 actions and total obligated amounts of 8.44 billion.
Award Number
Award Number 9700 / N0002418C2130 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number N0002418C2130 under agency ID 9700, covering the last 5 years of obligation activity.
Totals reflect the provided analysis window and may differ from other reporting views due to rounding and source aggregation.
Overview
Award number N0002418C2130 is associated with agency ID 9700 and shows 103 recorded actions in the last 5 years. Total obligated value is 8,437,160,554.86, with an average action value of 81,914,180.14.
How to use this page
Use this page to review the award-level obligation profile for N0002418C2130 and compare action volume with total dollars obligated. The figures support quick screening of scale and activity across the selected 5-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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002418C2130'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 8,437,160,554.86 | 8.44 billion | 103 |
Insight
Within the 5-year window for award PIID N0002418C2130 under agency ID 9700, obligations are concentrated in a single reporting entity: the DEPT OF THE NAVY. The Navy accounts for $8.44 billion across 103 awards, indicating that recorded activity is highly concentrated rather than broadly distributed across agencies. This pattern suggests the award is substantively tied to Navy execution and obligation volume.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002418C2130'
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 |
|---|---|---|---|---|
| FLUOR MARINE PROPULSION, LLC | 81QQ2 | 8,437,160,554.86 | 8.44 billion | 103 |
Insight
Obligations for PIID N0002418C2130 are fully concentrated with FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2) over the 5-year window, indicating a single-vendor award profile for this action. The vendor accounts for $8.44 billion across 103 awards, which reflects a sustained and highly concentrated obligation pattern rather than broad vendor distribution.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002418C2130'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 8,437,160,554.86 | 8.44 billion | 103 |
Insight
For award PIID N0002418C2130 over the past 5 years, obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $8.44 billion across 103 awards, indicating a highly concentrated procurement 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002418C2130'
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 |
|---|---|---|---|---|
| 4470 | NUCLEAR REACTORS | 8,437,160,554.86 | 8.44 billion | 103 |
Insight
Over the 5-year window, obligations for award N0002418C2130 are fully concentrated in PSC 4470, Nuclear Reactors, with $8.44 billion obligated across 103 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards alongside the obligated amount suggests sustained activity in this product/service category rather than a one-time transaction.
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 = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002418C2130'
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 | 1,980,811,262.15 | 1.98 billion | 19 |
| 2022 | 1,278,215,138.75 | 1.28 billion | 21 |
| 2023 | 1,610,594,547.17 | 1.61 billion | 19 |
| 2024 | 1,565,302,346.61 | 1.57 billion | 18 |
| 2025 | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
Obligations for PIID N0002418C2130 remained consistently high over the five-year window, ranging from 1.28 billion to 2.00 billion annually, with no sustained directional trend. After a dip in 2022, obligations increased in 2023 and stayed near 1.57 billion in 2024 before rising to 2.00 billion in 2025. Award counts were relatively stable at 18 to 21 through 2024, then increased to 26 in 2025, indicating a broader distribution of activity 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.