get_base_data#
- dlubal.api.rfem.Application.get_base_data(self, *, optional_model_id: ~dlubal.api.common.model_id_pb2.OptionalModelId =) BaseData #
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 (dlubal.api.common.model_id_pb2.OptionalModelId)
- Returns:
dlubal.api.rfem.base_data_pb2.BaseData
Example
base_data = rfem_app.get_base_data()
print(base_data)
var base_data = await rfem_app.get_base_data();
Console.WriteLine(base_data);
Output
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 {
activate_combination_wizard_and_classification: true
activate_combination_wizard: false
result_combinations_active: false
...
}