get_base_data#

dlubal.api.rfem.Application.get_base_data(self, *, optional_model_id=)#

Get the base data. This method returns the complete set of data stored for a particular model, including add-ons, standards, general and combinations settings, etc.

Parameters:

optional_model_id (OptionalModelId)

Returns:

BaseData


Usage

base_data: rfem.BaseData = rfem_app.get_base_data()
print(f"BASE DATA:\n{base_data}")

Output

BASE DATA:
main {
    model_name: "Two-span_Beam"
    model_description: ""
    comment: ""
    model_type: MODEL_TYPE_3D
    ...
}
addons {
    load_wizards_active: true
    combination_wizard_and_classification_active: true
    nonlinear_material_behavior_active: false
    structure_stability_active: false
    ...
}
standards {
    steel_design_standard: STEEL_DESIGN_NATIONAL_ANNEX_AND_EDITION_EN_1993_DIN_2020_11_STANDARD
    load_wizard_standard_group: LOAD_WIZARD_EN_1991_STANDARD_GROUP
    activate_load_wizards: true
}
general_settings {
    member_representatives_active: false
    member_set_representatives_active: false
    surface_cells_active: false
    global_axes_orientation: GLOBAL_AXES_ORIENTATION_ZUP
    local_axes_orientation: LOCAL_AXES_ORIENTATION_ZDOWN
    ...
}
combinations_settings {
    combination_wizard_active_and_classification: true
    combination_wizard_active: false
    result_combinations_active: false
    ...
}