Haunch beam data

Anonymous

Haunch beam data

Anonymous
Not applicable

Hello,

I try to implement beam with haunch verifications according to EC3 and french NA. I need to get geometrical data for the beams with haunch (h, b, Iy ...) versus position along the beam (beginning, end, middle, at the calculation point...)

These data are available through the IRDimProfDefValType interface, accessible through the IRDimAllRes interface, that is to say after the calculations are carried out : but, these data are mofified with the Robot way of dealing with beam with hauch : all data are averaged data ! , ie wrong according to EC3...

How can I get initial data for the beam (this point I know), for the hauch and for the beam with hauch ? Initial data means data before Robot computation.

Thanks a lot for your help

0 Likes
Reply
Accepted solutions (1)
969 Views
6 Replies
Replies (6)

Rafal.Gaweda
Autodesk Support
Autodesk Support

Non way.

You mat get \ calculate some geometrical data of section and bracket separately then create I nonstandard section out of these data and let robot to calculate its properties



Rafal Gaweda
0 Likes

Anonymous
Not applicable

Too bad.

Thanks

 

0 Likes

Anonymous
Not applicable
Thanks for the tip.
But how can I create non standard section out of the geometrical data :
Which enumerations and interfaces do I have to use ?
So far I have read sections enumerations, all of the data are considered
constant along the length of the bar ?
Kind regards
0 Likes

Rafal.Gaweda
Autodesk Support
Autodesk Support
Accepted solution

I meant to create constant section (dummy) out of geometrical data in given point\section of original section and calculate sectional properties

Example :

 

Dim RLabelN As RobotLabel
Dim RLabelDataN As RobotBarSectionData

Set RLabelN = RobApp.Project.Structure.Labels.Create(I_LT_BAR_SECTION, "RRR")
    Set RLabelDataN = RLabelN.Data
   
    RLabelDataN.Type = I_BST_NS_II
    RLabelDataN.ShapeType = I_BSST_USER_I_MONOSYM
    Set RLabelNSDataN = RLabelDataN.CreateNonstd(0)
    
    RLabelNSDataN.SetValue I_BSNDV_II_B1, 0.3
    RLabelNSDataN.SetValue I_BSNDV_II_B2, 0.3
    RLabelNSDataN.SetValue I_BSNDV_II_H, 1
    RLabelNSDataN.SetValue I_BSNDV_II_TF1, 0.02
    RLabelNSDataN.SetValue I_BSNDV_II_TF2, 0.03
    RLabelNSDataN.SetValue I_BSNDV_II_TW, 0.01
    RLabelDataN.CalcNonstdGeometry
    
    RobApp.Project.Structure.Labels.Store RLabelN
    Set sectData = RLabelN.Data
    Iy = sectData.GetValue(I_BSDV_IY)
    vzz = sectData.GetValue(I_BSDV_VZ)
    vpzz = sectData.GetValue(I_BSDV_VPZ)

 



Rafal Gaweda
0 Likes

Anonymous
Not applicable

Thanks.

I try

Regards

0 Likes

tuladhar.prerana
Contributor
Contributor

Can any one please help me providing tutorial for modelling haunch beam?

 

0 Likes