<?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 CombinationType modification in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13906840#M85612</link>
    <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18234431"&gt;@piglet0&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a test project applied to generating combinations through direct insertion from the table.&lt;BR /&gt;The code addresses two major points:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;execution time compared with using the API (three times faster),&lt;/LI&gt;
&lt;LI&gt;and the ability to customize the parameters : Analysis Type, Combination Type, Case Nature, and SQRT.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In this version, the project &lt;STRIKE&gt;is limited to 75&lt;/STRIKE&gt;&amp;nbsp; &lt;EM&gt;is available for 9000 combinations and unlocked&lt;/EM&gt;. It will be possible to link it with a table designed for creating combinations based on load cases sorted by number and by nature, similar to the ones that have already been freely shared on the forum.&lt;/P&gt;
&lt;P&gt;The properties highlighted in green including combination type ↓ are writable.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_2-1764315523722.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1600047i9F39FAB76C4398BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Stephanekapetanovic_2-1764315523722.png" alt="Stephanekapetanovic_2-1764315523722.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For those who want to learn more about the code used and plan to include it in their own projects, you can refer to this &lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-pour-utiliser-l-onglet-quot-edition-textuel-quot-du-tableau/td-p/13838837#M85491" target="_blank" rel="noopener"&gt;page&lt;/A&gt;&amp;nbsp;&lt;EM&gt;or read the vba code directly&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000FF"&gt;Updated 11/26/2025 - Rewrite / Modified protection / Packet size 75&amp;gt;500 / Total number of combinations 75&amp;gt;9000&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Nov 2025 08:33:25 GMT</pubDate>
    <dc:creator>Stephane.kapetanovic</dc:creator>
    <dc:date>2025-11-28T08:33:25Z</dc:date>
    <item>
      <title>API CombinationType modification</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904445#M85594</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I preparing a script that modifies combination type for selected number of combinations. I have a problem with listing and changing combination type for sls frequent, characteristic etc.&lt;/P&gt;&lt;P&gt;I defined all types of available combinations:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="piglet0_0-1763111979442.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1595844iFA9B3FFE315E14E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="piglet0_0-1763111979442.png" alt="piglet0_0-1763111979442.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I try to read combination type using following script:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Sub CombTypeList()
        
    Call CreateRobotObject
    Dim rSelection As RobotSelection
    Set rSelection = RobApp.Project.Structure.Selections.CreatePredefined(I_PS_CASE_COMBINATIONS)
    Debug.Print "Selection", rSelection.ToText
    Dim AllObjects As RobotCaseCollection
    Set AllObjects = RobApp.Project.Structure.Cases.GetMany(rSelection)
    
    Dim i As Long
    Dim c As IRobotCase
    For i = 1 To AllObjects.Count
        Set c = AllObjects.Get(i)
        Debug.Print c.combinationType
    Next i
    
