dlubal.api 2.11.9__tar.gz → 2.11.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dlubal.api might be problematic. Click here for more details.
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/PKG-INFO +2 -2
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/README.md +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/connection.py +3 -8
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/packing.py +9 -9
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/utility.py +19 -15
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/__init__.py +1 -0
- dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +73 -0
- dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +231 -0
- dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +73 -0
- dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +231 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/application.py +32 -3
- dlubal_api-2.11.11/dlubal/api/rfem/application_pb2.py +71 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/application_pb2.pyi +42 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/application_pb2_grpc.py +88 -0
- dlubal_api-2.11.11/dlubal/api/rfem/base_data_pb2.py +108 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/base_data_pb2.pyi +529 -318
- dlubal_api-2.11.11/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +44 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +2 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/building_story_pb2.py +21 -21
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/building_story_pb2.pyi +8 -8
- dlubal_api-2.11.11/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +53 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/component_design_objects/component_pb2.py +11 -11
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/component_design_objects/component_pb2.pyi +8 -8
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +89 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +347 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +53 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +149 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +57 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +159 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +105 -0
- dlubal_api-2.11.11/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +423 -0
- dlubal_api-2.11.11/dlubal/api/rfem/design_addons_pb2.py +36 -0
- dlubal_api-2.11.11/dlubal/api/rfem/design_addons_pb2.pyi +28 -0
- dlubal_api-2.11.11/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal_api-2.11.11/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal_api-2.11.11/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal_api-2.11.11/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal_api-2.11.11/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +65 -0
- dlubal_api-2.11.11/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +191 -0
- dlubal_api-2.11.11/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +65 -0
- dlubal_api-2.11.11/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +191 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dimension_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dimension_pb2.pyi +3 -3
- dlubal_api-2.11.11/dlubal/api/rfem/imperfections/member_imperfection_pb2.py +50 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +2 -2
- dlubal_api-2.11.11/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +50 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +2 -2
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/load_model_pb2.py +11 -11
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/load_model_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rfem/load_wizards/moving_load_pb2.py +52 -0
- {dlubal_api-2.11.9/dlubal/api/rstab → dlubal_api-2.11.11/dlubal/api/rfem}/load_wizards/moving_load_pb2.pyi +4 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +2 -2
- dlubal_api-2.11.11/dlubal/api/rfem/results/results_type_pb2.py +36 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/results_type_pb2.pyi +216 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +3 -3
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +53 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +121 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +49 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +99 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +137 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +583 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +137 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +583 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +49 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +91 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +49 -0
- dlubal_api-2.11.11/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +91 -0
- dlubal_api-2.11.11/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +41 -0
- dlubal_api-2.11.11/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +47 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/block_pb2.py +17 -17
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/block_pb2.pyi +4 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/design_strip_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +3 -3
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/material_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/material_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rfem/structure_core/member_pb2.py +187 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/member_pb2.pyi +413 -21
- dlubal_api-2.11.11/dlubal/api/rfem/structure_core/member_representative_pb2.py +283 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/member_representative_pb2.pyi +817 -33
- dlubal_api-2.11.11/dlubal/api/rfem/structure_core/member_set_pb2.py +151 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/member_set_pb2.pyi +409 -17
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/section_pb2.py +29 -29
- {dlubal_api-2.11.9/dlubal/api/rstab → dlubal_api-2.11.11/dlubal/api/rfem}/structure_core/section_pb2.pyi +10 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/thickness_pb2.py +17 -17
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/thickness_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +121 -0
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +495 -0
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +121 -0
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +495 -0
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +161 -0
- dlubal_api-2.11.11/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +715 -0
- dlubal_api-2.11.11/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +56 -0
- dlubal_api-2.11.11/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +273 -0
- dlubal_api-2.11.11/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +80 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +370 -202
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_support_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_support_pb2.pyi +4 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/application.py +14 -9
- dlubal_api-2.11.11/dlubal/api/rsection/base_data_pb2.py +58 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/base_data_pb2.pyi +29 -18
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/dimension_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/dimension_pb2.pyi +3 -3
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/section_pb2.py +7 -7
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/section_pb2.pyi +6 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/__init__.py +1 -0
- dlubal_api-2.11.11/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +73 -0
- dlubal_api-2.11.11/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +231 -0
- dlubal_api-2.11.11/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +73 -0
- dlubal_api-2.11.11/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +231 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/application.py +32 -3
- dlubal_api-2.11.11/dlubal/api/rstab/application_pb2.py +66 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/application_pb2.pyi +42 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/application_pb2_grpc.py +88 -0
- dlubal_api-2.11.11/dlubal/api/rstab/base_data_pb2.py +92 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/base_data_pb2.pyi +521 -318
- dlubal_api-2.11.11/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +53 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +89 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +347 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +53 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +149 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +57 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +147 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +105 -0
- dlubal_api-2.11.11/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +411 -0
- dlubal_api-2.11.11/dlubal/api/rstab/design_addons_pb2.py +36 -0
- dlubal_api-2.11.11/dlubal/api/rstab/design_addons_pb2.pyi +22 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dimension_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dimension_pb2.pyi +3 -3
- dlubal_api-2.11.11/dlubal/api/rstab/imperfections/member_imperfection_pb2.py +50 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +2 -2
- dlubal_api-2.11.11/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +50 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +2 -2
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/load_model_pb2.py +11 -11
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/load_model_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rstab/load_wizards/moving_load_pb2.py +52 -0
- {dlubal_api-2.11.9/dlubal/api/rfem → dlubal_api-2.11.11/dlubal/api/rstab}/load_wizards/moving_load_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rstab/results/results_type_pb2.py +36 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/results_type_pb2.pyi +6 -60
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +53 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +121 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +49 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +99 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +137 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +583 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +137 -0
- dlubal_api-2.11.11/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +583 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/block_pb2.py +17 -17
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/block_pb2.pyi +4 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/material_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/material_pb2.pyi +4 -4
- dlubal_api-2.11.11/dlubal/api/rstab/structure_core/member_pb2.py +177 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/member_pb2.pyi +409 -17
- dlubal_api-2.11.11/dlubal/api/rstab/structure_core/member_representative_pb2.py +273 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/member_representative_pb2.pyi +813 -29
- dlubal_api-2.11.11/dlubal/api/rstab/structure_core/member_set_pb2.py +151 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/member_set_pb2.pyi +409 -17
- dlubal_api-2.11.11/dlubal/api/rstab/structure_core/member_set_representative_pb2.py +389 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +1220 -44
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/section_pb2.py +29 -29
- {dlubal_api-2.11.9/dlubal/api/rfem → dlubal_api-2.11.11/dlubal/api/rstab}/structure_core/section_pb2.pyi +10 -4
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +121 -0
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +495 -0
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +121 -0
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +495 -0
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +161 -0
- dlubal_api-2.11.11/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +715 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_support_pb2.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_support_pb2.pyi +4 -4
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/PKG-INFO +2 -2
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/SOURCES.txt +12 -0
- dlubal_api-2.11.11/examples/rfem/base_data.py +26 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/block.py +1 -1
- dlubal_api-2.11.11/examples/rfem/design_configuration.py +71 -0
- dlubal_api-2.11.11/examples/rfem/design_settings.py +37 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/frame.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/import_from_rsection.py +15 -19
- dlubal_api-2.11.11/examples/rfem/material_user_defined.py +25 -0
- dlubal_api-2.11.11/examples/rfem/steel_design_configuration.py +27 -0
- dlubal_api-2.11.11/examples/rsection/base_data.py +20 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rsection/steel_section.py +10 -2
- dlubal_api-2.11.11/examples/rstab/base_data.py +25 -0
- dlubal_api-2.11.11/examples/rstab/design_settings.py +37 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/frame.py +1 -1
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/import_from_rsection.py +21 -19
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/pyproject.toml +1 -1
- dlubal_api-2.11.9/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/application_pb2.py +0 -61
- dlubal_api-2.11.9/dlubal/api/rfem/base_data_pb2.py +0 -102
- dlubal_api-2.11.9/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +0 -44
- dlubal_api-2.11.9/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +0 -53
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +0 -58
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +0 -58
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +0 -46
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +0 -46
- dlubal_api-2.11.9/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +0 -24
- dlubal_api-2.11.9/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +0 -24
- dlubal_api-2.11.9/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +0 -34
- dlubal_api-2.11.9/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +0 -34
- dlubal_api-2.11.9/dlubal/api/rfem/imperfections/member_imperfection_pb2.py +0 -50
- dlubal_api-2.11.9/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +0 -50
- dlubal_api-2.11.9/dlubal/api/rfem/load_wizards/moving_load_pb2.py +0 -52
- dlubal_api-2.11.9/dlubal/api/rfem/results/results_type_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +0 -24
- dlubal_api-2.11.9/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +0 -24
- dlubal_api-2.11.9/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +0 -24
- dlubal_api-2.11.9/dlubal/api/rfem/structure_core/member_pb2.py +0 -173
- dlubal_api-2.11.9/dlubal/api/rfem/structure_core/member_representative_pb2.py +0 -255
- dlubal_api-2.11.9/dlubal/api/rfem/structure_core/member_set_pb2.py +0 -137
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -52
- dlubal_api-2.11.9/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +0 -209
- dlubal_api-2.11.9/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -74
- dlubal_api-2.11.9/dlubal/api/rsection/base_data_pb2.py +0 -56
- dlubal_api-2.11.9/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/application_pb2.py +0 -56
- dlubal_api-2.11.9/dlubal/api/rstab/base_data_pb2.py +0 -86
- dlubal_api-2.11.9/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +0 -53
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +0 -58
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +0 -58
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +0 -34
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +0 -34
- dlubal_api-2.11.9/dlubal/api/rstab/imperfections/member_imperfection_pb2.py +0 -50
- dlubal_api-2.11.9/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +0 -50
- dlubal_api-2.11.9/dlubal/api/rstab/load_wizards/moving_load_pb2.py +0 -52
- dlubal_api-2.11.9/dlubal/api/rstab/results/results_type_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/structure_core/member_pb2.py +0 -163
- dlubal_api-2.11.9/dlubal/api/rstab/structure_core/member_representative_pb2.py +0 -245
- dlubal_api-2.11.9/dlubal/api/rstab/structure_core/member_set_pb2.py +0 -137
- dlubal_api-2.11.9/dlubal/api/rstab/structure_core/member_set_representative_pb2.py +0 -347
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +0 -30
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +0 -36
- dlubal_api-2.11.9/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +0 -30
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/common_messages_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/common_messages_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/common_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/common_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/exceptions.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/import_export/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/import_export/export_attributes_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/import_export/export_attributes_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/import_export/import_attributes_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/import_export/import_attributes_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/model_id_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/model_id_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/table.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/table_data_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/common/table_data_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/all_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/all_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/aluminum_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/base_data_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/base_data_objects/terrain_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/deep_beam_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/deep_beam_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/floor_set_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/floor_set_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/shear_wall_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/building_model/shear_wall_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/calculation_diagrams/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/component_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/component_design_objects/component_serie_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/component_design_objects/component_serie_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/concrete_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/construction_stages/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/construction_stages/construction_stage_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/foundation_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/geotechnical_analysis/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/glass_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/global_parameters/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/global_parameters/global_parameter_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/building_grid_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/clipping_box_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/guideline_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/guideline_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/layer_group_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/layer_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/layer_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/note_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/note_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/object_snap_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/visual_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/ifc_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/imperfections/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/imperfections/imperfection_case_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/wind_profile_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/action_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/action_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/action_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/action_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/combination_wizard_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/combination_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/design_situation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/design_situation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/load_case_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/load_case_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/load_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/load_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/optimization_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/optimization_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/result_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/result_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/static_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/additional_foundation_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_circular_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_circular_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_concentrated_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_polygon_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_rectangular_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/line_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/line_set_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/line_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/member_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/member_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/member_set_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/member_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/nodal_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/nodal_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/opening_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/opening_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/solid_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/solid_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/solid_set_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/solid_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/surface_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/surface_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/surface_set_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/loads/surface_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/mesh/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/mesh/mesh_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/object_id_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/object_id_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/object_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/object_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/result_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/result_objects/result_point_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/result_objects/result_point_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/result_objects/result_section_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/result_objects/result_section_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/result_table_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/result_table_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/results_query_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/results_query_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/settings/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/settings/result_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/results/settings/result_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/rsection_stresses/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/steel_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/stress_analysis_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/intersection_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/line_release_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_release_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/line_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/line_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/line_set_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/line_set_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/member_set_representative_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/node_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/node_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/opening_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/opening_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/solid_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/solid_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/solid_set_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/solid_set_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/surface_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/surface_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/surface_set_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/structure_core/surface_set_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/timber_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_craneway_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_foundations/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_glass_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/design_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/design_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_hinge_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_openings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_spring_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_joints/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/all_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/all_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/application_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/application_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/application_pb2_grpc.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/object_snap_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/guide_objects/object_snap_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/loading/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/loading/load_case_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/loading/load_case_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/loading/load_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/loading/load_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/object_id_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/object_id_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/object_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/object_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/result_table_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/result_table_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/results_query_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/results_query_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/results_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/results_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/settings/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/settings/result_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/results/settings/result_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/bar_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/bar_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/element_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/element_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/line_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/line_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/material_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/material_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/opening_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/opening_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/part_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/part_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/point_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/point_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/stirrup_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/stirrup_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/stress_point_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rsection/structure_core/stress_point_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/all_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/all_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/aluminum_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/base_data_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/base_data_objects/terrain_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/calculation_diagrams/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/concrete_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/global_parameters/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/global_parameters/global_parameter_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/building_grid_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/clipping_box_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/guideline_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/guideline_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/layer_group_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/layer_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/layer_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/note_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/note_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/object_snap_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/visual_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/ifc_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/imperfections/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/imperfections/imperfection_case_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/action_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/action_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/action_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/action_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/combination_wizard_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/combination_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/design_situation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/design_situation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/load_case_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/load_case_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/load_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/load_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/optimization_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/optimization_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/result_combination_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/result_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/static_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/additional_foundation_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/member_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/member_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/member_set_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/member_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/nodal_load_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/loads/nodal_load_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/object_id_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/object_id_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/object_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/object_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/result_table_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/result_table_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/results_query_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/results_query_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/settings/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/settings/result_settings_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/results/settings/result_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/steel_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/node_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/structure_core/node_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/timber_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_concrete_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_craneway_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_foundations/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/design_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/design_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_hinge_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_spring_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_nodes/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_special_objects/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/__init__.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/dependency_links.txt +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/not-zip-safe +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/requires.txt +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/dlubal.api.egg-info/top_level.txt +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/bus_station.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/cantilever.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/column.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/component_design.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/dataframe.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/demo_limits.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/excel.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/export_model_to.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/import_from_ifc.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/mesh_settings.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/multiple_models.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/nested_tables.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/pydantic_streamlit.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_access.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_axes_system.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_design_addons.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_filtering.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_in_location.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/results_multiple_models.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/sectioned_roof.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/select_objects.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/silo.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/steel_hall.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/steel_station.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rfem/tank_wind_load.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/cantilever.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/column.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/dataframe.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/excel.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/import_from_ifc.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/multiple_models.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/nested_tables.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/pydantic_streamlit.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/results_access.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/results_axes_system.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/results_in_location.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/results_multiple_models.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/examples/rstab/select_objects.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/any_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/any_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/empty_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/empty_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/wrappers_pb2.py +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/google/protobuf/wrappers_pb2.pyi +0 -0
- {dlubal_api-2.11.9 → dlubal_api-2.11.11}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dlubal.api
|
|
3
|
-
Version: 2.11.
|
|
3
|
+
Version: 2.11.11
|
|
4
4
|
Summary: Python Client Library for Dlubal Software APIs powered by gRPC
|
|
5
5
|
Author-email: Dlubal Software <api@dlubal.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -24,7 +24,7 @@ Requires-Dist: pandas==2.2.3
|
|
|
24
24
|
|
|
25
25
|
This package version is fully compatible with the following **Dlubal App version**:
|
|
26
26
|
|
|
27
|
-
✅ **X.11.
|
|
27
|
+
✅ **X.11.0011.191.a84c5763b39**
|
|
28
28
|
|
|
29
29
|
## Overview
|
|
30
30
|
The `dlubal.api` package is the next-generation Python client library for interacting with Dlubal Software APIs, leveraging modern **gRPC technology** to deliver high-speed communication, scalability, and improved performance. This API enables **seamless automation** and **remote access** to Dlubal software **RFEM 6** and **RSTAB 9**, with plans for near-future support for additional products in the Dlubal portfolio.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
This package version is fully compatible with the following **Dlubal App version**:
|
|
10
10
|
|
|
11
|
-
✅ **X.11.
|
|
11
|
+
✅ **X.11.0011.191.a84c5763b39**
|
|
12
12
|
|
|
13
13
|
## Overview
|
|
14
14
|
The `dlubal.api` package is the next-generation Python client library for interacting with Dlubal Software APIs, leveraging modern **gRPC technology** to deliver high-speed communication, scalability, and improved performance. This API enables **seamless automation** and **remote access** to Dlubal software **RFEM 6** and **RSTAB 9**, with plans for near-future support for additional products in the Dlubal portfolio.
|
|
@@ -5,7 +5,7 @@ import grpc
|
|
|
5
5
|
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
from configparser import ConfigParser
|
|
8
|
-
from
|
|
8
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
9
9
|
|
|
10
10
|
# Enable prompt option for testing purposes
|
|
11
11
|
prompt = False
|
|
@@ -153,15 +153,10 @@ class AuthInterceptor(grpc.UnaryUnaryClientInterceptor):
|
|
|
153
153
|
def __init__(self, value):
|
|
154
154
|
self.api_key = value
|
|
155
155
|
|
|
156
|
-
# def intercept_call(self, continuation, client_call_details, request_or_iterator):
|
|
157
|
-
# client_version = get_distribution('dlubal.api').version
|
|
158
|
-
# call_details = _ClientCallDetails(client_call_details, [("authorization", f"Bearer {self.api_key}"),("api-client-info", f"Python | {client_version}"),])
|
|
159
|
-
# return continuation(call_details, request_or_iterator)
|
|
160
|
-
|
|
161
156
|
def intercept_call(self, continuation, client_call_details, request_or_iterator):
|
|
162
157
|
try:
|
|
163
|
-
client_version =
|
|
164
|
-
except
|
|
158
|
+
client_version = version('dlubal.api')
|
|
159
|
+
except PackageNotFoundError:
|
|
165
160
|
# Package not installed, fallback to default version string
|
|
166
161
|
client_version = "dev"
|
|
167
162
|
|
|
@@ -102,15 +102,15 @@ def get_internal_value(value: Value):
|
|
|
102
102
|
|
|
103
103
|
|
|
104
104
|
def set_internal_value(wrapped_value: Value, value: int | float | str | bool | None):
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
105
|
+
value_type = type(value)
|
|
106
|
+
if value_type is int:
|
|
107
|
+
wrapped_value.int_value = value
|
|
108
|
+
elif value_type is float:
|
|
109
|
+
wrapped_value.double_value = value
|
|
110
|
+
elif value_type is str:
|
|
111
|
+
wrapped_value.string_value = value
|
|
112
|
+
elif value_type is bool:
|
|
113
|
+
wrapped_value.bool_value = value
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
def convert_table_data_to_table(table_data: TableData) -> Table:
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
from dlubal.api.common.packing import get_internal_value, set_internal_value
|
|
2
2
|
|
|
3
|
+
def _get_child_container(tree):
|
|
4
|
+
if hasattr(tree, 'rows'):
|
|
5
|
+
return tree.rows
|
|
6
|
+
elif hasattr(tree, 'children'):
|
|
7
|
+
return tree.children
|
|
8
|
+
else:
|
|
9
|
+
return None
|
|
3
10
|
|
|
4
11
|
def _get_subtree_item(subtree, path: list[str]):
|
|
5
12
|
"""
|
|
@@ -15,9 +22,11 @@ def _get_subtree_item(subtree, path: list[str]):
|
|
|
15
22
|
if not path:
|
|
16
23
|
return subtree
|
|
17
24
|
|
|
18
|
-
|
|
25
|
+
container = _get_child_container(subtree)
|
|
26
|
+
if container is None:
|
|
19
27
|
return None
|
|
20
|
-
|
|
28
|
+
|
|
29
|
+
for child in container:
|
|
21
30
|
if hasattr(child, 'key') and child.key == path[0]:
|
|
22
31
|
return _get_subtree_item(child, path[1:])
|
|
23
32
|
return None
|
|
@@ -37,9 +46,11 @@ def get_tree_item(tree, path: list[str]):
|
|
|
37
46
|
if not path:
|
|
38
47
|
return tree
|
|
39
48
|
|
|
40
|
-
|
|
49
|
+
container = _get_child_container(tree)
|
|
50
|
+
if container is None:
|
|
41
51
|
return None
|
|
42
|
-
|
|
52
|
+
|
|
53
|
+
for row in container:
|
|
43
54
|
if hasattr(row, 'key') and row.key == path[0]:
|
|
44
55
|
return _get_subtree_item(row, path[1:])
|
|
45
56
|
return None
|
|
@@ -81,12 +92,8 @@ def set_tree_value(tree, path: list[str], value: int | float | str | bool | None
|
|
|
81
92
|
current = tree
|
|
82
93
|
for key in path[:-1]:
|
|
83
94
|
# Determine container: rows or children
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
elif hasattr(current, 'children'):
|
|
87
|
-
container = current.children
|
|
88
|
-
else:
|
|
89
|
-
# Cannot proceed if no container
|
|
95
|
+
container = _get_child_container(current)
|
|
96
|
+
if container is None:
|
|
90
97
|
return
|
|
91
98
|
|
|
92
99
|
# Find child with key
|
|
@@ -105,11 +112,8 @@ def set_tree_value(tree, path: list[str], value: int | float | str | bool | None
|
|
|
105
112
|
|
|
106
113
|
# Handle last key
|
|
107
114
|
last_key = path[-1]
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
elif hasattr(current, 'children'):
|
|
111
|
-
container = current.children
|
|
112
|
-
else:
|
|
115
|
+
container = _get_child_container(current)
|
|
116
|
+
if container is None:
|
|
113
117
|
return
|
|
114
118
|
|
|
115
119
|
# Find or create last row
|
dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nOdlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration.proto\x12\'dlubal.api.rfem.aluminum_design_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xd7\x30\n\x1e\x41luminumDesignSlsConfiguration\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x05\x88\x01\x01\x12w\n\x0csettings_adm\x18\t \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsAdmTreeTableH\x06\x88\x01\x01\x12w\n\x0csettings_csa\x18\n \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsCsaTreeTableH\x07\x88\x01\x01\x12w\n\x0csettings_ec9\x18\x0b \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsEc9TreeTableH\x08\x88\x01\x01\x12\x7f\n\x10settings_gb50429\x18\x0c \x01(\x0b\x32`.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsGb50429TreeTableH\t\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_adm\x18\r \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableH\n\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_csa\x18\x0e \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableH\x0b\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_ec9\x18\x0f \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableH\x0c\x88\x01\x01\x12\x90\x01\n\x19surfaces_settings_gb50429\x18\x10 \x01(\x0b\x32h.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableH\r\x88\x01\x01\x12\x8e\x01\n\x18standard_parameters_tree\x18\x11 \x01(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableH\x0e\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x10\x88\x01\x01\x1a\x85\x01\n\x14SettingsAdmTreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsAdmTreeTableRow\x1a\xb8\x02\n\x17SettingsAdmTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsAdmTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x85\x01\n\x14SettingsCsaTreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsCsaTreeTableRow\x1a\xb8\x02\n\x17SettingsCsaTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsCsaTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x85\x01\n\x14SettingsEc9TreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsEc9TreeTableRow\x1a\xb8\x02\n\x17SettingsEc9TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsEc9TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x8d\x01\n\x18SettingsGb50429TreeTable\x12q\n\x04rows\x18\x01 \x03(\x0b\x32\x63.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRow\x1a\xc0\x02\n\x1bSettingsGb50429TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12q\n\x04rows\x18\x06 \x03(\x0b\x32\x63.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsAdmTreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsAdmTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsCsaTreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsCsaTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsEc9TreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsEc9TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x9d\x01\n SurfacesSettingsGb50429TreeTable\x12y\n\x04rows\x18\x01 \x03(\x0b\x32k.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRow\x1a\xd0\x02\n#SurfacesSettingsGb50429TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12y\n\x04rows\x18\x06 \x03(\x0b\x32k.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x9b\x01\n\x1fStandardParametersTreeTreeTable\x12x\n\x04rows\x18\x01 \x03(\x0b\x32j.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRow\x1a\xf2\x02\n\"StandardParametersTreeTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x12x\n\x04rows\x18\x07 \x03(\x0b\x32j.dlubal.api.rfem.aluminum_design_objects.AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRowB\x06\n\x04_keyB\x0e\n\x0c_descriptionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unitB\x07\n\x05_noteB\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x0f\n\r_settings_admB\x0f\n\r_settings_csaB\x0f\n\r_settings_ec9B\x13\n\x11_settings_gb50429B\x18\n\x16_surfaces_settings_admB\x18\n\x16_surfaces_settings_csaB\x18\n\x16_surfaces_settings_ec9B\x1c\n\x1a_surfaces_settings_gb50429B\x1b\n\x19_standard_parameters_treeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.aluminum_design_objects.aluminum_design_sls_configuration_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION']._serialized_start=157
|
|
36
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION']._serialized_end=6388
|
|
37
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSADMTREETABLE']._serialized_start=1709
|
|
38
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSADMTREETABLE']._serialized_end=1842
|
|
39
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSADMTREETABLEROW']._serialized_start=1845
|
|
40
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSADMTREETABLEROW']._serialized_end=2157
|
|
41
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSCSATREETABLE']._serialized_start=2160
|
|
42
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSCSATREETABLE']._serialized_end=2293
|
|
43
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSCSATREETABLEROW']._serialized_start=2296
|
|
44
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSCSATREETABLEROW']._serialized_end=2608
|
|
45
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSEC9TREETABLE']._serialized_start=2611
|
|
46
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSEC9TREETABLE']._serialized_end=2744
|
|
47
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSEC9TREETABLEROW']._serialized_start=2747
|
|
48
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSEC9TREETABLEROW']._serialized_end=3059
|
|
49
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSGB50429TREETABLE']._serialized_start=3062
|
|
50
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSGB50429TREETABLE']._serialized_end=3203
|
|
51
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSGB50429TREETABLEROW']._serialized_start=3206
|
|
52
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SETTINGSGB50429TREETABLEROW']._serialized_end=3526
|
|
53
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSADMTREETABLE']._serialized_start=3529
|
|
54
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSADMTREETABLE']._serialized_end=3678
|
|
55
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSADMTREETABLEROW']._serialized_start=3681
|
|
56
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSADMTREETABLEROW']._serialized_end=4009
|
|
57
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSCSATREETABLE']._serialized_start=4012
|
|
58
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSCSATREETABLE']._serialized_end=4161
|
|
59
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSCSATREETABLEROW']._serialized_start=4164
|
|
60
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSCSATREETABLEROW']._serialized_end=4492
|
|
61
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSEC9TREETABLE']._serialized_start=4495
|
|
62
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSEC9TREETABLE']._serialized_end=4644
|
|
63
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSEC9TREETABLEROW']._serialized_start=4647
|
|
64
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSEC9TREETABLEROW']._serialized_end=4975
|
|
65
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLE']._serialized_start=4978
|
|
66
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLE']._serialized_end=5135
|
|
67
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLEROW']._serialized_start=5138
|
|
68
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLEROW']._serialized_end=5474
|
|
69
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_STANDARDPARAMETERSTREETREETABLE']._serialized_start=5477
|
|
70
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_STANDARDPARAMETERSTREETREETABLE']._serialized_end=5632
|
|
71
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_STANDARDPARAMETERSTREETREETABLEROW']._serialized_start=5635
|
|
72
|
+
_globals['_ALUMINUMDESIGNSLSCONFIGURATION_STANDARDPARAMETERSTREETREETABLEROW']._serialized_end=6005
|
|
73
|
+
# @@protoc_insertion_point(module_scope)
|
dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class AluminumDesignSlsConfiguration(_message.Message):
|
|
10
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "settings_adm", "settings_csa", "settings_ec9", "settings_gb50429", "surfaces_settings_adm", "surfaces_settings_csa", "surfaces_settings_ec9", "surfaces_settings_gb50429", "standard_parameters_tree", "id_for_export_import", "metadata_for_export_import")
|
|
11
|
+
class SettingsAdmTreeTable(_message.Message):
|
|
12
|
+
__slots__ = ("rows",)
|
|
13
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsAdmTreeTableRow]
|
|
15
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsAdmTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
16
|
+
class SettingsAdmTreeTableRow(_message.Message):
|
|
17
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
18
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
key: str
|
|
25
|
+
caption: str
|
|
26
|
+
symbol: str
|
|
27
|
+
value: _common_pb2.Value
|
|
28
|
+
unit: str
|
|
29
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsAdmTreeTableRow]
|
|
30
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsAdmTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
31
|
+
class SettingsCsaTreeTable(_message.Message):
|
|
32
|
+
__slots__ = ("rows",)
|
|
33
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsCsaTreeTableRow]
|
|
35
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsCsaTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
36
|
+
class SettingsCsaTreeTableRow(_message.Message):
|
|
37
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
38
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
key: str
|
|
45
|
+
caption: str
|
|
46
|
+
symbol: str
|
|
47
|
+
value: _common_pb2.Value
|
|
48
|
+
unit: str
|
|
49
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsCsaTreeTableRow]
|
|
50
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsCsaTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
51
|
+
class SettingsEc9TreeTable(_message.Message):
|
|
52
|
+
__slots__ = ("rows",)
|
|
53
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsEc9TreeTableRow]
|
|
55
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsEc9TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
56
|
+
class SettingsEc9TreeTableRow(_message.Message):
|
|
57
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
58
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
key: str
|
|
65
|
+
caption: str
|
|
66
|
+
symbol: str
|
|
67
|
+
value: _common_pb2.Value
|
|
68
|
+
unit: str
|
|
69
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsEc9TreeTableRow]
|
|
70
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsEc9TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
71
|
+
class SettingsGb50429TreeTable(_message.Message):
|
|
72
|
+
__slots__ = ("rows",)
|
|
73
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRow]
|
|
75
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
76
|
+
class SettingsGb50429TreeTableRow(_message.Message):
|
|
77
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
78
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
key: str
|
|
85
|
+
caption: str
|
|
86
|
+
symbol: str
|
|
87
|
+
value: _common_pb2.Value
|
|
88
|
+
unit: str
|
|
89
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRow]
|
|
90
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SettingsGb50429TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
91
|
+
class SurfacesSettingsAdmTreeTable(_message.Message):
|
|
92
|
+
__slots__ = ("rows",)
|
|
93
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRow]
|
|
95
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
96
|
+
class SurfacesSettingsAdmTreeTableRow(_message.Message):
|
|
97
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
98
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
key: str
|
|
105
|
+
caption: str
|
|
106
|
+
symbol: str
|
|
107
|
+
value: _common_pb2.Value
|
|
108
|
+
unit: str
|
|
109
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRow]
|
|
110
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
111
|
+
class SurfacesSettingsCsaTreeTable(_message.Message):
|
|
112
|
+
__slots__ = ("rows",)
|
|
113
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRow]
|
|
115
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
116
|
+
class SurfacesSettingsCsaTreeTableRow(_message.Message):
|
|
117
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
118
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
key: str
|
|
125
|
+
caption: str
|
|
126
|
+
symbol: str
|
|
127
|
+
value: _common_pb2.Value
|
|
128
|
+
unit: str
|
|
129
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRow]
|
|
130
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
131
|
+
class SurfacesSettingsEc9TreeTable(_message.Message):
|
|
132
|
+
__slots__ = ("rows",)
|
|
133
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRow]
|
|
135
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
136
|
+
class SurfacesSettingsEc9TreeTableRow(_message.Message):
|
|
137
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
138
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
key: str
|
|
145
|
+
caption: str
|
|
146
|
+
symbol: str
|
|
147
|
+
value: _common_pb2.Value
|
|
148
|
+
unit: str
|
|
149
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRow]
|
|
150
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
151
|
+
class SurfacesSettingsGb50429TreeTable(_message.Message):
|
|
152
|
+
__slots__ = ("rows",)
|
|
153
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRow]
|
|
155
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
156
|
+
class SurfacesSettingsGb50429TreeTableRow(_message.Message):
|
|
157
|
+
__slots__ = ("key", "caption", "symbol", "value", "unit", "rows")
|
|
158
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
CAPTION_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
key: str
|
|
165
|
+
caption: str
|
|
166
|
+
symbol: str
|
|
167
|
+
value: _common_pb2.Value
|
|
168
|
+
unit: str
|
|
169
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRow]
|
|
170
|
+
def __init__(self, key: _Optional[str] = ..., caption: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
171
|
+
class StandardParametersTreeTreeTable(_message.Message):
|
|
172
|
+
__slots__ = ("rows",)
|
|
173
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRow]
|
|
175
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
176
|
+
class StandardParametersTreeTreeTableRow(_message.Message):
|
|
177
|
+
__slots__ = ("key", "description", "symbol", "value", "unit", "note", "rows")
|
|
178
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
UNIT_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
key: str
|
|
186
|
+
description: str
|
|
187
|
+
symbol: str
|
|
188
|
+
value: _common_pb2.Value
|
|
189
|
+
unit: str
|
|
190
|
+
note: str
|
|
191
|
+
rows: _containers.RepeatedCompositeFieldContainer[AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRow]
|
|
192
|
+
def __init__(self, key: _Optional[str] = ..., description: _Optional[str] = ..., symbol: _Optional[str] = ..., value: _Optional[_Union[_common_pb2.Value, _Mapping]] = ..., unit: _Optional[str] = ..., note: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[AluminumDesignSlsConfiguration.StandardParametersTreeTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
193
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
195
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
197
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
198
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
201
|
+
SETTINGS_ADM_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
SETTINGS_CSA_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
+
SETTINGS_EC9_FIELD_NUMBER: _ClassVar[int]
|
|
204
|
+
SETTINGS_GB50429_FIELD_NUMBER: _ClassVar[int]
|
|
205
|
+
SURFACES_SETTINGS_ADM_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
SURFACES_SETTINGS_CSA_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
SURFACES_SETTINGS_EC9_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
SURFACES_SETTINGS_GB50429_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
STANDARD_PARAMETERS_TREE_FIELD_NUMBER: _ClassVar[int]
|
|
210
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
211
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
212
|
+
no: int
|
|
213
|
+
user_defined_name_enabled: bool
|
|
214
|
+
name: str
|
|
215
|
+
assigned_to_all_members: bool
|
|
216
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
217
|
+
assigned_to_all_member_sets: bool
|
|
218
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
219
|
+
comment: str
|
|
220
|
+
settings_adm: AluminumDesignSlsConfiguration.SettingsAdmTreeTable
|
|
221
|
+
settings_csa: AluminumDesignSlsConfiguration.SettingsCsaTreeTable
|
|
222
|
+
settings_ec9: AluminumDesignSlsConfiguration.SettingsEc9TreeTable
|
|
223
|
+
settings_gb50429: AluminumDesignSlsConfiguration.SettingsGb50429TreeTable
|
|
224
|
+
surfaces_settings_adm: AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTable
|
|
225
|
+
surfaces_settings_csa: AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTable
|
|
226
|
+
surfaces_settings_ec9: AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTable
|
|
227
|
+
surfaces_settings_gb50429: AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTable
|
|
228
|
+
standard_parameters_tree: AluminumDesignSlsConfiguration.StandardParametersTreeTreeTable
|
|
229
|
+
id_for_export_import: str
|
|
230
|
+
metadata_for_export_import: str
|
|
231
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., settings_adm: _Optional[_Union[AluminumDesignSlsConfiguration.SettingsAdmTreeTable, _Mapping]] = ..., settings_csa: _Optional[_Union[AluminumDesignSlsConfiguration.SettingsCsaTreeTable, _Mapping]] = ..., settings_ec9: _Optional[_Union[AluminumDesignSlsConfiguration.SettingsEc9TreeTable, _Mapping]] = ..., settings_gb50429: _Optional[_Union[AluminumDesignSlsConfiguration.SettingsGb50429TreeTable, _Mapping]] = ..., surfaces_settings_adm: _Optional[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsAdmTreeTable, _Mapping]] = ..., surfaces_settings_csa: _Optional[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsCsaTreeTable, _Mapping]] = ..., surfaces_settings_ec9: _Optional[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsEc9TreeTable, _Mapping]] = ..., surfaces_settings_gb50429: _Optional[_Union[AluminumDesignSlsConfiguration.SurfacesSettingsGb50429TreeTable, _Mapping]] = ..., standard_parameters_tree: _Optional[_Union[AluminumDesignSlsConfiguration.StandardParametersTreeTreeTable, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
dlubal_api-2.11.11/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nOdlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration.proto\x12\'dlubal.api.rfem.aluminum_design_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xd7\x30\n\x1e\x41luminumDesignUlsConfiguration\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x05\x88\x01\x01\x12w\n\x0csettings_adm\x18\t \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsAdmTreeTableH\x06\x88\x01\x01\x12w\n\x0csettings_csa\x18\n \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsCsaTreeTableH\x07\x88\x01\x01\x12w\n\x0csettings_ec9\x18\x0b \x01(\x0b\x32\\.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsEc9TreeTableH\x08\x88\x01\x01\x12\x7f\n\x10settings_gb50429\x18\x0c \x01(\x0b\x32`.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsGb50429TreeTableH\t\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_adm\x18\r \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsAdmTreeTableH\n\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_csa\x18\x0e \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsCsaTreeTableH\x0b\x88\x01\x01\x12\x88\x01\n\x15surfaces_settings_ec9\x18\x0f \x01(\x0b\x32\x64.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsEc9TreeTableH\x0c\x88\x01\x01\x12\x90\x01\n\x19surfaces_settings_gb50429\x18\x10 \x01(\x0b\x32h.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsGb50429TreeTableH\r\x88\x01\x01\x12\x8e\x01\n\x18standard_parameters_tree\x18\x11 \x01(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.StandardParametersTreeTreeTableH\x0e\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x10\x88\x01\x01\x1a\x85\x01\n\x14SettingsAdmTreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsAdmTreeTableRow\x1a\xb8\x02\n\x17SettingsAdmTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsAdmTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x85\x01\n\x14SettingsCsaTreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsCsaTreeTableRow\x1a\xb8\x02\n\x17SettingsCsaTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsCsaTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x85\x01\n\x14SettingsEc9TreeTable\x12m\n\x04rows\x18\x01 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsEc9TreeTableRow\x1a\xb8\x02\n\x17SettingsEc9TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12m\n\x04rows\x18\x06 \x03(\x0b\x32_.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsEc9TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x8d\x01\n\x18SettingsGb50429TreeTable\x12q\n\x04rows\x18\x01 \x03(\x0b\x32\x63.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsGb50429TreeTableRow\x1a\xc0\x02\n\x1bSettingsGb50429TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12q\n\x04rows\x18\x06 \x03(\x0b\x32\x63.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SettingsGb50429TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsAdmTreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsAdmTreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsAdmTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsAdmTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsCsaTreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsCsaTreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsCsaTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsCsaTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n\x1cSurfacesSettingsEc9TreeTable\x12u\n\x04rows\x18\x01 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsEc9TreeTableRow\x1a\xc8\x02\n\x1fSurfacesSettingsEc9TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12u\n\x04rows\x18\x06 \x03(\x0b\x32g.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsEc9TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x9d\x01\n SurfacesSettingsGb50429TreeTable\x12y\n\x04rows\x18\x01 \x03(\x0b\x32k.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsGb50429TreeTableRow\x1a\xd0\x02\n#SurfacesSettingsGb50429TreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12y\n\x04rows\x18\x06 \x03(\x0b\x32k.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.SurfacesSettingsGb50429TreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x9b\x01\n\x1fStandardParametersTreeTreeTable\x12x\n\x04rows\x18\x01 \x03(\x0b\x32j.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.StandardParametersTreeTreeTableRow\x1a\xf2\x02\n\"StandardParametersTreeTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x12x\n\x04rows\x18\x07 \x03(\x0b\x32j.dlubal.api.rfem.aluminum_design_objects.AluminumDesignUlsConfiguration.StandardParametersTreeTreeTableRowB\x06\n\x04_keyB\x0e\n\x0c_descriptionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unitB\x07\n\x05_noteB\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x0f\n\r_settings_admB\x0f\n\r_settings_csaB\x0f\n\r_settings_ec9B\x13\n\x11_settings_gb50429B\x18\n\x16_surfaces_settings_admB\x18\n\x16_surfaces_settings_csaB\x18\n\x16_surfaces_settings_ec9B\x1c\n\x1a_surfaces_settings_gb50429B\x1b\n\x19_standard_parameters_treeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.aluminum_design_objects.aluminum_design_uls_configuration_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION']._serialized_start=157
|
|
36
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION']._serialized_end=6388
|
|
37
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSADMTREETABLE']._serialized_start=1709
|
|
38
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSADMTREETABLE']._serialized_end=1842
|
|
39
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSADMTREETABLEROW']._serialized_start=1845
|
|
40
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSADMTREETABLEROW']._serialized_end=2157
|
|
41
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSCSATREETABLE']._serialized_start=2160
|
|
42
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSCSATREETABLE']._serialized_end=2293
|
|
43
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSCSATREETABLEROW']._serialized_start=2296
|
|
44
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSCSATREETABLEROW']._serialized_end=2608
|
|
45
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSEC9TREETABLE']._serialized_start=2611
|
|
46
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSEC9TREETABLE']._serialized_end=2744
|
|
47
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSEC9TREETABLEROW']._serialized_start=2747
|
|
48
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSEC9TREETABLEROW']._serialized_end=3059
|
|
49
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSGB50429TREETABLE']._serialized_start=3062
|
|
50
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSGB50429TREETABLE']._serialized_end=3203
|
|
51
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSGB50429TREETABLEROW']._serialized_start=3206
|
|
52
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SETTINGSGB50429TREETABLEROW']._serialized_end=3526
|
|
53
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSADMTREETABLE']._serialized_start=3529
|
|
54
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSADMTREETABLE']._serialized_end=3678
|
|
55
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSADMTREETABLEROW']._serialized_start=3681
|
|
56
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSADMTREETABLEROW']._serialized_end=4009
|
|
57
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSCSATREETABLE']._serialized_start=4012
|
|
58
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSCSATREETABLE']._serialized_end=4161
|
|
59
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSCSATREETABLEROW']._serialized_start=4164
|
|
60
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSCSATREETABLEROW']._serialized_end=4492
|
|
61
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSEC9TREETABLE']._serialized_start=4495
|
|
62
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSEC9TREETABLE']._serialized_end=4644
|
|
63
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSEC9TREETABLEROW']._serialized_start=4647
|
|
64
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSEC9TREETABLEROW']._serialized_end=4975
|
|
65
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLE']._serialized_start=4978
|
|
66
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLE']._serialized_end=5135
|
|
67
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLEROW']._serialized_start=5138
|
|
68
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_SURFACESSETTINGSGB50429TREETABLEROW']._serialized_end=5474
|
|
69
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_STANDARDPARAMETERSTREETREETABLE']._serialized_start=5477
|
|
70
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_STANDARDPARAMETERSTREETREETABLE']._serialized_end=5632
|
|
71
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_STANDARDPARAMETERSTREETREETABLEROW']._serialized_start=5635
|
|
72
|
+
_globals['_ALUMINUMDESIGNULSCONFIGURATION_STANDARDPARAMETERSTREETREETABLEROW']._serialized_end=6005
|
|
73
|
+
# @@protoc_insertion_point(module_scope)
|