get_base_data#
- dlubal.api.rstab.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:
 
Method Type: Core
Usage
base_data: rstab.BaseData  = rstab_app.get_base_data()
print(f"BASE DATA:\n{base_data}")
Rstab.BaseData? baseData = await RstabApp.get_base_data();
Console.WriteLine($"BASE DATA:\n{baseData}");
Output
BASE DATA:
addons {
    material_nonlinear_analysis_active: false
    structure_stability_active: true
    steel_design_active: true
    ...
}
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
    ...
}
location {
    country_iso: COUNTRY_ISO_UNSPECIFIED
    street: ""
    ...
}
wizards_defaults {
    snow_load_wizard_zone: LOAD_WIZARD_ZONE_E_LOAD_ZONE_NOT_DEFINED
    wind_load_wizard_zone: LOAD_WIZARD_ZONE_E_LOAD_ZONE_NOT_DEFINED
    ...
}