Federal Contractor

FLUOR MARINE PROPULSION, LLC Federal Contract Obligations (Last 5 Years)

Federal procurement profile for FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2, UEI CWHMVCX7K1N6) covering $17.72 billion in obligated awards over the last 5 years.

FLUOR MARINE PROPULSION, LLC recorded 195 award actions totaling $17,716,669,724.17 in the last 5 years, with an average action value of $90,854,716.53. Most obligations were concentrated in the Department of Energy and the Department of the Navy, and all reported obligations fell under NAICS 541715.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last 5 years of readable FPDS obligations and may differ from agency or contract-level totals due to rounding and reporting updates.

CAGE Code
81QQ2
UEI
CWHMVCX7K1N6
Total Obligated
17.72 billion
17,716,669,724.17
Award Actions
195
Average Action Value
90,854,716.53

About FLUOR MARINE PROPULSION, LLC federal contract activity

FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2, UEI CWHMVCX7K1N6) recorded 17.72 billion in obligated awards across 195 actions over the last 5 years, with an average award value of 90.85 million. The profile indicates a high-dollar, low-volume contracting pattern consistent with specialized technical work rather than broad transactional procurement.

Agency mix and customer concentration

Obligations are concentrated in two agencies: the Department of Energy at 9.28 billion across 92 awards and the Department of the Navy at 8.44 billion across 103 awards. The near-even split suggests the vendor supports distinct but comparably significant missions across energy and naval customers.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), accounting for the full 17.72 billion and all 195 awards. This indicates a highly focused contracting footprint centered on R&D services.

Annual contract trend over the analysis window

Annual obligations remained elevated and relatively stable, ranging from 2.92 billion in 2022 to 3.93 billion in 2025. The pattern shows sustained multi-year demand with no material collapse, and 2025 currently represents the high point in the window provided.

How to interpret this page

This summary uses FPDS obligation data for the last 5 years tied to CAGE 81QQ2 and UEI CWHMVCX7K1N6. Metrics reflect reported award obligations and counts in the provided dataset; agency and NAICS observations are limited to the supplied aggregates and do not infer information beyond those records.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '81QQ2'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 9,279,509,169.31 9.28 billion 92
1700 DEPT OF THE NAVY 8,437,160,554.86 8.44 billion 103

Insight

Over the last 5 years, FLUOR MARINE PROPULSION, LLC’s obligations are highly concentrated in two agencies, with the Department of Energy accounting for $9.28 billion across 92 awards and the Department of the Navy accounting for $8.44 billion across 103 awards. These two agencies together represent the full reported obligation total of $17.72 billion across 195 awards, indicating a narrow agency distribution. The award counts and dollars are nearly balanced between the two agencies, with the Navy slightly higher in award volume and DOE slightly higher in obligated value.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '81QQ2'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 17,716,669,724.17 17.72 billion 195

Insight

Over the last 5 years, FLUOR MARINE PROPULSION, LLC’s obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). The vendor recorded 195 awards totaling $17.72 billion, indicating a highly concentrated procurement profile with an average award value of approximately $90.9 million. This pattern suggests sustained reliance on a single NAICS category rather than a diversified set of business lines.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '81QQ2'
        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 DESC
Year Total Obligated Readable Award Actions
2025 3,931,933,073.87 3.93 billion 47
2024 3,121,496,099.65 3.12 billion 38
2023 3,832,279,788.73 3.83 billion 37
2022 2,921,736,760.26 2.92 billion 40
2021 3,909,224,001.66 3.91 billion 33

Insight

FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2) obligated $17.72 billion across 195 awards over the last 5 years, averaging about $90.9 million per award. Annual obligations were relatively stable at a high level, ranging from $2.92 billion to $3.93 billion, with no sustained upward or downward trend. Award activity was also steady, varying from 33 to 47 awards per year, indicating a concentrated but consistent contract flow across the period.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.