<?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: Set bar section data and calculate (API) with corrosion in Robot Structural Analysis Forum</title>
    <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814566#M17816</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your formula on the Iy is quite accurate for HEA,HEB, HEM and IPE range between 100.8% above tabular value to 95.5%(below). this occurs at an IPE240.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But your formula made me think and i have a new one which is accurate. see this picture below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="centroid of radius.JPG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/833945i2826B523B045C9AB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="centroid of radius.JPG" alt="centroid of radius.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I made some of the radius form in autocad and asked for the mass properties. because now mather what radius you have, the centroid will always be the same related to the radius.&lt;/P&gt;&lt;P&gt;so the location of the centroid is approximatly 0.223367939021164 * R&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Iy= (bh³ - (b-tw)(h-2tf)³)/12)+ 4*((((h/2)-tf)-(0.223367939021164*r))²)*(r²-(0.25*Pi*r²))&lt;/LI-CODE&gt;&lt;P&gt;for the Iz the relation is the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everybody for your help and thoughts for this situation. if anyone want to know the code for the I_BISYM profile (API) let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr Edward&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2020 08:31:53 GMT</pubDate>
    <dc:creator>1234eddie</dc:creator>
    <dc:date>2020-10-21T08:31:53Z</dc:date>
    <item>
      <title>Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807065#M17805</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently working on a foundation module for our company. with this module i will be able to calculate the strength, stifness and bearing capacity of different piles(RHS, HEA, IPE). to achieve this i'm working with excel, dynamo studio and robot structural analysis. but with foundations i have to consider corrosion on the piles(RHS, HEA, IPE), where the corrosion can vary from zero to 2 or 3mm of the section. for round hollow sections it's quite easy, diameter is D-2*Tcorrosion and wall thickness T-2*Tcorrosion.&amp;nbsp; This is the script i use for this.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;USec_name= IN[0]
USec_mat = IN[1]
USec_D = IN[2]
USec_T = IN[3]
nodeSupportName = IN[4]
nodeSupportData = IN[5]

application = RobotApplicationClass()
project = application.Project
structure = project.Structure
labels = structure.Labels
loads = structure.Cases
ProjectPrefs = project.Preferences
bars = structure.Bars

lab_serv = IRobotLabelServer 
lab_serv = labels
sec = IRobotLabel
sec = lab_serv.create(IRobotLabelType.I_LT_BAR_SECTION, USec_name)
data = sec.data
data.Type = IRobotBarSectionType.I_BST_NS_TUBE
data.ShapeType = IRobotBarSectionShapeType.I_BSST_USER_TUBE
nonst_data = IRobotBarSectionNonstdData
nonst_data = data.CreateNonstd(0)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_TUBE_D,USec_D)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_TUBE_T,USec_T)
data.MaterialName = USec_mat
data.CalcNonstdGeometry()
lab_serv.Store(sec)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But know i want to do the same for HEA and IPE sections. see picture below from a HEA200 section with 2mm corrosion on all sides.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Corrosion on members.JPG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/832281iCECD22C184BE5571/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Corrosion on members.JPG" alt="Corrosion on members.JPG" /&gt;&lt;/span&gt;Left Iy=20155761mm4/right Iy=22540176mm4 Difference 11%&lt;/P&gt;&lt;P&gt;I started searching in the API documentation and found the I_BISYM which corresponds to the left section in the picture above. but when i use this shape type i'm losing 11% on my moment of inertia of the strong axis what is way to much.&lt;/P&gt;&lt;P&gt;if i check the databese of the profiles i see that there are shapetypes with corresponding geometry named to I_BSDV. See pictures below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="API members I_BSDV.JPG" style="width: 303px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/832282i3108EDF9000D6197/image-size/medium?v=v2&amp;amp;px=400" role="button" title="API members I_BSDV.JPG" alt="API members I_BSDV.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Standard databese.JPG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/832283i6396AF4D15D7EDCD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Standard databese.JPG" alt="Standard databese.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So i can define the next parameters(including the reduction to corrosion) quite easy:&lt;/P&gt;&lt;P&gt;H(height), Bf(with of flange), Tf(thickness flange), Tw(thickness web), Ra(radius).&amp;nbsp;&lt;/P&gt;&lt;P&gt;After defining these parameters i ques that with 'calc geometry' i can get this section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question now is? is it possible to generate a section with I_BSDV&amp;nbsp;&lt;/P&gt;&lt;P&gt;or are there better options to apply corrosion to a standaard HEA/IPE section?&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5952516"&gt;@cool.stuff&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope someone can help me with this.&amp;nbsp;&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;Gr Edward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 12:56:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807065#M17805</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-16T12:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807206#M17806</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe...&amp;nbsp;I_BSST_UNKNOWN&lt;/P&gt;
&lt;P&gt;less easy, more precise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="unkno.jpg" style="width: 453px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/832337i99808E1487E11470/image-size/large?v=v2&amp;amp;px=999" role="button" title="unkno.jpg" alt="unkno.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 14:01:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807206#M17806</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-10-16T14:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807314#M17807</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;&amp;nbsp;thanks for your reply.&lt;/P&gt;&lt;P&gt;but it's not exactly what i'm looking for.&lt;/P&gt;&lt;P&gt;With the I_BSST_UNKNOWN is still have to calculate the properties by hand/import cad to section definition and get the value.&lt;/P&gt;&lt;P&gt;that's quite a lot of work, because every project is different, the corrosion rate is different and also the most economical pile differs per project. that's why i'm triying to write a code/script for this.&lt;/P&gt;&lt;P&gt;so with the script it would be easier for me to calculate multiple piles for a project in a short time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully you know an other VBA part/script that is possible of doiing this?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 14:48:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807314#M17807</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-16T14:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807482#M17808</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's why I wrote "&lt;SPAN&gt;less easy, more precise."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 16:01:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9807482#M17808</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-10-16T16:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810066#M17809</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3 other thoughts from my side on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1- is it possibile to reach the 'section definition' module?&lt;/P&gt;&lt;P&gt;if it's possible by API/VBA or else i can go from there. because in my opinion a section is nothing more than just coordinates, which are quite easy to determine with corrosion. if i can create that geometry with this, i can them save it to my user databese.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2- How did the data of the 'standard' profiles(HEA, IPE, etc) end up in the databese stored in Robot?&lt;/P&gt;&lt;P&gt;i will not believe that they drawed all sections and added them to the correct family category. so did they use a script for it? is it possible that development team can react/ give an insight on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3- Is it possible to copy a standaard section from the databese?&lt;/P&gt;&lt;P&gt;and change the H, BF, TF, TW RA and let robot recalculate the copied section?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still believe it's possible to automate the proces.&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;Gr Edward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS( i know that scia engineer has an option to just add corrosion to a section, so i don't understand why it's not possible in robot)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 07:12:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810066#M17809</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-19T07:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810080#M17810</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Re 1 - Not possible \ not implemented&lt;/P&gt;
&lt;P&gt;Re 2 - Data was "scanned" from the books&lt;/P&gt;
&lt;P&gt;Re 3 - Anything from database is not calculated ; to force section properties to be calculated You have to use sections for which You can use&amp;nbsp;&lt;/P&gt;
&lt;PRE class="lia-code-sample  language-general"&gt;&lt;CODE&gt;CalcNonstdGeometry&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;otherwise You have to calculate properties by Your own&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 07:23:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810080#M17810</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-10-19T07:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810161#M17811</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just adding my 2 cents here.&lt;/P&gt;&lt;P&gt;I haven't tried yet but I was wondering if you could start from one of the section in the catalogue, get the corresponding ``IRobotSectionData`` object and modify its fields describing web and flange thicknesses.&lt;/P&gt;&lt;P&gt;After calling ``CalcNonStdGeometry`` and in an ideal world, you would get the reduced corroded section you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To anyone at Autodesk in charge of the API documentation, the information about sections is incomplete and needs a bit of work on your side. That would be much appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 08:27:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9810161#M17811</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-19T08:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813037#M17812</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can confirm that ``CalcNonstdGeom`` doesn't update the I value when the flange thickness or any other parameter is updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You will have to update it manually. Here is a formula for the I value of an I-section with root radius about the major axis:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Iy = (bh³ - (b-tw)(h-2tf)³)/12 + 0.8584 r²(h/2-tf)² - 0.3834 r³(h/2-tf) + 0.4613 r⁴&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Oct 2020 13:43:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813037#M17812</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-20T13:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813125#M17813</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;Note that for the minor axis, the contribution of the root radii is small because they are close to the neutral axis. So the folllowing is a good approximation of the I value for the minor axis:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Iz = hb³/12 - (h-2tf)/8 * [(b-tw)³/6 + (b²-tw²)(b+tw)/2]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 14:18:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813125#M17813</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-20T14:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813363#M17814</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp; many thanks for your answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been looking for this formula forever. where did you find it?&lt;/P&gt;&lt;P&gt;what i probably will do know is calculate the reduced section and create an I_BISYM section with the same characteristics(Iy)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr Edward.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 15:28:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813363#M17814</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-20T15:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813376#M17815</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a bit of time between project so calculated it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems correct but please feel free to double-check. It gives me the correct values for the few HEA and UBs I've tried. It's based on the wikipedia page about second moment of area.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 15:33:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9813376#M17815</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-20T15:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814566#M17816</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your formula on the Iy is quite accurate for HEA,HEB, HEM and IPE range between 100.8% above tabular value to 95.5%(below). this occurs at an IPE240.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But your formula made me think and i have a new one which is accurate. see this picture below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="centroid of radius.JPG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/833945i2826B523B045C9AB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="centroid of radius.JPG" alt="centroid of radius.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I made some of the radius form in autocad and asked for the mass properties. because now mather what radius you have, the centroid will always be the same related to the radius.&lt;/P&gt;&lt;P&gt;so the location of the centroid is approximatly 0.223367939021164 * R&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Iy= (bh³ - (b-tw)(h-2tf)³)/12)+ 4*((((h/2)-tf)-(0.223367939021164*r))²)*(r²-(0.25*Pi*r²))&lt;/LI-CODE&gt;&lt;P&gt;for the Iz the relation is the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everybody for your help and thoughts for this situation. if anyone want to know the code for the I_BISYM profile (API) let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr Edward&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 08:31:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814566#M17816</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-21T08:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814586#M17817</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Absolutely right, I rounded up the factors. For an exact value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0.223367939021164 ≅ 1 - 2 / (12 - 3π)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 08:53:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814586#M17817</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-21T08:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814656#M17818</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I personally&amp;nbsp; would be curious to see the code for I_BISYM&amp;nbsp;and it would probably be useful to other users in the future.&lt;/P&gt;&lt;P&gt;As the documentation is not great on this topic, I believe posting an example would be a step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This type of example helped me figuring a few things out in the past. If Autodesk was able to gather this information in one place that would be the icing on the cake.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 09:05:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814656#M17818</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-21T09:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814707#M17819</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here it is.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="I_BISYM with robot.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/833995i3247EDFF60ECA9C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="I_BISYM with robot.JPG" alt="I_BISYM with robot.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code of the python script. (quite similar to the start of the topic)&lt;/P&gt;&lt;LI-CODE lang="general"&gt;import clr
clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *

