{"id":164805,"date":"2023-03-17T08:58:41","date_gmt":"2023-03-17T08:58:41","guid":{"rendered":"\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/"},"modified":"2023-07-31T12:26:18","modified_gmt":"2023-07-31T12:26:18","slug":"i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a","status":"publish","type":"topic","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/","title":{"rendered":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command."},"content":{"rendered":"<p>This can be done with the &#8220;form_&#8221; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window.  Then you can do everything with all the basic Tcl\/Tk commands.  All the base commands of Tcl\/Tk are available within ICEM. Below is an example script which creates one window and selects surfaces.  It is meant to be used with ICEM\u00e2\u20ac\u2122s GUI loaded.  You can save this as &#8220;Tcl_gui_example.tcl&#8221;, and type \u00e2\u20ac\u0153source Tcl_gui_example.tcl\u00e2\u20ac\u009d in the ICEM message window with this script in the working directory.   proc create_top_window {w} {     toplevel $w     wm title $w &#8220;ICEM CFD Script ($w)&#8221;     button $w.surfs -text &#8220;Select&#8221; -command &#8220;set ${w}_surfs [geo_select surface]&#8221;     entry $w.ent -textvariable ${w}_surfs     label $w.surfs_label -text &#8220;Surfaces&#8221;     set endb [frame $w.end_buttons -bd 0]     button $endb.apply -text &#8220;Apply&#8221; -command &#8220;do_proc [set ${w}_surfs]&#8221;     button $endb.done -text &#8220;Done&#8221; -command &#8220;destroy $w&#8221;     grid $w.surfs_label $w.ent $w.surfs -sticky we -padx 2 -pady 2     grid $endb.apply $endb.done -padx 2     grid $endb &#8211; &#8211; -sticky we -pady 2     grid columnconfigure $w 1 -weight 1 }  proc do_proc {surfaces} {     # This procedure performs the action     mess &#8220;selected surfaces: $surfacesn&#8221; }  # This line sets everything going when the script is sourced create_top_window .icem_win1 # Multiple windows can be created with a different window, such as &#8220;create_top_window .icem_win2&#8221;<\/p>\n","protected":false},"template":"","class_list":["post-164805","topic","type-topic","status-publish","hentry","topic-tag-14-5","topic-tag-fluid-dynamics","topic-tag-general","topic-tag-icem-cfd"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"This can be done with the &quot;form_&quot; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/\" \/>\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 Knowledge | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge\" \/>\n\t\t<meta property=\"og:description\" content=\"This can be done with the &quot;form_&quot; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-03-17T08:58:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-07-31T12:26:18+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This can be done with the &quot;form_&quot; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can\" \/>\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\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/icem-cfd\\\/#listItem\",\"name\":\"icem-cfd\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/icem-cfd\\\/#listItem\",\"position\":3,\"name\":\"icem-cfd\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/icem-cfd\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/#listItem\",\"name\":\"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/#listItem\",\"position\":4,\"name\":\"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/icem-cfd\\\/#listItem\",\"name\":\"icem-cfd\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#organization\",\"name\":\"Ansys Knowledge\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/\",\"name\":\"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \\u2018Programmers Guide\\u2019 this seems best done building up from a form_init command. | Ansys Knowledge\",\"description\":\"This can be done with the \\\"form_\\\" functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\\\/#breadcrumblist\"},\"datePublished\":\"2023-03-17T08:58:41+00:00\",\"dateModified\":\"2023-07-31T12:26:18+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/\",\"name\":\"Ansys Knowledge\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge","description":"This can be done with the \"form_\" functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can","canonical_url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/knowledge","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","position":2,"name":"Topics","item":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/icem-cfd\/#listItem","name":"icem-cfd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/icem-cfd\/#listItem","position":3,"name":"icem-cfd","item":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/icem-cfd\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/#listItem","name":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command."},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/#listItem","position":4,"name":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command.","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/icem-cfd\/#listItem","name":"icem-cfd"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#organization","name":"Ansys Knowledge","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/knowledge\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/#webpage","url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/","name":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge","description":"This can be done with the \"form_\" functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/#breadcrumblist"},"datePublished":"2023-03-17T08:58:41+00:00","dateModified":"2023-07-31T12:26:18+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#website","url":"https:\/\/innovationspace.ansys.com\/knowledge\/","name":"Ansys Knowledge","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Knowledge | Ansys Innovation Space","og:type":"article","og:title":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge","og:description":"This can be done with the &quot;form_&quot; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can","og:url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/","article:published_time":"2023-03-17T08:58:41+00:00","article:modified_time":"2023-07-31T12:26:18+00:00","twitter:card":"summary_large_image","twitter:title":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD. Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command. | Ansys Knowledge","twitter:description":"This can be done with the &quot;form_&quot; functions, but I would probably stay away from them, since they are really done in the older GUI style, and if you create your own Tk widgets, you can then run ICEM in batch, but use only your windows without loading the main ICEM window. Then you can"},"aioseo_meta_data":{"post_id":"164805","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":"default","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":false,"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":"2025-10-17 21:38:50","updated":"2026-07-29 14:48:07","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\/knowledge\" 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\/knowledge\/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\/knowledge\/forums\/topic-tag\/icem-cfd\/\" title=\"icem-cfd\">icem-cfd<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tI would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the \u2018Programmers Guide\u2019 this seems best done building up from a form_init command.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/knowledge"},{"label":"Topics","link":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/"},{"label":"icem-cfd","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/icem-cfd\/"},{"label":"I would like to make my own menu form in order to set values and select items for a Tcl script I have written for ICEM CFD.  Looking at the &#8216;Programmers Guide&#8217; this seems best done building up from a form_init command.","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-would-like-to-make-my-own-menu-form-in-order-to-set-values-and-select-items-for-a-tcl-script-i-have-written-for-icem-cfd-looking-at-the-programmers-guide-this-seems-best-done-building-up-from-a\/"}],"acf":[],"custom_fields":[{"0":{"_wp_page_template":["default"],"_bbp_last_active_time":["3-15-2023  20:20:09"],"_bbp_forum_id":["27796"],"_bbp_author_ip":["23.56.168.180"],"_btv_view_count":["729"],"siebel_km_number":["503485"],"product_version":["14.5"],"km_published_date":["2006-05-18T00:00:00.000Z"],"family":["Fluid Dynamics"],"application_name":["ICEM CFD"]},"test":"articlesansys-com"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics\/164805","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics\/164805\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/media?parent=164805"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}