Now define the Load section. {placeholder}
This is the syntax of the DesignSituation:





DesignSituation(

                 no: int = 1,
                 design_situation_type = DesignSituationType.DESIGN_SITUATION_TYPE_A_ACCIDENTAL,
                 active: bool = True,
                 name = None,
                 comment: str = '',
                 params: dict = None,
                 model = Model)




This is an example of the DesignSituation section:

# ---- DesignSituation Sec ----    





DesignSituation(
                 no = 1,
                 design_situation_type = DesignSituationType.DESIGN_SITUATION_TYPE_STR_PERMANENT_AND_TRANSIENT_6_10,
                 active = True,
                 name = "GZT Ständig und vorübergehend (6.10)",
                
                 params = None,
                 )



LoadCombination(
    no=1,
    analysis_type = AnalysisType.ANALYSIS_TYPE_STATIC,
    name='ULS Kombination',
    static_analysis_settings = 1,
    to_solve=True,
    design_situation=1,
    combination_items=[
        [1.35, 1, 0, True],
        [1.5, 2, 0, True]
    ]
    
)
