PSC Code

PSC 2840 Federal Contract Obligations (Last 10 Years)

PSC 2840 covers aircraft gas turbines and jet engines, prime moving components, and related parts, with 71.61 billion obligated across 50,959 awards in the last 10 years.

Obligations under PSC 2840 are concentrated in Navy aviation procurement, with the Department of the Navy accounting for 46.75 billion of the 71.61 billion total. Activity is also sizable across the Defense Logistics Agency and the Department of the Air Force, while annual obligations in the most recent five years ranged from 5.15 billion to 9.77 billion.

Generated at 03/21/2026

Analysis period: Last 10 years

Vendor and agency totals reflect FPDS award actions for the last 10 years and may include multiple records for the same company name or CAGE code.

PSC Code
2840
PSC Description
GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS
Total Obligated
71.61 billion
71,607,858,995.31
Award Actions
50,959
Average Action Value
1,405,205.34

About PSC 2840 federal contract activity

PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components, accounts for $71.61 billion in obligated awards across 50,959 awards over the last 10 years, with an average award value of $1.41 million. The volume and value profile indicates sustained procurement activity tied to aircraft propulsion systems and related components, with obligations concentrated in a relatively small set of high-dollar transactions alongside a large number of smaller awards.

Agency demand and leading federal buyers

The Department of the Navy is the dominant buyer in this PSC, with $46.75 billion obligated across 4,523 awards, representing the largest share of recorded activity. The Defense Logistics Agency follows with $10.60 billion and 39,311 awards, while the Department of the Air Force and Department of the Army account for $9.76 billion and $4.39 billion respectively; the U.S. Coast Guard is present but materially smaller at $187.91 million.

Vendor concentration and leading contractors

The vendor base is led by UNITED TECHNOLOGIES CORPORATION at $29.55 billion across 8,533 awards, followed by GENERAL ELECTRIC COMPANY at $10.31 billion across 7,325 awards. Additional entries show RAYTHEON TECHNOLOGIES CORPORATION at $7.22 billion and a second GENERAL ELECTRIC COMPANY record at $6.90 billion, indicating award activity distributed across multiple vendor identifiers and organizational names within the same industrial space.

Annual contract trend over the analysis window

Annual obligations in the visible recent years peaked at $9.77 billion in 2022 and remained high at $9.73 billion in 2023 before easing to $5.47 billion in 2024. Obligations then rose to $7.31 billion in 2025, while award counts stayed relatively stable in a narrow band of roughly 3,900 to 4,974 awards, suggesting continued demand with year-to-year variation in dollar intensity rather than transaction volume.

How to interpret this page

This summary is based on FPDS award records for PSC 2840 over the last 10 years and reflects obligated dollars and award counts only. Agency and vendor totals are reported as provided in the dataset, and vendor entries may reflect multiple identifiers for the same corporate family or name variants; no attempt was made to merge entities beyond the source data.

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__productOrServiceInformation__productOrServiceCode = '2840'
        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 46,749,134,871.35 46.75 billion 4,523
97AS DEFENSE LOGISTICS AGENCY 10,602,900,022.19 10.60 billion 39,311
5700 DEPT OF THE AIR FORCE 9,755,441,067.88 9.76 billion 2,974
2100 DEPT OF THE ARMY 4,387,932,559.02 4.39 billion 1,283
7008 U.S. COAST GUARD 187,912,387.00 187.91 million 813
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 28,893,887.46 28.89 million 23
1544 U.S. MARSHALS SERVICE 8,147,322.19 8.15 million 45
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 4,979,710.04 4.98 million 5
6920 FEDERAL AVIATION ADMINISTRATION 3,520,264.50 3.52 million 11
1900 STATE, DEPARTMENT OF 1,496,566.02 1.50 million 5

Insight

PSC 2840 obligations are highly concentrated over the last 10 years, with the Department of the Navy accounting for $46.75 billion, or about 65% of the $71.61 billion total. The Defense Logistics Agency is the second-largest obligating agency at $10.60 billion, but it leads by award volume with 39,311 awards, indicating a much more distributed pattern of smaller procurements. The Department of the Air Force ($9.76 billion) and Department of the Army ($4.39 billion) round out the primary defense demand base, while all other agencies individually account for relatively minor shares of total obligations.

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(anyHeavy(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
        contract_type = 1
        AND content__award__productOrServiceInformation__productOrServiceCode = '2840'
        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,
        content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
UNITED TECHNOLOGIES CORPORATION 52661 29,553,720,669.04 29.55 billion 8,533
GENERAL ELECTRIC COMPANY 99207 10,311,549,947.09 10.31 billion 7,325
RAYTHEON TECHNOLOGIES CORPORATION 52661 7,220,325,774.83 7.22 billion 1,083
GENERAL ELECTRIC COMPANY 07482 6,896,263,787.89 6.90 billion 1,461
UNITED TECHNOLOGIES CORPORATION 3,360,322,630.69 3.36 billion 661
ROLLS-ROYCE CORPORATION 63005 3,153,659,811.11 3.15 billion 2,382
RTX CORPORATION 52661 3,062,875,766.83 3.06 billion 40
CFM INTERNATIONAL, INC. 58828 2,673,761,964.87 2.67 billion 2,202
GENERAL ELECTRIC COMPANY 952,534,772.72 952.53 million 625
HONEYWELL INTERNATIONAL INC. 99193 749,373,266.47 749.37 million 657

Insight

PSC 2840 obligations are highly concentrated over the last 10 years, with the top vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661), accounting for 29.55 billion of 71.61 billion total obligated, or about 41% of the PSC total. The next largest vendors are GENERAL ELECTRIC COMPANY at 10.31 billion and RAYTHEON TECHNOLOGIES CORPORATION at 7.22 billion, indicating a vendor base dominated by a small number of suppliers. Several vendor names appear multiple times with different CAGE codes or blank CAGE entries, which suggests obligations are distributed across affiliated entities and legacy registrations rather than a single current vendor record.

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__productOrServiceInformation__productOrServiceCode = '2840'
        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 7,311,127,340.38 7.31 billion 3,901
2024 5,465,204,350.77 5.47 billion 4,142
2023 9,729,906,061.30 9.73 billion 4,472
2022 9,769,418,005.85 9.77 billion 4,379
2021 5,148,956,524.41 5.15 billion 4,974
2020 6,898,988,351.48 6.90 billion 5,232
2019 10,907,788,093.70 10.91 billion 6,511
2018 7,766,878,372.30 7.77 billion 7,200
2017 3,639,992,923.68 3.64 billion 5,505
2016 4,969,598,971.44 4.97 billion 4,643

Insight

PSC 2840 obligated $71.61 billion across 50,959 awards over the last 10 years, with an average award value of $1.41 million. Annual obligations were volatile rather than steadily trending, peaking at $10.91 billion in 2019 and remaining elevated in 2022-2023 at about $9.77 billion and $9.73 billion, respectively, before declining to $5.47 billion in 2024. Award counts were more stable than dollars, ranging from 3,901 in 2025 to 7,200 in 2018, indicating that year-to-year obligation swings were driven more by award value than by changes in transaction volume.

Use FPDS Query for deeper PSC analysis

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