This page summarizes federal procurement activity for award number N0002418C2130 for the last full year. The award records 26 actions and $2,002,237,260.18 in total obligated amount, with an average action value of $77,009,125.39.
Award Number
Award Number 9700 / N0002418C2130 Federal Contract Action Summary (Last Year)
Award number N0002418C2130 under Agency ID 9700 shows 26 recorded award actions and $2.00 billion obligated in the last full year.
Total obligated values are shown in both readable form and exact dollars for the same analysis window.
Overview
For the last full year, award number N0002418C2130 is associated with 26 award actions and total obligated dollars of $2,002,237,260.18. The average obligated value per action is $77,009,125.39, indicating a high-value action history within the analysis window.
How to use this page
Use this page to review the scale of obligated spending tied to award number N0002418C2130 under Agency ID 9700. The figures provide a quick summary of action volume and average action value for the last full year without adding assumptions 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 = '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 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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
For award PIID N0002418C2130 over the 1-year window, obligations are fully concentrated in DEPT OF THE NAVY (agency 1700). The reported obligated amount is $2.00 billion across 26 awards, indicating a highly concentrated funding profile tied to a single agency. No other top-agency recipients are present in the provided rows, so the observed distribution is entirely single-agency.
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 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 MARINE PROPULSION, LLC | 81QQ2 | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
Obligations for PIID N0002418C2130 in the 1-year window are fully concentrated with FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2), which received $2.00 billion across 26 awards. This indicates a highly concentrated vendor distribution with all reported obligations tied to a single contractor in the provided results. The award count suggests repeated funding actions or multiple contract actions within the same vendor relationship rather than a broad supplier 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 = '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 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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
Obligations for this award are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $2.00 billion obligated across 26 awards in the 1-year window. This indicates a highly focused obligation pattern with no diversification across additional NAICS codes in the provided data. The distribution suggests this activity is dominated by a single research and development category.
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 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 |
|---|---|---|---|---|
| 4470 | NUCLEAR REACTORS | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
Obligations for PIID N0002418C2130 are fully concentrated in PSC 4470, Nuclear Reactors, with $2.00 billion across 26 awards in the 1-year window. This indicates a highly focused procurement profile with no observed diversification across PSCs in the provided data. The award count suggests repeated activity within the same product/service category rather than broad category dispersion.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 2,002,237,260.18 | 2.00 billion | 26 |
Insight
For PIID N0002418C2130 over the 1-year window, obligations are concentrated entirely in FY 2025, with $2.00 billion obligated across 26 awards. This indicates activity is highly concentrated in a single fiscal year rather than distributed across multiple years. The average obligation level suggests a small number of large awards drove the total.
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.