


{"id":373881,"date":"2024-07-28T14:38:54","date_gmt":"2024-07-28T14:38:54","guid":{"rendered":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/"},"modified":"2024-07-28T14:38:54","modified_gmt":"2024-07-28T14:38:54","slug":"simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue","status":"closed","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/","title":{"rendered":"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue"},"content":{"rendered":"<p>I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I <strong>patched<\/strong> the region with a height of 0.2 mm along the Y-axis as solid, and the rest as the gas domain, as shown in the image.<img decoding=\"async\" src=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png\"><img decoding=\"async\" src=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177305-mceclip1.png\"><\/p>\n<p>I need to apply a laser heat source <strong>at the interface of the solid-gas contact surface<\/strong> and also apply recoil pressure and Marangoni effect equations. I understand that a UDF is required for this. I found a UDF code from one of the posts in this forum (which does not include the Marangoni effect) which I have added at last part of the post.&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div>Here are my questions:<\/div>\n<div>&nbsp;<\/div>\n<div><strong>1. Material Properties Usage:<\/strong> <em>If density and specific heat data are specified within the UDF, what is the use of the material properties defined in the &#8220;Materials&#8221; section inside Fluent? How does Fluent determine which properties to use during the simulation?<\/em><\/div>\n<div>&nbsp;<\/div>\n<div>2. <strong>UDF Implementation Issue:<\/strong> <em>I successfully compiled the code within ANSYS, hooked it under the Adjust section, and added the heat source term under the Cell Zone Boundary Condition. However, I don&#8217;t see any changes in the results (i.e the phase shape does not change from the initial state) . I even defined 12 User-Defined Memory (UDM) locations. Can you help me identify what might have gone wrong?<\/em><\/div>\n<div>&nbsp;<\/div>\n<div>\n<div><strong><span style=\"text-decoration: underline\">UDF Code :&nbsp;<\/span><\/strong><\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp;<\/div>\n<div>#include &#8220;udf.h&#8221;<\/div>\n<div>#include &#8220;sg_mphase.h&#8221;<\/div>\n<div>#include &#8220;mem.h&#8221;<\/div>\n<div>#include &#8220;sg_mem.h&#8221;<\/div>\n<div>#include &#8220;math.h&#8221;<\/div>\n<div>#include &#8220;flow.h&#8221;<\/div>\n<div>#include &#8220;unsteady.h&#8221;<\/div>\n<div>#include &#8220;metric.h&#8221;<\/div>\n<div>&nbsp;<\/div>\n<div>#define A 0.4 \/\/ Absorption coefficient<\/div>\n<div>#define P 200 \/\/ Laser power<\/div>\n<div>#define R 80e-6 \/\/ Spot radius<\/div>\n<div>#define v 0.1 \/\/ Scan speed of laser<\/div>\n<div>#define h 25 \/\/ Heat transfer coefficient<\/div>\n<div>#define Ta 300 \/\/ Ambient air temperature<\/div>\n<div>#define s 5.67e-8 \/\/ Stefan Boltzmann constant<\/div>\n<div>#define e 0.5 \/\/ Emissivity<\/div>\n<div>#define Pi 3.1415926535<\/div>\n<div>#define Ts 1658 \/\/ Solidus temperature<\/div>\n<div>#define Tl 1723 \/\/ Liquidus temperature<\/div>\n<div>#define x0 0.0\/\/ Initial x position of the laser<\/div>\n<div>#define y0 0.1e-3 \/\/ Initial y position of the laser<\/div>\n<div>#define Lv 7.45e6 \/\/ Latent heat of Vaporisation<\/div>\n<div>#define Tv 3090 \/\/ Evaporation Temperature<\/div>\n<div>#define Rg 8.314 \/\/ Universal Gas constant<\/div>\n<div>#define M 0.005593 \/\/ Molar mass<\/div>\n<div>#define Pa 101325 \/\/ Atmospheric pressure<\/div>\n<div>#define domain_ID 3 \/\/ Domain ID of metal substrate<\/div>\n<div>&nbsp;<\/div>\n<div>DEFINE_ADJUST(adjust_gradient, domain)<\/div>\n<div>{<\/div>\n<div>&nbsp; &nbsp; Thread *t;<\/div>\n<div>&nbsp; &nbsp; Thread **pt;<\/div>\n<div>&nbsp; &nbsp; cell_t c;<\/div>\n<div>&nbsp; &nbsp; int phase_domain_index = 1.0;<\/div>\n<div>&nbsp; &nbsp; Domain *pDomain = DOMAIN_SUB_DOMAIN(domain,phase_domain_index);<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; Alloc_Storage_Vars(pDomain,SV_VOF_RG,SV_VOF_G,SV_NULL);<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; Scalar_Reconstruction(pDomain, SV_VOF,-1,SV_VOF_RG,NULL);<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; Scalar_Derivatives(pDomain,SV_VOF,-1,SV_VOF_G,SV_VOF_RG, Vof_Deriv_Accumulate);<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; mp_thread_loop_c(t,domain,pt)<\/div>\n<div>&nbsp; &nbsp; if (FLUID_THREAD_P(t))<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; Thread *ppt = pt[phase_domain_index];<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; begin_c_loop (c,t)<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C_UDMI(c,t,0) = C_VOF_G(c,ppt)[0];<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C_UDMI(c,t,1) = C_VOF_G(c,ppt)[1];<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C_UDMI(c,t,2) = C_VOF_G(c,ppt)[2];<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C_UDMI(c,t,3) = sqrt(C_UDMI(c,t,0)*C_UDMI(c,t,0) + C_UDMI(c,t,1)*C_UDMI(c,t,1) + C_UDMI(c,t,2)*C_UDMI(c,t,2));<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; end_c_loop (c,t)<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; Free_Storage_Vars(pDomain,SV_VOF_RG,SV_VOF_G,SV_NULL);<\/div>\n<div>}<\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp;<\/div>\n<div>DEFINE_SOURCE(heat_source, c, t, dS, eqn)<\/div>\n<div>{<\/div>\n<div>&nbsp; &nbsp; Thread *pri_th;<\/div>\n<div>&nbsp; &nbsp; Thread *sec_th;<\/div>\n<div>&nbsp; &nbsp; real source;<\/div>\n<div>&nbsp; &nbsp; real x[ND_ND], time;<\/div>\n<div>&nbsp; &nbsp; time = CURRENT_TIME;<\/div>\n<div>&nbsp; &nbsp; C_CENTROID(x, c, t);<\/div>\n<div>&nbsp; &nbsp; real T = C_T(c,t);<\/div>\n<div>&nbsp; &nbsp;&nbsp;<\/div>\n<div>&nbsp; &nbsp; pri_th = THREAD_SUB_THREAD(t, 0);<\/div>\n<div>&nbsp; &nbsp; sec_th = THREAD_SUB_THREAD(t, 1);<\/div>\n<div>&nbsp; &nbsp;&nbsp;<\/div>\n<div>&nbsp; &nbsp; real alpha = C_VOF(c,sec_th); \/\/ Use sub-thread for cell volume fraction<\/div>\n<div>&nbsp; &nbsp; real gamma = C_LIQF(c,sec_th); \/\/ Use sub-thread for cell liquid fraction<\/div>\n<div>&nbsp; &nbsp;&nbsp;<\/div>\n<div>&nbsp; &nbsp; real Pv = 0.54*Pa*exp((Lv*M*(T-Tv))\/(Rg*T*Tv));<\/div>\n<div>&nbsp; &nbsp; real mv = (0.82*M*Pv)\/(sqrt(2*Pi*M*Rg*T));<\/div>\n<div>&nbsp; &nbsp; real rhog = 1.6228; \/\/ Density of argon<\/div>\n<div>&nbsp; &nbsp; real rhos = 7900; \/\/ Density of solid SS316<\/div>\n<div>&nbsp; &nbsp; real rhol = 7433 + 0.0393*T &#8211; 0.00018*pow(T,2); \/\/ Density of liquid SS316<\/div>\n<div>&nbsp; &nbsp; real rhom = rhol*gamma + rhos*(1-gamma); \/\/ Density of SS316<\/div>\n<div>&nbsp; &nbsp; real rho = alpha*rhom + rhog*(1-alpha); \/\/ Density of cell containing metal and gas<\/div>\n<div>&nbsp; &nbsp; real Cpg = 520.64; \/\/ Specific heat of argon<\/div>\n<div>&nbsp; &nbsp; real Cps = 462 + 0.134*T; \/\/ Specific heat of solid SS316<\/div>\n<div>&nbsp; &nbsp; real Cpl = 775; \/\/ Specific heat of liquid SS316<\/div>\n<div>&nbsp; &nbsp; real Cpm = Cpl*gamma + Cps*(1-gamma); \/\/ Specific heat of SS316<\/div>\n<div>&nbsp; &nbsp; real Cp = alpha*Cpm + Cpg*(1-alpha); \/\/ Specific heat of cell containing metal and gas<\/div>\n<div>&nbsp; &nbsp; real factor = (2*rho*Cp)\/(rhom*Cpm + rhog*Cpg);<\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp; &nbsp; if(C_VOF(c,sec_th) &gt; 0.05 &amp;&amp; C_VOF(c,sec_th) &lt; 1)<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; if(C_T(c,sec_th) &lt; 3090)<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source = (((2*A*P)\/(Pi*R*R))*exp((-2*(pow(x[0]-x0-v*time,2.) + pow(x[1]-y0,2.)))\/(R*R)) &#8211; h*(T-Ta) &#8211; s*e*(pow(T,4.) &#8211; pow(Ta,4.)))*C_UDMI(c,t,3)*factor;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dS[eqn] = 0.0;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; else if(C_T(c,sec_th) &gt;= 3090)<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; source = (((2*A*P)\/(Pi*R*R))*exp((-2*(pow(x[0]-x0-v*time,2.) + pow(x[1]-y0,2.)))\/(R*R)) &#8211; h*(T-Ta) &#8211; s*e*(pow(T,4.) &#8211; pow(Ta,4.)) &#8211; Lv*mv)*C_UDMI(c,t,3)*factor;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dS[eqn] = 0.0;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; else<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; source = 0.0;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; dS[eqn] = 0.0;<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; return source;<\/div>\n<div>}<\/div>\n<p>&nbsp;<\/p>\n<\/div>\n<div>&nbsp;<\/div>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"template":"","class_list":["post-373881","topic","type-topic","status-closed","hentry","topic-tag-fluent-ansys-1","topic-tag-multiphase","topic-tag-SLM-1","topic-tag-udf","topic-tag-vof"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Ansys Learning Forum | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-07-28T14:38:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-07-28T14:38:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/udf\\\/#listItem\",\"name\":\"udf\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/udf\\\/#listItem\",\"position\":3,\"name\":\"udf\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/udf\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/#listItem\",\"name\":\"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/#listItem\",\"position\":4,\"name\":\"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/udf\\\/#listItem\",\"name\":\"udf\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/\",\"name\":\"Simulating Selective Laser Melting process in Ansys Fluent \\u2013 UDF issue | Ansys Learning Forum\",\"description\":\"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\\\/#breadcrumblist\"},\"datePublished\":\"2024-07-28T14:38:54+00:00\",\"dateModified\":\"2024-07-28T14:38:54+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum","description":"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/forum","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","position":2,"name":"Topics","item":"https:\/\/innovationspace.ansys.com\/forum\/topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/#listItem","name":"udf"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/#listItem","position":3,"name":"udf","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/#listItem","name":"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/#listItem","position":4,"name":"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/#listItem","name":"udf"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization","name":"Ansys Learning Forum","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/forum\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/","name":"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum","description":"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/#breadcrumblist"},"datePublished":"2024-07-28T14:38:54+00:00","dateModified":"2024-07-28T14:38:54+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/forum\/#website","url":"https:\/\/innovationspace.ansys.com\/forum\/","name":"Ansys Learning Forum","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Learning Forum | Ansys Innovation Space","og:type":"article","og:title":"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum","og:description":"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/","og:image":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png","og:image:secure_url":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png","article:published_time":"2024-07-28T14:38:54+00:00","article:modified_time":"2024-07-28T14:38:54+00:00","twitter:card":"summary_large_image","twitter:title":"Simulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue | Ansys Learning Forum","twitter:description":"I am simulating the Selective Laser Melting (SLM) process in Ansys Fluent. I have designed the powder bed domain (along with the gas domain) with dimensions of 0.8 mm (x) x 0.2 mm (z) x 0.28 mm (y). During initialization, I patched the region with a height of 0.2 mm along the Y-axis as solid,","twitter:image":"https:\/\/innovationspace.ansys.com\/forum\/wp-content\/uploads\/sites\/2\/2024\/07\/28-07-2024-1722177252-mceclip0.png"},"aioseo_meta_data":{"post_id":"373881","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"content","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2024-10-28 16:35:30","updated":"2024-10-28 16:35:30","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\/topics\/\" title=\"Topics\">Topics<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/\" title=\"udf\">udf<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSimulating Selective Laser Melting process in Ansys Fluent \u2013 UDF issue\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/forum"},{"label":"Topics","link":"https:\/\/innovationspace.ansys.com\/forum\/topics\/"},{"label":"udf","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/udf\/"},{"label":"Simulating Selective Laser Melting process in Ansys Fluent &#8211; UDF issue","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/simulating-selective-laser-melting-process-in-ansys-fluent-udf-issue\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["440817","199"],"_bbp_author_ip":["118.179.2.146"]," _bbp_last_reply_id":["0"],"_btv_view_count":["580"]," _bbp_likes_count":["0"],"_bbp_topic_status":["unanswered"],"_bbp_notification_enabled":["440817","440817","440817"],"_bbp_topic_id":["373881"],"_bbp_forum_id":["27792"],"_bbp_engagement":["199","440817"],"_bbp_voice_count":["2"],"_bbp_reply_count":["3"],"_bbp_last_reply_id":["374226"],"_bbp_last_active_id":["374226"],"_bbp_last_active_time":["2024-07-30 14:37:28"]},"test":"rakibul-buet19gmail-com"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/373881","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/373881\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=373881"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}