dlubal.api 0.1.293714a1__py3-none-any.whl → 2.12.2__py3-none-any.whl
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/common/__init__.py +8 -3
- dlubal/api/common/common_messages_pb2.py +78 -0
- dlubal/api/common/common_messages_pb2.pyi +230 -0
- dlubal/api/common/common_pb2.py +7 -3
- dlubal/api/common/common_pb2.pyi +16 -0
- dlubal/api/common/connection.py +243 -251
- dlubal/api/common/exceptions.py +11 -11
- dlubal/api/common/import_export/__init__.py +2 -0
- dlubal/api/common/import_export/export_attributes_pb2.py +46 -0
- dlubal/api/common/import_export/export_attributes_pb2.pyi +77 -0
- dlubal/api/common/import_export/import_attributes_pb2.py +40 -0
- dlubal/api/common/import_export/import_attributes_pb2.pyi +17 -0
- dlubal/api/common/model_id_pb2.py +4 -4
- dlubal/api/common/model_id_pb2.pyi +8 -8
- dlubal/api/{rfem/results/results_id_pb2.py → common/options_pb2.py} +5 -6
- dlubal/api/common/options_pb2.pyi +7 -0
- dlubal/api/common/packing.py +144 -0
- dlubal/api/common/table.py +36 -34
- dlubal/api/common/utility.py +131 -0
- dlubal/api/rfem/__init__.py +53 -32
- dlubal/api/rfem/all_pb2.py +36 -0
- dlubal/api/rfem/all_pb2.pyi +9 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -2
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/application.py +807 -290
- dlubal/api/rfem/application_pb2.py +37 -30
- dlubal/api/rfem/application_pb2.pyi +107 -102
- dlubal/api/rfem/application_pb2_grpc.py +1046 -61
- dlubal/api/rfem/{base_data → base_data_objects}/__init__.py +1 -1
- dlubal/api/rfem/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rfem/base_data_pb2.py +108 -0
- dlubal/api/rfem/base_data_pb2.pyi +2627 -0
- dlubal/api/rfem/beam_panels/__init__.py +4 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +39 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +53 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.pyi +59 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +44 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +93 -0
- dlubal/api/rfem/building_model/__init__.py +4 -4
- dlubal/api/rfem/building_model/building_story_pb2.py +24 -20
- dlubal/api/rfem/building_model/building_story_pb2.pyi +133 -95
- dlubal/api/rfem/building_model/deep_beam_pb2.py +225 -7
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +3505 -42
- dlubal/api/rfem/building_model/floor_set_pb2.py +4 -4
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +8 -9
- dlubal/api/rfem/building_model/shear_wall_pb2.py +123 -7
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +1843 -20
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -1
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +28 -17
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1729 -1661
- dlubal/api/rfem/component_design_objects/__init__.py +2 -0
- dlubal/api/rfem/component_design_objects/component_pb2.py +55 -0
- dlubal/api/rfem/component_design_objects/component_pb2.pyi +164 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.py +38 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.pyi +54 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +4 -2
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +28 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +150 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +76 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +414 -3
- dlubal/api/rfem/construction_stages/__init__.py +1 -1
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +52 -12
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +390 -31
- dlubal/api/rfem/design_addons_pb2.py +36 -0
- dlubal/api/rfem/design_addons_pb2.pyi +28 -0
- dlubal/api/rfem/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rfem/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +3 -2
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +8 -6
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +33 -17
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +10 -8
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +49 -30
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rfem/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +3 -2
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +8 -6
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +31 -15
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.py +42 -0
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.pyi +71 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +20 -12
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +107 -50
- dlubal/api/rfem/glass_design_objects/__init__.py +2 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -1
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +6 -6
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +254 -244
- dlubal/api/rfem/guide_objects/__init__.py +15 -10
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +18 -18
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +120 -128
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +10 -10
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +57 -52
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +31 -33
- dlubal/api/rfem/guide_objects/dimension_pb2.py +40 -26
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +266 -129
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +54 -52
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rfem/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +12 -10
- dlubal/api/rfem/guide_objects/note_pb2.pyi +90 -60
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +4 -4
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +27 -26
- dlubal/api/rfem/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +8 -8
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +68 -62
- dlubal/api/rfem/ifc_objects/__init__.py +2 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rfem/imperfections/__init__.py +3 -5
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +26 -16
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +155 -98
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +128 -128
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +130 -130
- dlubal/api/rfem/layout_and_drawing/__init__.py +2 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +69 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +410 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.py +39 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.pyi +37 -0
- dlubal/api/rfem/load_wizards/__init__.py +7 -2
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +91 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +14 -10
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +748 -698
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +22 -13
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +107 -43
- dlubal/api/rfem/loading/__init__.py +16 -15
- dlubal/api/rfem/loading/action_combination_pb2.py +14 -6
- dlubal/api/rfem/loading/action_combination_pb2.pyi +118 -21
- dlubal/api/rfem/loading/action_pb2.py +21 -9
- dlubal/api/rfem/loading/action_pb2.pyi +676 -37
- dlubal/api/rfem/loading/combination_wizard_pb2.py +14 -7
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +61 -20
- dlubal/api/rfem/loading/design_situation_pb2.py +14 -5
- dlubal/api/rfem/loading/design_situation_pb2.pyi +1164 -9
- dlubal/api/rfem/loading/load_case_pb2.py +70 -43
- dlubal/api/rfem/loading/load_case_pb2.pyi +1151 -255
- dlubal/api/rfem/loading/load_combination_pb2.py +32 -15
- dlubal/api/rfem/loading/load_combination_pb2.pyi +312 -72
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +133 -93
- dlubal/api/rfem/loading/optimization_settings_pb2.py +12 -8
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +81 -42
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +4 -4
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +8 -9
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +10 -6
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +44 -14
- dlubal/api/rfem/loading/result_combination_pb2.py +26 -9
- dlubal/api/rfem/loading/result_combination_pb2.pyi +266 -36
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +12 -12
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +45 -56
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +10 -10
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +53 -57
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +14 -12
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +65 -52
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +167 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +116 -90
- dlubal/api/rfem/loads/__init__.py +19 -17
- dlubal/api/rfem/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.py +40 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.pyi +49 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +8 -8
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +57 -60
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +10 -8
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +70 -51
- dlubal/api/rfem/loads/free_line_load_pb2.py +14 -8
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +108 -63
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +12 -10
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +80 -69
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +18 -14
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +114 -86
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/line_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_load_pb2.pyi +189 -78
- dlubal/api/rfem/loads/line_set_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +196 -85
- dlubal/api/rfem/loads/member_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_load_pb2.pyi +334 -232
- dlubal/api/rfem/loads/member_set_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +336 -234
- dlubal/api/rfem/loads/nodal_load_pb2.py +14 -12
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +101 -80
- dlubal/api/rfem/loads/opening_load_pb2.py +10 -9
- dlubal/api/rfem/loads/opening_load_pb2.pyi +39 -41
- dlubal/api/rfem/loads/solid_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_load_pb2.pyi +81 -89
- dlubal/api/rfem/loads/solid_set_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +84 -92
- dlubal/api/rfem/loads/surface_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_load_pb2.pyi +203 -148
- dlubal/api/rfem/loads/surface_set_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +210 -155
- dlubal/api/rfem/mesh/__init__.py +1 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.py +51 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +218 -0
- dlubal/api/rfem/object_id_pb2.py +39 -0
- dlubal/api/rfem/object_id_pb2.pyi +25 -0
- dlubal/api/rfem/object_type_pb2.py +36 -0
- dlubal/api/rfem/object_type_pb2.pyi +406 -0
- dlubal/api/rfem/result_objects/__init__.py +2 -1
- dlubal/api/rfem/result_objects/result_point_pb2.py +41 -0
- dlubal/api/rfem/result_objects/result_point_pb2.pyi +75 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +8 -8
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +48 -51
- dlubal/api/rfem/results/__init__.py +4 -2
- dlubal/api/rfem/results/result_table_pb2.py +36 -0
- dlubal/api/rfem/results/result_table_pb2.pyi +1176 -0
- dlubal/api/rfem/results/results_query_pb2.py +7 -6
- dlubal/api/rfem/results/results_query_pb2.pyi +10 -5
- dlubal/api/rfem/results/results_type_pb2.py +36 -0
- dlubal/api/rfem/results/results_type_pb2.pyi +678 -0
- dlubal/api/rfem/results/settings/__init__.py +1 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rfem/rsection_stresses/__init__.py +1 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -4
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +24 -3
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +124 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +20 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +102 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +2 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/stress_analysis_objects/__init__.py +3 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +41 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/__init__.py +13 -9
- dlubal/api/rfem/structure_advanced/block_pb2.py +20 -16
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +99 -83
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.py +61 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +460 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +53 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +158 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +2 -2
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +8 -8
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +8 -6
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +25 -14
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +6 -6
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +24 -24
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +60 -22
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +345 -53
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +74 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +26 -20
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +113 -88
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +4 -2
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +20 -5
- dlubal/api/rfem/structure_core/__init__.py +15 -15
- dlubal/api/rfem/structure_core/line_pb2.py +53 -19
- dlubal/api/rfem/structure_core/line_pb2.pyi +401 -109
- dlubal/api/rfem/structure_core/line_set_pb2.py +4 -4
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +19 -10
- dlubal/api/rfem/structure_core/material_pb2.py +111 -67
- dlubal/api/rfem/structure_core/material_pb2.pyi +1235 -689
- dlubal/api/rfem/structure_core/member_pb2.py +192 -45
- dlubal/api/rfem/structure_core/member_pb2.pyi +2434 -317
- dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -49
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +4011 -302
- dlubal/api/rfem/structure_core/member_set_pb2.py +122 -19
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +1739 -79
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -65
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +5761 -393
- dlubal/api/rfem/structure_core/node_pb2.py +14 -8
- dlubal/api/rfem/structure_core/node_pb2.pyi +93 -53
- dlubal/api/rfem/structure_core/opening_pb2.py +2 -2
- dlubal/api/rfem/structure_core/opening_pb2.pyi +12 -8
- dlubal/api/rfem/structure_core/section_pb2.py +42 -32
- dlubal/api/rfem/structure_core/section_pb2.pyi +1582 -1386
- dlubal/api/rfem/structure_core/solid_pb2.py +28 -18
- dlubal/api/rfem/structure_core/solid_pb2.pyi +202 -128
- dlubal/api/rfem/structure_core/solid_set_pb2.py +10 -4
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +49 -12
- dlubal/api/rfem/structure_core/surface_pb2.py +63 -33
- dlubal/api/rfem/structure_core/surface_pb2.pyi +346 -168
- dlubal/api/rfem/structure_core/surface_set_pb2.py +14 -12
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +67 -49
- dlubal/api/rfem/structure_core/thickness_pb2.py +42 -30
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +356 -280
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +132 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +726 -3
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +192 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +58 -23
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +315 -83
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +14 -4
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +76 -7
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -5
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +34 -34
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +164 -176
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +74 -33
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +423 -113
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +24 -18
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +217 -128
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +4 -4
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +13 -14
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +47 -39
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +546 -381
- dlubal/api/rfem/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_foundations/__init__.py +1 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +336 -0
- dlubal/api/rfem/types_for_glass_design/__init__.py +1 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +91 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +456 -0
- dlubal/api/rfem/types_for_lines/__init__.py +6 -4
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +121 -69
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +826 -428
- dlubal/api/rfem/types_for_lines/line_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_lines/line_link_pb2.pyi +66 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +4 -4
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +25 -26
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +124 -92
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +884 -699
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +10 -8
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +63 -56
- dlubal/api/rfem/types_for_members/__init__.py +14 -13
- dlubal/api/rfem/types_for_members/design_support_pb2.py +28 -16
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +206 -119
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +103 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +2 -2
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +59 -63
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +214 -116
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1286 -742
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +4 -4
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +40 -41
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +12 -4
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +68 -7
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +6 -4
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +18 -6
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +16 -14
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +66 -50
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +6 -6
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +32 -34
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +18 -16
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +90 -80
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +14 -12
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +77 -68
- dlubal/api/rfem/types_for_members/member_support_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +90 -96
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +14 -4
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +120 -9
- dlubal/api/rfem/types_for_nodes/__init__.py +3 -2
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +6 -6
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +19 -21
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +176 -136
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1293 -1039
- dlubal/api/rfem/types_for_solids/__init__.py +3 -3
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +6 -6
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +27 -29
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +8 -8
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -4
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +122 -71
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +796 -442
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +165 -77
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +1215 -564
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +46 -34
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +277 -209
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +10 -10
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +42 -46
- dlubal/api/rfem/types_for_steel_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +18 -9
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +154 -22
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +84 -57
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +423 -236
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +105 -0
- dlubal/api/rfem/types_for_steel_joints/__init__.py +1 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +51 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +160 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +28 -31
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +6 -6
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +36 -30
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +37 -38
- dlubal/api/rfem/types_for_timber_design/__init__.py +6 -5
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +72 -23
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +404 -65
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +14 -4
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +96 -7
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +8 -8
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +61 -56
- dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
- dlubal/api/rsection/__init__.py +14 -0
- dlubal/api/rsection/all_pb2.py +36 -0
- dlubal/api/rsection/all_pb2.pyi +9 -0
- dlubal/api/rsection/application.py +508 -0
- dlubal/api/rsection/application_pb2.py +48 -0
- dlubal/api/rsection/application_pb2.pyi +39 -0
- dlubal/api/rsection/application_pb2_grpc.py +1293 -0
- dlubal/api/rsection/base_data_pb2.py +58 -0
- dlubal/api/rsection/base_data_pb2.pyi +158 -0
- dlubal/api/rsection/global_parameters/__init__.py +1 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.pyi +150 -0
- dlubal/api/rsection/guide_objects/__init__.py +4 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.py +71 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.pyi +312 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.py +43 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.pyi +125 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rsection/internal_forces/__init__.py +1 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.py +38 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.pyi +58 -0
- dlubal/api/rsection/loading/__init__.py +2 -0
- dlubal/api/rsection/loading/load_case_pb2.py +38 -0
- dlubal/api/rsection/loading/load_case_pb2.pyi +616 -0
- dlubal/api/rsection/loading/load_combination_pb2.py +42 -0
- dlubal/api/rsection/loading/load_combination_pb2.pyi +113 -0
- dlubal/api/rsection/object_id_pb2.py +39 -0
- dlubal/api/rsection/object_id_pb2.pyi +25 -0
- dlubal/api/rsection/object_type_pb2.py +36 -0
- dlubal/api/rsection/object_type_pb2.pyi +60 -0
- dlubal/api/rsection/results/__init__.py +4 -0
- dlubal/api/rsection/results/result_table_pb2.py +36 -0
- dlubal/api/rsection/results/result_table_pb2.pyi +10 -0
- dlubal/api/rsection/results/results_query_pb2.py +41 -0
- dlubal/api/rsection/results/results_query_pb2.pyi +31 -0
- dlubal/api/rsection/results/results_type_pb2.py +36 -0
- dlubal/api/rsection/results/results_type_pb2.pyi +10 -0
- dlubal/api/rsection/results/settings/__init__.py +1 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rsection/rsection_stresses/__init__.py +1 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rsection/structure_advanced/__init__.py +1 -0
- dlubal/api/rsection/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rsection/structure_advanced/block_pb2.pyi +190 -0
- dlubal/api/rsection/structure_core/__init__.py +15 -0
- dlubal/api/rsection/structure_core/bar_pb2.py +40 -0
- dlubal/api/rsection/structure_core/bar_pb2.pyi +102 -0
- dlubal/api/rsection/structure_core/element_pb2.py +53 -0
- dlubal/api/rsection/structure_core/element_pb2.pyi +204 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.py +36 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.pyi +22 -0
- dlubal/api/rsection/structure_core/layer_pb2.py +38 -0
- dlubal/api/rsection/structure_core/layer_pb2.pyi +44 -0
- dlubal/api/rsection/structure_core/line_pb2.py +59 -0
- dlubal/api/rsection/structure_core/line_pb2.pyi +222 -0
- dlubal/api/rsection/structure_core/material_pb2.py +110 -0
- dlubal/api/rsection/structure_core/material_pb2.pyi +1037 -0
- dlubal/api/rsection/structure_core/opening_pb2.py +37 -0
- dlubal/api/rsection/structure_core/opening_pb2.pyi +39 -0
- dlubal/api/rsection/structure_core/part_pb2.py +39 -0
- dlubal/api/rsection/structure_core/part_pb2.pyi +58 -0
- dlubal/api/rsection/structure_core/point_pb2.py +43 -0
- dlubal/api/rsection/structure_core/point_pb2.pyi +109 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.py +36 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.pyi +23 -0
- dlubal/api/rsection/structure_core/section_pb2.py +50 -0
- dlubal/api/rsection/structure_core/section_pb2.pyi +1723 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.py +36 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.pyi +42 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.py +45 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.pyi +101 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.py +38 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.pyi +49 -0
- dlubal/api/rsection/structure_core/weld_pb2.py +38 -0
- dlubal/api/rsection/structure_core/weld_pb2.pyi +46 -0
- dlubal/api/rstab/__init__.py +37 -0
- dlubal/api/rstab/all_pb2.py +36 -0
- dlubal/api/rstab/all_pb2.pyi +9 -0
- dlubal/api/rstab/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/application.py +740 -0
- dlubal/api/rstab/application_pb2.py +69 -0
- dlubal/api/rstab/application_pb2.pyi +121 -0
- dlubal/api/rstab/application_pb2_grpc.py +1736 -0
- dlubal/api/rstab/base_data_objects/__init__.py +1 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rstab/base_data_pb2.py +92 -0
- dlubal/api/rstab/base_data_pb2.pyi +2361 -0
- dlubal/api/rstab/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +61 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +1762 -0
- dlubal/api/rstab/concrete_design_objects/__init__.py +4 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +61 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +181 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +109 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +445 -0
- dlubal/api/rstab/design_addons_pb2.py +36 -0
- dlubal/api/rstab/design_addons_pb2.pyi +22 -0
- dlubal/api/rstab/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rstab/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rstab/dynamic_loads/__init__.py +3 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +42 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +67 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +44 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +91 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rstab/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/global_parameters/__init__.py +1 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +278 -0
- dlubal/api/rstab/guide_objects/__init__.py +15 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +207 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +91 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.py +69 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.pyi +280 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rstab/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rstab/guide_objects/note_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/note_pb2.pyi +117 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rstab/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +135 -0
- dlubal/api/rstab/ifc_objects/__init__.py +2 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rstab/imperfections/__init__.py +3 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.py +60 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +215 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rstab/load_wizards/__init__.py +7 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +89 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.py +48 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.pyi +777 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.py +55 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.pyi +148 -0
- dlubal/api/rstab/loading/__init__.py +16 -0
- dlubal/api/rstab/loading/action_combination_pb2.py +48 -0
- dlubal/api/rstab/loading/action_combination_pb2.pyi +153 -0
- dlubal/api/rstab/loading/action_pb2.py +54 -0
- dlubal/api/rstab/loading/action_pb2.pyi +719 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.py +47 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.pyi +106 -0
- dlubal/api/rstab/loading/design_situation_pb2.py +47 -0
- dlubal/api/rstab/loading/design_situation_pb2.pyi +1196 -0
- dlubal/api/rstab/loading/load_case_pb2.py +102 -0
- dlubal/api/rstab/loading/load_case_pb2.pyi +1365 -0
- dlubal/api/rstab/loading/load_combination_pb2.py +65 -0
- dlubal/api/rstab/loading/load_combination_pb2.pyi +384 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +147 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.pyi +111 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.pyi +50 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +44 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +66 -0
- dlubal/api/rstab/loading/result_combination_pb2.py +59 -0
- dlubal/api/rstab/loading/result_combination_pb2.pyi +300 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +80 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +114 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.py +42 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +110 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.pyi +176 -0
- dlubal/api/rstab/loads/__init__.py +5 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rstab/loads/member_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_load_pb2.pyi +492 -0
- dlubal/api/rstab/loads/member_set_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_set_load_pb2.pyi +490 -0
- dlubal/api/rstab/loads/nodal_load_pb2.py +49 -0
- dlubal/api/rstab/loads/nodal_load_pb2.pyi +224 -0
- dlubal/api/rstab/object_id_pb2.py +39 -0
- dlubal/api/rstab/object_id_pb2.pyi +25 -0
- dlubal/api/rstab/object_type_pb2.py +36 -0
- dlubal/api/rstab/object_type_pb2.pyi +248 -0
- dlubal/api/rstab/results/__init__.py +4 -0
- dlubal/api/rstab/results/result_table_pb2.py +36 -0
- dlubal/api/rstab/results/result_table_pb2.pyi +480 -0
- dlubal/api/rstab/results/results_query_pb2.py +41 -0
- dlubal/api/rstab/results/results_query_pb2.pyi +31 -0
- dlubal/api/rstab/results/results_type_pb2.py +36 -0
- dlubal/api/rstab/results/results_type_pb2.pyi +338 -0
- dlubal/api/rstab/results/settings/__init__.py +1 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rstab/rsection_stresses/__init__.py +1 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rstab/steel_design_objects/__init__.py +4 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +57 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +143 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +53 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +121 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/structure_advanced/__init__.py +4 -0
- dlubal/api/rstab/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rstab/structure_advanced/block_pb2.pyi +192 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +42 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +61 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +66 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +255 -0
- dlubal/api/rstab/structure_core/__init__.py +7 -0
- dlubal/api/rstab/structure_core/material_pb2.py +112 -0
- dlubal/api/rstab/structure_core/material_pb2.pyi +1047 -0
- dlubal/api/rstab/structure_core/member_pb2.py +214 -0
- dlubal/api/rstab/structure_core/member_pb2.pyi +2525 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.py +310 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.pyi +4141 -0
- dlubal/api/rstab/structure_core/member_set_pb2.py +156 -0
- dlubal/api/rstab/structure_core/member_set_pb2.pyi +1885 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.py +430 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +6065 -0
- dlubal/api/rstab/structure_core/node_pb2.py +49 -0
- dlubal/api/rstab/structure_core/node_pb2.pyi +174 -0
- dlubal/api/rstab/structure_core/section_pb2.py +76 -0
- dlubal/api/rstab/structure_core/section_pb2.pyi +2135 -0
- dlubal/api/rstab/timber_design_objects/__init__.py +3 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +165 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +745 -0
- dlubal/api/rstab/types_for_aluminum_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +382 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_concrete_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +251 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +107 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +496 -0
- dlubal/api/rstab/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rstab/types_for_foundations/__init__.py +1 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +334 -0
- dlubal/api/rstab/types_for_members/__init__.py +13 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.py +62 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.pyi +249 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +99 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.py +249 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +1770 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +61 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +50 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +127 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +80 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.py +52 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +149 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +139 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.pyi +156 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +143 -0
- dlubal/api/rstab/types_for_nodes/__init__.py +2 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +211 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +1444 -0
- dlubal/api/rstab/types_for_special_objects/__init__.py +1 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +198 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +1381 -0
- dlubal/api/rstab/types_for_steel_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +117 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +524 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_timber_design/__init__.py +6 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +105 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +478 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +121 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
- dlubal_api-2.12.2.dist-info/METADATA +76 -0
- dlubal_api-2.12.2.dist-info/RECORD +927 -0
- {dlubal.api-0.1.293714a1.dist-info → dlubal_api-2.12.2.dist-info}/WHEEL +1 -1
- dlubal_api-2.12.2.dist-info/top_level.txt +3 -0
- examples/rfem/base_data.py +26 -0
- examples/rfem/block.py +29 -0
- examples/rfem/bus_station.py +395 -0
- examples/rfem/cantilever.py +172 -0
- examples/rfem/column.py +185 -0
- examples/rfem/component_design.py +161 -0
- examples/rfem/demo_limits.py +373 -0
- examples/rfem/design_configuration.py +71 -0
- examples/rfem/design_settings.py +37 -0
- examples/rfem/excel.py +86 -0
- examples/rfem/export_model_to.py +159 -0
- examples/rfem/frame.py +285 -0
- examples/rfem/import_from_ifc.py +60 -0
- examples/rfem/import_from_rsection.py +107 -0
- examples/rfem/import_from_xml.py +29 -0
- examples/rfem/material_user_defined.py +25 -0
- examples/rfem/mesh_settings.py +25 -0
- examples/rfem/multiple_models.py +1608 -0
- examples/rfem/nested_tables.py +81 -0
- examples/rfem/pydantic_streamlit.py +101 -0
- examples/rfem/results_access.py +38 -0
- examples/rfem/results_axes_system.py +53 -0
- examples/rfem/results_design_addons.py +58 -0
- examples/rfem/results_filtering.py +43 -0
- examples/rfem/results_in_location.py +39 -0
- examples/rfem/results_multiple_models.py +45 -0
- examples/rfem/sectioned_roof.py +449 -0
- examples/rfem/select_objects.py +39 -0
- examples/rfem/silo.py +750 -0
- examples/rfem/steel_design_configuration.py +27 -0
- examples/rfem/steel_hall.py +670 -0
- examples/rfem/steel_station.py +890 -0
- examples/rfem/tank_wind_load.py +180 -0
- examples/rsection/base_data.py +20 -0
- examples/rsection/steel_section.py +114 -0
- examples/rstab/base_data.py +25 -0
- examples/rstab/cantilever.py +166 -0
- examples/rstab/column.py +184 -0
- examples/rstab/dataframe.py +20 -0
- examples/rstab/design_settings.py +37 -0
- examples/rstab/excel.py +86 -0
- examples/rstab/export_model_to.py +154 -0
- examples/rstab/frame.py +285 -0
- examples/rstab/import_from_ifc.py +46 -0
- examples/rstab/import_from_rsection.py +107 -0
- examples/rstab/import_from_xml.py +29 -0
- examples/rstab/multiple_models.py +1358 -0
- examples/rstab/nested_tables.py +29 -0
- examples/rstab/pydantic_streamlit.py +101 -0
- examples/rstab/results_access.py +38 -0
- examples/rstab/results_axes_system.py +53 -0
- examples/rstab/results_in_location.py +39 -0
- examples/rstab/results_multiple_models.py +40 -0
- examples/rstab/select_objects.py +39 -0
- google/protobuf/any_pb2.py +37 -0
- google/protobuf/any_pb2.pyi +14 -0
- google/protobuf/descriptor_pb2.py +3363 -0
- google/protobuf/descriptor_pb2.pyi +723 -0
- google/protobuf/empty_pb2.py +37 -0
- google/protobuf/empty_pb2.pyi +9 -0
- google/protobuf/wrappers_pb2.py +53 -0
- google/protobuf/wrappers_pb2.pyi +59 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +0 -40
- dlubal/api/rfem/base_data/terrain_pb2.pyi +0 -53
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/packing.py +0 -45
- dlubal/api/rfem/results/results_id_pb2.pyi +0 -14
- dlubal.api-0.1.293714a1.dist-info/METADATA +0 -40
- dlubal.api-0.1.293714a1.dist-info/RECORD +0 -342
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +0 -1
dlubal/api/rfem/application.py
CHANGED
|
@@ -1,290 +1,807 @@
|
|
|
1
|
-
# Autogenerated code. DO NOT EDIT. Manual code can be added to the corresponding .template.py file.
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
from dlubal.api.common.
|
|
8
|
-
from dlubal.api.
|
|
9
|
-
from dlubal.api.
|
|
10
|
-
from dlubal.api.
|
|
11
|
-
|
|
12
|
-
from
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
'''
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
def
|
|
95
|
-
'''
|
|
96
|
-
|
|
97
|
-
'''
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
def
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
Args:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
None
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
Returns
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
Returns
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
model_id (
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
Returns
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
Returns
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
1
|
+
# Autogenerated code. DO NOT EDIT. Manual code can be added to the corresponding .template.py file.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from dlubal.api.common.connection import _ApiKey, check_ssl, init_channel
|
|
5
|
+
from dlubal.api.common.packing import pack_message_to_any, pack_object, pack_object_list, unpack_object, unpack_object_list, convert_table_data_to_table
|
|
6
|
+
from dlubal.api.common.table_data_pb2 import TableData
|
|
7
|
+
from dlubal.api.common.model_id_pb2 import ModelId
|
|
8
|
+
from dlubal.api.common.common_messages_pb2 import ConvertObjectsRequest, ImportRequest, ExportRequest, GetObjectListRequest
|
|
9
|
+
from dlubal.api.rfem.results import ResultsType
|
|
10
|
+
from dlubal.api.rfem.results.results_query_pb2 import ResultsQuery, ResultsFilter
|
|
11
|
+
import grpc
|
|
12
|
+
from collections.abc import Iterable
|
|
13
|
+
import sys
|
|
14
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
15
|
+
import collections.abc
|
|
16
|
+
import dlubal.api.common.common_messages_pb2
|
|
17
|
+
import dlubal.api.common.model_id_pb2
|
|
18
|
+
import dlubal.api.rfem.application_pb2
|
|
19
|
+
import dlubal.api.rfem.application_pb2_grpc
|
|
20
|
+
import dlubal.api.rfem.base_data_pb2
|
|
21
|
+
import dlubal.api.rfem.design_addons_pb2
|
|
22
|
+
import dlubal.api.rfem.mesh.mesh_settings_pb2
|
|
23
|
+
import dlubal.api.rfem.object_id_pb2
|
|
24
|
+
import dlubal.api.rfem.object_type_pb2
|
|
25
|
+
import google.protobuf.empty_pb2
|
|
26
|
+
import google.protobuf.wrappers_pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class Application:
|
|
30
|
+
|
|
31
|
+
def __init__(self,
|
|
32
|
+
api_key_value=None,
|
|
33
|
+
api_key_name=None,
|
|
34
|
+
url='127.0.0.1',
|
|
35
|
+
port=9000,
|
|
36
|
+
ssl=False,
|
|
37
|
+
ssl_file=''):
|
|
38
|
+
'''
|
|
39
|
+
Initialize the RFEM client and connect to gRPC server.
|
|
40
|
+
|
|
41
|
+
Args:
|
|
42
|
+
api_key_value (str, optional):
|
|
43
|
+
Value of the API key.
|
|
44
|
+
It can be found in Extranet under My Data.
|
|
45
|
+
Every API key starts with 'ak' (default is None).
|
|
46
|
+
api_key_name (str, optional):
|
|
47
|
+
Name of the API key stored or to be stored.
|
|
48
|
+
Can be any string of letters and numbers starting with 'ak', 51 characters long.
|
|
49
|
+
url (str, optional):
|
|
50
|
+
URL number.
|
|
51
|
+
port (int, optional):
|
|
52
|
+
Port number.
|
|
53
|
+
ssl (bool, optional):
|
|
54
|
+
False if NOT using SSL auth.
|
|
55
|
+
True if using the installed version of SSL certificate, or path to .crt certificate if using a file.
|
|
56
|
+
ssl_file (str, optional):
|
|
57
|
+
Path to SSL certificate file (.crt, .pem).
|
|
58
|
+
'''
|
|
59
|
+
self.url = url
|
|
60
|
+
self.port = port
|
|
61
|
+
check_ssl(ssl, ssl_file)
|
|
62
|
+
self.ssl = ssl
|
|
63
|
+
self.ssl_file = ssl_file
|
|
64
|
+
self.api_key = _ApiKey(api_key_name, api_key_value)
|
|
65
|
+
self.channel = init_channel(self.api_key.value, self.url, self.port, self.ssl, self.ssl_file)
|
|
66
|
+
self.stub = dlubal.api.rfem.application_pb2_grpc.ApplicationStub(self.channel) if self.channel else None
|
|
67
|
+
self.__check_connection()
|
|
68
|
+
|
|
69
|
+
def __enter__(self):
|
|
70
|
+
'''
|
|
71
|
+
Start a session by entering the context manager
|
|
72
|
+
'''
|
|
73
|
+
return self
|
|
74
|
+
|
|
75
|
+
def __exit__(self, exc_type, exc_value, traceback):
|
|
76
|
+
'''
|
|
77
|
+
Ensure the session is finished and channel is closed properly before handling exceptions.
|
|
78
|
+
'''
|
|
79
|
+
|
|
80
|
+
# Attempt to close the connection first to prevent delays
|
|
81
|
+
try:
|
|
82
|
+
self.close_connection()
|
|
83
|
+
except Exception as e:
|
|
84
|
+
pass
|
|
85
|
+
|
|
86
|
+
# Now handle exceptions that occurred in the `with` block
|
|
87
|
+
if exc_type is not None:
|
|
88
|
+
if issubclass(exc_type, grpc.RpcError):
|
|
89
|
+
raise RuntimeError(f"gRPC Error: {exc_value.code().name} - {exc_value.details()}") from None
|
|
90
|
+
elif issubclass(exc_type, (SystemExit, KeyboardInterrupt)):
|
|
91
|
+
return False
|
|
92
|
+
raise RuntimeError(f"Unexpected error: {str(exc_value)}") from None
|
|
93
|
+
|
|
94
|
+
def __check_connection(self):
|
|
95
|
+
'''
|
|
96
|
+
Check connection and package version compatibility.
|
|
97
|
+
'''
|
|
98
|
+
|
|
99
|
+
# Check connection
|
|
100
|
+
try:
|
|
101
|
+
application_info = self.get_application_info()
|
|
102
|
+
except grpc._channel._InactiveRpcError as e:
|
|
103
|
+
sys.tracebacklimit = 0
|
|
104
|
+
raise RuntimeError(f"gRPC Connection error: {e.code().name} - {e.details()}") from None
|
|
105
|
+
|
|
106
|
+
# Check package version compatibility
|
|
107
|
+
try:
|
|
108
|
+
client_version = version('dlubal.api')
|
|
109
|
+
client_major, client_minor = map(int, client_version.split('.')[1:3])
|
|
110
|
+
app_major, app_minor = map(int, application_info.version.split('.')[1:3])
|
|
111
|
+
|
|
112
|
+
# If the versions differ, print a warning
|
|
113
|
+
if app_major != client_major or app_minor != client_minor:
|
|
114
|
+
print('\033[93mWARNING:\033[0m')
|
|
115
|
+
print(f'Version mismatch between dlubal.api client package \033[91m{client_version}\033[0m and server application {application_info.name}.')
|
|
116
|
+
print(f'To ensure full compatibility, please use the client version 2.{app_major}.{app_minor}.')
|
|
117
|
+
print(f'To update, run: \033[92mpython.exe -m pip install --upgrade dlubal.api==2.{app_major}.{app_minor}\033[0m\n')
|
|
118
|
+
|
|
119
|
+
except PackageNotFoundError:
|
|
120
|
+
return
|
|
121
|
+
|
|
122
|
+
# Functions using packing
|
|
123
|
+
def get_object(self, obj, model_id: ModelId | None = None):
|
|
124
|
+
"""
|
|
125
|
+
Retrieves a single object from the model.
|
|
126
|
+
|
|
127
|
+
Args:
|
|
128
|
+
obj (obj):
|
|
129
|
+
An object to be retrieved.
|
|
130
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
131
|
+
Unique identifier of the model. If None, the active model is used.
|
|
132
|
+
|
|
133
|
+
Returns:
|
|
134
|
+
:ref:`rfem_objects`: A retrieved object.
|
|
135
|
+
"""
|
|
136
|
+
result = self.stub.get_object_impl(pack_object(obj, model_id))
|
|
137
|
+
return unpack_object(result, type(obj))
|
|
138
|
+
|
|
139
|
+
def get_object_list(self, objs: list, only_selected: bool = False, model_id: ModelId | None = None):
|
|
140
|
+
"""
|
|
141
|
+
Retrieves a list of objects from the model.
|
|
142
|
+
|
|
143
|
+
Args:
|
|
144
|
+
objs (list[obj]):
|
|
145
|
+
A list of model objects to retrieve.
|
|
146
|
+
only_selected (bool, optional):
|
|
147
|
+
If True, only returns objects from the list that are currently selected in the model.
|
|
148
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
149
|
+
Unique identifier of the model. If None, the active model is used.
|
|
150
|
+
|
|
151
|
+
Returns:
|
|
152
|
+
list[obj]: A list of the retrieved objects.
|
|
153
|
+
"""
|
|
154
|
+
result = self.stub.get_object_list_impl(
|
|
155
|
+
GetObjectListRequest(
|
|
156
|
+
objects=pack_object_list(objs, model_id),
|
|
157
|
+
return_only_selected_objects=only_selected
|
|
158
|
+
)
|
|
159
|
+
)
|
|
160
|
+
return unpack_object_list(result, objs)
|
|
161
|
+
|
|
162
|
+
def create_object(self, obj, model_id: ModelId | None = None):
|
|
163
|
+
"""
|
|
164
|
+
Creates a single object in the model.
|
|
165
|
+
|
|
166
|
+
Args:
|
|
167
|
+
obj (obj):
|
|
168
|
+
An object to be created.
|
|
169
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
170
|
+
Unique identifier of the model. If None, the active model is used.
|
|
171
|
+
|
|
172
|
+
Returns:
|
|
173
|
+
None
|
|
174
|
+
"""
|
|
175
|
+
return self.stub.create_object_impl(pack_object(obj, model_id))
|
|
176
|
+
|
|
177
|
+
def create_object_list(self, objs: list, model_id: ModelId | None = None):
|
|
178
|
+
"""
|
|
179
|
+
Creates a list of objects in the model.
|
|
180
|
+
|
|
181
|
+
Args:
|
|
182
|
+
objs (list[obj]):
|
|
183
|
+
A list of objects to be created.
|
|
184
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
185
|
+
Unique identifier of the model. If None, the active model is used.
|
|
186
|
+
|
|
187
|
+
Returns:
|
|
188
|
+
None
|
|
189
|
+
"""
|
|
190
|
+
return self.stub.create_object_list_impl(pack_object_list(objs, model_id))
|
|
191
|
+
|
|
192
|
+
def update_object(self, obj, model_id: ModelId | None = None):
|
|
193
|
+
"""
|
|
194
|
+
Updates a single object in the model.
|
|
195
|
+
|
|
196
|
+
Args:
|
|
197
|
+
obj (obj):
|
|
198
|
+
An object to be updated.
|
|
199
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
200
|
+
Unique identifier of the model. If None, the active model is used.
|
|
201
|
+
|
|
202
|
+
Returns:
|
|
203
|
+
None
|
|
204
|
+
"""
|
|
205
|
+
self.stub.update_object_impl(pack_object(obj, model_id))
|
|
206
|
+
|
|
207
|
+
def update_object_list(self, objs: list, model_id: ModelId | None = None):
|
|
208
|
+
"""
|
|
209
|
+
Updates a list of objects in the model.
|
|
210
|
+
|
|
211
|
+
Args:
|
|
212
|
+
objs (list[obj]):
|
|
213
|
+
A list of objects to be updated.
|
|
214
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
215
|
+
Unique identifier of the model. If None, the active model is used.
|
|
216
|
+
|
|
217
|
+
Returns:
|
|
218
|
+
None
|
|
219
|
+
"""
|
|
220
|
+
self.stub.update_object_list_impl(pack_object_list(objs, model_id))
|
|
221
|
+
|
|
222
|
+
def delete_object(self, obj, model_id: ModelId | None = None):
|
|
223
|
+
"""
|
|
224
|
+
Deletes a single object from the model.
|
|
225
|
+
|
|
226
|
+
Args:
|
|
227
|
+
obj (obj):
|
|
228
|
+
An object to be deleted.
|
|
229
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
230
|
+
Unique identifier of the model. If None, the active model is used.
|
|
231
|
+
|
|
232
|
+
Returns:
|
|
233
|
+
None
|
|
234
|
+
"""
|
|
235
|
+
self.stub.delete_object_impl(pack_object(obj, model_id))
|
|
236
|
+
|
|
237
|
+
def delete_object_list(self, objs: list, model_id: ModelId | None = None):
|
|
238
|
+
"""
|
|
239
|
+
Deletes a list of objects from the model.
|
|
240
|
+
|
|
241
|
+
Args:
|
|
242
|
+
objs (list[obj]):
|
|
243
|
+
A list of objects to be deleted.
|
|
244
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
245
|
+
Unique identifier of the model. If None, the active model is used.
|
|
246
|
+
|
|
247
|
+
Returns:
|
|
248
|
+
None
|
|
249
|
+
"""
|
|
250
|
+
self.stub.delete_object_list_impl(pack_object_list(objs, model_id))
|
|
251
|
+
|
|
252
|
+
def select_objects(self, objs: list, model_id: ModelId | None = None):
|
|
253
|
+
"""
|
|
254
|
+
Selects a list of objects in the model.
|
|
255
|
+
|
|
256
|
+
Args:
|
|
257
|
+
objs (list[obj]):
|
|
258
|
+
A list of objects to be selected.
|
|
259
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
260
|
+
Unique identifier of the model. If None, the active model is used.
|
|
261
|
+
|
|
262
|
+
Returns:
|
|
263
|
+
None
|
|
264
|
+
"""
|
|
265
|
+
self.stub.select_objects_impl(pack_object_list(objs, model_id))
|
|
266
|
+
|
|
267
|
+
def get_results(self, results_type: ResultsType, filters: Iterable[ResultsFilter] | None = None,
|
|
268
|
+
member_axes_system : MemberAxesSystem | None = None,
|
|
269
|
+
support_coordinate_system : CoordinateSystem | None = None,
|
|
270
|
+
model_id: ModelId | None = None, **keyword_filters):
|
|
271
|
+
'''
|
|
272
|
+
Retrieves complete, unprocessed results from the database wrapped in a DataFrame for more efficient analysis.
|
|
273
|
+
|
|
274
|
+
Args:
|
|
275
|
+
results_type (:ref:`rfem_results_results_type_ResultsType`):
|
|
276
|
+
Unique identifier for the result category type.
|
|
277
|
+
filters (:ref:`rfem_results_results_query_ResultsFilter` | None):
|
|
278
|
+
One or more filters to return only relevant results.
|
|
279
|
+
member_axes_system (:ref:`rfem_results_settings_result_settings_MemberAxesSystem` | None):
|
|
280
|
+
The axes system to use for member results. If not provided, it defaults to ``MEMBER_AXES_SYSTEM_MEMBER_AXES_X_Y_Z``.
|
|
281
|
+
support_coordinate_system (:ref:`rfem_results_settings_result_settings_CoordinateSystem` | None):
|
|
282
|
+
The coordinate system to use for support results. If not provided, it defaults to ``COORDINATE_SYSTEM_LOCAL``.
|
|
283
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
284
|
+
Unique identifier of the model. If None, the active model is used.
|
|
285
|
+
|
|
286
|
+
Returns:
|
|
287
|
+
A :ref:`common_table_Table` object containing the results as a DataFrame.
|
|
288
|
+
'''
|
|
289
|
+
|
|
290
|
+
all_filters = list(filters) if filters else []
|
|
291
|
+
|
|
292
|
+
for key, value in keyword_filters.items():
|
|
293
|
+
all_filters.append(ResultsFilter(column_id=key, filter_expression=str(value)))
|
|
294
|
+
|
|
295
|
+
results, call = self.stub.get_results_impl.with_call(
|
|
296
|
+
ResultsQuery(results_type=results_type,
|
|
297
|
+
filters=all_filters,
|
|
298
|
+
member_axes_system=member_axes_system,
|
|
299
|
+
support_coordinate_system=support_coordinate_system,
|
|
300
|
+
model_id=model_id))
|
|
301
|
+
|
|
302
|
+
warning: str = ""
|
|
303
|
+
# trailing_metadata() returns a sequence of (key, value) tuples
|
|
304
|
+
# Some gRPC implementations return bytes for values, decode if possible
|
|
305
|
+
if call is not None:
|
|
306
|
+
for key, value in call.trailing_metadata():
|
|
307
|
+
if key == "warning":
|
|
308
|
+
try:
|
|
309
|
+
warning = value.decode("utf-8")
|
|
310
|
+
except Exception:
|
|
311
|
+
warning = value
|
|
312
|
+
|
|
313
|
+
return convert_table_data_to_table(table_data=results, warning=warning)
|
|
314
|
+
|
|
315
|
+
def get_result_table(self, table: ResultTable, loading: ObjectId,
|
|
316
|
+
member_axes_system : MemberAxesSystem | None = None,
|
|
317
|
+
support_coordinate_system : CoordinateSystem | None = None,
|
|
318
|
+
model_id: ModelId | None = None):
|
|
319
|
+
"""
|
|
320
|
+
Retrieves a pre-processed result table wrapped in a DataFrame for more efficient analysis,
|
|
321
|
+
containing only the most relevant values as displayed in the desktop application.
|
|
322
|
+
|
|
323
|
+
Args:
|
|
324
|
+
table (:ref:`rfem_results_result_table_ResultTable`):
|
|
325
|
+
Unique identifier for the result table type.
|
|
326
|
+
loading (:ref:`rfem_object_id_ObjectId`):
|
|
327
|
+
Reference to the loading (e.g., load case, combination, etc.).
|
|
328
|
+
member_axes_system (:ref:`rfem_results_settings_result_settings_MemberAxesSystem` | None):
|
|
329
|
+
The axes system to use for member results. If not provided, it defaults to ``MEMBER_AXES_SYSTEM_MEMBER_AXES_X_Y_Z``.
|
|
330
|
+
support_coordinate_system (:ref:`rfem_results_settings_result_settings_CoordinateSystem` | None):
|
|
331
|
+
The coordinate system to use for support results. If not provided, it defaults to ``COORDINATE_SYSTEM_LOCAL``.
|
|
332
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
333
|
+
Unique identifier of the model. If None, the active model is used.
|
|
334
|
+
|
|
335
|
+
Returns:
|
|
336
|
+
A :ref:`common_table_Table` object containing the result table as a DataFrame.
|
|
337
|
+
"""
|
|
338
|
+
# Use with_call to access trailing metadata (warnings) from the gRPC call
|
|
339
|
+
results, call = self.stub.get_result_table_impl.with_call(
|
|
340
|
+
dlubal.api.rfem.GetResultTableRequest(
|
|
341
|
+
table=table,
|
|
342
|
+
loading=loading,
|
|
343
|
+
model_id=model_id,
|
|
344
|
+
member_axes_system=member_axes_system,
|
|
345
|
+
support_coordinate_system=support_coordinate_system)
|
|
346
|
+
)
|
|
347
|
+
|
|
348
|
+
warning: str = ""
|
|
349
|
+
# trailing_metadata() returns a sequence of (key, value) tuples
|
|
350
|
+
# Some gRPC implementations return bytes for values, decode if possible
|
|
351
|
+
if call is not None:
|
|
352
|
+
for key, value in call.trailing_metadata():
|
|
353
|
+
if key == "warning":
|
|
354
|
+
try:
|
|
355
|
+
warning = value.decode("utf-8")
|
|
356
|
+
except Exception:
|
|
357
|
+
warning = value
|
|
358
|
+
|
|
359
|
+
return convert_table_data_to_table(table_data=results, warning=warning)
|
|
360
|
+
|
|
361
|
+
def convert_objects(self, *, convert_into: ConvertObjectInto, objs: list, model_id: ModelId | None = None):
|
|
362
|
+
"""
|
|
363
|
+
Converts specified objects into a different type.
|
|
364
|
+
|
|
365
|
+
Args:
|
|
366
|
+
convert_into (:ref:`common_common_messages_ConvertObjectInto`):
|
|
367
|
+
Specifies the target conversion type.
|
|
368
|
+
objs (list):
|
|
369
|
+
Objects to be converted.
|
|
370
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
371
|
+
Unique identifier of the model. If None, the active model is used.
|
|
372
|
+
|
|
373
|
+
Returns:
|
|
374
|
+
None
|
|
375
|
+
"""
|
|
376
|
+
request = ConvertObjectsRequest(convert_into=convert_into, objects=pack_object_list(objs, model_id))
|
|
377
|
+
self.stub.convert_objects_impl(request)
|
|
378
|
+
|
|
379
|
+
def import_from(self, *, filepath: str, import_attributes: google.protobuf.any_pb2.Any, model_id: ModelId | None = None):
|
|
380
|
+
"""
|
|
381
|
+
Imports data into the model from the specified file format.
|
|
382
|
+
|
|
383
|
+
Args:
|
|
384
|
+
filepath (str):
|
|
385
|
+
The full path of the file to be imported.
|
|
386
|
+
import_attributes (Any):
|
|
387
|
+
Specifies the format and attributes of the import.
|
|
388
|
+
Supported message types:
|
|
389
|
+
:ref:`common_import_export_import_attributes_IfcImportAttributes`
|
|
390
|
+
:ref:`common_import_export_import_attributes_XmlImportAttributes`
|
|
391
|
+
:ref:`common_import_export_import_attributes_RsectionImportAttributes`
|
|
392
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
393
|
+
The unique identifier of the model. If None, the active model is used.
|
|
394
|
+
|
|
395
|
+
Returns:
|
|
396
|
+
None
|
|
397
|
+
"""
|
|
398
|
+
request = ImportRequest(filepath=filepath, import_attributes=pack_message_to_any(import_attributes), model_id=model_id)
|
|
399
|
+
self.stub.import_from_impl(request)
|
|
400
|
+
|
|
401
|
+
def export_to(self, *, filepath: str, export_attributes: google.protobuf.any_pb2.Any, model_id: ModelId | None = None):
|
|
402
|
+
"""
|
|
403
|
+
Exports the model to the specified file format.
|
|
404
|
+
|
|
405
|
+
Args:
|
|
406
|
+
filepath (str):
|
|
407
|
+
The full path of the file where the model will be exported.
|
|
408
|
+
export_attributes (Any):
|
|
409
|
+
Specifies the format and attributes for the export.
|
|
410
|
+
Supported message types:
|
|
411
|
+
:ref:`common_import_export_export_attributes_PythonGrpcExportAttributes`
|
|
412
|
+
:ref:`common_import_export_export_attributes_IfcExportAttributes`
|
|
413
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
414
|
+
The unique identifier of the model. If None, the active model is used.
|
|
415
|
+
|
|
416
|
+
Returns:
|
|
417
|
+
None
|
|
418
|
+
"""
|
|
419
|
+
request = ExportRequest(filepath=filepath, export_attributes=pack_message_to_any(export_attributes), model_id=model_id)
|
|
420
|
+
self.stub.export_to_impl(request)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
def create_model(self, *, name: str, template_path: str | None = None) -> dlubal.api.common.model_id_pb2.ModelId:
|
|
425
|
+
"""
|
|
426
|
+
Creates new model with the name specified in request.
|
|
427
|
+
Returns model id of created model
|
|
428
|
+
|
|
429
|
+
Args:
|
|
430
|
+
name (str):
|
|
431
|
+
Name of the new model
|
|
432
|
+
template_path (str | None):
|
|
433
|
+
Path to the existing template to be opened
|
|
434
|
+
|
|
435
|
+
Returns:
|
|
436
|
+
:ref:`common_model_id_ModelId`
|
|
437
|
+
"""
|
|
438
|
+
request = dlubal.api.common.common_messages_pb2.CreateModelRequest(name=name, template_path=template_path)
|
|
439
|
+
return self.stub.create_model(request)
|
|
440
|
+
|
|
441
|
+
def open_model(self, *, path: str) -> dlubal.api.common.model_id_pb2.ModelId:
|
|
442
|
+
"""
|
|
443
|
+
Opens model from path specified in 'name' field of the request
|
|
444
|
+
Returns model id of opened model
|
|
445
|
+
|
|
446
|
+
Args:
|
|
447
|
+
path (str):
|
|
448
|
+
Path to the existing model to be opened
|
|
449
|
+
|
|
450
|
+
Returns:
|
|
451
|
+
:ref:`common_model_id_ModelId`
|
|
452
|
+
"""
|
|
453
|
+
request = dlubal.api.common.common_messages_pb2.OpenModelRequest(path=path)
|
|
454
|
+
return self.stub.open_model(request)
|
|
455
|
+
|
|
456
|
+
def save_model(self, *, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None, path: str | None = None, results: bool | None = None, fe_mesh: bool | None = None, printout_reports: bool | None = None):
|
|
457
|
+
"""
|
|
458
|
+
Saves model specified by model id to optional specified path
|
|
459
|
+
|
|
460
|
+
Args:
|
|
461
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
462
|
+
Unique identifier of the model Active model is used if this field is not set.
|
|
463
|
+
path (str | None):
|
|
464
|
+
Path to the model
|
|
465
|
+
results (bool | None):
|
|
466
|
+
When enabled, the model is saved together with the calculated results
|
|
467
|
+
fe_mesh (bool | None):
|
|
468
|
+
When enabled, the model is saved together with the FE Mesh
|
|
469
|
+
printout_reports (bool | None):
|
|
470
|
+
When enabled, the printout reports are saved
|
|
471
|
+
"""
|
|
472
|
+
request = dlubal.api.rfem.application_pb2.SaveModelAsRequest(model_id=model_id, path=path, results=results, fe_mesh=fe_mesh, printout_reports=printout_reports)
|
|
473
|
+
self.stub.save_model(request)
|
|
474
|
+
|
|
475
|
+
def close_model(self, *, save_changes: bool, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
|
|
476
|
+
"""
|
|
477
|
+
Closes model specified by model id
|
|
478
|
+
|
|
479
|
+
Args:
|
|
480
|
+
save_changes (bool):
|
|
481
|
+
Specifies whether to save changes before closing the model
|
|
482
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
483
|
+
Unique identifier of the model Active model is used if this field is not set.
|
|
484
|
+
"""
|
|
485
|
+
request = dlubal.api.common.common_messages_pb2.CloseModelRequest(save_changes=save_changes, model_id=model_id)
|
|
486
|
+
self.stub.close_model(request)
|
|
487
|
+
|
|
488
|
+
def close_all_models(self, *, save_changes: bool):
|
|
489
|
+
"""
|
|
490
|
+
Closes all open models
|
|
491
|
+
|
|
492
|
+
Args:
|
|
493
|
+
save_changes (bool):
|
|
494
|
+
Specifies whether to save changes before closing the models
|
|
495
|
+
"""
|
|
496
|
+
request = dlubal.api.common.common_messages_pb2.CloseAllModelsRequest(save_changes=save_changes)
|
|
497
|
+
self.stub.close_all_models(request)
|
|
498
|
+
|
|
499
|
+
def get_active_model(self) -> dlubal.api.common.model_id_pb2.ModelId:
|
|
500
|
+
"""
|
|
501
|
+
Returns model id of an active model
|
|
502
|
+
|
|
503
|
+
Returns:
|
|
504
|
+
:ref:`common_model_id_ModelId`
|
|
505
|
+
"""
|
|
506
|
+
return self.stub.get_active_model(google.protobuf.empty_pb2.Empty())
|
|
507
|
+
|
|
508
|
+
def set_active_model(self, *, model_id: dlubal.api.common.model_id_pb2.ModelId):
|
|
509
|
+
"""
|
|
510
|
+
Sets active model specified by model id
|
|
511
|
+
|
|
512
|
+
Args:
|
|
513
|
+
model_id (:ref:`common_model_id_ModelId`):
|
|
514
|
+
|
|
515
|
+
"""
|
|
516
|
+
self.stub.set_active_model(model_id)
|
|
517
|
+
|
|
518
|
+
def close_application(self):
|
|
519
|
+
"""
|
|
520
|
+
Closes the whole application
|
|
521
|
+
"""
|
|
522
|
+
self.stub.close_application(google.protobuf.empty_pb2.Empty())
|
|
523
|
+
|
|
524
|
+
def get_model_list(self) -> dlubal.api.common.common_messages_pb2.ModelList:
|
|
525
|
+
"""
|
|
526
|
+
Returns list of models and information about them
|
|
527
|
+
|
|
528
|
+
Returns:
|
|
529
|
+
:ref:`common_common_messages_ModelList`
|
|
530
|
+
"""
|
|
531
|
+
return self.stub.get_model_list(google.protobuf.empty_pb2.Empty())
|
|
532
|
+
|
|
533
|
+
def get_application_info(self) -> dlubal.api.common.common_messages_pb2.ApplicationInfo:
|
|
534
|
+
"""
|
|
535
|
+
Returns information about the application
|
|
536
|
+
|
|
537
|
+
Returns:
|
|
538
|
+
:ref:`common_common_messages_ApplicationInfo`
|
|
539
|
+
"""
|
|
540
|
+
return self.stub.get_application_info(google.protobuf.empty_pb2.Empty())
|
|
541
|
+
|
|
542
|
+
def get_subscription_info(self) -> dlubal.api.common.common_messages_pb2.SubscriptionInfo:
|
|
543
|
+
"""
|
|
544
|
+
Returns current company's API subscription information
|
|
545
|
+
|
|
546
|
+
Returns:
|
|
547
|
+
:ref:`common_common_messages_SubscriptionInfo`
|
|
548
|
+
"""
|
|
549
|
+
return self.stub.get_subscription_info(google.protobuf.empty_pb2.Empty())
|
|
550
|
+
|
|
551
|
+
def close_connection(self):
|
|
552
|
+
"""
|
|
553
|
+
Closes connection to API server
|
|
554
|
+
"""
|
|
555
|
+
self.stub.close_connection(google.protobuf.empty_pb2.Empty())
|
|
556
|
+
|
|
557
|
+
def delete_all_objects(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()):
|
|
558
|
+
"""
|
|
559
|
+
Deletes all objects
|
|
560
|
+
|
|
561
|
+
Args:
|
|
562
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
563
|
+
|
|
564
|
+
"""
|
|
565
|
+
self.stub.delete_all_objects(optional_model_id)
|
|
566
|
+
|
|
567
|
+
def calculate_all(self, *, skip_warnings: bool, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.common.common_messages_pb2.OperationResult:
|
|
568
|
+
"""
|
|
569
|
+
Performs a full calculation for all objects.
|
|
570
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
571
|
+
|
|
572
|
+
Args:
|
|
573
|
+
skip_warnings (bool):
|
|
574
|
+
Specifies whether to skip warnings during the calculation.
|
|
575
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
576
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
577
|
+
|
|
578
|
+
Returns:
|
|
579
|
+
:ref:`common_common_messages_OperationResult`
|
|
580
|
+
"""
|
|
581
|
+
request = dlubal.api.common.common_messages_pb2.CalculateAllRequest(skip_warnings=skip_warnings, model_id=model_id)
|
|
582
|
+
return self.stub.calculate_all(request)
|
|
583
|
+
|
|
584
|
+
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:
|
|
585
|
+
"""
|
|
586
|
+
Performs a calculation for the specific objects.
|
|
587
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
588
|
+
|
|
589
|
+
Args:
|
|
590
|
+
loadings (list[:ref:`rfem_object_id_ObjectId`] | None):
|
|
591
|
+
Unique identifier of the loading.
|
|
592
|
+
skip_warnings (bool):
|
|
593
|
+
Specifies whether to skip warnings during the calculation.
|
|
594
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
595
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
596
|
+
|
|
597
|
+
Returns:
|
|
598
|
+
:ref:`common_common_messages_OperationResult`
|
|
599
|
+
"""
|
|
600
|
+
request = dlubal.api.rfem.application_pb2.CalculateSpecificRequest(loadings=loadings, skip_warnings=skip_warnings, model_id=model_id)
|
|
601
|
+
return self.stub.calculate_specific(request)
|
|
602
|
+
|
|
603
|
+
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:
|
|
604
|
+
"""
|
|
605
|
+
Checks whether the model contains calculation results for the selected loading, loading type, or any loading.
|
|
606
|
+
Returns True if results are available.
|
|
607
|
+
|
|
608
|
+
Args:
|
|
609
|
+
loading (:ref:`rfem_object_id_ObjectId` | None):
|
|
610
|
+
Allowed types: OBJECT_TYPE_CONSTRUCTION_STAGE, OBJECT_TYPE_DESIGN_SITUATION, OBJECT_TYPE_LOAD_CASE, OBJECT_TYPE_LOAD_COMBINATION, OBJECT_TYPE_RESULT_COMBINATION
|
|
611
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
612
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
613
|
+
|
|
614
|
+
Returns:
|
|
615
|
+
google.protobuf.BoolValue
|
|
616
|
+
"""
|
|
617
|
+
request = dlubal.api.rfem.application_pb2.HasResultsRequest(loading=loading, model_id=model_id)
|
|
618
|
+
return self.stub.has_results(request)
|
|
619
|
+
|
|
620
|
+
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:
|
|
621
|
+
"""
|
|
622
|
+
Performs validation based on the specified validation type.
|
|
623
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
624
|
+
|
|
625
|
+
Args:
|
|
626
|
+
type (:ref:`common_common_messages_PlausibilityCheckType`):
|
|
627
|
+
Specifies various validation checks that can be performed before generating a mesh, running a calculation, or verifying plausibility.
|
|
628
|
+
skip_warnings (bool):
|
|
629
|
+
Specifies whether to skip warnings during the calculation.
|
|
630
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
631
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
632
|
+
|
|
633
|
+
Returns:
|
|
634
|
+
:ref:`common_common_messages_OperationResult`
|
|
635
|
+
"""
|
|
636
|
+
request = dlubal.api.common.common_messages_pb2.PlausibilityCheckRequest(type=type, skip_warnings=skip_warnings, model_id=model_id)
|
|
637
|
+
return self.stub.plausibility_check(request)
|
|
638
|
+
|
|
639
|
+
def get_object_id_list(self, *, object_type: dlubal.api.rfem.object_type_pb2.ObjectType | None = None, parent_no: int | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.rfem.object_id_pb2.ObjectIdList:
|
|
640
|
+
"""
|
|
641
|
+
Retrieves object ids filtered by a specific type.
|
|
642
|
+
If you want to retrieve all object ids, do not specify the object_type.
|
|
643
|
+
|
|
644
|
+
Args:
|
|
645
|
+
object_type (:ref:`rfem_object_type_ObjectType` | None):
|
|
646
|
+
The type of objects to retrieve. To get all object ids, omit it.
|
|
647
|
+
parent_no (int | None):
|
|
648
|
+
Unique identifier of the parent object. Omit this parameter if the object type does not have a parent or you want to get result for all parent objects.
|
|
649
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
650
|
+
Unique identifier of the model. If not specified, the active model is used.
|
|
651
|
+
|
|
652
|
+
Returns:
|
|
653
|
+
:ref:`rfem_object_id_ObjectIdList`
|
|
654
|
+
"""
|
|
655
|
+
request = dlubal.api.rfem.application_pb2.GetObjectIdListRequest(object_type=object_type, parent_no=parent_no, model_id=model_id)
|
|
656
|
+
return self.stub.get_object_id_list(request)
|
|
657
|
+
|
|
658
|
+
def get_model_main_parameters(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()) -> dlubal.api.common.common_messages_pb2.ModelMainParameters:
|
|
659
|
+
"""
|
|
660
|
+
Retrieves the main parameters of a model, including its ID, name, description,
|
|
661
|
+
comments, file path, and associated project details.
|
|
662
|
+
|
|
663
|
+
Args:
|
|
664
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
Returns:
|
|
668
|
+
:ref:`common_common_messages_ModelMainParameters`
|
|
669
|
+
"""
|
|
670
|
+
return self.stub.get_model_main_parameters(optional_model_id)
|
|
671
|
+
|
|
672
|
+
def generate_combinations(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()):
|
|
673
|
+
"""
|
|
674
|
+
Generates combinations.
|
|
675
|
+
|
|
676
|
+
Args:
|
|
677
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
678
|
+
|
|
679
|
+
"""
|
|
680
|
+
self.stub.generate_combinations(optional_model_id)
|
|
681
|
+
|
|
682
|
+
def get_base_data(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()) -> dlubal.api.rfem.base_data_pb2.BaseData:
|
|
683
|
+
"""
|
|
684
|
+
Get the base data.
|
|
685
|
+
This method returns the complete set of data stored for a particular model,
|
|
686
|
+
including add-ons, standards, general and combinations settings, etc.
|
|
687
|
+
|
|
688
|
+
Args:
|
|
689
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
Returns:
|
|
693
|
+
:ref:`rfem_base_data_BaseData`
|
|
694
|
+
"""
|
|
695
|
+
return self.stub.get_base_data(optional_model_id)
|
|
696
|
+
|
|
697
|
+
def set_base_data(self, *, base_data: dlubal.api.rfem.base_data_pb2.BaseData | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
|
|
698
|
+
"""
|
|
699
|
+
Set the base data.
|
|
700
|
+
This method updates the complete set of data for a particular model,
|
|
701
|
+
including add-ons, standards, general and combinations settings, and other parameters.
|
|
702
|
+
|
|
703
|
+
Args:
|
|
704
|
+
base_data (:ref:`rfem_base_data_BaseData` | None):
|
|
705
|
+
|
|
706
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
707
|
+
Unique identifier of the model. If not specified, the active model is used.
|
|
708
|
+
"""
|
|
709
|
+
request = dlubal.api.rfem.application_pb2.BaseDataRequest(base_data=base_data, model_id=model_id)
|
|
710
|
+
self.stub.set_base_data(request)
|
|
711
|
+
|
|
712
|
+
def get_mesh_settings(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()) -> dlubal.api.rfem.mesh.mesh_settings_pb2.MeshSettings:
|
|
713
|
+
"""
|
|
714
|
+
Returns mesh settings.
|
|
715
|
+
|
|
716
|
+
Args:
|
|
717
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
Returns:
|
|
721
|
+
:ref:`rfem_mesh_mesh_settings_MeshSettings`
|
|
722
|
+
"""
|
|
723
|
+
return self.stub.get_mesh_settings(optional_model_id)
|
|
724
|
+
|
|
725
|
+
def set_mesh_settings(self, *, mesh_settings: dlubal.api.rfem.mesh.mesh_settings_pb2.MeshSettings | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
|
|
726
|
+
"""
|
|
727
|
+
Sets mesh settings.
|
|
728
|
+
|
|
729
|
+
Args:
|
|
730
|
+
mesh_settings (:ref:`rfem_mesh_mesh_settings_MeshSettings` | None):
|
|
731
|
+
|
|
732
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
733
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
734
|
+
"""
|
|
735
|
+
request = dlubal.api.rfem.application_pb2.SetMeshSettingsRequest(mesh_settings=mesh_settings, model_id=model_id)
|
|
736
|
+
self.stub.set_mesh_settings(request)
|
|
737
|
+
|
|
738
|
+
def generate_mesh(self, *, skip_warnings: bool, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.common.common_messages_pb2.OperationResult:
|
|
739
|
+
"""
|
|
740
|
+
Generates mesh.
|
|
741
|
+
Returns result of the operation.
|
|
742
|
+
|
|
743
|
+
Args:
|
|
744
|
+
skip_warnings (bool):
|
|
745
|
+
Specifies whether to skip warnings during the generation mesh.
|
|
746
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
747
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
748
|
+
|
|
749
|
+
Returns:
|
|
750
|
+
:ref:`common_common_messages_OperationResult`
|
|
751
|
+
"""
|
|
752
|
+
request = dlubal.api.rfem.application_pb2.GenerateMeshRequest(skip_warnings=skip_warnings, model_id=model_id)
|
|
753
|
+
return self.stub.generate_mesh(request)
|
|
754
|
+
|
|
755
|
+
def get_mesh_statistics(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()) -> dlubal.api.rfem.mesh.mesh_settings_pb2.MeshStatistics:
|
|
756
|
+
"""
|
|
757
|
+
Returns mesh statistics.
|
|
758
|
+
|
|
759
|
+
Args:
|
|
760
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
Returns:
|
|
764
|
+
:ref:`rfem_mesh_mesh_settings_MeshStatistics`
|
|
765
|
+
"""
|
|
766
|
+
return self.stub.get_mesh_statistics(optional_model_id)
|
|
767
|
+
|
|
768
|
+
def delete_mesh(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()):
|
|
769
|
+
"""
|
|
770
|
+
Delete mesh
|
|
771
|
+
|
|
772
|
+
Args:
|
|
773
|
+
optional_model_id (:ref:`common_model_id_OptionalModelId`):
|
|
774
|
+
|
|
775
|
+
"""
|
|
776
|
+
self.stub.delete_mesh(optional_model_id)
|
|
777
|
+
|
|
778
|
+
def get_design_settings(self, *, addon: dlubal.api.rfem.design_addons_pb2.DesignAddons, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.rfem.application_pb2.GlobalSettingsTreeTable:
|
|
779
|
+
"""
|
|
780
|
+
Get global settings for a design addon.
|
|
781
|
+
|
|
782
|
+
Args:
|
|
783
|
+
addon (:ref:`rfem_design_addons_DesignAddons`):
|
|
784
|
+
|
|
785
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
786
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
787
|
+
|
|
788
|
+
Returns:
|
|
789
|
+
:ref:`rfem_application_GlobalSettingsTreeTable`
|
|
790
|
+
"""
|
|
791
|
+
request = dlubal.api.rfem.application_pb2.GetDesignSettingsRequest(addon=addon, model_id=model_id)
|
|
792
|
+
return self.stub.get_design_settings(request)
|
|
793
|
+
|
|
794
|
+
def set_design_settings(self, *, addon: dlubal.api.rfem.design_addons_pb2.DesignAddons, global_settings_tree_table: dlubal.api.rfem.application_pb2.GlobalSettingsTreeTable | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
|
|
795
|
+
"""
|
|
796
|
+
Set global settings for a design addon.
|
|
797
|
+
|
|
798
|
+
Args:
|
|
799
|
+
addon (:ref:`rfem_design_addons_DesignAddons`):
|
|
800
|
+
|
|
801
|
+
global_settings_tree_table (:ref:`rfem_application_GlobalSettingsTreeTable` | None):
|
|
802
|
+
|
|
803
|
+
model_id (:ref:`common_model_id_ModelId` | None):
|
|
804
|
+
Unique identifier of the model. Active model is used if this field is not set.
|
|
805
|
+
"""
|
|
806
|
+
request = dlubal.api.rfem.application_pb2.SetDesignSettingsRequest(addon=addon, global_settings_tree_table=global_settings_tree_table, model_id=model_id)
|
|
807
|
+
self.stub.set_design_settings(request)
|