


{"id":290589,"date":"2023-06-27T15:04:12","date_gmt":"2023-06-27T15:04:12","guid":{"rendered":"\/forum\/forums\/topic\/pymapdl-course-element-plot\/"},"modified":"2023-06-27T15:04:12","modified_gmt":"2023-06-27T15:04:12","slug":"pymapdl-course-element-plot","status":"closed","type":"topic","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/","title":{"rendered":"PyMAPDL Course Element Plot"},"content":{"rendered":"<p>Hello, I am currently learning PyMAPDL, so I took the course &#8220;Getting Started with Ansys PyMAPDL&#8221;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not work. Can someone help me? Here is my code:<\/p>\n<div>import numpy as np<br \/>import matplotlib.pyplot as plt<br \/>from ansys.mapdl.core import launch_mapdl<\/p>\n<p># MAPDL starten<br \/>mapdl = launch_mapdl()<br \/>print(mapdl)<\/p>\n<p># Querschnitt Rohr erzeugen<\/p>\n<p>def pipe_plain_strain(e, nu, inn_radius, out_radius, press, AESIZE):<\/p>\n<p># e = E-Modul, nu=Querkontraktionszahl, press=Drucklast, AESIZE = Elementgr&ouml;&szlig;e<br \/># mapdl zur&uuml;cksetzen<br \/>mapdl.clear()<br \/>mapdl.prep7()<\/p>\n<p># Elemente festlegen<br \/>mapdl.et(1, &#8220;PLANE182&#8221;, kop3=2) # Quad 4 node 182 mit keyoption 3 = 2 (plain strain formulation)<\/p>\n<p># Geometrie erstellen<br \/># Viertelrohr erstellen, plain strain analysis von 0-90&deg;<br \/>mapdl.pcirc(inn_radius, out_radius, theta1=0, theta2=90)<br \/>mapdl.cm(&#8220;PIPE_PROFILE&#8221;, &#8220;AREA&#8221;)<\/p>\n<p># Materialparameter einstellen<br \/>mapdl.mp(&#8220;EX&#8221;, 1, e) # E-Modul<br \/>mapdl.mp(&#8220;PRXY&#8221;, 1, nu) # Querkontraktionszahl<\/p>\n<p># Mesh-Controls definieren<br \/>mapdl.aesize(&#8220;ALL&#8221;, AESIZE)<br \/>mapdl.mshape(0, &#8220;2D&#8221;) # die Fl&auml;che mit 2D Quad Elementen meshen<br \/>mapdl.mshkey(1) # mapped mesh<br \/>mapdl.cmsel(&#8220;S&#8221;, &#8220;PIPE_PROFILE&#8221;) # Fl&auml;che als Komponente festlegen, die vernetzt werden soll<br \/>mapdl.amesh(&#8220;ALL&#8221;)<\/p>\n<p># Komponenten f&uuml;r Aufbringung von Lasten und Randbedingungen erstellen<br \/>mapdl.nsel(&#8220;S&#8221;, &#8220;LOC&#8221;, &#8220;X&#8221;, 0) # Knoten an der oberen linken Ecke ausw&auml;hlen<br \/>mapdl.cm(&#8220;X_FIXED&#8221;, &#8220;NODES&#8221;) # Nodal component erstellen<\/p>\n<p>mapdl.nsel(&#8220;S&#8221;, &#8220;LOC&#8221;, &#8220;Y&#8221;, 0) # Knoten an der unteren rechten Ecke ausw&auml;hlen<br \/>mapdl.cm(&#8220;Y_FIXED&#8221;, &#8220;NODES&#8221;) # Nodal component erstellen<br \/>mapdl.allsel()<\/p>\n<p>mapdl.lsel(&#8220;S&#8221;, &#8220;RADIUS&#8221;, vmin=rad1) # Linie am inneren Radius ausw&auml;hlen<br \/>mapdl.cm(&#8220;PRESSURE_EDGE&#8221;, &#8220;LINE&#8221;) # Linienkomponente erstellen<br \/>mapdl.allsel()<\/p>\n<p># L&ouml;sungsparameter erstellen<br \/>mapdl.slashsolu() # Enter solution<br \/>mapdl.antype(&#8220;STATIC&#8221;, &#8220;NEW&#8221;) # Neue statische Analyse (optional)<\/p>\n<p>mapdl.d(&#8220;X_FIXED&#8221;, &#8220;UX&#8221;, 0) # Ausgew&auml;hlte Knoten in X-Richtung sperren<br \/>mapdl.d(&#8220;Y_FIXED&#8221;, &#8220;UY&#8221;, 0) # Ausgew&auml;hlte Knoten in Y-Richtung sperren<\/p>\n<p># Wechsel vom aktiven Kartesischen Koordinatensystem in Zylindrisches Koordinatensystem<br \/>mapdl.csys(1)<\/p>\n<p># Aufbringen der gleichm&auml;&szlig;igen Drucklast auf die ausgew&auml;hle Kante<br \/>mapdl.sfl(&#8220;PRESSURE_EDGE&#8221;, &#8220;PRES&#8221;, press)<\/p>\n<p># Das Modell l&ouml;sen<br \/>mapdl.allsel()<br \/>mapdl.solve()<br \/>mapdl.finish()<\/p>\n<p># Post-Prozessor starten<br \/>mapdl.post1()<br \/>mapdl.set(1, 1) # ersten Lastschritt ausw&auml;hlen<\/p>\n<p>max_eqv_stress = np.max(mapdl.post_processing.nodal_eqv_stress())<br \/>all_dof = mapdl.mesh.nnum_all<br \/>num_dof = 2*all_dof.size # Anzahl der Freiheitsgrade ist doppelt so gro&szlig; wie die Knotenanzahl<\/p>\n<p>return num_dof, max_eqv_stress<\/p>\n<p># Input-Parameter definieren<br \/>rad1 = 175 # innerer Radius<br \/>rad2 = 200 # &auml;u&szlig;erer Radius<br \/>pressure = 100<\/p>\n<p>e = 2e5 # E-Modul<br \/>nu = 0.3 # Querkontraktionszahl<\/p>\n<p># mesh convergence parameters definieren<br \/>num_dof = []<br \/>max_stress = []<\/p>\n<p># Elementgr&ouml;&szlig;e: log space verwenden, da Netz logarithmisch konvergiert<br \/>esizes = np.logspace(1.4, 0, 20)<\/p>\n<p># Netzkonvergenz und Ergebnisse ausgeben<br \/>for esize in esizes:<br \/>dof, eqv_stress = pipe_plain_strain(e, nu, rad1, rad2, pressure, esize)<br \/>num_dof.append(dof)<br \/>max_stress.append(eqv_stress)<br \/>print(f&#8217;DOF: {dof:5d} #Stress: {eqv_stress:.2f} MPa&#8217;)<\/p>\n<p># Plotten der Netzkonvergenz-Ergebnisse<br \/>plt.figure(figsize=(8, 6), dpi=80)<br \/>plt.plot(num_dof, max_stress, &#8216;b-o&#8217;)<br \/>plt.plot([num_dof[0], num_dof[-1]], [max_stress[-1], max_stress[-1]], &#8216;r:&#8217;)<br \/>plt.title(&#8216;Netzkonvergenzstudie&#8217;)<br \/>plt.xlabel(&#8216;Number of DOF&#8217;)<br \/>plt.ylabel(&#8216;Maximum eqv. Stress (MPa)&#8217;)<br \/>plt.show()<\/p>\n<p># Plotten des final genutzten Netzes<\/p>\n<p>mapdl.allsel(&#8216;ALL&#8217;)<br \/>mapdl.eplot(<br \/>title=&#8217;Element Plot&#8217;, line_width=1, show_bounds=True, cpos=&#8221;xy&#8221;<br \/>)<\/p>\n<p>mapdl.post1()<br \/>mapdl.set(1, 1)<\/p>\n<p>mapdl.post_processing.plot_nodal_displacement(<br \/>&#8216;NORM&#8217;, cpos=&#8221;xy&#8221;, cmap=&#8221;magma&#8221;,<br \/>)<\/p>\n<p>mapdl.post_processing.plot_nodal_eqv_stress(cpos=&#8221;xy&#8221;, cmap=&#8221;magma&#8221;)<\/p>\n<p>mapdl.exit()<\/p><\/div>\n","protected":false},"template":"","class_list":["post-290589","topic","type-topic","status-closed","hentry","topic-tag-PyMAPDL-1"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello, I am currently learning PyMAPDL, so I took the course &quot;Getting Started with Ansys PyMAPDL&quot;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/\" \/>\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=\"PyMAPDL Course Element Plot | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello, I am currently learning PyMAPDL, so I took the course &quot;Getting Started with Ansys PyMAPDL&quot;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-06-27T15:04:12+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-06-27T15:04:12+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"PyMAPDL Course Element Plot | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello, I am currently learning PyMAPDL, so I took the course &quot;Getting Started with Ansys PyMAPDL&quot;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not\" \/>\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\\\/pymapdl-course-element-plot\\\/#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\\\/PyMAPDL-1\\\/#listItem\",\"name\":\"PyMAPDL\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/PyMAPDL-1\\\/#listItem\",\"position\":3,\"name\":\"PyMAPDL\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/PyMAPDL-1\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/pymapdl-course-element-plot\\\/#listItem\",\"name\":\"PyMAPDL Course Element Plot\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/topics\\\/#listItem\",\"name\":\"Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/pymapdl-course-element-plot\\\/#listItem\",\"position\":4,\"name\":\"PyMAPDL Course Element Plot\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic-tag\\\/PyMAPDL-1\\\/#listItem\",\"name\":\"PyMAPDL\"}}]},{\"@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\\\/pymapdl-course-element-plot\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/pymapdl-course-element-plot\\\/\",\"name\":\"PyMAPDL Course Element Plot | Ansys Learning Forum\",\"description\":\"Hello, I am currently learning PyMAPDL, so I took the course \\\"Getting Started with Ansys PyMAPDL\\\". I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/topic\\\/pymapdl-course-element-plot\\\/#breadcrumblist\"},\"datePublished\":\"2023-06-27T15:04:12+00:00\",\"dateModified\":\"2023-06-27T15:04:12+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":"PyMAPDL Course Element Plot | Ansys Learning Forum","description":"Hello, I am currently learning PyMAPDL, so I took the course \"Getting Started with Ansys PyMAPDL\". I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/#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\/PyMAPDL-1\/#listItem","name":"PyMAPDL"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/PyMAPDL-1\/#listItem","position":3,"name":"PyMAPDL","item":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/PyMAPDL-1\/","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/#listItem","name":"PyMAPDL Course Element Plot"},"previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/topics\/#listItem","name":"Topics"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/#listItem","position":4,"name":"PyMAPDL Course Element Plot","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/PyMAPDL-1\/#listItem","name":"PyMAPDL"}}]},{"@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\/pymapdl-course-element-plot\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/","name":"PyMAPDL Course Element Plot | Ansys Learning Forum","description":"Hello, I am currently learning PyMAPDL, so I took the course \"Getting Started with Ansys PyMAPDL\". I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/#breadcrumblist"},"datePublished":"2023-06-27T15:04:12+00:00","dateModified":"2023-06-27T15:04:12+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":"PyMAPDL Course Element Plot | Ansys Learning Forum","og:description":"Hello, I am currently learning PyMAPDL, so I took the course &quot;Getting Started with Ansys PyMAPDL&quot;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/","article:published_time":"2023-06-27T15:04:12+00:00","article:modified_time":"2023-06-27T15:04:12+00:00","twitter:card":"summary_large_image","twitter:title":"PyMAPDL Course Element Plot | Ansys Learning Forum","twitter:description":"Hello, I am currently learning PyMAPDL, so I took the course &quot;Getting Started with Ansys PyMAPDL&quot;. I tried to code the example of lesson 2, the 2D pipe. I am using the MAPDL Version 22.1 and the ansys.mapdl Version 0.63.3. The problem is that the element plot and the other post processing plots do not"},"aioseo_meta_data":{"post_id":"290589","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 18:01:49","updated":"2024-10-28 18:01:49","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\/PyMAPDL-1\/\" title=\"PyMAPDL\">PyMAPDL<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPyMAPDL Course Element Plot\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":"PyMAPDL","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic-tag\/PyMAPDL-1\/"},{"label":"PyMAPDL Course Element Plot","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/topic\/pymapdl-course-element-plot\/"}],"acf":[],"custom_fields":[{"0":{"_bbp_subscription":["288207","18229"],"_bbp_author_ip":["168.143.243.170"]," _bbp_last_reply_id":["0"]," _bbp_likes_count":["0"],"_btv_view_count":["1909"],"_bbp_topic_status":["unanswered"],"_bbp_status":["publish"],"_bbp_topic_id":["290589"],"_bbp_forum_id":["27825"],"_bbp_engagement":["18229","288207"],"_bbp_voice_count":["2"],"_bbp_reply_count":["3"],"_bbp_last_reply_id":["290752"],"_bbp_last_active_id":["290752"],"_bbp_last_active_time":["2023-06-28 13:43:35"]},"test":"quanzimw-tu-clausthal-de"}],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/topics\/290589","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\/290589\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=290589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}