<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Create panels in plane deformation structure type via API in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14236936#M86930</link>
    <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13838802"&gt;@mbrasiel&lt;/a&gt;&lt;/SPAN&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good! I wanted to follow up and see if you had a chance to look into the responses from Krzysztof_Wasik &amp;nbsp;and Stephane.kapetanovic . Please let us know if their explanations and suggestions helped answer your question or if you still need any assistance.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Aug 2026 08:29:50 GMT</pubDate>
    <dc:creator>bhavani_sankuratri</dc:creator>
    <dc:date>2026-08-18T08:29:50Z</dc:date>
    <item>
      <title>Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14228881#M86900</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am working with the RSA API (RobotOM) using Python, and I would like to know whether it is possible to create Panels via the API in structures of the "Plane Deformation" type.&lt;/P&gt;&lt;P&gt;I can already create the contour geometry using CreateContour().&amp;nbsp;However, in a Plane Deformation structure, it seems that I cannot use I_LT_PANEL_THICKNESS, and I have not found a CreatePanel() or equivalent method in the RobotOM API that reproduces the operation available in the Robot interface.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to create a Panel through the Robot API (RobotOM) in a Plane Deformation structure?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2026 19:42:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14228881#M86900</guid>
      <dc:creator>mbrasiel</dc:creator>
      <dc:date>2026-08-10T19:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14228950#M86901</link>
      <description>&lt;P&gt;&lt;FONT style="vertical-align: inherit;" dir="auto"&gt;&lt;FONT style="vertical-align: inherit;" dir="auto"&gt;Hi&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13838802"&gt;@mbrasiel&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;The difference between a contour and a panel generally lies in the meshed attribute&lt;/P&gt;
&lt;LI-CODE lang="visual-basic"&gt;Objects.Get(id).Main.Attribs.Meshed = 1&lt;/LI-CODE&gt;
&lt;P&gt;However, you should also check whether the panel, is compatible with your analysis method.&lt;/P&gt;
&lt;P&gt;Could you share your code?&lt;/P&gt;
&lt;P&gt;&lt;FONT style="vertical-align: inherit;" dir="auto"&gt;&lt;FONT style="vertical-align: inherit;" dir="auto"&gt;Best Regards&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 08:14:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14228950#M86901</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2026-08-11T08:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229050#M86902</link>
      <description>&lt;P&gt;The code below is working fine if I start a new project as Shell Design. But it doesnot work if I start a projetc as Plane Deformation structure type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;def&lt;/SPAN&gt; &lt;SPAN&gt;create_single_panel&lt;/SPAN&gt;(robot_app, structure, points_list, thickness_name):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;points = robot_app.CmpntFactory.&lt;SPAN&gt;Create&lt;/SPAN&gt;(IRobotComponentType.I_CT_POINTS_ARRAY&amp;nbsp;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;points.&lt;SPAN&gt;SetSize&lt;/SPAN&gt;(&lt;SPAN&gt;len&lt;/SPAN&gt;(points_list))&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;for&lt;/SPAN&gt; i, (x, y, z) &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;enumerate&lt;/SPAN&gt;(points_list, &lt;SPAN&gt;1):&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;points.&lt;SPAN&gt;Set&lt;/SPAN&gt;(i, x, y, z)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;objNumber = structure.Objects.FreeNumber&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;structure.Objects.&lt;SPAN&gt;CreateContour&lt;/SPAN&gt;(objNumber, points)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;panel = structure.Objects.&lt;SPAN&gt;Get&lt;/SPAN&gt;(objNumber)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; panel .Main.Attribs.Meshed = &lt;SPAN&gt;True&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; panel .&lt;SPAN&gt;SetLabel&lt;/SPAN&gt;(IRobotLabelType.I_LT_PANEL_THICKNESS, thickness_name)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; panel .&lt;SPAN&gt;Update&lt;/SPAN&gt;()&lt;BR /&gt;&amp;nbsp; &amp;nbsp; panel .&lt;SPAN&gt;Initialize&lt;/SPAN&gt;()&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;return&lt;/SPAN&gt; objNumber, panel&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2026 23:04:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229050#M86902</guid>
      <dc:creator>mbrasiel</dc:creator>
      <dc:date>2026-08-10T23:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229132#M86903</link>
      <description>&lt;P&gt;By default, the panels do not appear to be filled, but calculations can be performed in "plane stress structure design" mode.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 01:30:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229132#M86903</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2026-08-11T01:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229298#M86904</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13838802"&gt;@mbrasiel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Objects (panels) defined as Plane deformation structure do not use thickness definition. In case of such panels only one parameter applied to panel is material. Plane deformation finite elements are simplified finite element type where deformation in direction perpendicular to panel plane is assumed to be zero. While model simulation,fFor such type of elements thickness attribute is not used calculations&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Krzysztof_Wasik_0-1786431596880.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1655721iCB78878E35B8C64D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Krzysztof_Wasik_0-1786431596880.png" alt="Krzysztof_Wasik_0-1786431596880.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 07:00:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229298#M86904</guid>
      <dc:creator>Krzysztof_Wasik</dc:creator>
      <dc:date>2026-08-11T07:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229324#M86905</link>
      <description>&lt;LI-CODE lang="visual-basic"&gt;Objects.Get(id).SetLabel I_LT_SOLID_PROPERTIES, "CONCRETE"&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 11 Aug 2026 08:14:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14229324#M86905</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2026-08-11T08:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create panels in plane deformation structure type via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14236936#M86930</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13838802"&gt;@mbrasiel&lt;/a&gt;&lt;/SPAN&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good! I wanted to follow up and see if you had a chance to look into the responses from Krzysztof_Wasik &amp;nbsp;and Stephane.kapetanovic . Please let us know if their explanations and suggestions helped answer your question or if you still need any assistance.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2026 08:29:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/create-panels-in-plane-deformation-structure-type-via-api/m-p/14236936#M86930</guid>
      <dc:creator>bhavani_sankuratri</dc:creator>
      <dc:date>2026-08-18T08:29:50Z</dc:date>
    </item>
  </channel>
</rss>

