


{"id":357241,"date":"2024-03-15T10:27:05","date_gmt":"2024-03-15T10:27:05","guid":{"rendered":"\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/"},"modified":"2024-03-15T10:27:05","modified_gmt":"2024-03-15T10:27:05","slug":"error-during-restart-of-a-electrothermal-analysis","status":"closed","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/","title":{"rendered":"error during restart  of a electrothermal analysis"},"content":{"rendered":"<p>Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting &nbsp;and during restart I use apdl commands to change the rezistivity of certain elements at a certain step &nbsp;then solve again. Unfortunately i encounter an error that only appears as a warning in the interface as seen in the image and it is not detailed in the err file or anywhere else.&nbsp;<\/p>\n<p><img decoding=\"async\" src=\"\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png\"><\/p>\n<p>Here is the code i am using to do the restart. command 2 is created before the restart to avoid creating it again and again.&nbsp;<br \/>Has anyone encontered this problem? I read some posts about the rst file that has to be disposed of before another solve or that it may be a bug. Any suggestions would be great. Thank you<\/p>\n<p>#SET THE ANALYSIS TO RESTART<br \/>settings.RestartType=RestartType.Manual<br \/>settings.CurrentRestartPoint=1<br \/>step_index_list=list(range(1,settings.NumberOfRestartPoints+1))<br \/>with Transaction():<br \/>&nbsp; &nbsp; for step_index in step_index_list:<br \/>&nbsp; &nbsp; &nbsp; &nbsp; settings.CurrentRestartPoint=step_index<br \/>&nbsp; &nbsp; &nbsp; &nbsp; vartest=1<br \/>&nbsp; &nbsp; &nbsp; &nbsp; while(vartest &lt; 3):<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vartest=vartest+1<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #COMMAND INSERTION FOR RESISTIVITY<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_1=solution.AddCommandSnippet()<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_1.StepSelectionMode=SequenceSelectionType.ByNumber<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_1.Name=&#8221;Det_resistivity&#8221;<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_1.Input=&#8221;&#8221;&#8221;<br \/>\/PREP7<\/p>\n<p>*DEL, transistor_model, , NOPR<br \/>*DIM, transistor_model, TABLE, 161, 39, 69<br \/>*TREAD, transistor_model, &#8216;TableModel&#8217;, &#8216;table&#8217;<\/p>\n<p>\/INQUIRE,numlines,LINES,&#8217;ELEM_T_VDS_VGS_file_multipleT_restart&#8217;,&#8217;txt&#8217;<br \/>*DEL,mytable,,NOPR<br \/>*DIM,mytable,TABLE,numlines-1,9,1 !&nbsp;<\/p>\n<p>*DEL, final_val, , nopr<br \/>*DIM, final_val, ARRAY, numlines-1,7,1&nbsp;<\/p>\n<p>*TREAD,mytable,&#8217;ELEM_T_VDS_VGS_file_multipleT_restart&#8217;,&#8217;txt&#8217;,&#8221;,,<br \/>!*STATUS,mytable<\/p>\n<p>*DO,i,1,numlines-1<br \/>&nbsp; &nbsp; *VITRP, final_val(i,2,), transistor_model, mytable(i,8,1), mytable(i,2,1), mytable(i,7,1)<br \/>&nbsp; &nbsp; *VITRP, final_val(i,3,), transistor_model, mytable(i,8,1), mytable(i,3,1), mytable(i,7,1)<br \/>&nbsp; &nbsp; *VITRP, final_val(i,4,), transistor_model, mytable(i,8,1), mytable(i,4,1), mytable(i,7,1)<br \/>&nbsp; &nbsp; *VITRP, final_val(i,5,), transistor_model, mytable(i,8,1), mytable(i,5,1), mytable(i,7,1)<br \/>&nbsp; &nbsp; *VITRP, final_val(i,6,), transistor_model, mytable(i,8,1), mytable(i,6,1), mytable(i,7,1)<br \/>&nbsp; &nbsp; *VITRP, final_val(i,7,), transistor_model, mytable(i,8,1), mytable(i,7,1), mytable(i,7,1)<br \/>*ENDDO<\/p>\n<p>*CFOPEN,&#8217;interpolated_val_restart&#8217;,&#8217;txt&#8217;<br \/>*VWRITE,final_val(1,3,1),final_val(1,4,1),final_val(1,2,1),final_val(1,5,1),final_val(1,6,1),final_val(1,7,1)<br \/>%G,%G,%G,%G,%G,%G<br \/>*CFCLOS<\/p>\n<p>FINISH<br \/>\/SOLU&#8221;&#8221;&#8221;<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; solution.ExecutePostCommands([command_1])<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #Define the named sel from interface for substrate_elements<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_2.Name=&#8221;MP_change_Command&#8221;<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_2.Input=&#8221;&#8221;&#8221;<br \/>\/PREP7<\/p>\n<p>*SET,maxelement,15355<br \/>!Read material property txt data<br \/>*DIM,cond,TABLE,maxelement,1,0, , , &nbsp;<br \/>*TREAD,cond,&#8217;interpolated_val_restart&#8217;,&#8217;txt&#8217;,&#8217; &#8216;, ,<\/p>\n<p>\/INQUIRE,numlines,LINES,&#8217;ELEM_T_VDS_VGS_file_multipleT_restart&#8217;,&#8217;txt&#8217;<br \/>*DEL,mytable,,NOPR<br \/>*DIM,mytable,TABLE,numlines-1,9,1 !&nbsp;<br \/>*TREAD,mytable,&#8217;ELEM_T_VDS_VGS_file_multipleT_restart&#8217;,&#8217;txt&#8217;,&#8221;,,<br \/>*STATUS,mytable<\/p>\n<p>*DO ,i,13367,maxelement,1<br \/>!ESEL,S,elem,,i<br \/>EMODIF,i,MAT,i<br \/>MP,KXX,i,280<br \/>MP,DENS,i,2358<br \/>MPTEMP<br \/>MPTEMP,1,mytable(1,3,1),mytable(1,4,1),mytable(1,2,1),mytable(1,5,1),mytable(1,6,1),mytable(1,7,1)<br \/>MPDATA,RSVZ,i,1,cond(i,0),cond(i,1),cond(i,2),cond(i,3),cond(i,4),cond(i,5)<br \/>!EMODIF,i,MAT,i<br \/>*ENDDO<br \/>FINISH<br \/>\/SOLU&#8221;&#8221;&#8221;<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_2.StepSelectionMode=SequenceSelectionType.ByNumber<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_2.StepNumber = step_index<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; command_1.Delete()<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; model.Solve()<\/p>\n","protected":false},"template":"","class_list":["post-357241","topic","type-topic","status-closed","hentry","topic-tag-mechanicalworkbench-1","topic-tag-apdl-commands","topic-tag-mechanical","topic-tag-python-apdl-1","topic-tag-python-ironpython-1","topic-tag-python-scripting","topic-tag-script","topic-tag-workbench"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/\" \/>\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=\"error during restart of a electrothermal analysis | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-03-15T10:27:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-03-15T10:27:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"error during restart of a electrothermal analysis | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.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\\\/error-during-restart-of-a-electrothermal-analysis\\\/#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\\\/workbench\\\/#listItem\",\"name\":\"workbench\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/workbench\\\/#listItem\",\"position\":3,\"name\":\"workbench\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/workbench\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/error-during-restart-of-a-electrothermal-analysis\\\/#listItem\",\"name\":\"error during restart  of a electrothermal analysis\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/error-during-restart-of-a-electrothermal-analysis\\\/#listItem\",\"position\":4,\"name\":\"error during restart  of a electrothermal analysis\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/workbench\\\/#listItem\",\"name\":\"workbench\"}}]},{\"@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\\\/error-during-restart-of-a-electrothermal-analysis\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/error-during-restart-of-a-electrothermal-analysis\\\/\",\"name\":\"error during restart of a electrothermal analysis | Ansys Learning Forum\",\"description\":\"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/error-during-restart-of-a-electrothermal-analysis\\\/#breadcrumblist\"},\"datePublished\":\"2024-03-15T10:27:05+00:00\",\"dateModified\":\"2024-03-15T10:27:05+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":"error during restart of a electrothermal analysis | Ansys Learning Forum","description":"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/#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\/workbench\/#listItem","name":"workbench"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/workbench\/#listItem","position":3,"name":"workbench","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/workbench\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/#listItem","name":"error during restart  of a electrothermal analysis"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/#listItem","position":4,"name":"error during restart  of a electrothermal analysis","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/workbench\/#listItem","name":"workbench"}}]},{"@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\/error-during-restart-of-a-electrothermal-analysis\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/","name":"error during restart of a electrothermal analysis | Ansys Learning Forum","description":"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/#breadcrumblist"},"datePublished":"2024-03-15T10:27:05+00:00","dateModified":"2024-03-15T10:27:05+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":"error during restart of a electrothermal analysis | Ansys Learning Forum","og:description":"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/","og:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png","og:image:secure_url":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png","article:published_time":"2024-03-15T10:27:05+00:00","article:modified_time":"2024-03-15T10:27:05+00:00","twitter:card":"summary_large_image","twitter:title":"error during restart of a electrothermal analysis | Ansys Learning Forum","twitter:description":"Hello everyone! I am doing a coupled transient electro-thermal simulation in the coupled field module in workbench r2023r1. I have automated the entire simulation with python scripting and during restart I use apdl commands to change the rezistivity of certain elements at a certain step then solve again. Unfortunately i encounter an error that only","twitter:image":"https:\/\/innovationspace.ansys.com\/forum\/forum\/wp-content\/uploads\/sites\/2\/2024\/03\/15-03-2024-1710498241-mceclip1.png"},"aioseo_meta_data":{"post_id":"357241","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:54:01","updated":"2024-10-28 16:54:01","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\/workbench\/\" title=\"workbench\">workbench<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\terror during restart  of a electrothermal analysis\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":"workbench","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/workbench\/"},{"label":"error during restart  of a electrothermal analysis","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/error-during-restart-of-a-electrothermal-analysis\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["74623","341583"],"_bbp_author_ip":["23.206.193.59"]," _bbp_last_reply_id":["0"]," _bbp_likes_count":["0"],"_btv_view_count":["301"],"_bbp_topic_status":["unanswered"],"_bbp_topic_id":["357241"],"_bbp_forum_id":["27791"],"_bbp_engagement":["74623","341583"],"_bbp_voice_count":["2"],"_bbp_reply_count":["1"],"_bbp_last_reply_id":["357534"],"_bbp_last_active_id":["357534"],"_bbp_last_active_time":["2024-03-18 07:22:30"]},"test":"luiza-dobreethm-utcluj-ro"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/357241","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\/357241\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=357241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}