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!

Scaling Response spectrum with equavlient static with ETAPS API 1

Status
Not open for further replies.

Moam93

Civil/Environmental
May 1, 2020
14
I am trying to change the scale factor of response spectrum to be 100 % of base reactions of equavlient static in both x& y direction using APIs in Python

I managed to extract base reaction from spec and equavlient static in both directions . I am stuck in getting scale factor already in model and compare it set it to be new scale based (100% of equavlient static ) for both x and y direction . below is the vode I have written so far .Also attached my code . any help? python file also attached

def scaling (model):
""" Retrieves base reactions from EQ,SPEC in the model."""

ret1 = SapModel.Results.Setup.DeselectAllCasesAndCombosForOutput()
ret1 = SapModel.Results.Setup.SetCaseSelectedForOutput("EQX")
ret1 = SapModel.Results.BaseReact()


ret2 = SapModel.Results.Setup.DeselectAllCasesAndCombosForOutput()
ret2 = SapModel.Results.Setup.SetCaseSelectedForOutput("EQY")
ret2 = SapModel.Results.BaseReact()

ret3 = SapModel.Results.Setup.DeselectAllCasesAndCombosForOutput()
ret3 = SapModel.Results.Setup.SetCaseSelectedForOutput("SPECX")
ret3 = SapModel.Results.BaseReact()

ret4 = SapModel.Results.Setup.DeselectAllCasesAndCombosForOutput()
ret4 = SapModel.Results.Setup.SetCaseSelectedForOutput("SPECY")
ret4 = SapModel.Results.BaseReact()

get_scale_factor = SapModel.CaseResponseSpectrum.GetLoads("SPECX")
scale_factor = get_scale_factor[3]



FXeq = ret1[4]
FYeq = ret2[5]
FX_spec = ret3[4]
FY_spec = ret4[5]


print("FX_eq",FXeq)
print("FY_eq",FYeq)
print("FX_spec",FX_spec)
print("FY_spec",FY_spec)
]
 
 https://files.engineering.com/getfile.aspx?folder=b7ce1e27-f6d8-4796-bd35-788379f9528b&file=Response_spectrum_scalingV2.py
Replies continue below

Recommended for you

Hi Moam93,

Apologies for not getting back sooner, I have been fairly busy this last week.

I think the CaseResponseSpectrum functions are hidden under

SapModel.LoadCases.ResponseSpectrum.GetLoads(case_name)

I have noticed this sometimes that the python functions don't exactly match the way they are referenced in the chm file.

Hope it helps.
 
Thanks ! that was the issue .

thanks for helping
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor