Robot Structural Analysis Forum
Welcome to Autodesk’s Robot Structural Analysis Forums. Share your knowledge, ask questions, and explore popular Robot Structural Analysis topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

(API) How to get reinforcement results of structures

1 REPLY 1
Reply
Message 1 of 2
chiuxahoi
302 Views, 1 Reply

(API) How to get reinforcement results of structures

I'm writing a program by VBA to draw and disposition stell in floor , beam and column , i don't know what's the function i can use to get results to continue my job. I need your help. Thanks a lot. 

1 REPLY 1
Message 2 of 2
Rafal.Gaweda
in reply to: chiuxahoi

Example loop for FEs

 

Dim FeReinRes As RobotFeResultReinforcement

row = 10

For i = 1 To number
   
    Set FeReinRes = RobApp.Project.Structure.Results.FiniteElems.Reinforcement(i)

    
    Cells(row, 2) = FeReinRes.AX_BOTTOM * 10000
    Cells(row, 3) = FeReinRes.AX_TOP * 10000
    Cells(row, 4) = FeReinRes.AY_BOTTOM * 10000
    Cells(row, 5) = FeReinRes.AY_TOP * 10000
    
    row = row + 1

Next i

 



Rafal Gaweda

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report