Message 1 of 1
(API) Setting default seismic combination
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How can I change this default type of seismic combination through API?
I can only find setting seismic combination when creating load combination. If there is a mismatch between this default and that defined in the load combination case, the results provided by the result server will be NAN.
Here is what I mean by setting the seismic combination when creating load combination:
comb_case = project.Structure.Cases.CreateCombination(case_id, "SEISMIC_COMBO"+str(case_id), I_CBT_ULS, IRobotCaseNature_I_CN_SEISMIC, I_CAT_COMB) # comb_type, case nature, analysis type,
comb_case.SeismicType = I_MCT_CQC
D_factor, E_factor = 0.9, 1.0
comb_case.CaseFactors.New(1, D_factor)
comb_case.CaseFactors.New(2, D_factor)
comb_case.CaseFactors.New(5, D_factor)
comb_case.CaseFactors.New(6, D_factor)
comb_case.CaseFactors.New(seismic_id, E_factor)