BATTELLE MEMORIAL INSTITUTE's federal procurement record over the last 5 years is dominated by obligations from the Department of Energy, with 324 actions totaling 7.77 billion. The activity is concentrated in NAICS 541710 for research and development in the physical, engineering, and life sciences, with a small offsetting negative amount in a single FDA action.
Federal Contractor
BATTELLE MEMORIAL INSTITUTE Federal Contract Obligations (Last 5 Years)
BATTELLE MEMORIAL INSTITUTE, CAGE 1A453, UEI CWKJEXDG79A7, received 325 award actions totaling 7.77 billion over the last 5 years.
Totals reflect the stated analysis window and may include a small negative obligation in one award record.
About BATTELLE MEMORIAL INSTITUTE federal contract activity
BATTELLE MEMORIAL INSTITUTE recorded $7.77 billion in obligated awards across 325 awards in the last 5 years, with an average award value of $23.91 million. Activity is highly concentrated, indicating a small number of large federal actions rather than broad procurement spread.
Agency mix and customer concentration
The Department of Energy accounts for essentially all observed obligations, with $7.77 billion across 324 awards. The only other recorded agency is the Food and Drug Administration, with a single negative obligation of $950.48, which is immaterial relative to the overall profile.
Industry profile based on NAICS activity
Awarding is overwhelmingly concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which matches the full positive obligation total and 324 awards. A single negative adjustment appears under NAICS 541712, but it does not materially affect the vendor’s overall category mix.
Annual contract trend over the analysis window
Annual obligations were strong and relatively stable throughout the period, ranging from $1.41 billion to $1.71 billion. The peak occurred in 2023 at $1.71 billion, followed by $1.68 billion in 2024 and $1.57 billion in 2025, while 2021 and 2022 each held near $1.41 billion.
How to interpret this page
This summary is based on FPDS-observed obligations for the last 5 years using the vendor identifiers CAGE 1A453 and UEI CWKJEXDG79A7. Totals, counts, agency concentration, NAICS concentration, and annual trend are drawn directly from the provided analysis window and reflect obligated dollars, including the small negative adjustment reported in 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__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 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 | 7,769,425,476.66 | 7.77 billion | 324 |
| 7524 | FOOD AND DRUG ADMINISTRATION | -950.48 | -950.48 | 1 |
Insight
Over the last 5 years, BATTELLE MEMORIAL INSTITUTE’s obligations are overwhelmingly concentrated at the Department of Energy, which accounts for essentially the full $7.77 billion in recorded obligations across 324 of 325 awards. The only other reported agency relationship is a single, de minimis negative obligation with the Food and Drug Administration (-$950.48), which does not materially affect the overall distribution. This indicates a highly concentrated federal customer base with near-total dependence on one agency.
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 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 |
|---|---|---|---|---|
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | 7,769,425,476.66 | 7.77 billion | 324 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | -950.48 | -950.48 | 1 |
Insight
Over the last 5 years, BATTELLE MEMORIAL INSTITUTE’s obligations are overwhelmingly concentrated in NAICS 541710, which accounts for 324 of 325 awards and essentially all of the reported $7.77 billion in obligations. NAICS 541712 appears only once and is associated with a negligible negative obligation of $950.48, indicating no material diversification beyond the primary research and development category. This pattern reflects a highly concentrated obligation profile centered on physical, engineering, and life sciences R&D.
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 5 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 |
Insight
Over the last 5 years, BATTELLE MEMORIAL INSTITUTE obligated $7.77 billion across 325 awards, averaging $23.9 million per award. Annual obligations were relatively stable from 2021 through 2023 at about $1.41 billion to $1.71 billion, then increased further in 2024 and remained elevated in 2025. Award counts were distributed fairly evenly, ranging from 60 to 75 per year, indicating sustained activity rather than concentration in a single fiscal 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.