TORCH TECHNOLOGIES INC’s federal procurement activity in the last full year was concentrated in the Department of the Army and the Department of the Air Force, which together accounted for most of its 606.79 million in obligations. The company’s work was led by NAICS 541712, with additional obligations in engineering services and related research and development categories.
Federal Contractor
TORCH TECHNOLOGIES INC Federal Contract Obligations (Last Year)
TORCH TECHNOLOGIES INC (CAGE 3CBV3, UEI YA63J5PVEZE6) obligated 606.79 million across 394 federal award actions in the last full year.
Totals reflect obligations and award actions recorded in the analysis window, including small negative adjustments where applicable.
About TORCH TECHNOLOGIES INC federal contract activity
TORCH TECHNOLOGIES INC (CAGE 3CBV3, UEI YA63J5PVEZE6) recorded 606.79 million in obligated contract value across 394 awards during the last full year, for an average award value of about 1.54 million. The profile indicates a high-volume federal contractor with concentration in research, engineering, and technical support work.
Agency mix and customer concentration
The Department of the Army accounted for the majority of obligations at 447.48 million across 314 awards, followed by the Department of the Air Force at 157.21 million across 72 awards. Smaller activity was recorded with the Federal Acquisition Service, while the Missile Defense Agency shows a marginal negative obligated total, which may reflect deobligations or adjustments in the period.
Industry profile based on NAICS activity
The contractor’s obligations were heavily concentrated in NAICS 541712, with 428.44 million across 248 awards, indicating substantial research and development activity in the physical, engineering, and life sciences. Additional material volume came from engineering services under NAICS 541330 and from NAICS 541715, with smaller but relevant awards in guided missile/space vehicle parts manufacturing and ammunition manufacturing.
Annual contract trend over the analysis window
The annual trend shows 2025 as the full analysis year, with total obligated value of 606.79 million across 394 awards. Because only one annual point is present, this view supports a year-level snapshot rather than a multi-year trend assessment.
How to interpret this page
This summary is based on FPDS award records attributed to TORCH TECHNOLOGIES INC using CAGE code 3CBV3 and UEI YA63J5PVEZE6 for the last full year. Totals reflect obligated dollars and award counts as provided, and negative values are retained where present to preserve recorded adjustments.
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 = '3CBV3'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 447,483,569.49 | 447.48 million | 314 |
| 5700 | DEPT OF THE AIR FORCE | 157,213,951.83 | 157.21 million | 72 |
| 4732 | FEDERAL ACQUISITION SERVICE | 2,093,613.66 | 2.09 million | 6 |
| 97JC | MISSILE DEFENSE AGENCY (MDA) | -3,056.67 | -3.06 thousand | 2 |
Insight
Over the last full year, TORCH TECHNOLOGIES INC recorded $606.79 million across 394 awards, with obligations heavily concentrated in the Department of the Army ($447.48 million, 314 awards) and Department of the Air Force ($157.21 million, 72 awards). These two agencies account for nearly all of the vendor’s obligated dollars in the period, indicating a strong concentration of federal business within the Department of Defense. Federal Acquisition Service obligations were minimal at $2.09 million across 6 awards, while MDA obligations were negligible and slightly negative at -$3.06 thousand across 2 awards.
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 = '3CBV3'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 428,437,457.95 | 428.44 million | 248 |
| 541330 | ENGINEERING SERVICES | 94,811,510.89 | 94.81 million | 94 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 80,108,521.47 | 80.11 million | 48 |
| 336419 | OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING | 2,200,000.00 | 2.20 million | 2 |
| 332993 | AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING | 1,230,588.00 | 1.23 million | 2 |
Insight
TORCH TECHNOLOGIES INC’s last full year obligations were concentrated in NAICS 541712, which accounts for $428.44 million across 248 awards, or about 71 percent of total obligated value. NAICS 541330 and 541715 add another $174.92 million across 142 awards, indicating a strong concentration in research, development, and engineering services. The remaining NAICS codes are immaterial by comparison, with only $3.43 million combined across 4 awards, suggesting a limited footprint outside the core R&D/engineering portfolio.
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 = '3CBV3'
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 | 606,788,078.31 | 606.79 million | 394 |
Insight
In the last full year, TORCH TECHNOLOGIES INC (CAGE 3CBV3) recorded $606.79 million in obligated value across 394 awards, for an average award value of about $1.54 million. The annual activity is concentrated within a single reported year, so this window reflects a point-in-time funding level rather than a multi-year trend. The award count suggests a moderately distributed portfolio, though the obligations are materially weighted by the aggregate value of the year’s 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.