what are the key characteristics of deep drawn parts and how are they used-0

\n\n

,需要通过父级DOM结构来判断 */ var trackActionPhone = function (node) { var nodeInnerText = node.innerText || ''; if (!limitRegLength(nodeInnerText)) return; var nodeText = trimText(nodeInnerText); if (nodeText.length < 5 || nodeText.length > 20) return false; var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'click'; var str = trimText(node.href || nodeText || ''); if (phoneReg.test(str) && numUseReg.test(str)) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { phone: nodeText, }, }, '*'); _paq.push(['trackEvent', type, 'phone', nodeText]); return true; } /** 排查父级嵌套非标签场景,并且对dom的正则校验做一个性能兜底,通过控制innerText的长度,来确保正则的性能 */ var fatherText = trimText(node.parentNode.innerText || ''); if (fatherText.length < 5 || fatherText.length > 20) return false; if (phoneReg.test(fatherText) && numUseReg.test(fatherText)) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { phone: nodeText, }, }, '*'); _paq.push(['trackEvent', type, 'phone', nodeText]); return true; } return false; }; window.addEventListener('click', function (e) { var node = e.target; /** 社媒点击 */ var appName = ''; var getAppAriaLabel = node.ariaLabel || node.parentNode.ariaLabel || ''; if (mediaList.includes(getAppAriaLabel.toLowerCase())) { appName = getAppAriaLabel; } if ( !appName && node.nodeName && node.nodeName.toLowerCase() === 'a' ) { appName = getMediaName(node.href) || getMediaName(node.alt); } if ( !appName && node.nodeName && node.nodeName.toLowerCase() === 'img' ) { appName = getMediaName(node.alt) || getMediaName(node.src); } if ( !appName && node.nodeName && node.nodeName.toLowerCase() === 'i' ) { appName = getMediaName(node.className); } if (appName) { _paq.push(['trackEvent', 'click', 'contactApp', appName]); return; } /** 联系方式点击 */ if (trackActionPhone(node, 'click')) return; if (node.nodeName && node.nodeName.toLowerCase() === 'a') { var val = node.href; if (!limitRegLength(val)) return; if (emailReg.test(val)) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { email: val, }, }, '*'); _paq.push(['trackEvent', 'click', 'email', val]); return; } } if (node.nodeName && node.nodeName.toLowerCase() === 'i') { var val = node.className; var content = node.parentNode.href || ''; if (val.includes('email')) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { email: content, }, }, '*'); _paq.push(['trackEvent', 'click', 'email', content]); return; } } var nodeChildList = node.childNodes; for (var i = 0; i < nodeChildList.length; i++) { if (nodeChildList[i].nodeType !== 3) continue; var val = nodeChildList[i].textContent.replace(/\s?:?/g, ''); if (!limitRegLength(val)) continue; if (emailReg.test(val)) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { email: val, }, }, '*'); _paq.push(['trackEvent', 'click', 'email', val]); return; } } trackNumberData(node); }); window.addEventListener('copy', function (e) { if (trackActionPhone(e.target, 'copy')) return; var text = e.target.textContent; if (!text) return; var val = text.replace(/\s:?/g, ''); if (!limitRegLength(val)) return; if (emailReg.test(val)) { window.postMessage({ type: 'SHOPS_CONTACT_TRACK', data: { email: val, }, }, '*'); _paq.push(['trackEvent', 'copy', 'email', val]); return; } trackNumberData(e.target); }); } trackContactInit(); /** * 基于custom_inquiry_form.js 以及 form.js 对于询盘表单提交的实现,来反推询盘表单的input标签触发,用来收集意向客户 * 1. 缓存的KEY:TRACK_INPUT_ID_MTM_00; * 2. 缓存策略 - lockTrackInput:单个页面内,10分钟内,不重复上报 */ function trackActionInput() { const CACHE_KEY = 'TRACK_INPUT_ID_MTM_00'; const pathName = window.location.hostname + window.location.pathname; var lockTrackInput = function () { try { const lastCacheData = localStorage.getItem(CACHE_KEY); if (!lastCacheData) return false; const cacheData = JSON.parse(lastCacheData); const cacheTime = cacheData[pathName]; if (!cacheTime) return false; return Date.now() - cacheTime < 1000 * 60 * 10; // 10分钟内,不重复上报 } catch (error) { console.error('lockTrackInput Error', error); return false; } }; var setInputTrackId = function () { try { const curCacheData = localStorage.getItem(CACHE_KEY); if (curCacheData) { const cacheData = JSON.parse(curCacheData); cacheData[pathName] = Date.now(); localStorage.setItem(CACHE_KEY, JSON.stringify(cacheData)); return; } const cacheData = { [pathName]: Date.now(), }; localStorage.setItem(CACHE_KEY, JSON.stringify(cacheData)); } catch (error) { console.error('setInputTrackId Error', error); } }; var getInputDom = function (initDom) { var ele = initDom; while (ele) { /** * isWebSiteForm 是站点的表单 * isChatWindowForm 是聊天窗口的表单 */ /** 旧模板表单 */ var isWebSiteForm = !!( /crm-form/i.test(ele.className) && ele.querySelector('form') ); /** 1:新模板自定义表单、2:Get a Quote 弹框表单 */ var isWebSiteFormNew = !!( /inquiry/i.test(ele.className) && ele.querySelector('form') ); if (isWebSiteForm || isWebSiteFormNew) { _paq.push(['trackEvent', 'formInquiry', 'formInput', 'page']); setInputTrackId(); return; } /** Mkt会话触达-聊天弹框的表单输入: MKT由于是iframe嵌入,所以MKT的上报,会单独写到MKT-form代码上 */ var isInquiryChatForm = !!( /comp-form/i.test(ele.className) && ele.querySelector('form') ); if (isInquiryChatForm) { _paq.push(['trackEvent', 'formInquiry', 'formInput', 'chat']); setInputTrackId(); return; } /** 向上查找父节点 */ ele = ele.parentNode; } }; function initInputListener() { var inputUseDebounce = function (fn, delay) { var timer = null; var that = this; return function () { var args = Array.prototype.slice.call(arguments); if (timer) clearTimeout(timer); timer = setTimeout(function () { fn.apply(that, args); }, delay); }; }; var optimizeGetInputDom = inputUseDebounce(getInputDom, 300); window.addEventListener('input', function (e) { /** 如果已经上报过,则不再上报 */ if (lockTrackInput()) return; optimizeGetInputDom(e.target); }); } try { initInputListener(); } catch (error) { console.log('initInputListener Error', error); } } trackActionInput(); } /** 第三方消息上报:目前主要是针对全点托管会话;在msgCollect/index.js中调试,访问test.html */ function thirdMsgCollect() { /** 先检测是否是stayReal托管:如果stayReal脚本都没有,那么说明当前站点未开启stayReal会话托管 */ const scriptList = Array.prototype.slice.call( document.querySelectorAll('script'), ); const checkStayReal = () => !!scriptList.find((s) => s.src.includes('stayreal.xiaoman.cn')); if (!checkStayReal()) return; /** 缓存当前消息队列的最后一条消息id */ const CACHE_KEY = 'CACHE_KEY_MONITOR'; const setCache = (msgIndex) => { /** 对缓存KEY进行base64转码处理 */ const cacheMsgIndex = btoa(msgIndex); localStorage.setItem(CACHE_KEY, cacheMsgIndex); }; const getCache = () => { const cacheMsgIndex = localStorage.getItem(CACHE_KEY); if (cacheMsgIndex) return Number(atob(cacheMsgIndex)); return -1; }; /** 拉取最新msg列表 */ const pullMsgList = () => { const msgEleList = Array.prototype.slice.call( document.querySelectorAll('#chat-list li'), ); const msgIds = []; const msgMap = msgEleList.reduce((acc, item) => { const sendTime = item .querySelector('.message-data-time') .textContent.trim(); const sendContent = item.querySelector('.message').textContent.trim(); /** msg带有class:other-message的是访客消息,my-message的是客服消息 */ const isOtherMessage = item .querySelector('.message') .classList.contains('other-message'); const msgId = item.querySelector('.message').getAttribute('id'); const msgItemData = { msgId, user: isOtherMessage ? 'visitor' : 'official', time: sendTime, content: sendContent, }; msgIds.push(msgId); acc[msgId] = msgItemData; return acc; }, {}); return { ids: msgIds, dataMap: msgMap, }; }; /** 加密并上传消息数据 */ let ENCRYPT_KEY = 'de29f1aab63ab033'; let ENCRYPT_IV = 'b8d2badf875e76ac'; const baseUrl = 'https://cms.xiaoman.cn'; // var getEncryptConfig = function () { // const url = baseUrl + '/shop-api/innerApi/getKeyIv' // $.get( // url, // function (result) { // console.log('result', result) // if (Number(result.code) === 0 && result.data.key && result.data.iv) { // ENCRYPT_KEY = result.data.key // ENCRYPT_IV = result.data.iv // uploadMsgData() // } else { // /** 如果获取失败,则重试 */ // setTimeout(() => { // getEncryptConfig() // }, 1000) // } // }, // 'json' // ) // } // getEncryptConfig() const encryptMsg = function (msgData) { const enc = new TextEncoder(); // 转字节 const keyBytes = enc.encode(ENCRYPT_KEY); const ivBytes = enc.encode(ENCRYPT_IV); const plainBytes = enc.encode(msgData); // 导入密钥并加密 return crypto.subtle .importKey('raw', keyBytes, { name: 'AES-CBC' }, false, ['encrypt']) .then(function (cryptoKey) { return crypto.subtle.encrypt( { name: 'AES-CBC', iv: ivBytes }, cryptoKey, plainBytes, ); }) .then(function (encryptedBuffer) { // 转 base64 返回 return btoa( String.fromCharCode(...new Uint8Array(encryptedBuffer)), ); }) .catch((err) => { return Promise.reject(err); }); }; let uploadFlag = false; const uploadMsgData = function () { if (uploadFlag) return; uploadFlag = true; const { ids, dataMap } = pullMsgList(); let cacheMsgIndex = getCache(); const msgLen = ids.length; if (!msgLen) { // 消息DOM未挂载 || 消息DOM已挂载,但是消息列表为空 uploadFlag = false; return; } if (msgLen - 1 < cacheMsgIndex) { /** 针对站点挂后台一段时间,消息列表会自动塞入重复消息,导致消息有重复,刷新后又重置回正常消息列表,所以这里需要更新锚点下标 */ cacheMsgIndex = msgLen - 1; setCache(cacheMsgIndex); uploadFlag = false; return; } if (msgLen - 1 === cacheMsgIndex) { // 缓存的最后一次发送的消息ID是最后一条(说明当前消息均已经上报),则不跳过本地上报 uploadFlag = false; return; } const currentMsgIds = ids.slice(cacheMsgIndex + 1, msgLen); const currentMsgData = currentMsgIds.map((id) => dataMap[id]); const mtmId = window.matomo_site_id_cookie_key || ''; // 获取mtm会话id const msgBody = { mtmId, curl: window.location.href, msgList: currentMsgData, }; const msgBodyStr = JSON.stringify(msgBody); encryptMsg(msgBodyStr) .then(function (encryptedMsg) { console.log('encryptedMsg:', encryptedMsg, msgBodyStr); const url = baseUrl + '/shop-api/External/ListenSiteActiveStatus'; $.ajax({ type: 'POST', url, data: JSON.stringify({ d_v: encryptedMsg }), contentType: 'application/json', success: function (result) { if (Number(result.code) === 0) { // 更新消息队列 setCache(msgLen - 1); } uploadFlag = false; }, error: function (err) { console.error(err, '请求异常'); uploadFlag = false; }, }); }) .catch((err) => { console.error(err, '数据加密失败'); uploadFlag = false; }); }; /** 监控chat-list的DOM变更 */ const initChatListObserver = () => { // 需要监听的 DOM 节点 const target = document.getElementById('chat-list'); if (!target) return; // 回调函数 const callback = function (mutationsList, observer) { for (const mutation of mutationsList) { console.log('mutation', mutation); if (mutation.type === 'childList') { uploadMsgData(); } } }; // 配置 const config = { childList: true, // 监听子节点的增删 subtree: true, // 是否也监听后代节点 }; // 创建 observer const observer = new MutationObserver(callback); // 开始监听 observer.observe(target, config); }; let testCount = 30; let itv = null; const checkChatDom = () => !!document.querySelector('#vc-model'); const initTalkCheck = () => { itv = setTimeout(() => { console.log('checkChatDom', checkChatDom(), testCount); if (!checkChatDom() && testCount > 0) { testCount--; initTalkCheck(); return; } clearTimeout(itv); uploadMsgData(); initChatListObserver(); }, 1500); }; initTalkCheck(); } try { gtmTrack(); thirdMsgCollect(); console.log('inserted gtm code'); } catch (error) { console.error('gtmTrack Error', error); } }); })();
All Categories
what are the key characteristics of deep drawn parts and how are they used-1

News

Home >  News

What Are the Key Characteristics of Deep Drawn Parts and How Are They Used?

Sep 10, 2025

The Deep Drawing Process: How It Shapes High-Performance Metal Components

The deep drawing process takes flat metal sheets and turns them into hollow parts that are both strong and precise. It's basically a cold forming method where pressure is applied step by step to mold the material without needing any welds or seams. Because of this, it works really well in industries like cars, planes, and medical equipment manufacturing. When companies get good at combining clever die designs with what they know about different metals, they can create all sorts of complicated shapes. The best part? They still manage to keep those super tight tolerances around plus or minus 0.005 inches and end up wasting almost nothing during production.

What Is Deep Drawing? A Fundamental Overview of the Sheet Metal Forming Technique

Deep drawing is basically when manufacturers pull a flat metal piece into a die cavity with a punch tool, making parts that are taller than they are wide across. This differs from shallow drawing where simple shapes get formed in one go. For deep drawing though, the metal needs several steps through progressively shaped dies so it doesn't tear apart or develop unsightly wrinkles during the process. Most shops find this method works really well with metals that stretch easily such as stainless steel and aluminum alloys. These materials handle significant reductions in size quite nicely without breaking down, although nobody tries to push them beyond what makes sense for production quality.

The Role of Mechanical Force and Precision Die Design in Forming Deep Drawn Parts

The application of controlled mechanical force ranging from around 50 to 2,000 tons combined with multi stage dies helps maintain consistent material flow throughout the forming process. When it comes to precision, manufacturers rely on dies featuring polished surfaces where radial clearance stays below 10% of the material's actual thickness to cut down on friction issues. For those running high volume production lines, nitrogen coated punches have become standard equipment as they significantly reduce problems with galling. And let's not forget about the role of advanced simulation software these days. These programs accurately predict where stresses will develop in materials, allowing engineers to design dies that actually work against common manufacturing defects such as earing or walls that end up too thin in certain areas.

How Material Properties Influence Blank Preparation and Formability

The way blanks are prepared really depends on three main factors material hardness, grain structure, and how much they can stretch before breaking. When working with annealed metals that have at least 40% elongation like good old 304 stainless steel for instance, we can pull them into deeper shapes compared to harder alloys. Blank holders typically exert somewhere around 10 to maybe even 30 percent of the overall forming force just to keep the metal flowing properly during shaping. Lubricants play their part too by cutting down on surface wear and tear. Now when dealing with materials that don't stretch so well, manufacturers often insert these intermediate annealing steps between drawing operations. This helps bring back some flexibility to the material and allows us to reach those impressive depth to diameter ratios sometimes as high as 3 to 1 in production settings.

Key Characteristics of Deep Drawn Parts: Precision, Strength, and Seamless Integrity

Deep drawn parts excel in applications demanding precision geometries, structural integrity, and repeatability. Let's explore their defining attributes and limitations.

High Dimensional Precision and Consistency for Tight-Tolerance Applications

Deep drawing achieves tolerances as tight as ±0.01 mm, critical for fuel injector nozzles and medical device housings requiring leak-proof seals. Multi-stage tooling with CNC-machined dies ensures <50 μm variance across 10,000+ production cycles, minimizing post-processing for industries like aerospace and microelectronics.

Complex Geometries Achieved Through Progressive Forming Stages

The process transforms flat blanks into cup-like shapes with depths exceeding 5x their diameter through 4–12 progressive dies. Radial flanges, stepped walls, and asymmetrical features are formed without welds—a key advantage over stamped assemblies. For example, EMI shielding cans with 0.5 mm wall thickness and interlocking grooves demonstrate this capability.

Enhanced Structural Strength from Cold Working and Grain Flow Alignment

Cold working during drawing increases material hardness by 15–30% while aligning metal grains along stress vectors. This creates seamless components with 2–3x the fatigue resistance of welded alternatives, proven in automotive sensor housings surviving 100+ thermal cycles at -40°C to 150°C.

When Deep Drawn Parts May Underperform: Comparing with Welded or Machined Alternatives

Thin-walled parts (<0.3 mm) risk wrinkling during deep drawing, making laser-cut/welded assemblies preferable. Low-volume productions (<500 units) often favor machining due to lower tooling costs, though material waste increases by 40–60% compared to drawing's near-net shape efficiency.

Material Selection for Optimal Performance of Deep Drawn Parts

Common Materials Used in Deep Drawing: Stainless Steel, Titanium, Brass, Copper, and Alloys

The real value of deep drawn parts comes down to what materials go into them. Stainless steel is basically everywhere in medical equipment and food processing machines these days, accounting for about 72% of all such applications because nobody wants metal rusting or reacting with chemicals during sterilization. When it comes to planes and spacecraft, titanium rules the roost thanks to how strong it is relative to its weight. The stuff can cut weight by around 30% without sacrificing durability, which matters a lot when dealing with repeated stress cycles. For anything needing good electrical conductivity, copper and brass are hard to beat with those impressive 100% IACS ratings. Aluminum alloys strike a nice middle ground too, offering decent strength properties between 150 and 200 MPa while still being easy enough to shape into complex forms.

Evaluating Formability, Ductility, and Strength for Demanding Applications

Material performance hinges on three measurable parameters:

  • Formability (elongation >40% for deep cups per ASTM E8 standards)
  • Ductility (n-value >0.45 indicating uniform strain distribution)
  • Post-forming strength (work hardening rates up to 300 MPa in austenitic steels)

Aluminum 3003 achieves 50% greater draw depth than mild steel before necking occurs, but stainless steel 304 retains 2.3x higher tensile strength after forming. This trade-off dictates material choice: deep-drawn fuel injectors prioritize stainless steel's 1,200 MPa burst pressure capacity over aluminum's lighter weight.

Case Study: Switching from Aluminum to Stainless Steel in Medical Device Enclosures

When a leading medical device manufacturer faced repeated sterilization failures (12% rejection rate) in aluminum enclosures, switching to 316L stainless steel solved three critical issues:

  1. Biocompatibility: Passed ISO 10993-5 cytotoxicity testing at 0.5% extractables
  2. Autoclave resistance: Withstood 3,000+ sterilization cycles vs. aluminum's 800-cycle limit
  3. Dimensional stability: Maintained ±0.025mm tolerance under 135°C thermal cycling

Post-transition data showed a 35% reduction in production defects and 19% longer product lifecycle—key factors justifying the 28% material cost increase.

Advantages of Deep Drawn Parts in High-Volume Industrial Manufacturing

Cost Efficiency and Minimal Material Waste in Mass Production

Deep drawing works really well for mass production because it cuts down on wasted materials during the forming process. When using this method, manufacturers get about 92 to almost 98 percent usage from their sheet metal stock, which is way better than the roughly 60 to 75 percent typically seen with conventional machining techniques. Progressive dies allow parts to be formed close to their final shape right from the start, so there's no need for all that extra trimming work later on. The savings add up too – companies report around a 30% to maybe even 40% drop in material costs per unit when producing over 100 thousand pieces each year. This makes deep drawing especially popular for making things like fuel injectors where precision matters a lot but volume is key.

Reduced Need for Secondary Operations Enhances Energy and Time Efficiency

Single-stroke deep drawing eliminates 4–6 secondary operations typically required for welded assemblies, including grinding, polishing, and leak testing. Energy consumption drops 55% when replacing multi-stage welded enclosures with unitary deep drawn housings in HVAC systems. The cold working process also enhances part rigidity by 25–40%, reducing post-production reinforcement needs.

Scalability and Automation Potential in Modern Deep Drawing Lines

Automated transfer systems now achieve cycle times under 8 seconds for complex geometries like tapered EMI shielding cans. Leading plants integrate inline laser measurement and AI-driven die adjustment, achieving 99.96% dimensional consistency across batches of 500k+ units. This automation scalability drives 18–22% faster ROI compared to hybrid stamping-machining workflows.

Balancing High Initial Setup Costs with Long-Term ROI

While tooling investments range from $50k–$200k for precision dies, per-unit costs plummet 60–80% after surpassing 10k units. A Tier 1 automotive supplier reduced battery housing costs from $4.82/unit (CNC) to $1.09/unit at 250k annual volumes through deep drawing transitions.

Critical Applications of Deep Drawn Parts Across Major Industries

Deep drawn parts deliver precision-engineered solutions where strength, dimensional consistency, and seamless construction are critical. Industries leverage these components to address demanding operational requirements while minimizing assembly complexity.

Automotive Uses: Fuel Injectors, Sensors, and Protective Housings

In cars today, manufacturers depend heavily on deep drawn parts to keep fuel systems working properly and ensure accurate sensor readings. Take fuel injectors for instance their nozzles need extremely tight tolerances at the micron level so they can spray fuel correctly across different engine loads. Meanwhile, the housing around sensors must be made from stuff that won't rust or degrade, which is why stainless steel becomes important when these parts are exposed to heat and road salt underneath the hood. What makes deep drawing stand out is how it creates these parts as one solid piece without any welds. This matters a lot for transmission shields because those components get shaken constantly during driving, and any weak spot from welding could lead to failures down the road.

Aerospace Applications: Lightweight, High-Strength Components and Fittings

In aerospace manufacturing, companies often go with deep drawn titanium and aluminum parts when making those critical hydraulic system fittings and avionics enclosures. Cold working these materials actually boosts their tensile strength anywhere from 15 to 20 percent over regular machined options. That makes all the difference for things like wing brackets that need to handle those constantly changing loads during flight. Take thin wall deep drawn housings used in flight data recorders as another example. These components show just how good this technique is at maintaining consistent 0.1mm thickness even on complex curved shapes. The precision here matters a lot when safety and reliability are non-negotiable requirements.

Medical Devices: Biocompatible and Corrosion-Resistant Enclosures

Surgical instrument housings benefit from deep drawn 316L stainless steel's autoclave-resistant properties, maintaining surface integrity through 500+ sterilization cycles. Implantable device manufacturers use the process to create hermetically sealed titanium battery casings, with grain structure alignment preventing stress fractures in long-term bodily implantation.

Electronics and Communications: EMI Shielding Cans and Connector Bodies

Deep drawn copper-nickel alloys provide 360° EMI shielding in 5G antenna components, achieving 85dB attenuation up to 40GHz frequencies. The process forms seamless connector bodies for high-voltage charging ports in EVs, with dimensional tolerances under ±0.05mm ensuring proper dielectric spacing in compact designs.

FAQ

What is deep drawing used for?

Deep drawing is used to transform flat metal sheets into hollow parts, often utilized in industries such as automotive, aerospace, and medical equipment manufacturing due to its ability to produce strong and precise components without welds or seams.

What materials are suitable for deep drawing?

Common materials for deep drawing include stainless steel, titanium, brass, copper, and aluminum alloys. The choice depends on required characteristics such as formability, ductility, and finished strength.

What are the advantages of deep drawn parts?

Deep drawn parts offer high dimensional precision, structural strength, and seamless construction. They reduce material waste, limit secondary operations, and allow scalability in manufacturing.

When should deep drawing be avoided?

Deep drawing may not be suitable for producing thin-walled parts less than 0.3 mm in thickness, as these risk wrinkling. For low-volume productions under 500 units, machining might be more cost-effective.