


{"id":303841,"date":"2023-08-29T11:27:19","date_gmt":"2023-08-29T11:27:19","guid":{"rendered":"\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/"},"modified":"2023-09-04T10:27:48","modified_gmt":"2023-09-04T10:27:48","slug":"python-code-object-not-working-when-updating-design-points","status":"closed","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/","title":{"rendered":"Python Code Object not working when updating Design Points"},"content":{"rendered":"<p>Hello everyone!<\/p>\n<p>&nbsp;<\/p>\n<p>I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from Workbench, the Python Code does not work.<\/p>\n<p>&nbsp;<\/p>\n<p>For reference, this is script I am using at the moment which runs perfectly fine in Mechanical Scripting editor:<br \/>&nbsp; &nbsp;&nbsp;<br \/>&nbsp; &nbsp; import csv<br \/>&nbsp; &nbsp; import os<br \/>&nbsp; &nbsp; import wbjn<br \/>&nbsp; &nbsp;&nbsp;<br \/>&nbsp;&nbsp; <br \/>&nbsp; &nbsp; dpn=wbjn.ExecuteCommand(ExtAPI,&#8221;returnValue(a+Parameters.GetActiveDesignPoint().Name)&#8221;,a=&#8221;DP&#8221;)<br \/>&nbsp; &nbsp;&nbsp;<br \/>&nbsp; &nbsp; cmd = &#8220;returnValue(GetUserFilesDirectory())&#8221;<br \/>&nbsp; &nbsp; user_dir = wbjn.ExecuteCommand(ExtAPI, cmd)<br \/>&nbsp; &nbsp;&nbsp;<br \/>&nbsp; &nbsp;&nbsp;<\/p>\n<p>&nbsp; &nbsp; def writeCSV(filename, data):<\/p>\n<p>&nbsp; &nbsp;# Function to write python list to a csv file<br \/>&nbsp; &nbsp; &nbsp; &nbsp; with open(filename, &#8220;wb&#8221;) as csvfile:<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; spamwriter = csv.writer(csvfile, delimiter=&#8217;;&#8217;,<br \/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; quotechar=&#8217;|&#8217;, quoting=csv.QUOTE_MINIMAL)<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for row in data:<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; spamwriter.writerow(row)<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp; &nbsp; ResultsOfInterest = []<\/p>\n<p>&nbsp; &nbsp; ResultsOfInterest.append(&#8216;Directional Deformation&#8217;)<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp; &nbsp; #import wbjn<\/p>\n<p>&nbsp; &nbsp; AnalysisNumber=0<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp; &nbsp; solution=Model.Analyses[AnalysisNumber].Solution<\/p>\n<p>&nbsp; &nbsp; for j, item in enumerate(solution.Children):<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; if item.GetType() == Ansys.ACT.Automation.Mechanical.Results.DeformationResults.DirectionalDeformation:<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if item.Name in ResultsOfInterest:<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; item.Activate()<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; data=[]<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; del data[:]<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pane=ExtAPI.UserInterface.GetPane(MechanicalPanelEnum.TabularData)<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Con = Pane.ControlUnknown<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for R in range(1,Con.RowsCount+1):<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; data.append([])<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for C in range(2,Con.ColumnsCount+1):<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; data[-1].append(Con.cell(R,C).Text)<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeCSV(user_dir + &#8220;\/&#8221; + dpn+ &#8220;Deformation.csv&#8221;, data)<\/p>\n<p>&nbsp;<\/p>\n<p>As I stated earlier, while updating the Design Points through Parameter Set in Workbench, the results do not get stored. Is there any solution for this?<\/p>\n<p>&nbsp;<\/p>\n<p>P.S.: I have already checked the option where one needs to connect the Python script under Workbench -&gt; Tools -&gt; Option -&gt; Mechanical -&gt; Connect\/Run Python Code Objects when Mechanical is launched.<\/p>\n<p>&nbsp;<\/p>\n<p>EDIT: The above script is for a sample problem in which I am trying to obtain results before I actually implement it for my use-case. Under Ansys.ACT.Automation.Mechanical.Results, results of choice can be extracted.&nbsp;<\/p>\n","protected":false},"template":"","class_list":["post-303841","topic","type-topic","status-closed","hentry","topic-tag-python-ironpython-1","topic-tag-ansys-transient-thermal-2","topic-tag-design-of-experiements-2","topic-tag-doe-1","topic-tag-excel-csv","topic-tag-export-result","topic-tag-mechanical","topic-tag-transient-thermal"],"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 performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/\" \/>\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=\"Python Code Object not working when updating Design Points | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-08-29T11:27:19+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-09-04T10:27:48+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Python Code Object not working when updating Design Points | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from\" \/>\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\\\/python-code-object-not-working-when-updating-design-points\\\/#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\\\/mechanical\\\/#listItem\",\"name\":\"mechanical\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/mechanical\\\/#listItem\",\"position\":3,\"name\":\"mechanical\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/mechanical\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/python-code-object-not-working-when-updating-design-points\\\/#listItem\",\"name\":\"Python Code Object not working when updating Design Points\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/python-code-object-not-working-when-updating-design-points\\\/#listItem\",\"position\":4,\"name\":\"Python Code Object not working when updating Design Points\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/mechanical\\\/#listItem\",\"name\":\"mechanical\"}}]},{\"@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\\\/python-code-object-not-working-when-updating-design-points\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/python-code-object-not-working-when-updating-design-points\\\/\",\"name\":\"Python Code Object not working when updating Design Points | Ansys Learning Forum\",\"description\":\"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/python-code-object-not-working-when-updating-design-points\\\/#breadcrumblist\"},\"datePublished\":\"2023-08-29T11:27:19+00:00\",\"dateModified\":\"2023-09-04T10:27:48+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":"Python Code Object not working when updating Design Points | Ansys Learning Forum","description":"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/#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\/mechanical\/#listItem","name":"mechanical"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/mechanical\/#listItem","position":3,"name":"mechanical","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/mechanical\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/#listItem","name":"Python Code Object not working when updating Design Points"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/#listItem","position":4,"name":"Python Code Object not working when updating Design Points","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/mechanical\/#listItem","name":"mechanical"}}]},{"@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\/python-code-object-not-working-when-updating-design-points\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/","name":"Python Code Object not working when updating Design Points | Ansys Learning Forum","description":"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/#breadcrumblist"},"datePublished":"2023-08-29T11:27:19+00:00","dateModified":"2023-09-04T10:27:48+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":"Python Code Object not working when updating Design Points | Ansys Learning Forum","og:description":"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/","article:published_time":"2023-08-29T11:27:19+00:00","article:modified_time":"2023-09-04T10:27:48+00:00","twitter:card":"summary_large_image","twitter:title":"Python Code Object not working when updating Design Points | Ansys Learning Forum","twitter:description":"Hello everyone! I am performing a parameter study in Transient Thermal in which I need to export the temperature results for all time steps to a CSV file. I have a Python script which works perfectly fine when I run it in the Mechanical Scripting editor. But when I try to update the Design Points from"},"aioseo_meta_data":{"post_id":"303841","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 17:48:09","updated":"2024-10-28 17:48:09","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\/mechanical\/\" title=\"mechanical\">mechanical<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPython Code Object not working when updating Design Points\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":"mechanical","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/mechanical\/"},{"label":"Python Code Object not working when updating Design Points","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/python-code-object-not-working-when-updating-design-points\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["292401","18229","170445"],"_bbp_author_ip":["23.206.193.146"]," _bbp_last_reply_id":["0"]," _bbp_likes_count":["0"],"_btv_view_count":["4661"],"_edit_lock":["1693308523:229242"],"_bbp_status":["publish"],"_bbp_topic_status":["unanswered"],"_bbp_likes_count":["1"],"_bbp_topic_id":["303841"],"_bbp_forum_id":["27791"],"_bbp_engagement":["18229","170445","292401"],"_bbp_voice_count":["3"],"_bbp_reply_count":["15"],"_bbp_last_reply_id":["304777"],"_bbp_last_active_id":["304777"],"_bbp_last_active_time":["2023-09-04 08:36:41"]},"test":"akshay-panchwaghrwth-aachen-de"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/303841","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\/303841\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=303841"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}