BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY, CAGE 36EV6 and UEI HG7XL5RBNX55, received 155 award actions totaling $9,445,448,730.85 in the last 5 years. Nearly all obligations came from the Department of Energy and were concentrated in NAICS 541990, with annual obligations ranging from $1.49 billion to $2.08 billion.
Federal Contractor
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY Federal Contract Obligations (Last 5 Years)
Federal procurement profile for BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY showing $9.45 billion in obligations across 155 awards over the last 5 years.
Totals reflect obligated amounts in the selected 5-year analysis window, and the agency, NAICS, and annual breakdowns are based on the provided FPDS records.
About BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY federal contract activity
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY (CAGE 36EV6, UEI HG7XL5RBNX55) recorded $9.45 billion in obligations across 155 awards in the last 5 years, with an average award value of $60.94 million. The profile is highly concentrated in federal contracting, indicating a large, recurring award base rather than broad multi-agency diversification.
Agency mix and customer concentration
The Department of Energy accounts for essentially all activity, with $9.45 billion across 152 awards, making it the dominant obligating agency by a wide margin. Federal Acquisition Service contributed a single small award of $4.80 thousand, while the Department of the Air Force shows two awards with no obligated dollars in the analysis window.
Industry profile based on NAICS activity
The vendor’s workload is overwhelmingly classified under NAICS 541990, All Other Professional, Scientific, and Technical Services, which represents $9.45 billion and 152 awards. Secondary codes are immaterial by value: NAICS 811111 appears once for $4.80 thousand, and NAICS 541715 is associated with two awards but no obligated dollars.
Annual contract trend over the analysis window
Annual obligations remained consistently above $1.49 billion each year and peaked in 2025 at $2.08 billion, following $1.82 billion in 2024 and about $2.03 billion in both 2023 and 2022. Award volume ranged from 28 to 38 per year, with 2023 showing the highest count and 2021 the lowest obligated total.
How to interpret this page
This summary uses FPDS award records for the vendor over the last 5 years and aggregates obligated dollars, award counts, agency identifiers, and NAICS classifications. Totals reflect reported obligations in the selected window; small rounding differences may occur when comparing detailed records to displayed summary values.
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 = '36EV6'
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 | 9,445,443,931.77 | 9.45 billion | 152 |
| 4732 | FEDERAL ACQUISITION SERVICE | 4,799.08 | 4.80 thousand | 1 |
| 5700 | DEPT OF THE AIR FORCE | 0.00 | 0.00 | 2 |
Insight
Over the last 5 years, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY’s obligations are overwhelmingly concentrated in the Department of Energy, which accounts for $9.45 billion across 152 awards, or nearly all reported obligated dollars for this period. The Federal Acquisition Service contributed a negligible $4.80 thousand on one award, while the Department of the Air Force recorded two awards with no obligated dollars. This pattern indicates a highly concentrated federal customer base with minimal interagency diversification.
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 = '36EV6'
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 |
|---|---|---|---|---|
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 9,445,443,931.77 | 9.45 billion | 152 |
| 811111 | GENERAL AUTOMOTIVE REPAIR | 4,799.08 | 4.80 thousand | 1 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 0.00 | 0.00 | 2 |
Insight
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY’s obligations over the last 5 years are overwhelmingly concentrated in NAICS 541990, which accounts for $9.45 billion across 152 awards, or essentially all reported obligations in this section. The remaining NAICS activity is immaterial by value: NAICS 811111 has one award totaling $4.8 thousand, and NAICS 541715 has two awards with no obligated dollars. This distribution indicates a highly focused procurement profile with minimal diversification across NAICS codes.
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 = '36EV6'
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,075,910,444.26 | 2.08 billion | 31 |
| 2024 | 1,817,060,647.03 | 1.82 billion | 29 |
| 2023 | 2,025,497,521.71 | 2.03 billion | 38 |
| 2022 | 2,033,779,753.18 | 2.03 billion | 28 |
| 2021 | 1,493,200,364.67 | 1.49 billion | 29 |
Insight
BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY (CAGE 36EV6) obligated $9.45 billion across 155 awards over the last 5 years, averaging about $60.9 million per award. Annual obligations are relatively concentrated and stable at roughly $1.8 billion to $2.1 billion per year from 2022 through 2025, following a lower $1.49 billion level in 2021. Award volume also remained steady, ranging from 28 to 38 awards annually, with the highest count in 2023.
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.