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 JAE on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modifying "Unbraced Length Ratio(Minor)" in ETABS API using python

Status
Not open for further replies.

F.Moghadam

Civil/Environmental
Joined
May 8, 2022
Messages
7
Location
DE
I have developed an ETABS model, using API with python. After designing the model, there is an error that relates to beams' unbraced length. So I need to modify "Unbraced Length Ratio (Minor)".
The command that I've used, is this(unique name for beams in my model starts from 126 to 325 ):
Python:
for i in range(126,326):
    Overwrite=SapModel.DesignSteel.AISC360_10.SetOverwrite(str(i),19,0.005)
The code runs without any error but the modification doesn't apply.
Do you know the answer?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top