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.
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();