End Sub&lt;/LI-CODE&gt;&lt;P&gt;In the result I got:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Selection      2to8  
 0 
 1 
 2 
 3 
 1 
 1 
 1 &lt;/LI-CODE&gt;&lt;P&gt;So SLS:CHR, SLS:FRE and SLS:QPR is simplified to SLS 1.&lt;/P&gt;&lt;P&gt;How can I get unique values of those types? API manual mentions for example I_CBT_SLS_EC_FRE = 4 but I have no idea how to read this value.&lt;/P&gt;&lt;P&gt;I would appreciate your help.&lt;/P&gt;&lt;P&gt;Michal&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 09:25:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904445#M85594</guid>
      <dc:creator>piglet0</dc:creator>
      <dc:date>2025-11-14T09:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: API CombinationType modification</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904718#M85598</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18234431"&gt;@piglet0&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find the values ​​of the enumeration &lt;STRONG&gt;IRobotCombinationType&lt;/STRONG&gt; on page 429 of the "Robot API 20xx.pdf" available in the \SDK directory.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_0-1763119804828.png" style="width: 690px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1595965iF130345D960BD093/image-dimensions/690x157?v=v2" width="690" height="157" role="button" title="Stephanekapetanovic_0-1763119804828.png" alt="Stephanekapetanovic_0-1763119804828.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The CombinationType property is read/write.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_0-1763122201929.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1595979iD175A4A5E3A865D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Stephanekapetanovic_0-1763122201929.png" alt="Stephanekapetanovic_0-1763122201929.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 12:13:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904718#M85598</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-11-14T12:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: API CombinationType modification</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904811#M85601</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6876621"&gt;@Stephane.kapetanovic&lt;/a&gt;&amp;nbsp;thank you for your reply.&lt;/P&gt;&lt;P&gt;I found the table in the API manual, but for some reason I am not able to read those values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead reading values of 4, 5, 6 I get 1 for all of them.&lt;/P&gt;&lt;P&gt;Can you take a look at the code in my post? I guess I do something wrong there. It could be a lame question because I am new to the use of API.&lt;/P&gt;&lt;P&gt;Thanks, Michal&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 12:53:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13904811#M85601</guid>
      <dc:creator>piglet0</dc:creator>
      <dc:date>2025-11-14T12:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: API CombinationType modification</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13905021#M85603</link>
      <description>&lt;P&gt;Have you selected EN1990 Eurocode standards in the &lt;A href="https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/ROBOT-JOB-PREFERENCES-how-to-check-the-availability-and-set-the-design-code.html" target="_blank" rel="noopener"&gt;default preferences&lt;/A&gt; for design codes?&lt;/P&gt;
&lt;P&gt;see also :&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combination-type/m-p/13205739" target="_blank" rel="noopener"&gt;API - Combination type&lt;/A&gt;,&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-non-linear-hinge-definition/td-p/9842112" target="_blank" rel="noopener"&gt;Non linear support via API&lt;/A&gt;,&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/different-manual-combination-table/td-p/13253396" target="_blank" rel="noopener"&gt;Different manual combination table&lt;/A&gt;,&amp;nbsp;&lt;A href="https://help.autodesk.com/view/RSAPRO/2026/ENU/?guid=GUID-DE72846B-F26F-4DA1-935D-F2A737E1FD97" target="_blank" rel="noopener"&gt;Combinations - Definition / Modification dialog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In any case, certain types of combinations are not accessed or edited in the standard way.&lt;/P&gt;
&lt;P&gt;This project is currently underway. I’m preparing a post on combinations and will let you know as soon as it’s ready.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 08:33:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13905021#M85603</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-12-02T08:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: API CombinationType modification</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13906840#M85612</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18234431"&gt;@piglet0&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a test project applied to generating combinations through direct insertion from the table.&lt;BR /&gt;The code addresses two major points:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;execution time compared with using the API (three times faster),&lt;/LI&gt;
&lt;LI&gt;and the ability to customize the parameters : Analysis Type, Combination Type, Case Nature, and SQRT.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In this version, the project &lt;STRIKE&gt;is limited to 75&lt;/STRIKE&gt;&amp;nbsp; &lt;EM&gt;is available for 9000 combinations and unlocked&lt;/EM&gt;. It will be possible to link it with a table designed for creating combinations based on load cases sorted by number and by nature, similar to the ones that have already been freely shared on the forum.&lt;/P&gt;
&lt;P&gt;The properties highlighted in green including combination type ↓ are writable.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_2-1764315523722.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1600047i9F39FAB76C4398BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Stephanekapetanovic_2-1764315523722.png" alt="Stephanekapetanovic_2-1764315523722.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For those who want to learn more about the code used and plan to include it in their own projects, you can refer to this &lt;A href="https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-pour-utiliser-l-onglet-quot-edition-textuel-quot-du-tableau/td-p/13838837#M85491" target="_blank" rel="noopener"&gt;page&lt;/A&gt;&amp;nbsp;&lt;EM&gt;or read the vba code directly&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#0000FF"&gt;Updated 11/26/2025 - Rewrite / Modified protection / Packet size 75&amp;gt;500 / Total number of combinations 75&amp;gt;9000&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 08:33:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/api-combinationtype-modification/m-p/13906840#M85612</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2025-11-28T08:33:25Z</dc:date>
    </item>
  </channel>
</rss>

