Federal Contractor

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

Federal procurement summary for FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2, UEI CWHMVCX7K1N6) covering obligations, awards, agencies, and NAICS mix over the last 10 years.

Over the last 10 years, FLUOR MARINE PROPULSION, LLC recorded $26.83 billion in obligated federal awards across 279 actions, averaging $96.15 million per action. Spending is split almost evenly between the Department of the Navy and the Department of Energy, with all reported obligations classified under NAICS 541715.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the provided FPDS analysis window and should be read as obligated dollars and award actions, not contract value at completion.

CAGE Code
81QQ2
UEI
CWHMVCX7K1N6
Total Obligated
26.83 billion
26,825,971,833.95
Award Actions
279
Average Action Value
96,150,436.68

About FLUOR MARINE PROPULSION, LLC federal contract activity

FLUOR MARINE PROPULSION, LLC has received 279 FPDS-recorded awards over the last 10 years, with total obligated value of $26.83 billion and an average award value of $96.15 million. The vendor is identified in FPDS under CAGE 81QQ2 and UEI CWHMVCX7K1N6, indicating substantial federal contracting activity at scale.

Agency mix and customer concentration

Obligations are concentrated almost evenly between two agencies: the Department of the Navy at $13.42 billion across 143 awards and the Department of Energy at $13.40 billion across 136 awards. This split suggests the vendor’s federal work is anchored in two large buyer relationships rather than a broad agency footprint.

Industry profile based on NAICS activity

All recorded obligations in the provided dataset fall under NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). That concentration indicates a highly specialized federal contracting profile centered on scientific and engineering R&D.

Annual contract trend over the analysis window

Annual obligations remain elevated and relatively consistent in the most recent years shown, ranging from $2.92 billion in 2022 to $3.93 billion in 2025. Award counts also stayed high, with 33 to 47 awards per year in the 2021–2025 period, pointing to sustained procurement activity rather than a one-time spike.

How to interpret this page

This summary is based on FPDS-observed awards attributed to FLUOR MARINE PROPULSION, LLC over the last 10 years, using the provided CAGE code and UEI for entity identification. Totals, averages, agency shares, NAICS concentration, and annual trends reflect only the data supplied in the analysis window and should be interpreted as FPDS-recorded obligations, not total company revenue.

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 10 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
1700 DEPT OF THE NAVY 13,423,922,813.07 13.42 billion 143
8900 ENERGY, DEPARTMENT OF 13,402,049,020.88 13.40 billion 136

Insight

Over the last 10 years, FLUOR MARINE PROPULSION, LLC has received $26.83 billion across 279 awards, with obligations highly concentrated in two agencies. The Department of the Navy accounts for $13.42 billion across 143 awards, while the Department of Energy accounts for $13.40 billion across 136 awards, indicating an essentially even split in funding between the two agencies. This distribution suggests the vendor’s federal activity is dominated by these two buyers, with no single agency materially outweighing the other.

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 10 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) 26,825,971,833.95 26.83 billion 279

Insight

Over the last 10 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 received 279 awards in this NAICS, totaling $26.83 billion, with an average award value of about $96.15 million. This indicates a highly concentrated procurement profile with no observable diversification across additional NAICS codes in the provided data.

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 10 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
2020 2,814,834,103.18 2.81 billion 40
2019 1,700,776,704.33 1.70 billion 29
2018 4,593,691,302.27 4.59 billion 15

Insight

FLUOR MARINE PROPULSION, LLC (CAGE 81QQ2) recorded 26.83 billion in obligated value across 279 awards over the last 10 years, averaging about 96.15 million per award. Annual obligations are concentrated in a relatively narrow band from 2020 through 2025, with most years ranging from 2.81 billion to 3.93 billion and award counts generally between 33 and 47. The highest annual obligated value in the period was 4.59 billion in 2018 on 15 awards, while the lowest was 1.70 billion in 2019, indicating a volatile earlier period followed by sustained higher-dollar activity.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.