Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS 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
Nov 4, 2018
1
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
 
Replies continue below

Recommended for you

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