25x
025521
2025-09-21

Enhanced Access to Base Data and Load Wizard Configuration

The API (gRPC) now supports full access to the Main tab in Base Data, enabling retrieval and modification of key attributes such as model_type and model_description. Additionally, the issue with missing enums for setting the Load Wizard national annex has been resolved, ensuring complete and consistent configuration of Base Data through the API.Usage:    base_data: rfem.BaseData  = rfem_app.get_base_data()    print(f"BASE DATA:\n{base_data}")    base_data.main.model_description = "model_type_2D"    base_data.main.comment = "test version"    base_data.main.model_type = rfem.BaseData.Main.MODEL_TYPE_2D_XZ_PLANE_STRESS    base_data.main.surfaces_active = False    base_data.addons.steel_design_active = True    base_data.addons.load_wizards_active = True    base_data.addons.combination_wizard_and_classification_active = True    base_data.standards.load_wizard_standard_group = rfem.BaseData.Standards.LOAD_WIZARD_STANDARD_GROUP_EN_1991_STANDARD_GROUP    base_data.standards.load_wizard_standard = rfem.BaseData.Standards.LOAD_WIZARD_NATIONAL_ANNEX_AND_EDITION_EN_1991_DIN_2019_04_STANDARD    base_data.standards.combination_wizard_standard = rfem.BaseData.Standards.COMBINATION_WIZARD_NATIONAL_ANNEX_AND_EDITION_EN_1990_DIN_2012_08_STANDARD    base_data.standards.steel_design_standard = rfem.BaseData.Standards.STEEL_DESIGN_NATIONAL_ANNEX_AND_EDITION_EN_1993_DIN_2020_11_STANDARD    rfem_app.set_base_data(base_data=base_data)




;