91³Ô¹ÏÍø

Watch CBS News

It's not just oil — the Iran war is disrupting helium and aluminum supplies. Here's the impact.

The Iran war is not only disrupting the global energy market but is also threatening the world's supply of helium and aluminum, key materials used in products such as semiconductor chips, medical equipment and other everyday goods.

Qatar, which accounts for roughly one-third of the world's helium supply, stopped producing helium this month following Iranian strikes on two liquid natural gas (LNG) facilities owned by state-run QatarEnergy.

Helium is a byproduct of natural gas processing, and attacks on Qatar's liquefied natural gas facilities mean it could take years to rebuild production lines. Earlier this month, QatarEnergy  that the attacks wiped out 17% of the country's LNG export capacity, and that repairs could take three to five years. 

Those complications could add to the strains on the global economy beyond the impact of higher oil and gas prices, which so far have drawn the lion's share of attention from consumers, businesses and economists. The helium shortage has largely been overlooked because the effects of oil supply constraints have been so acute and immediate, with the average price of gasoline on Tuesday hitting $4 a gallon for the first time since August 2022. 

"We were so focused on gas supply that we didn't see the helium shortage," Vidya Mani, a global supply chain expert and associate professor of business administration at the University of Virginia's Darden School of Business, told CBS News.

Only a handful of countries produce helium, which means that a disruption from one of those nations can destabilize the global market. The United States is the biggest producer, accounting for 81 million cubic meters last year. Qatar, Algeria and Russia are the other major producers, but Russian supplies are banned under U.S. and European Union sanctions.

Semiconductors and helium

Because helium is highly effective at transferring heat, making it ideal for rapid cooling, it's essential for manufacturing semiconductors. Chipmakers use it to cool wafers — the discs of silicon printed with tiny electronic circuits. 

Helium is used during the etching process, when material that's been deposited on a wafer is scraped away to form transistor structures, said Jacob Feldgoise, an analyst at Georgetown University's Center for Security and Emerging Technology.

"Helium is an essential component of semiconductor manufacturing, and a significant proportion of it comes from Gulf countries," Mani said. "Imagine not having chips to power laptops, iPhones and small appliances? Everything with circuitry runs on one, and all of those will be hurt if we don't get helium soon."

The medical industry also relies on helium to cool superconducting magnets powering magnetic resonance imaging, or MRI, machines. And the space industry uses helium to purge rocket fuel tanks, a demand that is expected to grow because of more frequent launches by companies like SpaceX and Blue Origin.

Impact on iPhones, AI 

Mani said manufacturers that use helium tend to store no more than two months' worth of supplies of the gas. If those resources start to run low, "You're going to see a much wider impact," she said. 

Helium suppliers are already telling their U.S.-based customers, including semiconductor chip and electronics manufacturers, to expect shortages and price hikes, industry experts said. 

"They are already receiving 'force majeure' and allocations letters," Cliff Cain of Pulsar Helium, a helium exploration and development company, told CBS News. "The effects are already being felt."

He added, "Everything from vehicle chips to iPhones will definitely be affected."

Because there's no way to boost supplies of helium in the near term, a global helium shortage will crimp chip manufacturing, he added. That could interfere with building out AI data centers and curtail companies' investment plans, according to Oxford Economics. 

"Semiconductor manufacturers have already indicated that they will not be able to meet their 2030 manufacturing goals," Cain said. "We have resources here, but it's not going to make up for the 33% disruption globally."

Yvette Connor, risk advisory leader at CohnReznick, a business advisory firm, said American AI companies' growth could be blunted by a chip shortage related to helium constraints. "It could potentially slow their velocity, not their capability," she told CBS News. 

Aluminum hits a 4-year high

A prolonged conflict in Iran could also lead to shortages of nitrogen and aluminum, potentially driving up food and packaging costs for U.S. consumers, according to supply chain experts.

Roughly 9% of the world's aluminum supply is produced by Gulf countries, and local disruptions are already having an impact, according to Stephen Hare and Sebastian Tillet of Oxford Economics. Aluminum prices this week touched a four-year high.

"Disruptions in the region are reducing available supply, while rising energy costs are increasing production costs across the global cost curve. Together, this is tightening market conditions and pushing aluminum prices higher," Hare and Tillet told CBS News. 

An aluminum shortage would have a direct impact on consumer goods packaging costs in the near term, Mani said. It's also used extensively in the automobile and electronics sectors, which can "expect to see a crunch," she said. 

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=fd53910ecf4604072044ab7c46d9b028'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });