


{"id":377594,"date":"2024-08-07T16:27:59","date_gmt":"2024-08-07T16:27:59","guid":{"rendered":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/"},"modified":"2024-08-07T16:27:59","modified_gmt":"2024-08-07T16:27:59","slug":"ansys-fluent-udf-define_dpm_bc","status":"publish","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/","title":{"rendered":"Ansys Fluent UDF: DEFINE_DPM_BC"},"content":{"rendered":"<p>Hi,<\/p>\n<p>I&#8217;m trying to compile a UDF to impose a criteria for particle adhesion.&nbsp;<br \/>This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I need some advise on this matter.<\/p>\n<p>Thanks,<br \/>Kiran<\/p>\n<p>&nbsp;<\/p>\n<p><strong>error:<\/strong><\/p>\n<p>Files udf_names.c and user_nt.udf in 3ddp_host are up-to-date.<\/p>\n<p>&nbsp;<\/p>\n<p>Copyright 1987-2024 ANSYS, Inc. All Rights Reserved.<\/p>\n<p>Compiler and linker: Microsoft Visual C++<\/p>\n<p># Linking libudf.dll because of makefile user_nt.udf udf_names.obj test-UDF-four.obj<\/p>\n<p>LINK : fatal error LNK1104: cannot open file &#8216;kernel32.lib&#8217;<\/p>\n<p>NMAKE : U1077: &#8216;link -nologo \/Libpath:&#8221;C:\\PROGRA~1\\ANSYSI~1\\v241\\fluent&#8221;\\fluent24.1.0\\win64\\3ddp_host \/Libpath:&#8221;C:\\PROGRA~1\\ANSYSI~1\\v241\\fluent&#8221;\\fluent24.1.0\\multiport\\win64\\net\\shared \/dll \/out:libudf.dll udf_names.obj test-UDF-four.obj mport.lib fl2410.lib &#8216; : return code &#8216;0x450&#8217;<\/p>\n<p>Stop.<\/p>\n<p>Files udf_names.c and user_nt.udf in 3ddp_node are up-to-date.<\/p>\n<p>&nbsp;<\/p>\n<p>Copyright 1987-2024 ANSYS, Inc. All Rights Reserved.<\/p>\n<p>Compiler and linker: Microsoft Visual C++<\/p>\n<p># Linking libudf.dll because of makefile user_nt.udf udf_names.obj test-UDF-four.obj<\/p>\n<p>LINK : fatal error LNK1104: cannot open file &#8216;kernel32.lib&#8217;<\/p>\n<p>NMAKE : U1077: &#8216;link -nologo \/Libpath:&#8221;C:\\PROGRA~1\\ANSYSI~1\\v241\\fluent&#8221;\\fluent24.1.0\\win64\\3ddp_node \/Libpath:&#8221;C:\\PROGRA~1\\ANSYSI~1\\v241\\fluent&#8221;\\fluent24.1.0\\multiport\\win64\\mpi\\shared \/dll \/out:libudf.dll udf_names.obj test-UDF-four.obj mport.lib fl_mpi2410.lib &#8216; : return code &#8216;0x450&#8217;<\/p>\n<p>Stop.<\/p>\n<p>&nbsp;<\/p>\n<p>Done.<\/p>\n<p>&nbsp;<\/p>\n<p>kiran: Opening library &#8220;C:\\Users\\usr\\OneDrive\\Desktop\\Me\\UDF_compiled\\test_files\\dp0\\FFF-1\\Fluent\\one_way_transient-1&#8243;&#8230;<\/p>\n<p>ERROR: The UDF library you are trying to load (one_way_transient-1) is not compiled for parallel use on the current platform (win64).<\/p>\n<p>The system cannot find the file specified.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>C:\\\\Users\\\\usr\\\\OneDrive\\\\Desktop\\\\Me\\\\UDF_compiled\\\\test_files\\\\dp0\\\\FFF-1\\\\Fluent\\\\one_way_transient-1\\\\win64\\\\3ddp_host\\\\libudf.dll<\/p>\n<p>&nbsp;<\/p>\n<p>Done.<\/p>\n<p>&nbsp;<\/p>\n<p>kiran: Opening library &#8220;C:\\Users\\usr\\OneDrive\\Desktop\\Me\\UDF_compiled\\test_files\\dp0\\FFF-1\\Fluent\\one_way_transient-1&#8243;&#8230;<\/p>\n<p>ERROR: The UDF library you are trying to load (one_way_transient-1) is not compiled for parallel use on the current platform (win64).<\/p>\n<p>The system cannot find the file specified.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>C:\\\\Users\\\\usr\\\\OneDrive\\\\Desktop\\\\Me\\\\UDF_compiled\\\\test_files\\\\dp0\\\\FFF-1\\\\Fluent\\\\one_way_transient-1\\\\win64\\\\3ddp_node\\\\libudf.dll<\/p>\n<p>&nbsp;<\/p>\n<p>Error: An error occurred in the previous operation.<\/p>\n<p>The details can be found in the text output.<\/p>\n<p>Error Object: #f<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><strong>UDF:<\/strong><\/p>\n<div>\n<div>#include &#8220;udf.h&#8221;<\/div>\n<div>#include &#8220;dpm.h&#8221;<\/div>\n<p><\/p>\n<div>\/* Define constants *\/<\/div>\n<div>#define Rho_air 1.225 &nbsp;\/* Density of air in kg\/m^3 *\/<\/div>\n<div>#define Cd 0.44 &nbsp; &nbsp; &nbsp; &nbsp;\/* Drag coefficient *\/<\/div>\n<div>#define mu 0.196 &nbsp; &nbsp; &nbsp; \/* Friction coefficient *\/<\/div>\n<\/div>\n<div>\n<div>DEFINE_DPM_BC(particle_bc, p, t, f, normal, dim)<\/div>\n<div>{<\/div>\n<div>&nbsp; &nbsp; \/\/ Particle *p;<\/div>\n<div>&nbsp; &nbsp; \/\/ real A = P_AREA(P_DIAM(p)); &nbsp;\/* Assuming a method to calculate the projected area of the particle *\/<\/div>\n<div>&nbsp; &nbsp; real V = sqrt(P_VEL(p)[0] * P_VEL(p)[0] + P_VEL(p)[1] * P_VEL(p)[1] + P_VEL(p)[2] * P_VEL(p)[2]); &nbsp;\/* Velocity magnitude in m\/s *\/<\/div>\n<div>&nbsp; &nbsp; real radius = P_DIAM(p) \/ 2.0;<\/div>\n<div>&nbsp; &nbsp; real A = M_PI * radius * radius; &nbsp;\/* M_PI is a constant for &pi; *\/<\/div>\n<p><\/p>\n<div>&nbsp; &nbsp;<\/div>\n<div>&nbsp; &nbsp; \/* Get the thread and cell pointers *\/<\/div>\n<div>&nbsp; &nbsp; Thread *t0 = P_CELL_THREAD(p);<\/div>\n<div>&nbsp; &nbsp; cell_t c0 = P_CELL(p);<\/div>\n<div>&nbsp; &nbsp;<\/div>\n<div>&nbsp; &nbsp; \/* Get local pressure at the particle&#8217;s location *\/<\/div>\n<div>&nbsp; &nbsp; real P_local = C_P(c0, t0);<\/div>\n<p><\/p>\n<div>&nbsp; &nbsp; \/* Calculate aerodynamic force Fa *\/<\/div>\n<div>&nbsp; &nbsp; real Fa = 0.5 * Rho_air * A * Cd * V * V;<\/div>\n<p><\/p>\n<div>&nbsp; &nbsp; \/* Calculate normal force Fn *\/<\/div>\n<div>&nbsp; &nbsp; real Fn = P_local * A;<\/div>\n<p><\/p>\n<div>&nbsp; &nbsp; \/* Calculate frictional force Ff *\/<\/div>\n<div>&nbsp; &nbsp; real Ff = mu * Fn;<\/div>\n<p><\/p>\n<div>&nbsp; &nbsp; \/* Check the removal condition *\/<\/div>\n<div>&nbsp; &nbsp; if (Fa &gt; Ff)<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; \/* Particle needs to be removed from the surface *\/<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; return PATH_ACTIVE; \/*No adhesion*\/<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; else<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; \/* Particle sticks to the boundary *\/<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; P_USER_REAL(p, 0) = 1.;<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; return PATH_ABORT; \/*Adhesion*\/<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>}<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"template":"","class_list":["post-377594","topic","type-topic","status-publish","hentry","topic-tag-adhesion-1","topic-tag-interior-bc","topic-tag-udf"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hi,I&#039;m trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/\" \/>\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=\"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hi,I&#039;m trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-08-07T16:27:59+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-08-07T16:27:59+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hi,I&#039;m trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I\" \/>\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\\\/ansys-fluent-udf-define_dpm_bc\\\/#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\\\/ansys-fluent-udf-define_dpm_bc\\\/#listItem\",\"name\":\"Ansys Fluent UDF: DEFINE_DPM_BC\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/ansys-fluent-udf-define_dpm_bc\\\/#listItem\",\"position\":4,\"name\":\"Ansys Fluent UDF: DEFINE_DPM_BC\",\"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\\\/ansys-fluent-udf-define_dpm_bc\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/ansys-fluent-udf-define_dpm_bc\\\/\",\"name\":\"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum\",\"description\":\"Hi,I'm trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/ansys-fluent-udf-define_dpm_bc\\\/#breadcrumblist\"},\"datePublished\":\"2024-08-07T16:27:59+00:00\",\"dateModified\":\"2024-08-07T16:27:59+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":"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum","description":"Hi,I'm trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/#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\/ansys-fluent-udf-define_dpm_bc\/#listItem","name":"Ansys Fluent UDF: DEFINE_DPM_BC"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/#listItem","position":4,"name":"Ansys Fluent UDF: DEFINE_DPM_BC","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\/ansys-fluent-udf-define_dpm_bc\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/","name":"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum","description":"Hi,I'm trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/#breadcrumblist"},"datePublished":"2024-08-07T16:27:59+00:00","dateModified":"2024-08-07T16:27:59+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":"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum","og:description":"Hi,I'm trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/","article:published_time":"2024-08-07T16:27:59+00:00","article:modified_time":"2024-08-07T16:27:59+00:00","twitter:card":"summary_large_image","twitter:title":"Ansys Fluent UDF: DEFINE_DPM_BC | Ansys Learning Forum","twitter:description":"Hi,I'm trying to compile a UDF to impose a criteria for particle adhesion. This is my first attempt at writing a UDF, I ran into a few errors when I tried to build it and then when I load the UDF I see the following error, I will attach the UDF after the error message, I"},"aioseo_meta_data":{"post_id":"377594","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:34:02","updated":"2024-10-28 16:34:02","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\tAnsys Fluent UDF: DEFINE_DPM_BC\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":"Ansys Fluent UDF: DEFINE_DPM_BC","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/ansys-fluent-udf-define_dpm_bc\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["288381","199"],"_bbp_author_ip":["2607:fea8:7a61:4800:3128:8fa2:bb8d:e9dd"]," _bbp_last_reply_id":["0"]," _bbp_likes_count":["0"],"_btv_view_count":["873"],"_bbp_topic_status":["unanswered"],"_bbp_topic_id":["377594"],"_bbp_forum_id":["27792"],"_bbp_engagement":["199","288381"],"_bbp_voice_count":["2"],"_bbp_reply_count":["13"],"_bbp_last_reply_id":["379972"],"_bbp_last_active_id":["379972"],"_bbp_last_active_time":["2024-08-23 09:25:51"]},"test":"kiran-purushothamakeshavanontariotechu-net"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/377594","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\/377594\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=377594"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}