Federal Contractor

UT BATTELLE LIMITED LIABILITY COMPANY Federal Contract Obligations (Last 5 Years)

UT BATTELLE LIMITED LIABILITY COMPANY recorded 191 federal award actions and 13.01 billion in obligations over the last 5 years, led by Department of Energy activity.

UT BATTELLE LIMITED LIABILITY COMPANY (CAGE 1PW69, UEI ZLHJJ57QA2H8) shows nearly all obligated federal spend in the Department of Energy portfolio, with 189 of 191 actions and 13.01 billion obligated in the last five years. The vendor’s activity is concentrated in NAICS 561210 facilities support services, with small outlying obligations under NIH and the Department of the Army.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect obligated amounts and award actions in the last 5 years and may differ from other FPDS views due to rounding and data timing.

CAGE Code
1PW69
UEI
ZLHJJ57QA2H8
Total Obligated
13.01 billion
13,008,308,443.77
Award Actions
191
Average Action Value
68,106,326.93

About UT BATTELLE LIMITED LIABILITY COMPANY federal contract activity

UT BATTELLE LIMITED LIABILITY COMPANY (CAGE 1PW69, UEI ZLHJJ57QA2H8) received $13.01 billion in obligated funding across 191 awards over the last 5 years, for an average award value of $68.11 million. The profile indicates a highly concentrated federal contracting footprint with activity overwhelmingly tied to a single civilian department.

Agency mix and customer concentration

The Department of Energy accounts for essentially all activity, with $13.01 billion and 189 of 191 awards. The only other recorded obligations are limited and isolated: $15.65 thousand from the National Institutes of Health and $6.81 thousand from the Department of the Army. This distribution shows minimal agency diversification and a clear dependence on DOE-related work.

Industry profile based on NAICS activity

NAICS 561210, Facilities Support Services, dominates the vendor’s profile with $13.01 billion and 189 awards. The remaining obligations are negligible and appear in NAICS 325412 and 541715, each with one award and very small dollar value. The mix indicates that the vendor’s federal business is concentrated in facilities support, with only incidental activity elsewhere.

Annual contract trend over the analysis window

Annual obligations remained in a narrow band between $2.34 billion and $2.87 billion across 2021 through 2025. The peak occurred in 2023 at $2.87 billion, followed by a slight decline in 2024 and a rebound to $2.75 billion in 2025. Award counts were highest in 2021 and generally lower in subsequent years, suggesting somewhat larger awards in the later period.

How to interpret this page

This summary is based on FPDS obligation data for the last 5 years and reflects observed award counts, obligated dollars, and category groupings reported in the provided dataset. Totals and averages are not normalized for inflation, contract vehicle structure, or modifications beyond the recorded FPDS obligations. Agency and NAICS references are limited to the top values supplied in the analysis window.

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 = '1PW69'
        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 13,008,285,986.80 13.01 billion 189
7529 NATIONAL INSTITUTES OF HEALTH 15,650.00 15.65 thousand 1
2100 DEPT OF THE ARMY 6,806.97 6.81 thousand 1

Insight

Over the last 5 years, UT BATTELLE LIMITED LIABILITY COMPANY’s obligations are overwhelmingly concentrated with the Department of Energy, which accounts for 189 of 191 awards and $13.01 billion of the $13.01 billion total obligated. The remaining activity is minimal and dispersed across two other agencies: the National Institutes of Health with one award totaling $15.65 thousand and the Department of the Army with one award totaling $6.81 thousand. This pattern indicates a highly concentrated vendor-agency relationship with limited non-DOE federal business.

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 = '1PW69'
        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
561210 FACILITIES SUPPORT SERVICES 13,008,285,986.80 13.01 billion 189
325412 PHARMACEUTICAL PREPARATION MANUFACTURING 15,650.00 15.65 thousand 1
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 6,806.97 6.81 thousand 1

Insight

Over the last 5 years, UT BATTELLE LIMITED LIABILITY COMPANY’s obligated dollars are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which accounts for about 13.01 billion across 189 of 191 awards. The remaining obligations are negligible by comparison, with only two additional NAICS codes recorded: 325412, Pharmaceutical Preparation Manufacturing, at 15.65 thousand in one award, and 541715, R&D in the physical, engineering, and life sciences, at 6.81 thousand in one award. This distribution indicates a highly focused procurement profile with minimal diversification across NAICS categories.

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 = '1PW69'
        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 2,749,079,797.06 2.75 billion 38
2024 2,571,514,203.51 2.57 billion 31
2023 2,867,259,659.74 2.87 billion 36
2022 2,339,281,825.49 2.34 billion 40
2021 2,481,172,957.97 2.48 billion 46

Insight

Over the last 5 years, UT BATTELLE LIMITED LIABILITY COMPANY (CAGE 1PW69) obligated $13.01 billion across 191 awards, averaging $68.1 million per award. Annual obligations were relatively stable, ranging from $2.34 billion to $2.87 billion, with the highest level in 2023 and a similar level in 2025. Award counts were also dispersed across the period, peaking at 46 in 2021 and remaining between 31 and 40 in subsequent years, indicating a broad but steady workload rather than heavy concentration in a single year.

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.