from System import Environment
user = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
clr.AddReferenceToFileAndPath(user +r"\Dynamo\Dynamo Core\1.3\packages\Structural Analysis for Dynamo\bin\RSA\Interop.RobotOM.dll")
from RobotOM import *
from System import Object


BISYM_name = IN[0]
BISYM_mat = IN[1]
BISYM_B = IN[2]
BISYM_HW = IN[3]
BISYM_TW = IN[4]
BISYM_TF = IN[5]
application = RobotApplicationClass()
project = application.Project
structure = project.Structure
labels = structure.Labels


lab_serv = IRobotLabelServer 
lab_serv = labels

sec = IRobotLabel
sec = lab_serv.create(IRobotLabelType.I_LT_BAR_SECTION, BISYM_name)

data = sec.data
data.Type = IRobotBarSectionType.I_BST_NS_I
data.ShapeType = IRobotBarSectionShapeType.I_BSST_USER_I_BISYM
nonst_data = IRobotBarSectionNonstdData
nonst_data = data.CreateNonstd(0)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_I_B, BISYM_B)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_I_H, BISYM_HW)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_I_TF, BISYM_TF)
nonst_data.SetValue(IRobotBarSectionNonstdDataValue.I_BSNDV_I_TW, BISYM_TW)
data.MaterialName = BISYM_mat

data.CalcNonstdGeometry()

lab_serv.Store(sec)

