<?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: Get local axis of finite elements via API in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955748#M58664</link>
    <description>&lt;PRE&gt;Public Sub CommandButton1_Click()

Dim RobApp As New RobotApplication

    Cells(5, 1) = "Project"
    Cells(5, 2) = RobApp.Project.Name
 
    
    Dim RSel As RobotSelection
    Set RSel = RobApp.Project.Structure.Selections.CreateFull(I_OT_PANEL)
    Dim PanelCol As RobotObjObjectCollection
    Set PanelCol = RobApp.Project.Structure.Objects.GetMany(RSel)
    
    Dim X As RobotGeoPoint3D, Y As RobotGeoPoint3D, Z As RobotGeoPoint3D
    Dim Obj As RobotObjObject
    
    Set X = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
    Set Y = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
    Set Z = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
        
    For ii = 1 To PanelCol.Count
        
        Set Obj = PanelCol.Get(ii)
        Obj.Main.Attribs.GetLCS X, Y, Z
        
        Cells(12 + ii, 3) = Obj.Number
        Cells(12 + ii, 4) = "LCS X=" + Str(X.X) + ";" + Str(X.Y) + ";" + Str(X.Z)
        Cells(12 + ii, 5) = "LCS Y=" + Str(Y.X) + ";" + Str(Y.Y) + ";" + Str(Y.Z)
        Cells(12 + ii, 6) = "LCS Z=" + Str(Z.X) + ";" + Str(Z.Y) + ";" + Str(Z.Z)
        
    Next ii

End Sub&lt;/PRE&gt;</description>
    <pubDate>Thu, 17 Dec 2015 11:50:14 GMT</pubDate>
    <dc:creator>Rafal.Gaweda</dc:creator>
    <dc:date>2015-12-17T11:50:14Z</dc:date>
    <item>
      <title>(API) Get local axis of finite elements</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5954166#M58658</link>
      <description>&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/207039iB130AB9D00D1CA76/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="example.png" title="example.png" /&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in the forum there is an example where you can get finite element results via API using an excell file&amp;nbsp;and VBA.&lt;/P&gt;
