Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

ETABS API - Get All Pier Forces

Status
Not open for further replies.

MG407

Structural
Joined
Nov 4, 2018
Messages
1
Location
AU
Hi all,

I'm trying to extract analysis forces for a given pier for all load combinations in Python using the API but not sure how to input this?
Looking to extract data and then design outside of ETABS.

Thanks
 
you need to get all the load combinations, then set them to True for analysis results.

Python:
comboOut=SapModel.RespCombo.GetNameList();
for i in range(len(comboCaseLst)):
    caseForOut=comboCaseLst[i];
    SapModel.Results.Setup.SetComboSelectedForOutput(caseForOut,True);
pierForceOut=SapModel.Results.PierForce();
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top