<?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: (API) (VBA) Get user nodes without mesh nodes in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11266454#M10083</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11550832"&gt;@ORLLT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend selecting user nodes before creating the FE mesh&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jun 2022 12:29:40 GMT</pubDate>
    <dc:creator>Romanich</dc:creator>
    <dc:date>2022-06-29T12:29:40Z</dc:date>
    <item>
      <title>(API) (VBA) Get user nodes without mesh nodes</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260515#M10080</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am trying to select all nodes created by the users. For this I use the getUserNodes methods :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;    Dim colNoeuds As RobotNodeCollection
    Set colNoeuds = robApp.Project.Structure.Nodes.GetUserNodes&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, all the nodes created by panel meshing process get included, which is not what I want !&lt;/P&gt;&lt;P&gt;These nodes are not considered as calculation nodes by Robot, as they are not selected when I use GetCalcNodes. And all these mesh nodes have their .IsCalc property to false. At least all this is coherent, but why are they not considered calculation nodes in the first place ? is this a bug ?&lt;/P&gt;&lt;P&gt;And most importantly, how can I select simply all user nodes excluding mesh nodes, without having to loop through all nodes to check if they belong to a panel or stuff like this (which is feasible, but I'd prefer to avoid adding unnecessary complexity and execution time) ?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 09:51:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260515#M10080</guid>
      <dc:creator>ORLLT</dc:creator>
      <dc:date>2022-06-27T09:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: (API) (VBA) Get user nodes without mesh nodes</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260549#M10081</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11550832"&gt;@ORLLT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This was one of the reason for me to start digging into &lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-external-parameters/m-p/8339603#M71714" target="_blank" rel="noopener"&gt;external parameters&lt;/A&gt; for example to assign the name to user nodes.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 10:04:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260549#M10081</guid>
      <dc:creator>Romanich</dc:creator>
      <dc:date>2022-06-27T10:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: (API) (VBA) Get user nodes without mesh nodes</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260812#M10082</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/559029"&gt;@Romanich&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;thank you for your reply. So it means it is a known problem ?&lt;/P&gt;&lt;P&gt;Concerning external parameters, could you elaborate a little bit more ? To be able to assign an external parameter (say, a specific name) to user defined nodes, one must be able to determine which node are user-defined and which are calculation nodes, right ? so the same problem still exists, at least once (after the user nodes have a distinctive name, it can be used).&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 12:35:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11260812#M10082</guid>
      <dc:creator>ORLLT</dc:creator>
      <dc:date>2022-06-27T12:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: (API) (VBA) Get user nodes without mesh nodes</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11266454#M10083</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11550832"&gt;@ORLLT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend selecting user nodes before creating the FE mesh&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 12:29:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-vba-get-user-nodes-without-mesh-nodes/m-p/11266454#M10083</guid>
      <dc:creator>Romanich</dc:creator>
      <dc:date>2022-06-29T12:29:40Z</dc:date>
    </item>
  </channel>
</rss>