&lt;P&gt;Is there a possibility to get the orientation vectors for the local element system of the finite elements via API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 10:43:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5954166#M58658</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-17T10:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5954180#M58659</link>
      <description>No.</description>
      <pubDate>Wed, 16 Dec 2015 15:45:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5954180#M58659</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-12-16T15:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955619#M58660</link>
      <description>Hi Rafal, thanks for the answer. In my company we are trying to make an interface to Robot that would take nodes, finite element results for panels modelled in Robot and do reinforced concrete design in an home made application that has been used for the last 25 years, to design offshore gravity based structures. A similar interface exits for ANSYS. It seems that getting the orientation vectors for the local element system of the finite elements is not implemented in the API. If we have a simple panel let`s say a shear wall is there a possibility to get the orientation vectors of the panel local system? Thanks in advance, Alexander Ziotopoulos Multiconsult ASA &lt;A href="http://www.multiconsult.no" target="_blank"&gt;www.multiconsult.no&lt;/A&gt;</description>
      <pubDate>Thu, 17 Dec 2015 09:51:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955619#M58660</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-17T09:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955645#M58661</link>
      <description>But you will not get FE results in native FE LCS.&lt;BR /&gt;Results are always projected due to results presentation settings RobotFeResultsParams.SetDirX ; if not set  - "Automatic" (= along panel X LCS) direction is considered.&lt;BR /&gt;If you want to consider "flat panel" + results presented in Automatic way you can take panel LCS&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Dec 2015 10:16:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955645#M58661</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-12-17T10:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955653#M58662</link>
      <description>&lt;P&gt;You may try - 1 FE = 1 panel and get LCS of this panel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attaching macro for creation panel for every single FE (make FE selection in Robot)&lt;/P&gt;
&lt;P&gt;NOTE : huge number of panels in model reduces Robot performance, so be carefull using this approach on ALL (large number of) FEs in model&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;IFRAME width="696" height="655" src="https://screencast.autodesk.com/Embed/Timeline/ea8e57bd-99b8-49ed-84b8-97169c10920f" frameborder="0" allowfullscreen="" webkitallowfullscreen=""&gt;&lt;/IFRAME&gt;</description>
      <pubDate>Thu, 17 Dec 2015 10:40:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955653#M58662</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-12-17T10:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955731#M58663</link>
      <description>&lt;P&gt;Thanks Rafal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you mention ''If you want to consider "flat panel" + results presented in Automatic &lt;STRONG&gt;&lt;U&gt;way you can take panel LCS&lt;/U&gt;``.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Is there a method doing that via API? Is it possible to provide an example how to take out&amp;nbsp;vectors for Local axis X,Y,Z for a flat panel. That would simplify&lt;/P&gt;&lt;P&gt;the whole process a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alexander Ziotopoulos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Multiconsult ASA&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.multiconsult.no/" target="_blank" rel="nofollow"&gt;www.multiconsult.no&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 11:40:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955731#M58663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-17T11:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955748#M58664</link>
      <description>&lt;PRE&gt;Public Sub CommandButton1_Click()

Dim RobApp As New RobotApplication

    Cells(5, 1) = "Project"
    Cells(5, 2) = RobApp.Project.Name
 
    
    Dim RSel As RobotSelection
    Set RSel = RobApp.Project.Structure.Selections.CreateFull(I_OT_PANEL)
    Dim PanelCol As RobotObjObjectCollection
    Set PanelCol = RobApp.Project.Structure.Objects.GetMany(RSel)
    
    Dim X As RobotGeoPoint3D, Y As RobotGeoPoint3D, Z As RobotGeoPoint3D
    Dim Obj As RobotObjObject
    
    Set X = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
    Set Y = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
    Set Z = RobApp.CmpntFactory.Create(I_CT_GEO_POINT_3D)
        
    For ii = 1 To PanelCol.Count
        
        Set Obj = PanelCol.Get(ii)
        Obj.Main.Attribs.GetLCS X, Y, Z
        
        Cells(12 + ii, 3) = Obj.Number
        Cells(12 + ii, 4) = "LCS X=" + Str(X.X) + ";" + Str(X.Y) + ";" + Str(X.Z)
        Cells(12 + ii, 5) = "LCS Y=" + Str(Y.X) + ";" + Str(Y.Y) + ";" + Str(Y.Z)
        Cells(12 + ii, 6) = "LCS Z=" + Str(Z.X) + ";" + Str(Z.Y) + ";" + Str(Z.Z)
        
    Next ii

End Sub&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Dec 2015 11:50:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/5955748#M58664</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2015-12-17T11:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/8015150#M58665</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;Does this work on Robot 2018 or 2019?&lt;/P&gt;</description>
      <pubDate>Mon, 21 May 2018 12:26:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/8015150#M58665</guid>
      <dc:creator>Rafacascudo</dc:creator>
      <dc:date>2018-05-21T12:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get local axis of finite elements via API</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/8015177#M58666</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/806320"&gt;@Rafacascudo&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes.&lt;/P&gt;</description>
      <pubDate>Mon, 21 May 2018 12:39:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/8015177#M58666</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2018-05-21T12:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: (API) Get local axis of finite elements</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/10062314#M58667</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;,&amp;nbsp; I have a question, is there any way to apply surface loads directly over the finite element in the way the wind pressure analysis does, using the ROBOT API?, I mean, how can I generate such presure maps programatically. Greetings!&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2021 05:45:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/10062314#M58667</guid>
      <dc:creator>Temo_Escudero</dc:creator>
      <dc:date>2021-02-06T05:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: (API) Get local axis of finite elements</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/10062891#M58668</link>
      <description>&lt;P&gt;possible to create a surface load on contour points&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-updating-panel-contour-loads-from-excel/m-p/4756971" target="_blank"&gt;https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-macro-for-updating-panel-contour-loads-from-excel/m-p/4756971&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2021 14:59:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-get-local-axis-of-finite-elements/m-p/10062891#M58668</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2021-02-06T14:59:53Z</dc:date>
    </item>
  </channel>
</rss>

