Federal Contractor

ALION SCIENCE AND TECHNOLOGY CORPORATION Federal Contract Obligations (Last Year)

ALION SCIENCE AND TECHNOLOGY CORPORATION (CAGE 3BM47, UEI GS7HBMNZEMK3) received 505.28 million in federal obligations across 644 award actions in the last full year.

Most of the activity came from the Department of the Air Force, which accounted for 495.32 million and 617 actions. The vendor’s awards were concentrated in NAICS 541715 for research and development in the physical, engineering, and life sciences, with smaller activity in related defense and engineering categories.

Generated at 03/21/2026

Analysis period: Last full year

Totals, agency shares, NAICS mix, and the annual trend reflect the last full year and may include negative obligations from deobligations or adjustments.

CAGE Code
3BM47
UEI
GS7HBMNZEMK3
Total Obligated
505.28 million
505,284,470.01
Award Actions
644
Average Action Value
784,603.21

About ALION SCIENCE AND TECHNOLOGY CORPORATION federal contract activity

ALION SCIENCE AND TECHNOLOGY CORPORATION (CAGE 3BM47, UEI GS7HBMNZEMK3) recorded 505.28 million in obligated dollars across 644 awards in the last full year, with an average award value of 784,603.21. The profile is highly concentrated, indicating a large volume of relatively small-to-mid-sized actions rather than dependence on a few outsized awards.

Agency mix and customer concentration

The Department of the Air Force dominated the vendor’s activity, accounting for 495.32 million across 617 awards, or the clear majority of both dollars and actions. The Department of the Army and Department of the Navy were secondary customers at 6.60 million and 4.23 million respectively, while DCMA shows a net negative obligation of 860.39 thousand, suggesting downward adjustments or deobligations within the period.

Industry profile based on NAICS activity

The portfolio is centered on NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), which contributed 502.60 million across 603 awards. All other NAICS codes are materially smaller, with 333318 contributing 4.23 million and the remaining categories posting negligible or negative net obligations, reinforcing a research-and-development-heavy profile.

Annual contract trend over the analysis window

Annual activity for 2025 totals 505.28 million across 644 awards, matching the full analysis window provided. Because only one year is present, the data support a point-in-time view rather than a multi-year trend assessment.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 3BM47 and UEI GS7HBMNZEMK3 for the last full year. Obligated dollars are reported as net values by agency and NAICS, so negative amounts reflect adjustments or deobligations included 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 = '3BM47'
        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
5700 DEPT OF THE AIR FORCE 495,320,176.58 495.32 million 617
2100 DEPT OF THE ARMY 6,597,199.38 6.60 million 8
1700 DEPT OF THE NAVY 4,227,481.06 4.23 million 8
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -860,387.01 -860.39 thousand 11

Insight

ALION SCIENCE AND TECHNOLOGY CORPORATION’s obligations in the last full year were highly concentrated with the DEPT OF THE AIR FORCE, which accounted for 495.32 million across 617 awards, or nearly all of the vendor’s 505.28 million total. The DEPT OF THE ARMY and DEPT OF THE NAVY were secondary obligators at 6.60 million and 4.23 million, respectively, each with 8 awards. DCMA recorded net negative obligations of 860.39 thousand across 11 awards, indicating downward adjustment activity within the period.

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 = '3BM47'
        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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 502,599,502.06 502.60 million 603
333318 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 4,227,481.06 4.23 million 8
541511 CUSTOM COMPUTER PROGRAMMING SERVICES -2,800.62 -2.80 thousand 1
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -1,539,712.49 -1.54 million 32

Insight

ALION SCIENCE AND TECHNOLOGY CORPORATION’s obligations in the last full year were highly concentrated in NAICS 541715, which accounted for $502.60 million across 603 awards, or nearly all of the vendor’s $505.28 million total. The next largest NAICS, 333318, represented a much smaller share at $4.23 million across 8 awards, indicating limited diversification beyond the primary R&D category. Minor negative obligations in 541511 and 541712 reduced net totals slightly but did not materially change the overall concentration profile.

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 = '3BM47'
        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 505,284,470.01 505.28 million 644

Insight

For the last full year, ALION SCIENCE AND TECHNOLOGY CORPORATION (CAGE 3BM47) received $505.28 million in obligated award value across 644 awards, for an average award value of about $784.6 thousand. The activity in this window is concentrated entirely in 2025, indicating a single-year snapshot rather than a multi-year trend. The volume of awards relative to total obligations suggests a broad distribution of funding across many actions rather than reliance on a small number of very large awards.

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.