Federal Contractor

BECHTEL MARINE PROPULSION CORPORATION Federal Contract Obligations (Last 10 Years)

BECHTEL MARINE PROPULSION CORPORATION has 62 federal award actions in the last 10 years, with $2.36 billion obligated across ENERGY and the Department of the Navy.

BECHTEL MARINE PROPULSION CORPORATION, CAGE 52YT1 and UEI RXSMGBN74NL7, received 62 award actions totaling $2,364,535,608.63 over the last 10 years. Most obligations were recorded with the Department of Energy and the Department of the Navy, led by facilities support services and physical sciences R&D work.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations were concentrated in 2017 and 2018, with a negative net amount recorded in 2019; totals and counts reflect the provided analysis window.

CAGE Code
52YT1
UEI
RXSMGBN74NL7
Total Obligated
2.36 billion
2,364,535,608.63
Award Actions
62
Average Action Value
38,137,671.10

About BECHTEL MARINE PROPULSION CORPORATION federal contract activity

BECHTEL MARINE PROPULSION CORPORATION (CAGE 52YT1, UEI RXSMGBN74NL7) recorded $2.36 billion in obligations across 62 FPDS awards over the last 10 years, with an average award value of $38.14 million. The profile indicates a concentrated federal contracting footprint supported by relatively few, high-value awards rather than a broad transaction base.

Agency mix and customer concentration

Obligations are split primarily between the Department of Energy and the Department of the Navy. Energy accounts for $1.44 billion across 25 awards, while the Navy accounts for $929.04 million across 37 awards, indicating that the vendor’s work is anchored in two major defense and energy-related customer relationships.

Industry profile based on NAICS activity

The NAICS mix mirrors the agency concentration, led by 561210 Facilities Support Services at $1.44 billion across 25 awards and 541712 Research and Development in the Physical, Engineering, and Life Sciences at $929.04 million across 37 awards. This suggests the vendor’s obligations are tied to specialized support and technical service requirements rather than diversified commercial categories.

Annual contract trend over the analysis window

Annual obligation data provided here is limited to 2017 through 2019 and shows a pronounced peak in 2017 at $2.21 billion across 32 awards, followed by a sharp decline to $206.63 million in 2018 across 28 awards. The 2019 figure is negative at -$54.97 million across 2 awards, which may reflect deobligations, modifications, or other contract adjustments rather than new award activity.

How to interpret this page

This summary is based on FPDS award records for the last 10 years and uses obligated dollars as reported. Agency, NAICS, and annual views reflect the supplied aggregate totals and award counts; the annual trend is shown only for the years provided in the source data. Negative obligated amounts are presented as reported and should be interpreted as adjustments, not added as positive award value.

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 = '52YT1'
        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
8900 ENERGY, DEPARTMENT OF 1,435,492,456.54 1.44 billion 25
1700 DEPT OF THE NAVY 929,043,152.09 929.04 million 37

Insight

Over the last 10 years, BECHTEL MARINE PROPULSION CORPORATION received $2.36 billion across 62 awards, with an average award value of $38.1 million. Obligations are concentrated in two agencies: the Department of Energy accounts for $1.44 billion across 25 awards, and the Department of the Navy accounts for $929.0 million across 37 awards. Together, these agencies represent the full reported obligation base, indicating a highly concentrated customer profile split between Energy and Navy requirements.

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 = '52YT1'
        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
561210 FACILITIES SUPPORT SERVICES 1,435,492,456.54 1.44 billion 25
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 929,043,152.09 929.04 million 37

Insight

Over the last 10 years, BECHTEL MARINE PROPULSION CORPORATION’s obligations are concentrated in two NAICS codes that account for the full reported total of $2.36 billion across 62 awards. NAICS 561210, Facilities Support Services, is the largest segment at $1.44 billion across 25 awards, or about 61% of total obligations. NAICS 541712, R&D in the physical, engineering, and life sciences, is also material at $929.04 million across 37 awards, representing about 39% of total obligations. This distribution indicates a two-line concentration with substantial activity in both support services and technical R&D work.

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 = '52YT1'
        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
2019 -54,973,892.06 -54.97 million 2
2018 206,633,294.53 206.63 million 28
2017 2,212,876,206.16 2.21 billion 32

Insight

Over the last 10 years, BECHTEL MARINE PROPULSION CORPORATION’s obligations are highly concentrated in 2017, when it received 2.21 billion across 32 awards, representing the dominant share of the period’s 2.36 billion total. Obligations fell sharply in 2018 to 206.63 million over 28 awards, then turned negative in 2019 at -54.97 million across 2 awards, indicating limited activity and downward volatility after the 2017 peak. The average award value of 38.14 million reflects a small number of high-value actions rather than a broad distribution of obligations.

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.