Stanford Advanced Materials (SAM) offers high-quality spherical tantalum powder known for its high melting point, excellent corrosion resistance, and biocompatibility. Ideal for aerospace, medical implants, 3D printing, and electronics, SAM's tantalum powder ensures superior performance and precision in various advanced applications.
Spherical tantalum powder is generally fabricated by processes such as gas atomization, plasma rotating electrode process, or centrifugal atomization that gives rise to a consistently spherical shape with a particle size distribution accordingly.
The spherical shape enhances flowability; hence, the material is highly appropriate for applications such as 3D printing and powder metallurgy. This shape offers superior packing density and a reduction of porosity in final products.
Please contact us if you need customized services. We will contact you with the price and availability in 24 hours.
} // 需要将缓存中的产品信息拿过来然后进行拼接追加 var historyData = localStorage.getItem('powder-cart'); if (!historyData || historyData == '' || historyData == 'null' || typeof(historyData) == 'undefined') { var cartData = [] } else { var cartData = (JSON.parse(historyData)) || []; } // 处理产品编号与产品名 var titleData = (data.title).split(' ') || ['', '']; cartData.push({ unit: 'pc', qty: 1, // 默认数量1 num: titleData[0], product: (data.title).substring(titleData[0].length), trader: data.trader }) // 数组去重 var uni = 'num' var res = cartData.reduce((all, next) => all.some((atom) => atom[uni] === next[uni]) ? all : [...all, next], []) // 存入缓存 localStorage.setItem('powder-cart', JSON.stringify(res)); // 同步购物车信息 refreshCart(); } // 刷新同步购物车产品信息 function refreshCart() { // 需要将缓存中的产品信息拿过来然后进行拼接追加 var historyData = localStorage.getItem('powder-cart'); if (!historyData || historyData == '' || historyData == 'null' || typeof(historyData) == 'undefined') { document.getElementsByClassName("product-num")[0].style.display = 'none' } else { var cartData = (JSON.parse(historyData)) || []; var len = cartData.length if (parseInt(len) > 0) { document.getElementsByClassName("product-num")[0].innerHTML = len document.getElementsByClassName("product-num")[0].style.display = 'inline-block' } else { document.getElementsByClassName("product-num")[0].style.display = 'none' } if (parseInt(len) > 0) { document.getElementsByClassName("product-num")[1].innerHTML = len document.getElementsByClassName("product-num")[1].style.display = 'inline-block' } else { document.getElementsByClassName("product-num")[1].style.display = 'none' } } } // 跳转到购物车结算页 function jumToCart() { // alert('Success'); window.location.href = '/inquiry-list.html'; } var cartIntval = setInterval(function() { refreshCart() }, 500) // clearInterval(cartIntval)