Federal Contractor

BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY Federal Contract Obligations (Last Year)

Federal procurement summary for BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY (CAGE 36EV6, UEI HG7XL5RBNX55) covering obligations in the last full year.

In the analysis window, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY recorded 31 award actions totaling $2.08 billion, with an average action value of $66.96 million. All obligations in this period were awarded by the Department of Energy and classified under NAICS 541990, All Other Professional, Scientific, and Technical Services.

Generated at 03/21/2026

Analysis period: Last full year

This page reflects the last full year of readable FPDS obligations, which totaled $2,075,910,444.26 across 31 actions in 2025.

CAGE Code
36EV6
UEI
HG7XL5RBNX55
Total Obligated
2.08 billion
2,075,910,444.26
Award Actions
31
Average Action Value
66,964,853.04

About BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY federal contract activity

In the last full year, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY (CAGE 36EV6, UEI HG7XL5RBNX55) recorded $2.08 billion in obligated federal contract value across 31 awards, for an average award size of $66.96 million. The activity profile indicates a high-dollar, relatively concentrated procurement footprint rather than a large number of small transactions.

Agency mix and customer concentration

All observed obligations in the analysis window came from the Department of Energy (agency 8900), which accounted for the full $2.08 billion and all 31 awards. This points to a fully concentrated agency relationship with no diversification across other federal buyers in the period reviewed.

Industry profile based on NAICS activity

All recorded obligations were classified under NAICS 541990, All Other Professional, Scientific, and Technical Services, with the full $2.08 billion tied to 31 awards. The single-NAICS profile suggests the reported obligations were captured under one broad services code rather than a mixed contracting portfolio.

Annual contract trend over the analysis window

The annual trend shows all observed obligations in 2025, with $2.08 billion across 31 awards. No other years appear in the supplied analysis window, so the available data supports only a single-year snapshot rather than a multi-year trajectory.

How to interpret this page

This summary uses the provided FPDS Query aggregate metrics for the last full year, including total obligated dollars, award count, agency totals, NAICS totals, and annual trend. Results are limited to the supplied dataset and reflect obligated amounts as reported in FPDS for the stated analysis period.

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 1 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 2,075,910,444.26 2.08 billion 31

Insight

During the last full year, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY’s obligations were fully concentrated in a single agency: the Department of Energy. DOE obligated $2.08 billion across 31 awards, averaging $66.96 million per award. This indicates a highly concentrated customer base with no observed agency diversification in the period reviewed.

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 1 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 2,075,910,444.26 2.08 billion 31

Insight

During the last full year, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY’s obligations were fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. The vendor received 31 awards in this NAICS, totaling $2.08 billion, indicating a highly concentrated procurement profile with no diversification across other NAICS codes in the provided period. Average award value was $66.96 million, suggesting a small number of large obligations rather than broad distribution across many smaller actions.

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 1 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

Insight

During the last full year, BATTELLE ENERGY ALLIANCE LIMITED LIABILITY COMPANY obligated $2.08 billion across 31 awards, for an average award value of $66.96 million. Activity is highly concentrated in a single annual period, indicating that the vendor’s recent obligation profile is driven by a relatively small number of large awards rather than broad award dispersion. This level of concentration suggests that year-over-year trend interpretation should focus on the timing and size of major obligations.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.