dlubal.api 2.11.1__tar.gz → 2.11.3__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.1 → dlubal_api-2.11.3}/PKG-INFO +2 -2
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/README.md +1 -1
- dlubal_api-2.11.3/dlubal/api/common/import_export/export_attributes_pb2.py +46 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/import_export/export_attributes_pb2.pyi +0 -4
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/__init__.py +0 -1
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/application.py +48 -12
- dlubal_api-2.11.3/dlubal/api/rfem/application_pb2.py +56 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/application_pb2.pyi +21 -1
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/application_pb2_grpc.py +91 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/construction_stages/construction_stage_pb2.py +18 -18
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +4 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/__init__.py +1 -0
- dlubal_api-2.11.3/dlubal/api/rfem/results/result_table_pb2.py +36 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/result_table_pb2.pyi +2 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/results_query_pb2.py +6 -5
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/results_query_pb2.pyi +7 -2
- dlubal_api-2.11.3/dlubal/api/rfem/results/settings/__init__.py +1 -0
- dlubal_api-2.11.3/dlubal/api/rfem/results/settings/result_settings_pb2.py +38 -0
- dlubal_api-2.11.3/dlubal/api/rfem/results/settings/result_settings_pb2.pyi +23 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/thickness_pb2.py +13 -13
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/thickness_pb2.pyi +2 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/__init__.py +0 -1
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/application.py +47 -11
- dlubal_api-2.11.3/dlubal/api/rstab/application_pb2.py +56 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/application_pb2.pyi +21 -1
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/application_pb2_grpc.py +91 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/__init__.py +1 -0
- dlubal_api-2.11.3/dlubal/api/rstab/results/result_table_pb2.py +36 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/result_table_pb2.pyi +2 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/results_query_pb2.py +6 -5
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/results_query_pb2.pyi +7 -2
- dlubal_api-2.11.3/dlubal/api/rstab/results/settings/__init__.py +1 -0
- dlubal_api-2.11.3/dlubal/api/rstab/results/settings/result_settings_pb2.py +38 -0
- dlubal_api-2.11.3/dlubal/api/rstab/results/settings/result_settings_pb2.pyi +23 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/PKG-INFO +2 -2
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/SOURCES.txt +13 -7
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/frame.py +16 -20
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/results_access.py +10 -0
- dlubal_api-2.11.3/examples/rfem/results_axes_system.py +66 -0
- dlubal_api-2.11.3/examples/rfem/results_filtering.py +28 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/results_in_location.py +8 -11
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/frame.py +12 -6
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/results_access.py +10 -0
- dlubal_api-2.11.3/examples/rstab/results_axes_system.py +53 -0
- dlubal_api-2.11.3/examples/rstab/results_in_location.py +39 -0
- dlubal_api-2.11.3/google/protobuf/wrappers_pb2.py +53 -0
- dlubal_api-2.11.3/google/protobuf/wrappers_pb2.pyi +59 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/pyproject.toml +1 -1
- dlubal_api-2.11.1/dlubal/api/common/import_export/export_attributes_pb2.py +0 -48
- dlubal_api-2.11.1/dlubal/api/rfem/application_pb2.py +0 -51
- dlubal_api-2.11.1/dlubal/api/rfem/base_data_objects/__init__.py +0 -1
- dlubal_api-2.11.1/dlubal/api/rfem/base_data_objects/terrain_pb2.py +0 -42
- dlubal_api-2.11.1/dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +0 -67
- dlubal_api-2.11.1/dlubal/api/rfem/results/result_table_pb2.py +0 -36
- dlubal_api-2.11.1/dlubal/api/rstab/application_pb2.py +0 -51
- dlubal_api-2.11.1/dlubal/api/rstab/base_data_objects/__init__.py +0 -1
- dlubal_api-2.11.1/dlubal/api/rstab/base_data_objects/terrain_pb2.py +0 -42
- dlubal_api-2.11.1/dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +0 -67
- dlubal_api-2.11.1/dlubal/api/rstab/results/result_table_pb2.py +0 -36
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/common_messages_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/common_messages_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/common_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/common_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/connection.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/exceptions.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/import_export/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/import_export/import_attributes_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/import_export/import_attributes_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/model_id_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/model_id_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/packing.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/table.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/table_data_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/table_data_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/utility.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/all_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/all_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/aluminum_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/base_data_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/base_data_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/building_story_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/building_story_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/deep_beam_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/deep_beam_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/floor_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/floor_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/shear_wall_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/building_model/shear_wall_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/calculation_diagrams/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/construction_stages/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/foundation_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/geotechnical_analysis/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/glass_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/global_parameters/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/global_parameters/global_parameter_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/building_grid_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/clipping_box_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dimension_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dimension_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/guideline_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/guideline_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/layer_group_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/layer_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/layer_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/note_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/note_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/object_snap_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/visual_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/ifc_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/imperfection_case_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/member_imperfection_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/load_model_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/load_model_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/moving_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/moving_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/wind_profile_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/action_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/action_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/action_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/action_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/combination_wizard_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/combination_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/design_situation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/design_situation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/load_case_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/load_case_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/load_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/load_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/optimization_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/optimization_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/result_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/result_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/static_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/additional_foundation_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_circular_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_circular_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_concentrated_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_polygon_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_rectangular_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/line_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/line_set_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/line_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/member_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/member_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/member_set_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/member_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/nodal_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/nodal_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/opening_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/opening_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/solid_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/solid_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/solid_set_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/solid_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/surface_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/surface_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/surface_set_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/loads/surface_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/object_id_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/object_id_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/object_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/object_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/result_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/result_objects/result_point_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/result_objects/result_point_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/result_objects/result_section_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/result_objects/result_section_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/results_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/results/results_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/rsection_stresses/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/block_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/block_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/design_strip_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/intersection_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/line_release_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_release_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/line_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/line_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/line_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/line_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/material_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/material_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_representative_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_representative_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_set_representative_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/node_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/node_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/opening_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/opening_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/section_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/section_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/solid_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/solid_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/solid_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/solid_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/surface_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/surface_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/surface_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/structure_core/surface_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_craneway_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_foundations/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_glass_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/design_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/design_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_hinge_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_openings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_spring_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_joints/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/all_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/all_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/aluminum_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/base_data_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/base_data_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/calculation_diagrams/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/global_parameters/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/global_parameters/global_parameter_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/building_grid_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/clipping_box_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dimension_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dimension_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/guideline_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/guideline_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/layer_group_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/layer_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/layer_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/note_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/note_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/object_snap_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/visual_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/ifc_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/imperfection_case_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/member_imperfection_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/load_model_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/load_model_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/moving_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/load_wizards/moving_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/action_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/action_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/action_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/action_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/combination_wizard_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/combination_wizard_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/design_situation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/design_situation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/load_case_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/load_case_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/load_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/load_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/optimization_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/optimization_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/result_combination_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/result_combination_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/static_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/additional_foundation_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/member_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/member_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/member_set_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/member_set_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/nodal_load_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/loads/nodal_load_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/object_id_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/object_id_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/object_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/object_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/results_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/results/results_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/block_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/block_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/material_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/material_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_representative_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_representative_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_set_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_set_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_set_representative_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/node_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/node_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/section_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/structure_core/section_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_concrete_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_craneway_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_foundations/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/design_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/design_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_hinge_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_spring_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_nodes/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_special_objects/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/__init__.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/dependency_links.txt +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/not-zip-safe +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/requires.txt +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal.api.egg-info/top_level.txt +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/block.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/bus_station.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/cantilever.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/column.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/dataframe.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/demo_limits.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/excel.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/export_model_to.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/import_model_from.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/multiple_models.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/nested_tables.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/pydantic_streamlit.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/sectioned_roof.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/silo.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/steel_hall.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/steel_station.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rfem/tank_wind_load.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rsection/_imports.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/cantilever.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/column.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/dataframe.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/excel.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/import_ifc.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/multiple_models.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/nested_tables.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/examples/rstab/pydantic_streamlit.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/google/protobuf/any_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/google/protobuf/any_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/google/protobuf/empty_pb2.py +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/google/protobuf/empty_pb2.pyi +0 -0
- {dlubal_api-2.11.1 → dlubal_api-2.11.3}/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.3
|
|
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.
|
|
27
|
+
✅ **X.11.0003.147.aa13f618f52**
|
|
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
|
+
✅ **X.11.0003.147.aa13f618f52**
|
|
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.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/common/import_export/export_attributes.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/common/import_export/export_attributes.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
|
26
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7dlubal/api/common/import_export/export_attributes.proto\x12\x1f\x64lubal.api.common.import_export\x1a\x19google/protobuf/any.proto\x1a\x1e\x64lubal/api/common/common.proto\"\x1c\n\x1aPythonGrpcExportAttributes\"\x89\x08\n\x13IfcExportAttributes\x12P\n\x04type\x18\x01 \x01(\x0e\x32\x42.dlubal.api.common.import_export.IfcExportAttributes.IfcExportType\x12\x1b\n\x0eremove_accents\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x1a\n\rmirror_axis_x\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x1a\n\rmirror_axis_y\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1a\n\rmirror_axis_z\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12^\n\x18rotation_angles_sequence\x18\x07 \x01(\x0e\x32\x37.dlubal.api.common.import_export.RotationAnglesSequenceH\x05\x88\x01\x01\x12\x39\n\x0frotation_angles\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12G\n\raxis_change_x\x18\t \x01(\x0e\x32+.dlubal.api.common.import_export.AxisChangeH\x07\x88\x01\x01\x12G\n\raxis_change_y\x18\n \x01(\x0e\x32+.dlubal.api.common.import_export.AxisChangeH\x08\x88\x01\x01\x12G\n\raxis_change_z\x18\x0b \x01(\x0e\x32+.dlubal.api.common.import_export.AxisChangeH\t\x88\x01\x01\x12/\n\x11objects_to_export\x18\x0c \x03(\x0b\x32\x14.google.protobuf.Any\"\x82\x01\n\rIfcExportType\x12\x1f\n\x1bIFC_EXPORT_TYPE_UNSPECIFIED\x10\x00\x12\"\n\x1eIFC_EXPORT_TYPE_REFERENCE_VIEW\x10\x01\x12,\n(IFC_EXPORT_TYPE_STRUCTURAL_ANALYSIS_VIEW\x10\x02\x42\x11\n\x0f_remove_accentsB\x10\n\x0e_mirror_axis_xB\x10\n\x0e_mirror_axis_yB\x10\n\x0e_mirror_axis_zB\x15\n\x13_origin_coordinatesB\x1b\n\x19_rotation_angles_sequenceB\x12\n\x10_rotation_anglesB\x10\n\x0e_axis_change_xB\x10\n\x0e_axis_change_yB\x10\n\x0e_axis_change_z*\x8e\x02\n\x16RotationAnglesSequence\x12(\n$ROTATION_ANGLES_SEQUENCE_UNSPECIFIED\x10\x00\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XYZ\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XZY\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YXZ\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YZX\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZXY\x10\x05\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZYX\x10\x06*b\n\nAxisChange\x12\x1b\n\x17\x41XIS_CHANGE_UNSPECIFIED\x10\x00\x12\x11\n\rAXIS_CHANGE_X\x10\x01\x12\x11\n\rAXIS_CHANGE_Y\x10\x02\x12\x11\n\rAXIS_CHANGE_Z\x10\x03\x62\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.common.import_export.export_attributes_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
DESCRIPTOR._loaded_options = None
|
|
36
|
+
_globals['_ROTATIONANGLESSEQUENCE']._serialized_start=1218
|
|
37
|
+
_globals['_ROTATIONANGLESSEQUENCE']._serialized_end=1488
|
|
38
|
+
_globals['_AXISCHANGE']._serialized_start=1490
|
|
39
|
+
_globals['_AXISCHANGE']._serialized_end=1588
|
|
40
|
+
_globals['_PYTHONGRPCEXPORTATTRIBUTES']._serialized_start=151
|
|
41
|
+
_globals['_PYTHONGRPCEXPORTATTRIBUTES']._serialized_end=179
|
|
42
|
+
_globals['_IFCEXPORTATTRIBUTES']._serialized_start=182
|
|
43
|
+
_globals['_IFCEXPORTATTRIBUTES']._serialized_end=1215
|
|
44
|
+
_globals['_IFCEXPORTATTRIBUTES_IFCEXPORTTYPE']._serialized_start=886
|
|
45
|
+
_globals['_IFCEXPORTATTRIBUTES_IFCEXPORTTYPE']._serialized_end=1016
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|
{dlubal_api-2.11.1 → dlubal_api-2.11.3}/dlubal/api/common/import_export/export_attributes_pb2.pyi
RENAMED
|
@@ -36,10 +36,6 @@ AXIS_CHANGE_X: AxisChange
|
|
|
36
36
|
AXIS_CHANGE_Y: AxisChange
|
|
37
37
|
AXIS_CHANGE_Z: AxisChange
|
|
38
38
|
|
|
39
|
-
class PythonExportAttributes(_message.Message):
|
|
40
|
-
__slots__ = ()
|
|
41
|
-
def __init__(self) -> None: ...
|
|
42
|
-
|
|
43
39
|
class PythonGrpcExportAttributes(_message.Message):
|
|
44
40
|
__slots__ = ()
|
|
45
41
|
def __init__(self) -> None: ...
|
|
@@ -41,7 +41,6 @@ from . import imperfections
|
|
|
41
41
|
from . import aluminum_design_objects
|
|
42
42
|
from . import types_for_aluminum_design
|
|
43
43
|
from . import types_for_nodes
|
|
44
|
-
from . import base_data_objects
|
|
45
44
|
from . import timber_design_objects
|
|
46
45
|
from . import types_for_steel_design
|
|
47
46
|
from . import beam_panels
|
|
@@ -11,6 +11,7 @@ import grpc
|
|
|
11
11
|
from collections.abc import Iterable
|
|
12
12
|
import sys
|
|
13
13
|
from pkg_resources import get_distribution, DistributionNotFound
|
|
14
|
+
import collections.abc
|
|
14
15
|
import dlubal.api.common.common_messages_pb2
|
|
15
16
|
import dlubal.api.common.model_id_pb2
|
|
16
17
|
import dlubal.api.rfem.application_pb2
|
|
@@ -19,6 +20,7 @@ import dlubal.api.rfem.base_data_pb2
|
|
|
19
20
|
import dlubal.api.rfem.object_id_pb2
|
|
20
21
|
import dlubal.api.rfem.object_type_pb2
|
|
21
22
|
import google.protobuf.empty_pb2
|
|
23
|
+
import google.protobuf.wrappers_pb2
|
|
22
24
|
|
|
23
25
|
|
|
24
26
|
class Application:
|
|
@@ -124,7 +126,7 @@ class Application:
|
|
|
124
126
|
obj (obj):
|
|
125
127
|
An object to be retrieved defined by its number.
|
|
126
128
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
127
|
-
model_id (:ref:`
|
|
129
|
+
model_id (:ref:`ModelId` | None):
|
|
128
130
|
Unique identifier of the model.
|
|
129
131
|
|
|
130
132
|
Returns:
|
|
@@ -141,7 +143,7 @@ class Application:
|
|
|
141
143
|
objs (list[obj]):
|
|
142
144
|
An object list to be retrieved.
|
|
143
145
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
144
|
-
model_id (:ref:`
|
|
146
|
+
model_id (:ref:`ModelId` | None):
|
|
145
147
|
Unique identifier of the model.
|
|
146
148
|
|
|
147
149
|
Returns:
|
|
@@ -161,7 +163,7 @@ class Application:
|
|
|
161
163
|
obj (obj):
|
|
162
164
|
An object to be created.
|
|
163
165
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
164
|
-
model_id (:ref:`
|
|
166
|
+
model_id (:ref:`ModelId` | None):
|
|
165
167
|
Unique identifier of the model.
|
|
166
168
|
|
|
167
169
|
Returns:
|
|
@@ -177,7 +179,7 @@ class Application:
|
|
|
177
179
|
objs (list[obj]):
|
|
178
180
|
A list of objects to be created.
|
|
179
181
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
180
|
-
model_id (:ref:`
|
|
182
|
+
model_id (:ref:`ModelId` | None):
|
|
181
183
|
Unique identifier of the model.
|
|
182
184
|
Returns:
|
|
183
185
|
None
|
|
@@ -192,7 +194,7 @@ class Application:
|
|
|
192
194
|
obj (obj):
|
|
193
195
|
An object to be updated.
|
|
194
196
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
195
|
-
model_id (:ref:`
|
|
197
|
+
model_id (:ref:`ModelId` | None):
|
|
196
198
|
Unique identifier of the model.
|
|
197
199
|
|
|
198
200
|
Returns:
|
|
@@ -208,7 +210,7 @@ class Application:
|
|
|
208
210
|
objs (list[obj]):
|
|
209
211
|
A list of objects to be updated.
|
|
210
212
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
211
|
-
model_id (:ref:`
|
|
213
|
+
model_id (:ref:`ModelId` | None):
|
|
212
214
|
Unique identifier of the model.
|
|
213
215
|
|
|
214
216
|
Returns:
|
|
@@ -224,7 +226,7 @@ class Application:
|
|
|
224
226
|
obj (obj):
|
|
225
227
|
An object to be deleted defined by its number.
|
|
226
228
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
227
|
-
model_id (:ref:`
|
|
229
|
+
model_id (:ref:`ModelId` | None):
|
|
228
230
|
Unique identifier of the model.
|
|
229
231
|
|
|
230
232
|
Returns:
|
|
@@ -240,7 +242,7 @@ class Application:
|
|
|
240
242
|
objs (list[obj]):
|
|
241
243
|
A list of objects to be deleted.
|
|
242
244
|
Refer to the :ref:`rfem_objects` for available objects.
|
|
243
|
-
model_id (:ref:`
|
|
245
|
+
model_id (:ref:`ModelId` | None):
|
|
244
246
|
Unique identifier of the model.
|
|
245
247
|
|
|
246
248
|
Returns:
|
|
@@ -248,6 +250,7 @@ class Application:
|
|
|
248
250
|
'''
|
|
249
251
|
self.stub.delete_object_list_impl(pack_object_list(objs, model_id))
|
|
250
252
|
|
|
253
|
+
|
|
251
254
|
def get_results(self, results_type: ResultsType, filters: Iterable[ResultsFilter] | None = None, **keyword_filters):
|
|
252
255
|
'''
|
|
253
256
|
Returns Table, which is just a convenience wrapper around a Pandas Dataframe.
|
|
@@ -284,7 +287,7 @@ class Application:
|
|
|
284
287
|
Unique identifier of the result category type.
|
|
285
288
|
loading (:ref:`rfem_object_id_ObjectId`):
|
|
286
289
|
Filter to get only relevant results
|
|
287
|
-
model_id (:ref:`
|
|
290
|
+
model_id (:ref:`ModelId` | None):
|
|
288
291
|
Unique identifier of the model.
|
|
289
292
|
|
|
290
293
|
Returns:
|
|
@@ -309,7 +312,7 @@ class Application:
|
|
|
309
312
|
Specifies conversion type
|
|
310
313
|
objects (:ref:`rfem_application_ObjectList`):
|
|
311
314
|
Objects to be converted
|
|
312
|
-
model_id (:ref:`
|
|
315
|
+
model_id (:ref:`ModelId` | None):
|
|
313
316
|
Unique identifier of the model.
|
|
314
317
|
"""
|
|
315
318
|
request = ConvertObjectsRequest(convert_into=convert_into, objects=pack_object_list(objects, model_id))
|
|
@@ -326,7 +329,7 @@ class Application:
|
|
|
326
329
|
Supported message types:
|
|
327
330
|
:ref:`rfem_import_attributes_IfcImportAttributes`
|
|
328
331
|
|
|
329
|
-
model_id (:ref:`
|
|
332
|
+
model_id (:ref:`ModelId` | None): Unique identifier of the model.
|
|
330
333
|
If not specified, the active model is used.
|
|
331
334
|
"""
|
|
332
335
|
request = ImportModelRequest(filepath=filepath, import_attributes=pack_message_to_any(import_attributes), model_id=model_id)
|
|
@@ -345,7 +348,7 @@ class Application:
|
|
|
345
348
|
:ref:`common_export_attributes_PythonGrpcExportAttributes`
|
|
346
349
|
:ref:`common_export_attributes_IfcExportAttributes`
|
|
347
350
|
|
|
348
|
-
model_id (:ref:`
|
|
351
|
+
model_id (:ref:`ModelId` | None): Unique identifier of the model.
|
|
349
352
|
If not specified, the active model is used.
|
|
350
353
|
"""
|
|
351
354
|
request = ExportModelRequest(filepath=filepath, export_attributes=pack_message_to_any(export_attributes), model_id=model_id)
|
|
@@ -487,6 +490,39 @@ class Application:
|
|
|
487
490
|
request = dlubal.api.common.common_messages_pb2.CalculateAllRequest(skip_warnings=skip_warnings, model_id=model_id)
|
|
488
491
|
return self.stub.calculate_all(request)
|
|
489
492
|
|
|
493
|
+
def calculate_specific(self, *, loadings: collections.abc.Iterable[dlubal.api.rfem.object_id_pb2.ObjectId] | None = None, skip_warnings: bool, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.common.common_messages_pb2.OperationResult:
|
|
494
|
+
"""
|
|
495
|
+
Performs a calculation for the specific objects.
|
|
496
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
497
|
+
|
|
498
|
+
Args:
|
|
499
|
+
loadings (collections.abc.Iterable[dlubal.api.rfem.object_id_pb2.ObjectId] | None): Unique identifier of the loading.
|
|
500
|
+
skip_warnings (bool): Specifies whether to skip warnings during the calculation.
|
|
501
|
+
model_id (dlubal.api.common.model_id_pb2.ModelId | None): Unique identifier of the model.
|
|
502
|
+
Active model is used if this field is not set.
|
|
503
|
+
|
|
504
|
+
Returns:
|
|
505
|
+
dlubal.api.common.common_messages_pb2.OperationResult
|
|
506
|
+
"""
|
|
507
|
+
request = dlubal.api.rfem.application_pb2.CalculateSpecificRequest(loadings=loadings, skip_warnings=skip_warnings, model_id=model_id)
|
|
508
|
+
return self.stub.calculate_specific(request)
|
|
509
|
+
|
|
510
|
+
def has_results(self, *, loading: dlubal.api.rfem.object_id_pb2.ObjectId | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> google.protobuf.wrappers_pb2.BoolValue:
|
|
511
|
+
"""
|
|
512
|
+
Checks whether the model has calculation results.
|
|
513
|
+
Returns true if results are available.
|
|
514
|
+
|
|
515
|
+
Args:
|
|
516
|
+
loading (dlubal.api.rfem.object_id_pb2.ObjectId | None): Allowed types: OBJECT_TYPE_CONSTRUCTION_STAGE, OBJECT_TYPE_DESIGN_SITUATION, OBJECT_TYPE_LOAD_CASE, OBJECT_TYPE_LOAD_COMBINATION, OBJECT_TYPE_RESULT_COMBINATION
|
|
517
|
+
model_id (dlubal.api.common.model_id_pb2.ModelId | None): Unique identifier of the model.
|
|
518
|
+
Active model is used if this field is not set.
|
|
519
|
+
|
|
520
|
+
Returns:
|
|
521
|
+
google.protobuf.wrappers_pb2.BoolValue
|
|
522
|
+
"""
|
|
523
|
+
request = dlubal.api.rfem.application_pb2.HasResultsRequest(loading=loading, model_id=model_id)
|
|
524
|
+
return self.stub.has_results(request)
|
|
525
|
+
|
|
490
526
|
def plausibility_check(self, *, type: dlubal.api.common.common_messages_pb2.PlausibilityCheckType, skip_warnings: bool, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.common.common_messages_pb2.OperationResult:
|
|
491
527
|
"""
|
|
492
528
|
Performs validation based on the specified validation type.
|
|
@@ -0,0 +1,56 @@
|
|
|
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/application.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/application.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
26
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
27
|
+
from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
|
|
28
|
+
from dlubal.api.common import table_data_pb2 as dlubal_dot_api_dot_common_dot_table__data__pb2
|
|
29
|
+
from dlubal.api.common import common_messages_pb2 as dlubal_dot_api_dot_common_dot_common__messages__pb2
|
|
30
|
+
from dlubal.api.rfem import base_data_pb2 as dlubal_dot_api_dot_rfem_dot_base__data__pb2
|
|
31
|
+
from dlubal.api.rfem import object_type_pb2 as dlubal_dot_api_dot_rfem_dot_object__type__pb2
|
|
32
|
+
from dlubal.api.rfem import object_id_pb2 as dlubal_dot_api_dot_rfem_dot_object__id__pb2
|
|
33
|
+
from dlubal.api.rfem.results import result_table_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_result__table__pb2
|
|
34
|
+
from dlubal.api.rfem.results import results_query_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!dlubal/api/rfem/application.proto\x12\x0f\x64lubal.api.rfem\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a dlubal/api/common/model_id.proto\x1a\"dlubal/api/common/table_data.proto\x1a\'dlubal/api/common/common_messages.proto\x1a\x1f\x64lubal/api/rfem/base_data.proto\x1a!dlubal/api/rfem/object_type.proto\x1a\x1f\x64lubal/api/rfem/object_id.proto\x1a*dlubal/api/rfem/results/result_table.proto\x1a+dlubal/api/rfem/results/results_query.proto\"\xc5\x01\n\x16GetObjectIdListRequest\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x1b.dlubal.api.rfem.ObjectTypeH\x00\x88\x01\x01\x12\x16\n\tparent_no\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x02\x88\x01\x01\x42\x0e\n\x0c_object_typeB\x0c\n\n_parent_noB\x0b\n\t_model_id\"\x7f\n\x0f\x42\x61seDataRequest\x12,\n\tbase_data\x18\x01 \x01(\x0b\x32\x19.dlubal.api.rfem.BaseData\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"\x90\x01\n\x11HasResultsRequest\x12/\n\x07loading\x18\x01 \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x00\x88\x01\x01\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x01\x88\x01\x01\x42\n\n\x08_loadingB\x0b\n\t_model_id\"\xc9\x01\n\x15GetResultTableRequest\x12\x33\n\x05table\x18\x01 \x01(\x0e\x32$.dlubal.api.rfem.results.ResultTable\x12/\n\x07loading\x18\x02 \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x00\x88\x01\x01\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x01\x88\x01\x01\x42\n\n\x08_loadingB\x0b\n\t_model_id\"\x9e\x01\n\x18\x43\x61lculateSpecificRequest\x12+\n\x08loadings\x18\x01 \x03(\x0b\x32\x19.dlubal.api.rfem.ObjectId\x12\x15\n\rskip_warnings\x18\x02 \x01(\x08\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id2\xcb\x16\n\x0b\x41pplication\x12S\n\x0c\x63reate_model\x12%.dlubal.api.common.CreateModelRequest\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12O\n\nopen_model\x12#.dlubal.api.common.OpenModelRequest\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12M\n\nsave_model\x12%.dlubal.api.common.SaveModelAsRequest\x1a\x16.google.protobuf.Empty\"\x00\x12M\n\x0b\x63lose_model\x12$.dlubal.api.common.CloseModelRequest\x1a\x16.google.protobuf.Empty\"\x00\x12V\n\x10\x63lose_all_models\x12(.dlubal.api.common.CloseAllModelsRequest\x1a\x16.google.protobuf.Empty\"\x00\x12H\n\x10get_active_model\x12\x16.google.protobuf.Empty\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12H\n\x10set_active_model\x12\x1a.dlubal.api.common.ModelId\x1a\x16.google.protobuf.Empty\"\x00\x12\x45\n\x11\x63lose_application\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12H\n\x0eget_model_list\x12\x16.google.protobuf.Empty\x1a\x1c.dlubal.api.common.ModelList\"\x00\x12T\n\x14get_application_info\x12\x16.google.protobuf.Empty\x1a\".dlubal.api.common.ApplicationInfo\"\x00\x12\x44\n\x10\x63lose_connection\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12I\n\x0fget_object_impl\x12\x19.dlubal.api.common.Object\x1a\x19.dlubal.api.common.Object\"\x00\x12V\n\x14get_object_list_impl\x12\x1d.dlubal.api.common.ObjectList\x1a\x1d.dlubal.api.common.ObjectList\"\x00\x12I\n\x12\x63reate_object_impl\x12\x19.dlubal.api.common.Object\x1a\x16.google.protobuf.Empty\"\x00\x12R\n\x17\x63reate_object_list_impl\x12\x1d.dlubal.api.common.ObjectList\x1a\x16.google.protobuf.Empty\"\x00\x12I\n\x12update_object_impl\x12\x19.dlubal.api.common.Object\x1a\x16.google.protobuf.Empty\"\x00\x12R\n\x17update_object_list_impl\x12\x1d.dlubal.api.common.ObjectList\x1a\x16.google.protobuf.Empty\"\x00\x12I\n\x12\x64\x65lete_object_impl\x12\x19.dlubal.api.common.Object\x1a\x16.google.protobuf.Empty\"\x00\x12R\n\x17\x64\x65lete_object_list_impl\x12\x1d.dlubal.api.common.ObjectList\x1a\x16.google.protobuf.Empty\"\x00\x12R\n\x12\x64\x65lete_all_objects\x12\".dlubal.api.common.OptionalModelId\x1a\x16.google.protobuf.Empty\"\x00\x12]\n\rcalculate_all\x12&.dlubal.api.common.CalculateAllRequest\x1a\".dlubal.api.common.OperationResult\"\x00\x12\x65\n\x12\x63\x61lculate_specific\x12).dlubal.api.rfem.CalculateSpecificRequest\x1a\".dlubal.api.common.OperationResult\"\x00\x12O\n\x0bhas_results\x12\".dlubal.api.rfem.HasResultsRequest\x1a\x1a.google.protobuf.BoolValue\"\x00\x12Y\n\x10get_results_impl\x12%.dlubal.api.rfem.results.ResultsQuery\x1a\x1c.dlubal.api.common.TableData\"\x00\x12_\n\x15get_result_table_impl\x12&.dlubal.api.rfem.GetResultTableRequest\x1a\x1c.dlubal.api.common.TableData\"\x00\x12g\n\x12plausibility_check\x12+.dlubal.api.common.PlausibilityCheckRequest\x1a\".dlubal.api.common.OperationResult\"\x00\x12^\n\x12get_object_id_list\x12\'.dlubal.api.rfem.GetObjectIdListRequest\x1a\x1d.dlubal.api.rfem.ObjectIdList\"\x00\x12i\n\x19get_model_main_parameters\x12\".dlubal.api.common.OptionalModelId\x1a&.dlubal.api.common.ModelMainParameters\"\x00\x12U\n\x15generate_combinations\x12\".dlubal.api.common.OptionalModelId\x1a\x16.google.protobuf.Empty\"\x00\x12Z\n\x14\x63onvert_objects_impl\x12(.dlubal.api.common.ConvertObjectsRequest\x1a\x16.google.protobuf.Empty\"\x00\x12P\n\rget_base_data\x12\".dlubal.api.common.OptionalModelId\x1a\x19.dlubal.api.rfem.BaseData\"\x00\x12K\n\rset_base_data\x12 .dlubal.api.rfem.BaseDataRequest\x1a\x16.google.protobuf.Empty\"\x00\x12Y\n\x16import_model_from_impl\x12%.dlubal.api.common.ImportModelRequest\x1a\x16.google.protobuf.Empty\"\x00\x12W\n\x14\x65xport_model_to_impl\x12%.dlubal.api.common.ExportModelRequest\x1a\x16.google.protobuf.Empty\"\x00\x62\x06proto3')
|
|
38
|
+
|
|
39
|
+
_globals = globals()
|
|
40
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
41
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.application_pb2', _globals)
|
|
42
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
43
|
+
DESCRIPTOR._loaded_options = None
|
|
44
|
+
_globals['_GETOBJECTIDLISTREQUEST']._serialized_start=417
|
|
45
|
+
_globals['_GETOBJECTIDLISTREQUEST']._serialized_end=614
|
|
46
|
+
_globals['_BASEDATAREQUEST']._serialized_start=616
|
|
47
|
+
_globals['_BASEDATAREQUEST']._serialized_end=743
|
|
48
|
+
_globals['_HASRESULTSREQUEST']._serialized_start=746
|
|
49
|
+
_globals['_HASRESULTSREQUEST']._serialized_end=890
|
|
50
|
+
_globals['_GETRESULTTABLEREQUEST']._serialized_start=893
|
|
51
|
+
_globals['_GETRESULTTABLEREQUEST']._serialized_end=1094
|
|
52
|
+
_globals['_CALCULATESPECIFICREQUEST']._serialized_start=1097
|
|
53
|
+
_globals['_CALCULATESPECIFICREQUEST']._serialized_end=1255
|
|
54
|
+
_globals['_APPLICATION']._serialized_start=1258
|
|
55
|
+
_globals['_APPLICATION']._serialized_end=4149
|
|
56
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
from google.protobuf import empty_pb2 as _empty_pb2
|
|
2
|
+
from google.protobuf import wrappers_pb2 as _wrappers_pb2
|
|
2
3
|
from dlubal.api.common import model_id_pb2 as _model_id_pb2
|
|
3
4
|
from dlubal.api.common import table_data_pb2 as _table_data_pb2
|
|
4
5
|
from dlubal.api.common import common_messages_pb2 as _common_messages_pb2
|
|
@@ -7,9 +8,10 @@ from dlubal.api.rfem import object_type_pb2 as _object_type_pb2
|
|
|
7
8
|
from dlubal.api.rfem import object_id_pb2 as _object_id_pb2
|
|
8
9
|
from dlubal.api.rfem.results import result_table_pb2 as _result_table_pb2
|
|
9
10
|
from dlubal.api.rfem.results import results_query_pb2 as _results_query_pb2
|
|
11
|
+
from google.protobuf.internal import containers as _containers
|
|
10
12
|
from google.protobuf import descriptor as _descriptor
|
|
11
13
|
from google.protobuf import message as _message
|
|
12
|
-
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
14
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
13
15
|
|
|
14
16
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
15
17
|
|
|
@@ -31,6 +33,14 @@ class BaseDataRequest(_message.Message):
|
|
|
31
33
|
model_id: _model_id_pb2.ModelId
|
|
32
34
|
def __init__(self, base_data: _Optional[_Union[_base_data_pb2.BaseData, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
|
|
33
35
|
|
|
36
|
+
class HasResultsRequest(_message.Message):
|
|
37
|
+
__slots__ = ("loading", "model_id")
|
|
38
|
+
LOADING_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
MODEL_ID_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
loading: _object_id_pb2.ObjectId
|
|
41
|
+
model_id: _model_id_pb2.ModelId
|
|
42
|
+
def __init__(self, loading: _Optional[_Union[_object_id_pb2.ObjectId, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
|
|
43
|
+
|
|
34
44
|
class GetResultTableRequest(_message.Message):
|
|
35
45
|
__slots__ = ("table", "loading", "model_id")
|
|
36
46
|
TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -40,3 +50,13 @@ class GetResultTableRequest(_message.Message):
|
|
|
40
50
|
loading: _object_id_pb2.ObjectId
|
|
41
51
|
model_id: _model_id_pb2.ModelId
|
|
42
52
|
def __init__(self, table: _Optional[_Union[_result_table_pb2.ResultTable, str]] = ..., loading: _Optional[_Union[_object_id_pb2.ObjectId, _Mapping]] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
|
|
53
|
+
|
|
54
|
+
class CalculateSpecificRequest(_message.Message):
|
|
55
|
+
__slots__ = ("loadings", "skip_warnings", "model_id")
|
|
56
|
+
LOADINGS_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
SKIP_WARNINGS_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
MODEL_ID_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
loadings: _containers.RepeatedCompositeFieldContainer[_object_id_pb2.ObjectId]
|
|
60
|
+
skip_warnings: bool
|
|
61
|
+
model_id: _model_id_pb2.ModelId
|
|
62
|
+
def __init__(self, loadings: _Optional[_Iterable[_Union[_object_id_pb2.ObjectId, _Mapping]]] = ..., skip_warnings: bool = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
|
|
@@ -11,6 +11,7 @@ from dlubal.api.rfem import base_data_pb2 as dlubal_dot_api_dot_rfem_dot_base__d
|
|
|
11
11
|
from dlubal.api.rfem import object_id_pb2 as dlubal_dot_api_dot_rfem_dot_object__id__pb2
|
|
12
12
|
from dlubal.api.rfem.results import results_query_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2
|
|
13
13
|
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
14
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
14
15
|
|
|
15
16
|
GRPC_GENERATED_VERSION = '1.68.0'
|
|
16
17
|
GRPC_VERSION = grpc.__version__
|
|
@@ -146,6 +147,16 @@ class ApplicationStub(object):
|
|
|
146
147
|
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CalculateAllRequest.SerializeToString,
|
|
147
148
|
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
148
149
|
_registered_method=True)
|
|
150
|
+
self.calculate_specific = channel.unary_unary(
|
|
151
|
+
'/dlubal.api.rfem.Application/calculate_specific',
|
|
152
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.SerializeToString,
|
|
153
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
154
|
+
_registered_method=True)
|
|
155
|
+
self.has_results = channel.unary_unary(
|
|
156
|
+
'/dlubal.api.rfem.Application/has_results',
|
|
157
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.SerializeToString,
|
|
158
|
+
response_deserializer=google_dot_protobuf_dot_wrappers__pb2.BoolValue.FromString,
|
|
159
|
+
_registered_method=True)
|
|
149
160
|
self.get_results_impl = channel.unary_unary(
|
|
150
161
|
'/dlubal.api.rfem.Application/get_results_impl',
|
|
151
162
|
request_serializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.SerializeToString,
|
|
@@ -348,6 +359,22 @@ class ApplicationServicer(object):
|
|
|
348
359
|
context.set_details('Method not implemented!')
|
|
349
360
|
raise NotImplementedError('Method not implemented!')
|
|
350
361
|
|
|
362
|
+
def calculate_specific(self, request, context):
|
|
363
|
+
"""Performs a calculation for the specific objects.
|
|
364
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
365
|
+
"""
|
|
366
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
367
|
+
context.set_details('Method not implemented!')
|
|
368
|
+
raise NotImplementedError('Method not implemented!')
|
|
369
|
+
|
|
370
|
+
def has_results(self, request, context):
|
|
371
|
+
"""Checks whether the model has calculation results.
|
|
372
|
+
Returns true if results are available.
|
|
373
|
+
"""
|
|
374
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
375
|
+
context.set_details('Method not implemented!')
|
|
376
|
+
raise NotImplementedError('Method not implemented!')
|
|
377
|
+
|
|
351
378
|
def get_results_impl(self, request, context):
|
|
352
379
|
"""Missing associated documentation comment in .proto file."""
|
|
353
380
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
@@ -538,6 +565,16 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
538
565
|
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CalculateAllRequest.FromString,
|
|
539
566
|
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
540
567
|
),
|
|
568
|
+
'calculate_specific': grpc.unary_unary_rpc_method_handler(
|
|
569
|
+
servicer.calculate_specific,
|
|
570
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.FromString,
|
|
571
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
572
|
+
),
|
|
573
|
+
'has_results': grpc.unary_unary_rpc_method_handler(
|
|
574
|
+
servicer.has_results,
|
|
575
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.FromString,
|
|
576
|
+
response_serializer=google_dot_protobuf_dot_wrappers__pb2.BoolValue.SerializeToString,
|
|
577
|
+
),
|
|
541
578
|
'get_results_impl': grpc.unary_unary_rpc_method_handler(
|
|
542
579
|
servicer.get_results_impl,
|
|
543
580
|
request_deserializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.FromString,
|
|
@@ -1171,6 +1208,60 @@ class Application(object):
|
|
|
1171
1208
|
metadata,
|
|
1172
1209
|
_registered_method=True)
|
|
1173
1210
|
|
|
1211
|
+
@staticmethod
|
|
1212
|
+
def calculate_specific(request,
|
|
1213
|
+
target,
|
|
1214
|
+
options=(),
|
|
1215
|
+
channel_credentials=None,
|
|
1216
|
+
call_credentials=None,
|
|
1217
|
+
insecure=False,
|
|
1218
|
+
compression=None,
|
|
1219
|
+
wait_for_ready=None,
|
|
1220
|
+
timeout=None,
|
|
1221
|
+
metadata=None):
|
|
1222
|
+
return grpc.experimental.unary_unary(
|
|
1223
|
+
request,
|
|
1224
|
+
target,
|
|
1225
|
+
'/dlubal.api.rfem.Application/calculate_specific',
|
|
1226
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.SerializeToString,
|
|
1227
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
1228
|
+
options,
|
|
1229
|
+
channel_credentials,
|
|
1230
|
+
insecure,
|
|
1231
|
+
call_credentials,
|
|
1232
|
+
compression,
|
|
1233
|
+
wait_for_ready,
|
|
1234
|
+
timeout,
|
|
1235
|
+
metadata,
|
|
1236
|
+
_registered_method=True)
|
|
1237
|
+
|
|
1238
|
+
@staticmethod
|
|
1239
|
+
def has_results(request,
|
|
1240
|
+
target,
|
|
1241
|
+
options=(),
|
|
1242
|
+
channel_credentials=None,
|
|
1243
|
+
call_credentials=None,
|
|
1244
|
+
insecure=False,
|
|
1245
|
+
compression=None,
|
|
1246
|
+
wait_for_ready=None,
|
|
1247
|
+
timeout=None,
|
|
1248
|
+
metadata=None):
|
|
1249
|
+
return grpc.experimental.unary_unary(
|
|
1250
|
+
request,
|
|
1251
|
+
target,
|
|
1252
|
+
'/dlubal.api.rfem.Application/has_results',
|
|
1253
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.SerializeToString,
|
|
1254
|
+
google_dot_protobuf_dot_wrappers__pb2.BoolValue.FromString,
|
|
1255
|
+
options,
|
|
1256
|
+
channel_credentials,
|
|
1257
|
+
insecure,
|
|
1258
|
+
call_credentials,
|
|
1259
|
+
compression,
|
|
1260
|
+
wait_for_ready,
|
|
1261
|
+
timeout,
|
|
1262
|
+
metadata,
|
|
1263
|
+
_registered_method=True)
|
|
1264
|
+
|
|
1174
1265
|
@staticmethod
|
|
1175
1266
|
def get_results_impl(request,
|
|
1176
1267
|
target,
|