


{"id":362110,"date":"2024-04-15T04:11:31","date_gmt":"2024-04-15T04:11:31","guid":{"rendered":"\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/"},"modified":"2024-04-15T04:11:31","modified_gmt":"2024-04-15T04:11:31","slug":"need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error","status":"closed","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/","title":{"rendered":"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;"},"content":{"rendered":"<p>I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &#8220;999999: mpt_accept: error: accept failed: No error.&#8221; The current code below compiles and works at printing the values (although they aren&#8217;t really what I expected). I have also attached the pseudo code of what I am trying to do.<\/p>\n<div>#include &#8220;udf.h&#8221;<\/div>\n<div>#include &lt;math.h&gt;<\/div>\n<div>DEFINE_EXECUTE_AT_END(print_heat_flux)<\/div>\n<div>{<\/div>\n<div>&nbsp; &nbsp; Domain *d;<\/div>\n<div>&nbsp; &nbsp; Thread *t;<\/div>\n<div>&nbsp; &nbsp; face_t f;<\/div>\n<div>&nbsp; &nbsp; real Ts, heat_flux, Hv, r, Ts_old, Ts_new, m_dot, T;&nbsp; \/\/ Declare all variables at the top of the block<\/div>\n<div>&nbsp; &nbsp; real error;<\/div>\n<div>&nbsp; &nbsp; int iter;<\/div>\n<div>&nbsp; &nbsp; d = Get_Domain(1);&nbsp; \/\/ Adjust the domain ID as per your case<\/div>\n<div>&nbsp;<\/div>\n<div>&nbsp; &nbsp; \/* Loop over all face threads in the domain *\/<\/div>\n<div>&nbsp; &nbsp; thread_loop_f(t, d)<\/div>\n<div>&nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; \/* Check if this is the boundary with the ID you&#8217;re interested in *\/<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; if (THREAD_ID(t) == 6)&nbsp; \/\/ Adjust the surface ID as per your case<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \/* Loop over all faces in this thread *\/<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin_f_loop(f, t)<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ts = F_T(f, t);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\/\/ Get the temperature at face f<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; heat_flux = BOUNDARY_HEAT_FLUX(f, t); \/\/ Calculate the heat flux<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&#8220;Heat flux on face %d: %g W\/m^2\\n&#8221;, f, heat_flux);<\/div>\n<div>Ts_old = Ts;<\/div>\n<div>iter = 0;<\/div>\n<div>error = 1;<\/div>\n<div>while (error&gt;1e-6 &amp;&amp; iter &lt;10)<\/div>\n<div>{<\/div>\n<div>Hv = 2033631 + 310000 + 1500;<\/div>\n<div>r = heat_flux\/(Hv*900);<\/div>\n<div>Ts_new = 20557.188 \/ (8.314 * (log(0.01104) &#8211; log(r)));<\/div>\n<div>error=fabs(Ts_new-Ts_old);<\/div>\n<div>iter++;<\/div>\n<div>}<\/div>\n<div>T(f)=Ts+0.1*(Ts_new-Ts);<\/div>\n<div>r = heat_flux\/(Hv*900);<\/div>\n<div>printf(&#8220;Regression Rate: %g\\n&#8221;, r);<\/div>\n<div>m_dot=900*r;<\/div>\n<div>printf(&#8220;M_dot: %g\\n&#8221;, m_dot);<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end_f_loop(f, t)<\/div>\n<div>&nbsp; &nbsp; &nbsp; &nbsp; }<\/div>\n<div>&nbsp; &nbsp; }<\/div>\n<div>}<\/div>\n<p>&nbsp;<\/p>\n<div><img decoding=\"async\" src=\"\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo Code.png\" alt=\"\"><\/div>\n","protected":false},"template":"","class_list":["post-362110","topic","type-topic","status-closed","hentry","topic-tag-2d","topic-tag-fluent","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=\"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &quot;999999: mpt_accept: error: accept failed: No error.&quot; The current code below compiles and works at printing the values (although they aren&#039;t really what\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/\" \/>\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=\"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &quot;999999: mpt_accept: error: accept failed: No error.&quot; The current code below compiles and works at printing the values (although they aren&#039;t really what\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo%20Code.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo%20Code.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-04-15T04:11:31+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-04-15T04:11:31+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &quot;999999: mpt_accept: error: accept failed: No error.&quot; The current code below compiles and works at printing the values (although they aren&#039;t really what\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo Code.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\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/#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\\\/fluent\\\/#listItem\",\"name\":\"fluent\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/fluent\\\/#listItem\",\"position\":3,\"name\":\"fluent\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/fluent\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/#listItem\",\"name\":\"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/#listItem\",\"position\":4,\"name\":\"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/fluent\\\/#listItem\",\"name\":\"fluent\"}}]},{\"@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\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/\",\"name\":\"Need help with UDF. \\u201c999999: mpt_accept: error: accept failed: No error.\\u201d | Ansys Learning Forum\",\"description\":\"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says \\\"999999: mpt_accept: error: accept failed: No error.\\\" The current code below compiles and works at printing the values (although they aren't really what\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\\\/#breadcrumblist\"},\"datePublished\":\"2024-04-15T04:11:31+00:00\",\"dateModified\":\"2024-04-15T04:11:31+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":"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum","description":"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says \"999999: mpt_accept: error: accept failed: No error.\" The current code below compiles and works at printing the values (although they aren't really what","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/#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\/fluent\/#listItem","name":"fluent"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/fluent\/#listItem","position":3,"name":"fluent","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/fluent\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/#listItem","name":"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/#listItem","position":4,"name":"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/fluent\/#listItem","name":"fluent"}}]},{"@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\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/","name":"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum","description":"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says \"999999: mpt_accept: error: accept failed: No error.\" The current code below compiles and works at printing the values (although they aren't really what","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/#breadcrumblist"},"datePublished":"2024-04-15T04:11:31+00:00","dateModified":"2024-04-15T04:11:31+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":"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum","og:description":"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &quot;999999: mpt_accept: error: accept failed: No error.&quot; The current code below compiles and works at printing the values (although they aren't really what","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/","og:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo%20Code.png","og:image:secure_url":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo%20Code.png","article:published_time":"2024-04-15T04:11:31+00:00","article:modified_time":"2024-04-15T04:11:31+00:00","twitter:card":"summary_large_image","twitter:title":"Need help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d | Ansys Learning Forum","twitter:description":"I want my udf to update the surface tempurature to T(f), and the mass flow inlet to m_dot at the end. When try and use the DEFINE_ADJUST macro it crashes and says &quot;999999: mpt_accept: error: accept failed: No error.&quot; The current code below compiles and works at printing the values (although they aren't really what","twitter:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/04\/15-04-2024-1713154185-Pseudo Code.png"},"aioseo_meta_data":{"post_id":"362110","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:48:51","updated":"2024-10-28 16:48:51","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\/fluent\/\" title=\"fluent\">fluent<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tNeed help with UDF. \u201c999999: mpt_accept: error: accept failed: No error.\u201d\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":"fluent","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/fluent\/"},{"label":"Need help with UDF. &#8220;999999: mpt_accept: error: accept failed: No error.&#8221;","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/need-help-with-udf-999999-mpt_accept-error-accept-failed-no-error\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["343144","199"],"_bbp_author_ip":["23.218.248.135"]," _bbp_last_reply_id":["0"]," _bbp_likes_count":["0"],"_btv_view_count":["478"],"_bbp_topic_status":["unanswered"],"_bbp_topic_id":["362110"],"_bbp_forum_id":["27792"],"_bbp_engagement":["199","343144"],"_bbp_voice_count":["2"],"_bbp_reply_count":["3"],"_bbp_last_reply_id":["362432"],"_bbp_last_active_id":["362432"],"_bbp_last_active_time":["2024-04-16 09:56:24"]},"test":"zwernjaydengmail-com"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/362110","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\/362110\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=362110"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}