This page presents the award-level procurement record for PIID N0002418C2130 within agency ID 9700. Over the last 10 years, the award shows 143 actions and total obligated amount of 13.42 billion.
Award Number
Award Number 9700 / N0002418C2130 Federal Contract Action Summary (Last 10 Years)
Federal procurement profile for award number N0002418C2130 under agency ID 9700, summarizing obligations and actions over the last 10 years.
Figures reflect the analysis window of the last 10 years; total obligated exact is 13423922813.07 and average action value is 93873586.11.
Overview
The award record for N0002418C2130 shows 143 actions in the last 10 years, with total obligated funding of 13.42 billion. The exact obligated total is 13423922813.07, and the average action value is 93873586.11.
How to use this page
Use this page to review the award-level obligation history tied to PIID N0002418C2130. The figures provide a concise view of total funding volume, action frequency, and average action size for the selected 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 = '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 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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 13,423,922,813.07 | 13.42 billion | 143 |
Insight
For PIID N0002418C2130 over the 10-year window, obligations are fully concentrated within the Department of the Navy. The Navy accounts for $13.42 billion across 143 awards, indicating a highly concentrated award distribution with no other agencies represented in this result set. This pattern suggests the activity is principally Navy-funded and Navy-managed over the period reviewed.
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 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 |
|---|---|---|---|---|
| FLUOR MARINE PROPULSION, LLC | 81QQ2 | 13,423,922,813.07 | 13.42 billion | 143 |
Insight
FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2) accounts for the only listed vendor under this award, with $13.42 billion obligated across 143 awards over the 10-year window. This indicates complete concentration of obligated value in a single vendor in the provided top-vendor view. The award history suggests sustained, repeated contracting activity with that vendor rather than a one-time obligation pattern.
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 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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 13,423,922,813.07 | 13.42 billion | 143 |
Insight
All reported obligations under this award are concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), totaling $13.42 billion across 143 awards. This indicates the award activity is fully focused in a single technical R&D category, 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 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 |
|---|---|---|---|---|
| 4470 | NUCLEAR REACTORS | 13,423,922,813.07 | 13.42 billion | 143 |
Insight
For PIID N0002418C2130 over the 10-year window, obligations are fully concentrated in PSC 4470, Nuclear Reactors. This single PSC accounts for $13.42 billion across 143 awards, indicating a highly specialized procurement profile with no visible diversification across other product or service categories in the provided data. The distribution suggests sustained emphasis on nuclear reactor-related requirements within this award record.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2018 | 2,404,327,465.20 | 2.40 billion | 8 |
| 2019 | 1,252,269,632.89 | 1.25 billion | 14 |
| 2020 | 1,330,165,160.12 | 1.33 billion | 18 |
| 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 are distributed across all observed years, with annual totals ranging from $1.25 billion to $2.40 billion and no sustained monotonic increase or decline. The highest obligation year is 2018 at $2.40 billion, followed by another elevated year in 2025 at $2.00 billion, while 2019, 2020, 2022, 2023, and 2024 cluster near the $1.25 billion to $1.61 billion range. Award counts generally trend upward over the period, peaking at 26 in 2025, indicating a broader distribution of obligation activity even where annual dollar volume is comparatively moderate.
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.