Federal Contractor

BATTELLE MEMORIAL INSTITUTE Federal Contract Obligations (Last 10 Years)

Federal procurement summary for BATTELLE MEMORIAL INSTITUTE (CAGE 1A453, UEI CWKJEXDG79A7) covering obligations, awards, agencies, and NAICS activity over the last 10 years.

Over the last 10 years, BATTELLE MEMORIAL INSTITUTE recorded 553 award actions with total obligations of $11.51 billion and an average action value of $20.81 million. Most of this activity came from the Department of Energy, with research and development in the physical, engineering, and life sciences accounting for nearly all obligated dollars.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable FPDS obligations for the stated analysis window and may include rounding differences versus exact values.

CAGE Code
1A453
UEI
CWKJEXDG79A7
Total Obligated
11.51 billion
11,509,220,330.64
Award Actions
553
Average Action Value
20,812,333.32

About BATTELLE MEMORIAL INSTITUTE federal contract activity

BATTELLE MEMORIAL INSTITUTE recorded $11.51 billion in obligated awards across 553 FPDS actions over the last 10 years, with an average award value of $20.81 million. The vendor is identified by CAGE 1A453 and UEI CWKJEXDG79A7. Its award profile is highly concentrated in a small number of large transactions.

Agency mix and customer concentration

The Department of Energy dominates the vendor’s federal footprint, accounting for $11.51 billion across 546 awards, or essentially all observed obligated value. Non-DOE activity is minimal, led by the Food and Drug Administration at $229.31 thousand across 4 awards and the Public Buildings Service at $88.15 thousand across 3 awards. This distribution indicates a sharply concentrated buyer base.

Industry profile based on NAICS activity

The vendor’s obligations are overwhelmingly tied to NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for $11.51 billion and 546 awards. The only other material NAICS entries are 541712 at $229.31 thousand across 4 awards and 541690 at $88.15 thousand across 3 awards. The mix is consistent with a research and development provider with limited diversification outside its core scientific contracting category.

Annual contract trend over the analysis window

Annual obligations over the most recent five years remained in a narrow band of roughly $1.41 billion to $1.71 billion. Funding peaked in 2023 at $1.71 billion, followed by $1.68 billion in 2024 and $1.57 billion in 2025, while award counts ranged from 60 to 75 per year. The pattern suggests sustained, high-value federal support rather than volatile, one-time spikes.

How to interpret this page

This profile summarizes FPDS-reported prime award obligations associated with BATTELLE MEMORIAL INSTITUTE over the last 10 years, using the provided CAGE and UEI identifiers. Agency and NAICS concentrations are based on total obligated dollars and award counts within the stated analysis window. Annual trend figures reflect obligated amounts by fiscal year for the years provided.

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 = '1A453'
        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 11,508,902,878.15 11.51 billion 546
7524 FOOD AND DRUG ADMINISTRATION 229,305.52 229.31 thousand 4
4740 PUBLIC BUILDINGS SERVICE 88,146.97 88.15 thousand 3

Insight

Over the last 10 years, BATTELLE MEMORIAL INSTITUTE’s obligations are highly concentrated with the Department of Energy, which accounts for 11.51 billion of 11.51 billion total obligated and 546 of 553 awards. The remaining obligations are minimal and dispersed across the Food and Drug Administration and the Public Buildings Service, at 229.31 thousand and 88.15 thousand respectively, each representing only a small share of total activity. This pattern indicates a strong dependence on a single agency relationship rather than broad federal distribution.

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 = '1A453'
        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
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 11,508,902,878.15 11.51 billion 546
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 229,305.52 229.31 thousand 4
541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES 88,146.97 88.15 thousand 3

Insight

Over the last 10 years, BATTELLE MEMORIAL INSTITUTE’s obligations are highly concentrated in NAICS 541710, which accounts for $11.51 billion across 546 awards and effectively represents nearly all reported obligated value. The remaining activity is minimal and dispersed across NAICS 541712 and 541690, together totaling less than $0.32 million across 7 awards. This indicates a very narrow procurement profile centered on research and development in the physical, engineering, and life sciences.

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 = '1A453'
        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 1,571,767,729.15 1.57 billion 62
2024 1,677,854,600.72 1.68 billion 60
2023 1,705,631,999.62 1.71 billion 66
2022 1,406,610,007.48 1.41 billion 75
2021 1,407,560,189.21 1.41 billion 62
2020 1,103,928,284.12 1.10 billion 64
2019 826,281,646.33 826.28 million 50
2018 1,152,907,096.55 1.15 billion 58
2017 656,590,623.46 656.59 million 55
2016 88,154.00 88.15 thousand 1

Insight

Over the last 10 years, BATTELLE MEMORIAL INSTITUTE received $11.51 billion across 553 awards, averaging $20.81 million per award. Obligations are concentrated in the most recent five years, with annual totals ranging from $1.10 billion to $1.71 billion from 2020 through 2025, compared with materially lower levels in 2017 through 2019 and a negligible amount in 2016. The peak obligation year was 2023 at $1.71 billion, followed by 2024 at $1.68 billion and 2025 at $1.57 billion, indicating sustained high funding with a modest decline after the recent peak. Award counts remain relatively steady in the 50s to 60s, rising to 75 in 2022, which suggests the funding increase is driven more by larger awards than by a substantial increase in award volume.

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.