{"id":157979,"date":"2022-06-06T09:58:16","date_gmt":"2022-06-06T09:58:16","guid":{"rendered":"\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/"},"modified":"2022-06-06T09:58:16","modified_gmt":"2022-06-06T09:58:16","slug":"i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this","status":"publish","type":"topic","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/","title":{"rendered":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?"},"content":{"rendered":"<p>There are two main options here:  Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.<\/p>\n<p>If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT&#8217;s Python does not have access to SciPy.  If calling APDL, note that ansys.RunANSYS() might not won&#8217;t work in an Evaluate or Generate callback due to a threading issue.  It probably will, but if not, here is how to do it without &#8220;import ansys&#8221; capabilities:<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>    import Ansys.Utilities<br \/>    from Ansys.Utilities import ApplicationConfiguration<\/p>\n<p>    import System<br \/>    from System.Diagnostics import Process<br \/>    from System.Diagnostics import ProcessStartInfo<br \/>    from System.Diagnostics import ProcessWindowStyle<\/p>\n<p>    # Create a tmp bat file in this path<br \/>    bat_file = System.IO.Path.Combine(apdlDir,&#8217;tmp.bat&#8217;);<br \/>    info = System.IO.StreamWriter(bat_file)<br \/>    a = ApplicationConfiguration.DefaultConfiguration.AwpRootEnvironmentVariableValue<br \/>    b = System.IO.Path.Combine(a,&#8217;ansys&#8217;)<br \/>    c = System.IO.Path.Combine(b,&#8217;bin&#8217;)<br \/>    d = System.IO.Path.Combine(c,ApplicationConfiguration.DefaultConfiguration.AnsysPlatform)<br \/>    e = System.IO.Path.Combine(d,&#8217;ansys162.exe&#8217;)<br \/>    commandLine = &#8216;&#8221;&#8216;+e+'&#8221; -dir &#8220;&#8216;+apdlDir+'&#8221; -j &#8220;file&#8221; -b -i &#8220;&#8216;+apdlInput+'&#8221; -o &#8220;&#8216;+apdlOutput+'&#8221;&#8216;<br \/>    info.WriteLine(commandLine)<br \/>    info.Close()<\/p>\n<p>    # Run the bat file now<br \/>    startInfo = ProcessStartInfo(bat_file, None)<br \/>    startInfo.WindowStyle = ProcessWindowStyle.Minimized<\/p>\n<p>    p = Process.Start(startInfo)<br \/>    p.WaitForExit()<\/p>\n<p>    # Delete the tmp bat file<br \/>    System.IO.File.Delete(bat_file)<br \/>&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n<p>In this code, we create a tmp file with the command we want, and execute it with ANSYS.  A nice way to get any APDL functionality in your ACT code.<\/p>\n","protected":false},"template":"","class_list":["post-157979","topic","type-topic","status-publish","hentry","topic-tag-act","topic-tag-custom","topic-tag-deriv","topic-tag-derivative","topic-tag-result"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT&#039;s Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won&#039;t work in an Evaluate\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/\" \/>\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 am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge\" \/>\n\t\t<meta property=\"og:description\" content=\"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT&#039;s Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won&#039;t work in an Evaluate\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-06-06T09:58:16+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-06-06T09:58:16+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge\" \/>\n\t\t<meta name=\"twitter:description\" content=\"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT&#039;s Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won&#039;t work in an Evaluate\" \/>\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-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/#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\\\/act\\\/#listItem\",\"name\":\"act\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/act\\\/#listItem\",\"position\":3,\"name\":\"act\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/act\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/#listItem\",\"name\":\"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/#listItem\",\"position\":4,\"name\":\"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic-tag\\\/act\\\/#listItem\",\"name\":\"act\"}}]},{\"@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-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/\",\"name\":\"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge\",\"description\":\"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT's Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won't work in an Evaluate\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/knowledge\\\/forums\\\/topic\\\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\\\/#breadcrumblist\"},\"datePublished\":\"2022-06-06T09:58:16+00:00\",\"dateModified\":\"2022-06-06T09:58:16+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 am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge","description":"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT's Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won't work in an Evaluate","canonical_url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/","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-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/#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\/act\/#listItem","name":"act"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/act\/#listItem","position":3,"name":"act","item":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/act\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/#listItem","name":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/#listItem","position":4,"name":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/act\/#listItem","name":"act"}}]},{"@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-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/#webpage","url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/","name":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge","description":"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT's Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won't work in an Evaluate","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/#breadcrumblist"},"datePublished":"2022-06-06T09:58:16+00:00","dateModified":"2022-06-06T09:58:16+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 am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge","og:description":"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT's Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won't work in an Evaluate","og:url":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/","article:published_time":"2022-06-06T09:58:16+00:00","article:modified_time":"2022-06-06T09:58:16+00:00","twitter:card":"summary_large_image","twitter:title":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this? | Ansys Knowledge","twitter:description":"There are two main options here: Create the derivative yourself in Python, or call out to APDL to invoke the DERIV command.If creating the derivative yourself, it will require some numerical programming as (unfortunately) ACT's Python does not have access to SciPy. If calling APDL, note that ansys.RunANSYS() might not won't work in an Evaluate"},"aioseo_meta_data":{"post_id":"157979","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 17:59:34","updated":"2026-07-29 03:52:25","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\/act\/\" title=\"act\">act<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tI am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?\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":"act","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic-tag\/act\/"},{"label":"I am writing an ACT extension to encapsulate a custom result and need to take the derivative of that nodal result with respect to time. Is it possible to build in a derivative in ACT like this?","link":"https:\/\/innovationspace.ansys.com\/knowledge\/forums\/topic\/i-am-writing-an-act-extension-to-encapsulate-a-custom-result-and-need-to-take-the-derivative-of-that-nodal-result-with-respect-to-time-is-it-possible-to-build-in-a-derivative-in-act-like-this\/"}],"acf":[],"custom_fields":[{"0":{"_wp_page_template":["default"],"_bbp_last_active_time":["06-06-2022 20:20"],"_bbp_forum_id":["27789"],"_btv_view_count":["563"],"_bbp_likes_count":["0"]},"test":"articlesansys-com"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/topics\/157979","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\/157979\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/knowledge\/wp-json\/wp\/v2\/media?parent=157979"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}