OUT = sec.name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I personally&amp;nbsp; would be curious to see the code for I_BISYM&amp;nbsp;and it would probably be useful to other users in the future.&lt;/P&gt;&lt;P&gt;As the documentation is not great on this topic, I believe posting an example would be a step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This type of example helped me figuring a few things out in the past. If Autodesk was able to gather this information in one place that would be the icing on the cake.&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;&amp;nbsp;See last message from&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr Edward&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;file is attached.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 09:26:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814707#M17819</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-21T09:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814729#M17820</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim RLabel As RobotLabel
        
    Dim RLabelData As RobotBarSectionData
    Dim RLabelNSData As RobotBarSectionNonstdData

    Set RLabel = RobApp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "my_section")
    Set RLabelData = RLabel.Data
    
    RLabelData.Type = I_BST_NS_I
    RLabelData.ShapeType = I_BSST_USER_I_BISYM
    
    Set RLabelNSData = RLabelData.CreateNonstd(0)
    

    RLabelNSData.SetValue I_BSNDV_I_B, 0.2
    RLabelNSData.SetValue I_BSNDV_I_H, 0.4
    RLabelNSData.SetValue I_BSNDV_I_TF, 0.01
    RLabelNSData.SetValue I_BSNDV_I_TW, 0.01
    
    Set RLabelNSData = RLabelData.CreateNonstd(1)
    
    RLabelNSData.SetValue I_BSNDV_I_B, 0.2
    RLabelNSData.SetValue I_BSNDV_I_H, 1
    RLabelNSData.SetValue I_BSNDV_I_TF, 0.01
    RLabelNSData.SetValue I_BSNDV_I_TW, 0.01
    RLabelData.CalcNonstdGeometry
    
    RobApp.Project.Structure.Labels.Store RLabel&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 21 Oct 2020 09:40:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9814729#M17820</guid>
      <dc:creator>Rafal.Gaweda</dc:creator>
      <dc:date>2020-10-21T09:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9819848#M17821</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7613523"&gt;@JacquesGaudin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found some more information about all the section properties avaible and not listed in the API.&lt;/P&gt;&lt;P&gt;See &lt;A href="https://kupdf.net/download/robo-tom_58d4f843dc0d607e43c346a4_pdf" target="_blank" rel="noopener"&gt;this link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and have a look at IRobotBarSectionType(page 114)&lt;/P&gt;&lt;P&gt;and IRobotBarSectionShapeType(page 106)&lt;/P&gt;&lt;P&gt;and IRobotBarSectionNonstdDataValue(page 115)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this is usefull for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gr Edward.&lt;/P&gt;&lt;P&gt;(PS: i started upgrading my I_BISYM script to a general script which will work with the index numbers and some loops to have 1 scrip for all sections)&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 07:25:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9819848#M17821</guid>
      <dc:creator>1234eddie</dc:creator>
      <dc:date>2020-10-23T07:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9819963#M17822</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks, much appreciated. When I'm looking for something that is undocumented, I usually do a&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;dir(IRobotBarSectionType)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to see what is actually defined in the object.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, sometimes even though the enum is missing some values, the integer constant still works!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/589195"&gt;@Rafal.Gaweda&lt;/a&gt;&amp;nbsp; If anyone is ever interested in fixing the documentation, I have a list of things to be corrected.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 08:24:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/9819963#M17822</guid>
      <dc:creator>JacquesGaudin</dc:creator>
      <dc:date>2020-10-23T08:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/12588590#M17823</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3017553"&gt;@1234eddie&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I was reading this post, fully interesting., I really like your questions, they often coincide with many of my doubts.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am in a similar situation and I would like to investigate a little more in it. The post is more than 3 years old, perhaps you apply a different method now:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Of course, using the section type I_BISYM generates a section without taking into account the material of the radius, hence the decrease in different properties. But in addition, because of the slenderness calculation of the section sometimes goes from Class2 to Class3 because it does not take into account the rigidity of the radius, thus penalizing its final resistance, especially in cases of bending. Have you investigated the generation of the sections in any other more precise way?&lt;/LI&gt;&lt;LI&gt;On the other hand, it seems in the type section(I_BSST_UNKNOWN) proposed by Rafal you can use a more aproximate parameters (Ix, Iy, A, ...) but again for the class section goes from Class2 to Class3. Did you test this type section by API?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pablo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 17:27:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/12588590#M17823</guid>
      <dc:creator>PABLO.SANCHEzZTKJ5</dc:creator>
      <dc:date>2024-02-28T17:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set bar section data and calculate (API) with corrosion</title>
      <link>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/12589960#M17824</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12066780"&gt;@PABLO.SANCHEzZTKJ5&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you will benefit from rewriting new section databases in this scenario.&lt;/P&gt;&lt;P&gt;This involves either duplicating an existing catalog and adjusting the values accordingly, or creating entirely new entries based on the section definitions.&lt;/P&gt;&lt;P&gt;Using new bases, you can take advantage of the design module and even make adjustments to common properties to match your measurement records.&lt;/P&gt;&lt;P&gt;This doesn't stop you from exploring the creation in a simple dialog box to create new sections instantly&lt;BR /&gt;It is essential to clearly label corroded profiles, such as “HEA 360_C1” for example.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_0-1709191039136.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1331704i47C2A052FF792029/image-size/small?v=v2&amp;amp;px=200" role="button" title="Stephanekapetanovic_0-1709191039136.png" alt="Stephanekapetanovic_0-1709191039136.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stephanekapetanovic_3-1727154351059.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1412948i02D53FB9340CFB5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Stephanekapetanovic_3-1727154351059.png" alt="Stephanekapetanovic_3-1727154351059.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 05:06:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/robot-structural-analysis-forum/set-bar-section-data-and-calculate-api-with-corrosion/m-p/12589960#M17824</guid>
      <dc:creator>Stephane.kapetanovic</dc:creator>
      <dc:date>2024-09-24T05:06:03Z</dc:date>
    </item>
  </channel>
</rss>

