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
|
@@ -3,11 +3,16 @@
|
|
|
3
3
|
import grpc
|
|
4
4
|
import warnings
|
|
5
5
|
|
|
6
|
+
from dlubal.api.common import common_messages_pb2 as dlubal_dot_api_dot_common_dot_common__messages__pb2
|
|
6
7
|
from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
|
|
7
8
|
from dlubal.api.common import table_data_pb2 as dlubal_dot_api_dot_common_dot_table__data__pb2
|
|
8
9
|
from dlubal.api.rfem import application_pb2 as dlubal_dot_api_dot_rfem_dot_application__pb2
|
|
10
|
+
from dlubal.api.rfem import base_data_pb2 as dlubal_dot_api_dot_rfem_dot_base__data__pb2
|
|
11
|
+
from dlubal.api.rfem.mesh import mesh_settings_pb2 as dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2
|
|
12
|
+
from dlubal.api.rfem import object_id_pb2 as dlubal_dot_api_dot_rfem_dot_object__id__pb2
|
|
9
13
|
from dlubal.api.rfem.results import results_query_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2
|
|
10
14
|
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
15
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
11
16
|
|
|
12
17
|
GRPC_GENERATED_VERSION = '1.68.0'
|
|
13
18
|
GRPC_VERSION = grpc.__version__
|
|
@@ -40,12 +45,12 @@ class ApplicationStub(object):
|
|
|
40
45
|
"""
|
|
41
46
|
self.create_model = channel.unary_unary(
|
|
42
47
|
'/dlubal.api.rfem.Application/create_model',
|
|
43
|
-
request_serializer=
|
|
48
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CreateModelRequest.SerializeToString,
|
|
44
49
|
response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
45
50
|
_registered_method=True)
|
|
46
51
|
self.open_model = channel.unary_unary(
|
|
47
52
|
'/dlubal.api.rfem.Application/open_model',
|
|
48
|
-
request_serializer=
|
|
53
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OpenModelRequest.SerializeToString,
|
|
49
54
|
response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
50
55
|
_registered_method=True)
|
|
51
56
|
self.save_model = channel.unary_unary(
|
|
@@ -55,12 +60,12 @@ class ApplicationStub(object):
|
|
|
55
60
|
_registered_method=True)
|
|
56
61
|
self.close_model = channel.unary_unary(
|
|
57
62
|
'/dlubal.api.rfem.Application/close_model',
|
|
58
|
-
request_serializer=
|
|
63
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseModelRequest.SerializeToString,
|
|
59
64
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
60
65
|
_registered_method=True)
|
|
61
66
|
self.close_all_models = channel.unary_unary(
|
|
62
67
|
'/dlubal.api.rfem.Application/close_all_models',
|
|
63
|
-
request_serializer=
|
|
68
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseAllModelsRequest.SerializeToString,
|
|
64
69
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
65
70
|
_registered_method=True)
|
|
66
71
|
self.get_active_model = channel.unary_unary(
|
|
@@ -68,6 +73,11 @@ class ApplicationStub(object):
|
|
|
68
73
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
69
74
|
response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
70
75
|
_registered_method=True)
|
|
76
|
+
self.set_active_model = channel.unary_unary(
|
|
77
|
+
'/dlubal.api.rfem.Application/set_active_model',
|
|
78
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
|
|
79
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
80
|
+
_registered_method=True)
|
|
71
81
|
self.close_application = channel.unary_unary(
|
|
72
82
|
'/dlubal.api.rfem.Application/close_application',
|
|
73
83
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
@@ -76,12 +86,17 @@ class ApplicationStub(object):
|
|
|
76
86
|
self.get_model_list = channel.unary_unary(
|
|
77
87
|
'/dlubal.api.rfem.Application/get_model_list',
|
|
78
88
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
79
|
-
response_deserializer=
|
|
89
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelList.FromString,
|
|
80
90
|
_registered_method=True)
|
|
81
91
|
self.get_application_info = channel.unary_unary(
|
|
82
92
|
'/dlubal.api.rfem.Application/get_application_info',
|
|
83
93
|
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
84
|
-
response_deserializer=
|
|
94
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ApplicationInfo.FromString,
|
|
95
|
+
_registered_method=True)
|
|
96
|
+
self.get_subscription_info = channel.unary_unary(
|
|
97
|
+
'/dlubal.api.rfem.Application/get_subscription_info',
|
|
98
|
+
request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
99
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.SubscriptionInfo.FromString,
|
|
85
100
|
_registered_method=True)
|
|
86
101
|
self.close_connection = channel.unary_unary(
|
|
87
102
|
'/dlubal.api.rfem.Application/close_connection',
|
|
@@ -90,42 +105,42 @@ class ApplicationStub(object):
|
|
|
90
105
|
_registered_method=True)
|
|
91
106
|
self.get_object_impl = channel.unary_unary(
|
|
92
107
|
'/dlubal.api.rfem.Application/get_object_impl',
|
|
93
|
-
request_serializer=
|
|
94
|
-
response_deserializer=
|
|
108
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
109
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
95
110
|
_registered_method=True)
|
|
96
111
|
self.get_object_list_impl = channel.unary_unary(
|
|
97
112
|
'/dlubal.api.rfem.Application/get_object_list_impl',
|
|
98
|
-
request_serializer=
|
|
99
|
-
response_deserializer=
|
|
113
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.GetObjectListRequest.SerializeToString,
|
|
114
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
100
115
|
_registered_method=True)
|
|
101
116
|
self.create_object_impl = channel.unary_unary(
|
|
102
117
|
'/dlubal.api.rfem.Application/create_object_impl',
|
|
103
|
-
request_serializer=
|
|
118
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
104
119
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
105
120
|
_registered_method=True)
|
|
106
121
|
self.create_object_list_impl = channel.unary_unary(
|
|
107
122
|
'/dlubal.api.rfem.Application/create_object_list_impl',
|
|
108
|
-
request_serializer=
|
|
123
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
109
124
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
110
125
|
_registered_method=True)
|
|
111
126
|
self.update_object_impl = channel.unary_unary(
|
|
112
127
|
'/dlubal.api.rfem.Application/update_object_impl',
|
|
113
|
-
request_serializer=
|
|
128
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
114
129
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
115
130
|
_registered_method=True)
|
|
116
131
|
self.update_object_list_impl = channel.unary_unary(
|
|
117
132
|
'/dlubal.api.rfem.Application/update_object_list_impl',
|
|
118
|
-
request_serializer=
|
|
133
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
119
134
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
120
135
|
_registered_method=True)
|
|
121
136
|
self.delete_object_impl = channel.unary_unary(
|
|
122
137
|
'/dlubal.api.rfem.Application/delete_object_impl',
|
|
123
|
-
request_serializer=
|
|
138
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
124
139
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
125
140
|
_registered_method=True)
|
|
126
141
|
self.delete_object_list_impl = channel.unary_unary(
|
|
127
142
|
'/dlubal.api.rfem.Application/delete_object_list_impl',
|
|
128
|
-
request_serializer=
|
|
143
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
129
144
|
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
130
145
|
_registered_method=True)
|
|
131
146
|
self.delete_all_objects = channel.unary_unary(
|
|
@@ -135,14 +150,114 @@ class ApplicationStub(object):
|
|
|
135
150
|
_registered_method=True)
|
|
136
151
|
self.calculate_all = channel.unary_unary(
|
|
137
152
|
'/dlubal.api.rfem.Application/calculate_all',
|
|
138
|
-
request_serializer=
|
|
139
|
-
response_deserializer=
|
|
153
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CalculateAllRequest.SerializeToString,
|
|
154
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
155
|
+
_registered_method=True)
|
|
156
|
+
self.calculate_specific = channel.unary_unary(
|
|
157
|
+
'/dlubal.api.rfem.Application/calculate_specific',
|
|
158
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.SerializeToString,
|
|
159
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
160
|
+
_registered_method=True)
|
|
161
|
+
self.has_results = channel.unary_unary(
|
|
162
|
+
'/dlubal.api.rfem.Application/has_results',
|
|
163
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.SerializeToString,
|
|
164
|
+
response_deserializer=google_dot_protobuf_dot_wrappers__pb2.BoolValue.FromString,
|
|
140
165
|
_registered_method=True)
|
|
141
166
|
self.get_results_impl = channel.unary_unary(
|
|
142
167
|
'/dlubal.api.rfem.Application/get_results_impl',
|
|
143
168
|
request_serializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.SerializeToString,
|
|
144
169
|
response_deserializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
|
|
145
170
|
_registered_method=True)
|
|
171
|
+
self.get_result_table_impl = channel.unary_unary(
|
|
172
|
+
'/dlubal.api.rfem.Application/get_result_table_impl',
|
|
173
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetResultTableRequest.SerializeToString,
|
|
174
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
|
|
175
|
+
_registered_method=True)
|
|
176
|
+
self.plausibility_check = channel.unary_unary(
|
|
177
|
+
'/dlubal.api.rfem.Application/plausibility_check',
|
|
178
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.PlausibilityCheckRequest.SerializeToString,
|
|
179
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
180
|
+
_registered_method=True)
|
|
181
|
+
self.get_object_id_list = channel.unary_unary(
|
|
182
|
+
'/dlubal.api.rfem.Application/get_object_id_list',
|
|
183
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.SerializeToString,
|
|
184
|
+
response_deserializer=dlubal_dot_api_dot_rfem_dot_object__id__pb2.ObjectIdList.FromString,
|
|
185
|
+
_registered_method=True)
|
|
186
|
+
self.get_model_main_parameters = channel.unary_unary(
|
|
187
|
+
'/dlubal.api.rfem.Application/get_model_main_parameters',
|
|
188
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
189
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelMainParameters.FromString,
|
|
190
|
+
_registered_method=True)
|
|
191
|
+
self.generate_combinations = channel.unary_unary(
|
|
192
|
+
'/dlubal.api.rfem.Application/generate_combinations',
|
|
193
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
194
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
195
|
+
_registered_method=True)
|
|
196
|
+
self.convert_objects_impl = channel.unary_unary(
|
|
197
|
+
'/dlubal.api.rfem.Application/convert_objects_impl',
|
|
198
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ConvertObjectsRequest.SerializeToString,
|
|
199
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
200
|
+
_registered_method=True)
|
|
201
|
+
self.get_base_data = channel.unary_unary(
|
|
202
|
+
'/dlubal.api.rfem.Application/get_base_data',
|
|
203
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
204
|
+
response_deserializer=dlubal_dot_api_dot_rfem_dot_base__data__pb2.BaseData.FromString,
|
|
205
|
+
_registered_method=True)
|
|
206
|
+
self.set_base_data = channel.unary_unary(
|
|
207
|
+
'/dlubal.api.rfem.Application/set_base_data',
|
|
208
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.BaseDataRequest.SerializeToString,
|
|
209
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
210
|
+
_registered_method=True)
|
|
211
|
+
self.import_from_impl = channel.unary_unary(
|
|
212
|
+
'/dlubal.api.rfem.Application/import_from_impl',
|
|
213
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ImportRequest.SerializeToString,
|
|
214
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
215
|
+
_registered_method=True)
|
|
216
|
+
self.export_to_impl = channel.unary_unary(
|
|
217
|
+
'/dlubal.api.rfem.Application/export_to_impl',
|
|
218
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ExportRequest.SerializeToString,
|
|
219
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
220
|
+
_registered_method=True)
|
|
221
|
+
self.select_objects_impl = channel.unary_unary(
|
|
222
|
+
'/dlubal.api.rfem.Application/select_objects_impl',
|
|
223
|
+
request_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
224
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
225
|
+
_registered_method=True)
|
|
226
|
+
self.get_mesh_settings = channel.unary_unary(
|
|
227
|
+
'/dlubal.api.rfem.Application/get_mesh_settings',
|
|
228
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
229
|
+
response_deserializer=dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshSettings.FromString,
|
|
230
|
+
_registered_method=True)
|
|
231
|
+
self.set_mesh_settings = channel.unary_unary(
|
|
232
|
+
'/dlubal.api.rfem.Application/set_mesh_settings',
|
|
233
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SetMeshSettingsRequest.SerializeToString,
|
|
234
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
235
|
+
_registered_method=True)
|
|
236
|
+
self.generate_mesh = channel.unary_unary(
|
|
237
|
+
'/dlubal.api.rfem.Application/generate_mesh',
|
|
238
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GenerateMeshRequest.SerializeToString,
|
|
239
|
+
response_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
240
|
+
_registered_method=True)
|
|
241
|
+
self.get_mesh_statistics = channel.unary_unary(
|
|
242
|
+
'/dlubal.api.rfem.Application/get_mesh_statistics',
|
|
243
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
244
|
+
response_deserializer=dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshStatistics.FromString,
|
|
245
|
+
_registered_method=True)
|
|
246
|
+
self.delete_mesh = channel.unary_unary(
|
|
247
|
+
'/dlubal.api.rfem.Application/delete_mesh',
|
|
248
|
+
request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
249
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
250
|
+
_registered_method=True)
|
|
251
|
+
self.get_design_settings = channel.unary_unary(
|
|
252
|
+
'/dlubal.api.rfem.Application/get_design_settings',
|
|
253
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetDesignSettingsRequest.SerializeToString,
|
|
254
|
+
response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GlobalSettingsTreeTable.FromString,
|
|
255
|
+
_registered_method=True)
|
|
256
|
+
self.set_design_settings = channel.unary_unary(
|
|
257
|
+
'/dlubal.api.rfem.Application/set_design_settings',
|
|
258
|
+
request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SetDesignSettingsRequest.SerializeToString,
|
|
259
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
260
|
+
_registered_method=True)
|
|
146
261
|
|
|
147
262
|
|
|
148
263
|
class ApplicationServicer(object):
|
|
@@ -192,6 +307,13 @@ class ApplicationServicer(object):
|
|
|
192
307
|
context.set_details('Method not implemented!')
|
|
193
308
|
raise NotImplementedError('Method not implemented!')
|
|
194
309
|
|
|
310
|
+
def set_active_model(self, request, context):
|
|
311
|
+
"""Sets active model specified by model id
|
|
312
|
+
"""
|
|
313
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
314
|
+
context.set_details('Method not implemented!')
|
|
315
|
+
raise NotImplementedError('Method not implemented!')
|
|
316
|
+
|
|
195
317
|
def close_application(self, request, context):
|
|
196
318
|
"""Closes the whole application
|
|
197
319
|
"""
|
|
@@ -213,8 +335,15 @@ class ApplicationServicer(object):
|
|
|
213
335
|
context.set_details('Method not implemented!')
|
|
214
336
|
raise NotImplementedError('Method not implemented!')
|
|
215
337
|
|
|
338
|
+
def get_subscription_info(self, request, context):
|
|
339
|
+
"""Returns current company's API subscription information
|
|
340
|
+
"""
|
|
341
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
342
|
+
context.set_details('Method not implemented!')
|
|
343
|
+
raise NotImplementedError('Method not implemented!')
|
|
344
|
+
|
|
216
345
|
def close_connection(self, request, context):
|
|
217
|
-
"""Closes connection to
|
|
346
|
+
"""Closes connection to API server
|
|
218
347
|
"""
|
|
219
348
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
220
349
|
context.set_details('Method not implemented!')
|
|
@@ -269,13 +398,32 @@ class ApplicationServicer(object):
|
|
|
269
398
|
raise NotImplementedError('Method not implemented!')
|
|
270
399
|
|
|
271
400
|
def delete_all_objects(self, request, context):
|
|
272
|
-
"""
|
|
401
|
+
"""Deletes all objects
|
|
402
|
+
"""
|
|
273
403
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
274
404
|
context.set_details('Method not implemented!')
|
|
275
405
|
raise NotImplementedError('Method not implemented!')
|
|
276
406
|
|
|
277
407
|
def calculate_all(self, request, context):
|
|
278
|
-
"""
|
|
408
|
+
"""Performs a full calculation for all objects.
|
|
409
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
410
|
+
"""
|
|
411
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
412
|
+
context.set_details('Method not implemented!')
|
|
413
|
+
raise NotImplementedError('Method not implemented!')
|
|
414
|
+
|
|
415
|
+
def calculate_specific(self, request, context):
|
|
416
|
+
"""Performs a calculation for the specific objects.
|
|
417
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
418
|
+
"""
|
|
419
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
420
|
+
context.set_details('Method not implemented!')
|
|
421
|
+
raise NotImplementedError('Method not implemented!')
|
|
422
|
+
|
|
423
|
+
def has_results(self, request, context):
|
|
424
|
+
"""Checks whether the model contains calculation results for the selected loading, loading type, or any loading.
|
|
425
|
+
Returns True if results are available.
|
|
426
|
+
"""
|
|
279
427
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
280
428
|
context.set_details('Method not implemented!')
|
|
281
429
|
raise NotImplementedError('Method not implemented!')
|
|
@@ -286,17 +434,150 @@ class ApplicationServicer(object):
|
|
|
286
434
|
context.set_details('Method not implemented!')
|
|
287
435
|
raise NotImplementedError('Method not implemented!')
|
|
288
436
|
|
|
437
|
+
def get_result_table_impl(self, request, context):
|
|
438
|
+
"""Missing associated documentation comment in .proto file."""
|
|
439
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
440
|
+
context.set_details('Method not implemented!')
|
|
441
|
+
raise NotImplementedError('Method not implemented!')
|
|
442
|
+
|
|
443
|
+
def plausibility_check(self, request, context):
|
|
444
|
+
"""Performs validation based on the specified validation type.
|
|
445
|
+
Returns result of the operation, description of the result and possibly additional information about an error.
|
|
446
|
+
"""
|
|
447
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
448
|
+
context.set_details('Method not implemented!')
|
|
449
|
+
raise NotImplementedError('Method not implemented!')
|
|
450
|
+
|
|
451
|
+
def get_object_id_list(self, request, context):
|
|
452
|
+
"""Retrieves object ids filtered by a specific type.
|
|
453
|
+
If you want to retrieve all object ids, do not specify the object_type.
|
|
454
|
+
"""
|
|
455
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
456
|
+
context.set_details('Method not implemented!')
|
|
457
|
+
raise NotImplementedError('Method not implemented!')
|
|
458
|
+
|
|
459
|
+
def get_model_main_parameters(self, request, context):
|
|
460
|
+
"""Retrieves the main parameters of a model, including its ID, name, description,
|
|
461
|
+
comments, file path, and associated project details.
|
|
462
|
+
"""
|
|
463
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
464
|
+
context.set_details('Method not implemented!')
|
|
465
|
+
raise NotImplementedError('Method not implemented!')
|
|
466
|
+
|
|
467
|
+
def generate_combinations(self, request, context):
|
|
468
|
+
"""Generates combinations.
|
|
469
|
+
"""
|
|
470
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
471
|
+
context.set_details('Method not implemented!')
|
|
472
|
+
raise NotImplementedError('Method not implemented!')
|
|
473
|
+
|
|
474
|
+
def convert_objects_impl(self, request, context):
|
|
475
|
+
"""Converts specified objects into different objects.
|
|
476
|
+
"""
|
|
477
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
478
|
+
context.set_details('Method not implemented!')
|
|
479
|
+
raise NotImplementedError('Method not implemented!')
|
|
480
|
+
|
|
481
|
+
def get_base_data(self, request, context):
|
|
482
|
+
"""Get the base data.
|
|
483
|
+
This method returns the complete set of data stored for a particular model,
|
|
484
|
+
including add-ons, standards, general and combinations settings, etc.
|
|
485
|
+
"""
|
|
486
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
487
|
+
context.set_details('Method not implemented!')
|
|
488
|
+
raise NotImplementedError('Method not implemented!')
|
|
489
|
+
|
|
490
|
+
def set_base_data(self, request, context):
|
|
491
|
+
"""Set the base data.
|
|
492
|
+
This method updates the complete set of data for a particular model,
|
|
493
|
+
including add-ons, standards, general and combinations settings, and other parameters.
|
|
494
|
+
"""
|
|
495
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
496
|
+
context.set_details('Method not implemented!')
|
|
497
|
+
raise NotImplementedError('Method not implemented!')
|
|
498
|
+
|
|
499
|
+
def import_from_impl(self, request, context):
|
|
500
|
+
"""Imports data from the specified file.
|
|
501
|
+
"""
|
|
502
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
503
|
+
context.set_details('Method not implemented!')
|
|
504
|
+
raise NotImplementedError('Method not implemented!')
|
|
505
|
+
|
|
506
|
+
def export_to_impl(self, request, context):
|
|
507
|
+
"""Exports model into specified format.
|
|
508
|
+
"""
|
|
509
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
510
|
+
context.set_details('Method not implemented!')
|
|
511
|
+
raise NotImplementedError('Method not implemented!')
|
|
512
|
+
|
|
513
|
+
def select_objects_impl(self, request, context):
|
|
514
|
+
"""Selects objects in the model according to the provided list
|
|
515
|
+
"""
|
|
516
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
517
|
+
context.set_details('Method not implemented!')
|
|
518
|
+
raise NotImplementedError('Method not implemented!')
|
|
519
|
+
|
|
520
|
+
def get_mesh_settings(self, request, context):
|
|
521
|
+
"""Returns mesh settings.
|
|
522
|
+
"""
|
|
523
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
524
|
+
context.set_details('Method not implemented!')
|
|
525
|
+
raise NotImplementedError('Method not implemented!')
|
|
526
|
+
|
|
527
|
+
def set_mesh_settings(self, request, context):
|
|
528
|
+
"""Sets mesh settings.
|
|
529
|
+
"""
|
|
530
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
531
|
+
context.set_details('Method not implemented!')
|
|
532
|
+
raise NotImplementedError('Method not implemented!')
|
|
533
|
+
|
|
534
|
+
def generate_mesh(self, request, context):
|
|
535
|
+
"""Generates mesh.
|
|
536
|
+
Returns result of the operation.
|
|
537
|
+
"""
|
|
538
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
539
|
+
context.set_details('Method not implemented!')
|
|
540
|
+
raise NotImplementedError('Method not implemented!')
|
|
541
|
+
|
|
542
|
+
def get_mesh_statistics(self, request, context):
|
|
543
|
+
"""Returns mesh statistics.
|
|
544
|
+
"""
|
|
545
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
546
|
+
context.set_details('Method not implemented!')
|
|
547
|
+
raise NotImplementedError('Method not implemented!')
|
|
548
|
+
|
|
549
|
+
def delete_mesh(self, request, context):
|
|
550
|
+
"""Delete mesh
|
|
551
|
+
"""
|
|
552
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
553
|
+
context.set_details('Method not implemented!')
|
|
554
|
+
raise NotImplementedError('Method not implemented!')
|
|
555
|
+
|
|
556
|
+
def get_design_settings(self, request, context):
|
|
557
|
+
"""Get global settings for a design addon.
|
|
558
|
+
"""
|
|
559
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
560
|
+
context.set_details('Method not implemented!')
|
|
561
|
+
raise NotImplementedError('Method not implemented!')
|
|
562
|
+
|
|
563
|
+
def set_design_settings(self, request, context):
|
|
564
|
+
"""Set global settings for a design addon.
|
|
565
|
+
"""
|
|
566
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
567
|
+
context.set_details('Method not implemented!')
|
|
568
|
+
raise NotImplementedError('Method not implemented!')
|
|
569
|
+
|
|
289
570
|
|
|
290
571
|
def add_ApplicationServicer_to_server(servicer, server):
|
|
291
572
|
rpc_method_handlers = {
|
|
292
573
|
'create_model': grpc.unary_unary_rpc_method_handler(
|
|
293
574
|
servicer.create_model,
|
|
294
|
-
request_deserializer=
|
|
575
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CreateModelRequest.FromString,
|
|
295
576
|
response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
|
|
296
577
|
),
|
|
297
578
|
'open_model': grpc.unary_unary_rpc_method_handler(
|
|
298
579
|
servicer.open_model,
|
|
299
|
-
request_deserializer=
|
|
580
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OpenModelRequest.FromString,
|
|
300
581
|
response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
|
|
301
582
|
),
|
|
302
583
|
'save_model': grpc.unary_unary_rpc_method_handler(
|
|
@@ -306,12 +587,12 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
306
587
|
),
|
|
307
588
|
'close_model': grpc.unary_unary_rpc_method_handler(
|
|
308
589
|
servicer.close_model,
|
|
309
|
-
request_deserializer=
|
|
590
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseModelRequest.FromString,
|
|
310
591
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
311
592
|
),
|
|
312
593
|
'close_all_models': grpc.unary_unary_rpc_method_handler(
|
|
313
594
|
servicer.close_all_models,
|
|
314
|
-
request_deserializer=
|
|
595
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseAllModelsRequest.FromString,
|
|
315
596
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
316
597
|
),
|
|
317
598
|
'get_active_model': grpc.unary_unary_rpc_method_handler(
|
|
@@ -319,6 +600,11 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
319
600
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
320
601
|
response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
|
|
321
602
|
),
|
|
603
|
+
'set_active_model': grpc.unary_unary_rpc_method_handler(
|
|
604
|
+
servicer.set_active_model,
|
|
605
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
606
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
607
|
+
),
|
|
322
608
|
'close_application': grpc.unary_unary_rpc_method_handler(
|
|
323
609
|
servicer.close_application,
|
|
324
610
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
@@ -327,12 +613,17 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
327
613
|
'get_model_list': grpc.unary_unary_rpc_method_handler(
|
|
328
614
|
servicer.get_model_list,
|
|
329
615
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
330
|
-
response_serializer=
|
|
616
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelList.SerializeToString,
|
|
331
617
|
),
|
|
332
618
|
'get_application_info': grpc.unary_unary_rpc_method_handler(
|
|
333
619
|
servicer.get_application_info,
|
|
334
620
|
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
335
|
-
response_serializer=
|
|
621
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ApplicationInfo.SerializeToString,
|
|
622
|
+
),
|
|
623
|
+
'get_subscription_info': grpc.unary_unary_rpc_method_handler(
|
|
624
|
+
servicer.get_subscription_info,
|
|
625
|
+
request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
626
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.SubscriptionInfo.SerializeToString,
|
|
336
627
|
),
|
|
337
628
|
'close_connection': grpc.unary_unary_rpc_method_handler(
|
|
338
629
|
servicer.close_connection,
|
|
@@ -341,42 +632,42 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
341
632
|
),
|
|
342
633
|
'get_object_impl': grpc.unary_unary_rpc_method_handler(
|
|
343
634
|
servicer.get_object_impl,
|
|
344
|
-
request_deserializer=
|
|
345
|
-
response_serializer=
|
|
635
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
636
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
346
637
|
),
|
|
347
638
|
'get_object_list_impl': grpc.unary_unary_rpc_method_handler(
|
|
348
639
|
servicer.get_object_list_impl,
|
|
349
|
-
request_deserializer=
|
|
350
|
-
response_serializer=
|
|
640
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.GetObjectListRequest.FromString,
|
|
641
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
351
642
|
),
|
|
352
643
|
'create_object_impl': grpc.unary_unary_rpc_method_handler(
|
|
353
644
|
servicer.create_object_impl,
|
|
354
|
-
request_deserializer=
|
|
645
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
355
646
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
356
647
|
),
|
|
357
648
|
'create_object_list_impl': grpc.unary_unary_rpc_method_handler(
|
|
358
649
|
servicer.create_object_list_impl,
|
|
359
|
-
request_deserializer=
|
|
650
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
360
651
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
361
652
|
),
|
|
362
653
|
'update_object_impl': grpc.unary_unary_rpc_method_handler(
|
|
363
654
|
servicer.update_object_impl,
|
|
364
|
-
request_deserializer=
|
|
655
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
365
656
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
366
657
|
),
|
|
367
658
|
'update_object_list_impl': grpc.unary_unary_rpc_method_handler(
|
|
368
659
|
servicer.update_object_list_impl,
|
|
369
|
-
request_deserializer=
|
|
660
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
370
661
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
371
662
|
),
|
|
372
663
|
'delete_object_impl': grpc.unary_unary_rpc_method_handler(
|
|
373
664
|
servicer.delete_object_impl,
|
|
374
|
-
request_deserializer=
|
|
665
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
375
666
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
376
667
|
),
|
|
377
668
|
'delete_object_list_impl': grpc.unary_unary_rpc_method_handler(
|
|
378
669
|
servicer.delete_object_list_impl,
|
|
379
|
-
request_deserializer=
|
|
670
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
380
671
|
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
381
672
|
),
|
|
382
673
|
'delete_all_objects': grpc.unary_unary_rpc_method_handler(
|
|
@@ -386,14 +677,114 @@ def add_ApplicationServicer_to_server(servicer, server):
|
|
|
386
677
|
),
|
|
387
678
|
'calculate_all': grpc.unary_unary_rpc_method_handler(
|
|
388
679
|
servicer.calculate_all,
|
|
389
|
-
request_deserializer=
|
|
390
|
-
response_serializer=
|
|
680
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.CalculateAllRequest.FromString,
|
|
681
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
682
|
+
),
|
|
683
|
+
'calculate_specific': grpc.unary_unary_rpc_method_handler(
|
|
684
|
+
servicer.calculate_specific,
|
|
685
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.FromString,
|
|
686
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
687
|
+
),
|
|
688
|
+
'has_results': grpc.unary_unary_rpc_method_handler(
|
|
689
|
+
servicer.has_results,
|
|
690
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.FromString,
|
|
691
|
+
response_serializer=google_dot_protobuf_dot_wrappers__pb2.BoolValue.SerializeToString,
|
|
391
692
|
),
|
|
392
693
|
'get_results_impl': grpc.unary_unary_rpc_method_handler(
|
|
393
694
|
servicer.get_results_impl,
|
|
394
695
|
request_deserializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.FromString,
|
|
395
696
|
response_serializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.SerializeToString,
|
|
396
697
|
),
|
|
698
|
+
'get_result_table_impl': grpc.unary_unary_rpc_method_handler(
|
|
699
|
+
servicer.get_result_table_impl,
|
|
700
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetResultTableRequest.FromString,
|
|
701
|
+
response_serializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.SerializeToString,
|
|
702
|
+
),
|
|
703
|
+
'plausibility_check': grpc.unary_unary_rpc_method_handler(
|
|
704
|
+
servicer.plausibility_check,
|
|
705
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.PlausibilityCheckRequest.FromString,
|
|
706
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
707
|
+
),
|
|
708
|
+
'get_object_id_list': grpc.unary_unary_rpc_method_handler(
|
|
709
|
+
servicer.get_object_id_list,
|
|
710
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.FromString,
|
|
711
|
+
response_serializer=dlubal_dot_api_dot_rfem_dot_object__id__pb2.ObjectIdList.SerializeToString,
|
|
712
|
+
),
|
|
713
|
+
'get_model_main_parameters': grpc.unary_unary_rpc_method_handler(
|
|
714
|
+
servicer.get_model_main_parameters,
|
|
715
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
716
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelMainParameters.SerializeToString,
|
|
717
|
+
),
|
|
718
|
+
'generate_combinations': grpc.unary_unary_rpc_method_handler(
|
|
719
|
+
servicer.generate_combinations,
|
|
720
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
721
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
722
|
+
),
|
|
723
|
+
'convert_objects_impl': grpc.unary_unary_rpc_method_handler(
|
|
724
|
+
servicer.convert_objects_impl,
|
|
725
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ConvertObjectsRequest.FromString,
|
|
726
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
727
|
+
),
|
|
728
|
+
'get_base_data': grpc.unary_unary_rpc_method_handler(
|
|
729
|
+
servicer.get_base_data,
|
|
730
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
731
|
+
response_serializer=dlubal_dot_api_dot_rfem_dot_base__data__pb2.BaseData.SerializeToString,
|
|
732
|
+
),
|
|
733
|
+
'set_base_data': grpc.unary_unary_rpc_method_handler(
|
|
734
|
+
servicer.set_base_data,
|
|
735
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.BaseDataRequest.FromString,
|
|
736
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
737
|
+
),
|
|
738
|
+
'import_from_impl': grpc.unary_unary_rpc_method_handler(
|
|
739
|
+
servicer.import_from_impl,
|
|
740
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ImportRequest.FromString,
|
|
741
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
742
|
+
),
|
|
743
|
+
'export_to_impl': grpc.unary_unary_rpc_method_handler(
|
|
744
|
+
servicer.export_to_impl,
|
|
745
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ExportRequest.FromString,
|
|
746
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
747
|
+
),
|
|
748
|
+
'select_objects_impl': grpc.unary_unary_rpc_method_handler(
|
|
749
|
+
servicer.select_objects_impl,
|
|
750
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
751
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
752
|
+
),
|
|
753
|
+
'get_mesh_settings': grpc.unary_unary_rpc_method_handler(
|
|
754
|
+
servicer.get_mesh_settings,
|
|
755
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
756
|
+
response_serializer=dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshSettings.SerializeToString,
|
|
757
|
+
),
|
|
758
|
+
'set_mesh_settings': grpc.unary_unary_rpc_method_handler(
|
|
759
|
+
servicer.set_mesh_settings,
|
|
760
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SetMeshSettingsRequest.FromString,
|
|
761
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
762
|
+
),
|
|
763
|
+
'generate_mesh': grpc.unary_unary_rpc_method_handler(
|
|
764
|
+
servicer.generate_mesh,
|
|
765
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GenerateMeshRequest.FromString,
|
|
766
|
+
response_serializer=dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.SerializeToString,
|
|
767
|
+
),
|
|
768
|
+
'get_mesh_statistics': grpc.unary_unary_rpc_method_handler(
|
|
769
|
+
servicer.get_mesh_statistics,
|
|
770
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
771
|
+
response_serializer=dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshStatistics.SerializeToString,
|
|
772
|
+
),
|
|
773
|
+
'delete_mesh': grpc.unary_unary_rpc_method_handler(
|
|
774
|
+
servicer.delete_mesh,
|
|
775
|
+
request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
|
|
776
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
777
|
+
),
|
|
778
|
+
'get_design_settings': grpc.unary_unary_rpc_method_handler(
|
|
779
|
+
servicer.get_design_settings,
|
|
780
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetDesignSettingsRequest.FromString,
|
|
781
|
+
response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GlobalSettingsTreeTable.SerializeToString,
|
|
782
|
+
),
|
|
783
|
+
'set_design_settings': grpc.unary_unary_rpc_method_handler(
|
|
784
|
+
servicer.set_design_settings,
|
|
785
|
+
request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SetDesignSettingsRequest.FromString,
|
|
786
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
787
|
+
),
|
|
397
788
|
}
|
|
398
789
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
399
790
|
'dlubal.api.rfem.Application', rpc_method_handlers)
|
|
@@ -420,7 +811,7 @@ class Application(object):
|
|
|
420
811
|
request,
|
|
421
812
|
target,
|
|
422
813
|
'/dlubal.api.rfem.Application/create_model',
|
|
423
|
-
|
|
814
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.CreateModelRequest.SerializeToString,
|
|
424
815
|
dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
425
816
|
options,
|
|
426
817
|
channel_credentials,
|
|
@@ -447,7 +838,7 @@ class Application(object):
|
|
|
447
838
|
request,
|
|
448
839
|
target,
|
|
449
840
|
'/dlubal.api.rfem.Application/open_model',
|
|
450
|
-
|
|
841
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OpenModelRequest.SerializeToString,
|
|
451
842
|
dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
|
|
452
843
|
options,
|
|
453
844
|
channel_credentials,
|
|
@@ -501,7 +892,7 @@ class Application(object):
|
|
|
501
892
|
request,
|
|
502
893
|
target,
|
|
503
894
|
'/dlubal.api.rfem.Application/close_model',
|
|
504
|
-
|
|
895
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseModelRequest.SerializeToString,
|
|
505
896
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
506
897
|
options,
|
|
507
898
|
channel_credentials,
|
|
@@ -528,7 +919,7 @@ class Application(object):
|
|
|
528
919
|
request,
|
|
529
920
|
target,
|
|
530
921
|
'/dlubal.api.rfem.Application/close_all_models',
|
|
531
|
-
|
|
922
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.CloseAllModelsRequest.SerializeToString,
|
|
532
923
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
533
924
|
options,
|
|
534
925
|
channel_credentials,
|
|
@@ -567,6 +958,33 @@ class Application(object):
|
|
|
567
958
|
metadata,
|
|
568
959
|
_registered_method=True)
|
|
569
960
|
|
|
961
|
+
@staticmethod
|
|
962
|
+
def set_active_model(request,
|
|
963
|
+
target,
|
|
964
|
+
options=(),
|
|
965
|
+
channel_credentials=None,
|
|
966
|
+
call_credentials=None,
|
|
967
|
+
insecure=False,
|
|
968
|
+
compression=None,
|
|
969
|
+
wait_for_ready=None,
|
|
970
|
+
timeout=None,
|
|
971
|
+
metadata=None):
|
|
972
|
+
return grpc.experimental.unary_unary(
|
|
973
|
+
request,
|
|
974
|
+
target,
|
|
975
|
+
'/dlubal.api.rfem.Application/set_active_model',
|
|
976
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
|
|
977
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
978
|
+
options,
|
|
979
|
+
channel_credentials,
|
|
980
|
+
insecure,
|
|
981
|
+
call_credentials,
|
|
982
|
+
compression,
|
|
983
|
+
wait_for_ready,
|
|
984
|
+
timeout,
|
|
985
|
+
metadata,
|
|
986
|
+
_registered_method=True)
|
|
987
|
+
|
|
570
988
|
@staticmethod
|
|
571
989
|
def close_application(request,
|
|
572
990
|
target,
|
|
@@ -610,7 +1028,7 @@ class Application(object):
|
|
|
610
1028
|
target,
|
|
611
1029
|
'/dlubal.api.rfem.Application/get_model_list',
|
|
612
1030
|
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
613
|
-
|
|
1031
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelList.FromString,
|
|
614
1032
|
options,
|
|
615
1033
|
channel_credentials,
|
|
616
1034
|
insecure,
|
|
@@ -637,7 +1055,34 @@ class Application(object):
|
|
|
637
1055
|
target,
|
|
638
1056
|
'/dlubal.api.rfem.Application/get_application_info',
|
|
639
1057
|
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
640
|
-
|
|
1058
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ApplicationInfo.FromString,
|
|
1059
|
+
options,
|
|
1060
|
+
channel_credentials,
|
|
1061
|
+
insecure,
|
|
1062
|
+
call_credentials,
|
|
1063
|
+
compression,
|
|
1064
|
+
wait_for_ready,
|
|
1065
|
+
timeout,
|
|
1066
|
+
metadata,
|
|
1067
|
+
_registered_method=True)
|
|
1068
|
+
|
|
1069
|
+
@staticmethod
|
|
1070
|
+
def get_subscription_info(request,
|
|
1071
|
+
target,
|
|
1072
|
+
options=(),
|
|
1073
|
+
channel_credentials=None,
|
|
1074
|
+
call_credentials=None,
|
|
1075
|
+
insecure=False,
|
|
1076
|
+
compression=None,
|
|
1077
|
+
wait_for_ready=None,
|
|
1078
|
+
timeout=None,
|
|
1079
|
+
metadata=None):
|
|
1080
|
+
return grpc.experimental.unary_unary(
|
|
1081
|
+
request,
|
|
1082
|
+
target,
|
|
1083
|
+
'/dlubal.api.rfem.Application/get_subscription_info',
|
|
1084
|
+
google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
1085
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.SubscriptionInfo.FromString,
|
|
641
1086
|
options,
|
|
642
1087
|
channel_credentials,
|
|
643
1088
|
insecure,
|
|
@@ -690,8 +1135,8 @@ class Application(object):
|
|
|
690
1135
|
request,
|
|
691
1136
|
target,
|
|
692
1137
|
'/dlubal.api.rfem.Application/get_object_impl',
|
|
693
|
-
|
|
694
|
-
|
|
1138
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
1139
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.FromString,
|
|
695
1140
|
options,
|
|
696
1141
|
channel_credentials,
|
|
697
1142
|
insecure,
|
|
@@ -717,8 +1162,8 @@ class Application(object):
|
|
|
717
1162
|
request,
|
|
718
1163
|
target,
|
|
719
1164
|
'/dlubal.api.rfem.Application/get_object_list_impl',
|
|
720
|
-
|
|
721
|
-
|
|
1165
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.GetObjectListRequest.SerializeToString,
|
|
1166
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.FromString,
|
|
722
1167
|
options,
|
|
723
1168
|
channel_credentials,
|
|
724
1169
|
insecure,
|
|
@@ -744,7 +1189,7 @@ class Application(object):
|
|
|
744
1189
|
request,
|
|
745
1190
|
target,
|
|
746
1191
|
'/dlubal.api.rfem.Application/create_object_impl',
|
|
747
|
-
|
|
1192
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
748
1193
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
749
1194
|
options,
|
|
750
1195
|
channel_credentials,
|
|
@@ -771,7 +1216,7 @@ class Application(object):
|
|
|
771
1216
|
request,
|
|
772
1217
|
target,
|
|
773
1218
|
'/dlubal.api.rfem.Application/create_object_list_impl',
|
|
774
|
-
|
|
1219
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
775
1220
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
776
1221
|
options,
|
|
777
1222
|
channel_credentials,
|
|
@@ -798,7 +1243,7 @@ class Application(object):
|
|
|
798
1243
|
request,
|
|
799
1244
|
target,
|
|
800
1245
|
'/dlubal.api.rfem.Application/update_object_impl',
|
|
801
|
-
|
|
1246
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
802
1247
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
803
1248
|
options,
|
|
804
1249
|
channel_credentials,
|
|
@@ -825,7 +1270,7 @@ class Application(object):
|
|
|
825
1270
|
request,
|
|
826
1271
|
target,
|
|
827
1272
|
'/dlubal.api.rfem.Application/update_object_list_impl',
|
|
828
|
-
|
|
1273
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
829
1274
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
830
1275
|
options,
|
|
831
1276
|
channel_credentials,
|
|
@@ -852,7 +1297,7 @@ class Application(object):
|
|
|
852
1297
|
request,
|
|
853
1298
|
target,
|
|
854
1299
|
'/dlubal.api.rfem.Application/delete_object_impl',
|
|
855
|
-
|
|
1300
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.Object.SerializeToString,
|
|
856
1301
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
857
1302
|
options,
|
|
858
1303
|
channel_credentials,
|
|
@@ -879,7 +1324,7 @@ class Application(object):
|
|
|
879
1324
|
request,
|
|
880
1325
|
target,
|
|
881
1326
|
'/dlubal.api.rfem.Application/delete_object_list_impl',
|
|
882
|
-
|
|
1327
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
883
1328
|
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
884
1329
|
options,
|
|
885
1330
|
channel_credentials,
|
|
@@ -933,8 +1378,8 @@ class Application(object):
|
|
|
933
1378
|
request,
|
|
934
1379
|
target,
|
|
935
1380
|
'/dlubal.api.rfem.Application/calculate_all',
|
|
936
|
-
|
|
937
|
-
|
|
1381
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.CalculateAllRequest.SerializeToString,
|
|
1382
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
938
1383
|
options,
|
|
939
1384
|
channel_credentials,
|
|
940
1385
|
insecure,
|
|
@@ -946,7 +1391,7 @@ class Application(object):
|
|
|
946
1391
|
_registered_method=True)
|
|
947
1392
|
|
|
948
1393
|
@staticmethod
|
|
949
|
-
def
|
|
1394
|
+
def calculate_specific(request,
|
|
950
1395
|
target,
|
|
951
1396
|
options=(),
|
|
952
1397
|
channel_credentials=None,
|
|
@@ -959,9 +1404,549 @@ class Application(object):
|
|
|
959
1404
|
return grpc.experimental.unary_unary(
|
|
960
1405
|
request,
|
|
961
1406
|
target,
|
|
962
|
-
'/dlubal.api.rfem.Application/
|
|
963
|
-
|
|
964
|
-
|
|
1407
|
+
'/dlubal.api.rfem.Application/calculate_specific',
|
|
1408
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateSpecificRequest.SerializeToString,
|
|
1409
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
1410
|
+
options,
|
|
1411
|
+
channel_credentials,
|
|
1412
|
+
insecure,
|
|
1413
|
+
call_credentials,
|
|
1414
|
+
compression,
|
|
1415
|
+
wait_for_ready,
|
|
1416
|
+
timeout,
|
|
1417
|
+
metadata,
|
|
1418
|
+
_registered_method=True)
|
|
1419
|
+
|
|
1420
|
+
@staticmethod
|
|
1421
|
+
def has_results(request,
|
|
1422
|
+
target,
|
|
1423
|
+
options=(),
|
|
1424
|
+
channel_credentials=None,
|
|
1425
|
+
call_credentials=None,
|
|
1426
|
+
insecure=False,
|
|
1427
|
+
compression=None,
|
|
1428
|
+
wait_for_ready=None,
|
|
1429
|
+
timeout=None,
|
|
1430
|
+
metadata=None):
|
|
1431
|
+
return grpc.experimental.unary_unary(
|
|
1432
|
+
request,
|
|
1433
|
+
target,
|
|
1434
|
+
'/dlubal.api.rfem.Application/has_results',
|
|
1435
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.HasResultsRequest.SerializeToString,
|
|
1436
|
+
google_dot_protobuf_dot_wrappers__pb2.BoolValue.FromString,
|
|
1437
|
+
options,
|
|
1438
|
+
channel_credentials,
|
|
1439
|
+
insecure,
|
|
1440
|
+
call_credentials,
|
|
1441
|
+
compression,
|
|
1442
|
+
wait_for_ready,
|
|
1443
|
+
timeout,
|
|
1444
|
+
metadata,
|
|
1445
|
+
_registered_method=True)
|
|
1446
|
+
|
|
1447
|
+
@staticmethod
|
|
1448
|
+
def get_results_impl(request,
|
|
1449
|
+
target,
|
|
1450
|
+
options=(),
|
|
1451
|
+
channel_credentials=None,
|
|
1452
|
+
call_credentials=None,
|
|
1453
|
+
insecure=False,
|
|
1454
|
+
compression=None,
|
|
1455
|
+
wait_for_ready=None,
|
|
1456
|
+
timeout=None,
|
|
1457
|
+
metadata=None):
|
|
1458
|
+
return grpc.experimental.unary_unary(
|
|
1459
|
+
request,
|
|
1460
|
+
target,
|
|
1461
|
+
'/dlubal.api.rfem.Application/get_results_impl',
|
|
1462
|
+
dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.SerializeToString,
|
|
1463
|
+
dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
|
|
1464
|
+
options,
|
|
1465
|
+
channel_credentials,
|
|
1466
|
+
insecure,
|
|
1467
|
+
call_credentials,
|
|
1468
|
+
compression,
|
|
1469
|
+
wait_for_ready,
|
|
1470
|
+
timeout,
|
|
1471
|
+
metadata,
|
|
1472
|
+
_registered_method=True)
|
|
1473
|
+
|
|
1474
|
+
@staticmethod
|
|
1475
|
+
def get_result_table_impl(request,
|
|
1476
|
+
target,
|
|
1477
|
+
options=(),
|
|
1478
|
+
channel_credentials=None,
|
|
1479
|
+
call_credentials=None,
|
|
1480
|
+
insecure=False,
|
|
1481
|
+
compression=None,
|
|
1482
|
+
wait_for_ready=None,
|
|
1483
|
+
timeout=None,
|
|
1484
|
+
metadata=None):
|
|
1485
|
+
return grpc.experimental.unary_unary(
|
|
1486
|
+
request,
|
|
1487
|
+
target,
|
|
1488
|
+
'/dlubal.api.rfem.Application/get_result_table_impl',
|
|
1489
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.GetResultTableRequest.SerializeToString,
|
|
1490
|
+
dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
|
|
1491
|
+
options,
|
|
1492
|
+
channel_credentials,
|
|
1493
|
+
insecure,
|
|
1494
|
+
call_credentials,
|
|
1495
|
+
compression,
|
|
1496
|
+
wait_for_ready,
|
|
1497
|
+
timeout,
|
|
1498
|
+
metadata,
|
|
1499
|
+
_registered_method=True)
|
|
1500
|
+
|
|
1501
|
+
@staticmethod
|
|
1502
|
+
def plausibility_check(request,
|
|
1503
|
+
target,
|
|
1504
|
+
options=(),
|
|
1505
|
+
channel_credentials=None,
|
|
1506
|
+
call_credentials=None,
|
|
1507
|
+
insecure=False,
|
|
1508
|
+
compression=None,
|
|
1509
|
+
wait_for_ready=None,
|
|
1510
|
+
timeout=None,
|
|
1511
|
+
metadata=None):
|
|
1512
|
+
return grpc.experimental.unary_unary(
|
|
1513
|
+
request,
|
|
1514
|
+
target,
|
|
1515
|
+
'/dlubal.api.rfem.Application/plausibility_check',
|
|
1516
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.PlausibilityCheckRequest.SerializeToString,
|
|
1517
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
1518
|
+
options,
|
|
1519
|
+
channel_credentials,
|
|
1520
|
+
insecure,
|
|
1521
|
+
call_credentials,
|
|
1522
|
+
compression,
|
|
1523
|
+
wait_for_ready,
|
|
1524
|
+
timeout,
|
|
1525
|
+
metadata,
|
|
1526
|
+
_registered_method=True)
|
|
1527
|
+
|
|
1528
|
+
@staticmethod
|
|
1529
|
+
def get_object_id_list(request,
|
|
1530
|
+
target,
|
|
1531
|
+
options=(),
|
|
1532
|
+
channel_credentials=None,
|
|
1533
|
+
call_credentials=None,
|
|
1534
|
+
insecure=False,
|
|
1535
|
+
compression=None,
|
|
1536
|
+
wait_for_ready=None,
|
|
1537
|
+
timeout=None,
|
|
1538
|
+
metadata=None):
|
|
1539
|
+
return grpc.experimental.unary_unary(
|
|
1540
|
+
request,
|
|
1541
|
+
target,
|
|
1542
|
+
'/dlubal.api.rfem.Application/get_object_id_list',
|
|
1543
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.SerializeToString,
|
|
1544
|
+
dlubal_dot_api_dot_rfem_dot_object__id__pb2.ObjectIdList.FromString,
|
|
1545
|
+
options,
|
|
1546
|
+
channel_credentials,
|
|
1547
|
+
insecure,
|
|
1548
|
+
call_credentials,
|
|
1549
|
+
compression,
|
|
1550
|
+
wait_for_ready,
|
|
1551
|
+
timeout,
|
|
1552
|
+
metadata,
|
|
1553
|
+
_registered_method=True)
|
|
1554
|
+
|
|
1555
|
+
@staticmethod
|
|
1556
|
+
def get_model_main_parameters(request,
|
|
1557
|
+
target,
|
|
1558
|
+
options=(),
|
|
1559
|
+
channel_credentials=None,
|
|
1560
|
+
call_credentials=None,
|
|
1561
|
+
insecure=False,
|
|
1562
|
+
compression=None,
|
|
1563
|
+
wait_for_ready=None,
|
|
1564
|
+
timeout=None,
|
|
1565
|
+
metadata=None):
|
|
1566
|
+
return grpc.experimental.unary_unary(
|
|
1567
|
+
request,
|
|
1568
|
+
target,
|
|
1569
|
+
'/dlubal.api.rfem.Application/get_model_main_parameters',
|
|
1570
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1571
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ModelMainParameters.FromString,
|
|
1572
|
+
options,
|
|
1573
|
+
channel_credentials,
|
|
1574
|
+
insecure,
|
|
1575
|
+
call_credentials,
|
|
1576
|
+
compression,
|
|
1577
|
+
wait_for_ready,
|
|
1578
|
+
timeout,
|
|
1579
|
+
metadata,
|
|
1580
|
+
_registered_method=True)
|
|
1581
|
+
|
|
1582
|
+
@staticmethod
|
|
1583
|
+
def generate_combinations(request,
|
|
1584
|
+
target,
|
|
1585
|
+
options=(),
|
|
1586
|
+
channel_credentials=None,
|
|
1587
|
+
call_credentials=None,
|
|
1588
|
+
insecure=False,
|
|
1589
|
+
compression=None,
|
|
1590
|
+
wait_for_ready=None,
|
|
1591
|
+
timeout=None,
|
|
1592
|
+
metadata=None):
|
|
1593
|
+
return grpc.experimental.unary_unary(
|
|
1594
|
+
request,
|
|
1595
|
+
target,
|
|
1596
|
+
'/dlubal.api.rfem.Application/generate_combinations',
|
|
1597
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1598
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1599
|
+
options,
|
|
1600
|
+
channel_credentials,
|
|
1601
|
+
insecure,
|
|
1602
|
+
call_credentials,
|
|
1603
|
+
compression,
|
|
1604
|
+
wait_for_ready,
|
|
1605
|
+
timeout,
|
|
1606
|
+
metadata,
|
|
1607
|
+
_registered_method=True)
|
|
1608
|
+
|
|
1609
|
+
@staticmethod
|
|
1610
|
+
def convert_objects_impl(request,
|
|
1611
|
+
target,
|
|
1612
|
+
options=(),
|
|
1613
|
+
channel_credentials=None,
|
|
1614
|
+
call_credentials=None,
|
|
1615
|
+
insecure=False,
|
|
1616
|
+
compression=None,
|
|
1617
|
+
wait_for_ready=None,
|
|
1618
|
+
timeout=None,
|
|
1619
|
+
metadata=None):
|
|
1620
|
+
return grpc.experimental.unary_unary(
|
|
1621
|
+
request,
|
|
1622
|
+
target,
|
|
1623
|
+
'/dlubal.api.rfem.Application/convert_objects_impl',
|
|
1624
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ConvertObjectsRequest.SerializeToString,
|
|
1625
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1626
|
+
options,
|
|
1627
|
+
channel_credentials,
|
|
1628
|
+
insecure,
|
|
1629
|
+
call_credentials,
|
|
1630
|
+
compression,
|
|
1631
|
+
wait_for_ready,
|
|
1632
|
+
timeout,
|
|
1633
|
+
metadata,
|
|
1634
|
+
_registered_method=True)
|
|
1635
|
+
|
|
1636
|
+
@staticmethod
|
|
1637
|
+
def get_base_data(request,
|
|
1638
|
+
target,
|
|
1639
|
+
options=(),
|
|
1640
|
+
channel_credentials=None,
|
|
1641
|
+
call_credentials=None,
|
|
1642
|
+
insecure=False,
|
|
1643
|
+
compression=None,
|
|
1644
|
+
wait_for_ready=None,
|
|
1645
|
+
timeout=None,
|
|
1646
|
+
metadata=None):
|
|
1647
|
+
return grpc.experimental.unary_unary(
|
|
1648
|
+
request,
|
|
1649
|
+
target,
|
|
1650
|
+
'/dlubal.api.rfem.Application/get_base_data',
|
|
1651
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1652
|
+
dlubal_dot_api_dot_rfem_dot_base__data__pb2.BaseData.FromString,
|
|
1653
|
+
options,
|
|
1654
|
+
channel_credentials,
|
|
1655
|
+
insecure,
|
|
1656
|
+
call_credentials,
|
|
1657
|
+
compression,
|
|
1658
|
+
wait_for_ready,
|
|
1659
|
+
timeout,
|
|
1660
|
+
metadata,
|
|
1661
|
+
_registered_method=True)
|
|
1662
|
+
|
|
1663
|
+
@staticmethod
|
|
1664
|
+
def set_base_data(request,
|
|
1665
|
+
target,
|
|
1666
|
+
options=(),
|
|
1667
|
+
channel_credentials=None,
|
|
1668
|
+
call_credentials=None,
|
|
1669
|
+
insecure=False,
|
|
1670
|
+
compression=None,
|
|
1671
|
+
wait_for_ready=None,
|
|
1672
|
+
timeout=None,
|
|
1673
|
+
metadata=None):
|
|
1674
|
+
return grpc.experimental.unary_unary(
|
|
1675
|
+
request,
|
|
1676
|
+
target,
|
|
1677
|
+
'/dlubal.api.rfem.Application/set_base_data',
|
|
1678
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.BaseDataRequest.SerializeToString,
|
|
1679
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1680
|
+
options,
|
|
1681
|
+
channel_credentials,
|
|
1682
|
+
insecure,
|
|
1683
|
+
call_credentials,
|
|
1684
|
+
compression,
|
|
1685
|
+
wait_for_ready,
|
|
1686
|
+
timeout,
|
|
1687
|
+
metadata,
|
|
1688
|
+
_registered_method=True)
|
|
1689
|
+
|
|
1690
|
+
@staticmethod
|
|
1691
|
+
def import_from_impl(request,
|
|
1692
|
+
target,
|
|
1693
|
+
options=(),
|
|
1694
|
+
channel_credentials=None,
|
|
1695
|
+
call_credentials=None,
|
|
1696
|
+
insecure=False,
|
|
1697
|
+
compression=None,
|
|
1698
|
+
wait_for_ready=None,
|
|
1699
|
+
timeout=None,
|
|
1700
|
+
metadata=None):
|
|
1701
|
+
return grpc.experimental.unary_unary(
|
|
1702
|
+
request,
|
|
1703
|
+
target,
|
|
1704
|
+
'/dlubal.api.rfem.Application/import_from_impl',
|
|
1705
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ImportRequest.SerializeToString,
|
|
1706
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1707
|
+
options,
|
|
1708
|
+
channel_credentials,
|
|
1709
|
+
insecure,
|
|
1710
|
+
call_credentials,
|
|
1711
|
+
compression,
|
|
1712
|
+
wait_for_ready,
|
|
1713
|
+
timeout,
|
|
1714
|
+
metadata,
|
|
1715
|
+
_registered_method=True)
|
|
1716
|
+
|
|
1717
|
+
@staticmethod
|
|
1718
|
+
def export_to_impl(request,
|
|
1719
|
+
target,
|
|
1720
|
+
options=(),
|
|
1721
|
+
channel_credentials=None,
|
|
1722
|
+
call_credentials=None,
|
|
1723
|
+
insecure=False,
|
|
1724
|
+
compression=None,
|
|
1725
|
+
wait_for_ready=None,
|
|
1726
|
+
timeout=None,
|
|
1727
|
+
metadata=None):
|
|
1728
|
+
return grpc.experimental.unary_unary(
|
|
1729
|
+
request,
|
|
1730
|
+
target,
|
|
1731
|
+
'/dlubal.api.rfem.Application/export_to_impl',
|
|
1732
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ExportRequest.SerializeToString,
|
|
1733
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1734
|
+
options,
|
|
1735
|
+
channel_credentials,
|
|
1736
|
+
insecure,
|
|
1737
|
+
call_credentials,
|
|
1738
|
+
compression,
|
|
1739
|
+
wait_for_ready,
|
|
1740
|
+
timeout,
|
|
1741
|
+
metadata,
|
|
1742
|
+
_registered_method=True)
|
|
1743
|
+
|
|
1744
|
+
@staticmethod
|
|
1745
|
+
def select_objects_impl(request,
|
|
1746
|
+
target,
|
|
1747
|
+
options=(),
|
|
1748
|
+
channel_credentials=None,
|
|
1749
|
+
call_credentials=None,
|
|
1750
|
+
insecure=False,
|
|
1751
|
+
compression=None,
|
|
1752
|
+
wait_for_ready=None,
|
|
1753
|
+
timeout=None,
|
|
1754
|
+
metadata=None):
|
|
1755
|
+
return grpc.experimental.unary_unary(
|
|
1756
|
+
request,
|
|
1757
|
+
target,
|
|
1758
|
+
'/dlubal.api.rfem.Application/select_objects_impl',
|
|
1759
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.ObjectList.SerializeToString,
|
|
1760
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1761
|
+
options,
|
|
1762
|
+
channel_credentials,
|
|
1763
|
+
insecure,
|
|
1764
|
+
call_credentials,
|
|
1765
|
+
compression,
|
|
1766
|
+
wait_for_ready,
|
|
1767
|
+
timeout,
|
|
1768
|
+
metadata,
|
|
1769
|
+
_registered_method=True)
|
|
1770
|
+
|
|
1771
|
+
@staticmethod
|
|
1772
|
+
def get_mesh_settings(request,
|
|
1773
|
+
target,
|
|
1774
|
+
options=(),
|
|
1775
|
+
channel_credentials=None,
|
|
1776
|
+
call_credentials=None,
|
|
1777
|
+
insecure=False,
|
|
1778
|
+
compression=None,
|
|
1779
|
+
wait_for_ready=None,
|
|
1780
|
+
timeout=None,
|
|
1781
|
+
metadata=None):
|
|
1782
|
+
return grpc.experimental.unary_unary(
|
|
1783
|
+
request,
|
|
1784
|
+
target,
|
|
1785
|
+
'/dlubal.api.rfem.Application/get_mesh_settings',
|
|
1786
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1787
|
+
dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshSettings.FromString,
|
|
1788
|
+
options,
|
|
1789
|
+
channel_credentials,
|
|
1790
|
+
insecure,
|
|
1791
|
+
call_credentials,
|
|
1792
|
+
compression,
|
|
1793
|
+
wait_for_ready,
|
|
1794
|
+
timeout,
|
|
1795
|
+
metadata,
|
|
1796
|
+
_registered_method=True)
|
|
1797
|
+
|
|
1798
|
+
@staticmethod
|
|
1799
|
+
def set_mesh_settings(request,
|
|
1800
|
+
target,
|
|
1801
|
+
options=(),
|
|
1802
|
+
channel_credentials=None,
|
|
1803
|
+
call_credentials=None,
|
|
1804
|
+
insecure=False,
|
|
1805
|
+
compression=None,
|
|
1806
|
+
wait_for_ready=None,
|
|
1807
|
+
timeout=None,
|
|
1808
|
+
metadata=None):
|
|
1809
|
+
return grpc.experimental.unary_unary(
|
|
1810
|
+
request,
|
|
1811
|
+
target,
|
|
1812
|
+
'/dlubal.api.rfem.Application/set_mesh_settings',
|
|
1813
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.SetMeshSettingsRequest.SerializeToString,
|
|
1814
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1815
|
+
options,
|
|
1816
|
+
channel_credentials,
|
|
1817
|
+
insecure,
|
|
1818
|
+
call_credentials,
|
|
1819
|
+
compression,
|
|
1820
|
+
wait_for_ready,
|
|
1821
|
+
timeout,
|
|
1822
|
+
metadata,
|
|
1823
|
+
_registered_method=True)
|
|
1824
|
+
|
|
1825
|
+
@staticmethod
|
|
1826
|
+
def generate_mesh(request,
|
|
1827
|
+
target,
|
|
1828
|
+
options=(),
|
|
1829
|
+
channel_credentials=None,
|
|
1830
|
+
call_credentials=None,
|
|
1831
|
+
insecure=False,
|
|
1832
|
+
compression=None,
|
|
1833
|
+
wait_for_ready=None,
|
|
1834
|
+
timeout=None,
|
|
1835
|
+
metadata=None):
|
|
1836
|
+
return grpc.experimental.unary_unary(
|
|
1837
|
+
request,
|
|
1838
|
+
target,
|
|
1839
|
+
'/dlubal.api.rfem.Application/generate_mesh',
|
|
1840
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.GenerateMeshRequest.SerializeToString,
|
|
1841
|
+
dlubal_dot_api_dot_common_dot_common__messages__pb2.OperationResult.FromString,
|
|
1842
|
+
options,
|
|
1843
|
+
channel_credentials,
|
|
1844
|
+
insecure,
|
|
1845
|
+
call_credentials,
|
|
1846
|
+
compression,
|
|
1847
|
+
wait_for_ready,
|
|
1848
|
+
timeout,
|
|
1849
|
+
metadata,
|
|
1850
|
+
_registered_method=True)
|
|
1851
|
+
|
|
1852
|
+
@staticmethod
|
|
1853
|
+
def get_mesh_statistics(request,
|
|
1854
|
+
target,
|
|
1855
|
+
options=(),
|
|
1856
|
+
channel_credentials=None,
|
|
1857
|
+
call_credentials=None,
|
|
1858
|
+
insecure=False,
|
|
1859
|
+
compression=None,
|
|
1860
|
+
wait_for_ready=None,
|
|
1861
|
+
timeout=None,
|
|
1862
|
+
metadata=None):
|
|
1863
|
+
return grpc.experimental.unary_unary(
|
|
1864
|
+
request,
|
|
1865
|
+
target,
|
|
1866
|
+
'/dlubal.api.rfem.Application/get_mesh_statistics',
|
|
1867
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1868
|
+
dlubal_dot_api_dot_rfem_dot_mesh_dot_mesh__settings__pb2.MeshStatistics.FromString,
|
|
1869
|
+
options,
|
|
1870
|
+
channel_credentials,
|
|
1871
|
+
insecure,
|
|
1872
|
+
call_credentials,
|
|
1873
|
+
compression,
|
|
1874
|
+
wait_for_ready,
|
|
1875
|
+
timeout,
|
|
1876
|
+
metadata,
|
|
1877
|
+
_registered_method=True)
|
|
1878
|
+
|
|
1879
|
+
@staticmethod
|
|
1880
|
+
def delete_mesh(request,
|
|
1881
|
+
target,
|
|
1882
|
+
options=(),
|
|
1883
|
+
channel_credentials=None,
|
|
1884
|
+
call_credentials=None,
|
|
1885
|
+
insecure=False,
|
|
1886
|
+
compression=None,
|
|
1887
|
+
wait_for_ready=None,
|
|
1888
|
+
timeout=None,
|
|
1889
|
+
metadata=None):
|
|
1890
|
+
return grpc.experimental.unary_unary(
|
|
1891
|
+
request,
|
|
1892
|
+
target,
|
|
1893
|
+
'/dlubal.api.rfem.Application/delete_mesh',
|
|
1894
|
+
dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
|
|
1895
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
1896
|
+
options,
|
|
1897
|
+
channel_credentials,
|
|
1898
|
+
insecure,
|
|
1899
|
+
call_credentials,
|
|
1900
|
+
compression,
|
|
1901
|
+
wait_for_ready,
|
|
1902
|
+
timeout,
|
|
1903
|
+
metadata,
|
|
1904
|
+
_registered_method=True)
|
|
1905
|
+
|
|
1906
|
+
@staticmethod
|
|
1907
|
+
def get_design_settings(request,
|
|
1908
|
+
target,
|
|
1909
|
+
options=(),
|
|
1910
|
+
channel_credentials=None,
|
|
1911
|
+
call_credentials=None,
|
|
1912
|
+
insecure=False,
|
|
1913
|
+
compression=None,
|
|
1914
|
+
wait_for_ready=None,
|
|
1915
|
+
timeout=None,
|
|
1916
|
+
metadata=None):
|
|
1917
|
+
return grpc.experimental.unary_unary(
|
|
1918
|
+
request,
|
|
1919
|
+
target,
|
|
1920
|
+
'/dlubal.api.rfem.Application/get_design_settings',
|
|
1921
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.GetDesignSettingsRequest.SerializeToString,
|
|
1922
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.GlobalSettingsTreeTable.FromString,
|
|
1923
|
+
options,
|
|
1924
|
+
channel_credentials,
|
|
1925
|
+
insecure,
|
|
1926
|
+
call_credentials,
|
|
1927
|
+
compression,
|
|
1928
|
+
wait_for_ready,
|
|
1929
|
+
timeout,
|
|
1930
|
+
metadata,
|
|
1931
|
+
_registered_method=True)
|
|
1932
|
+
|
|
1933
|
+
@staticmethod
|
|
1934
|
+
def set_design_settings(request,
|
|
1935
|
+
target,
|
|
1936
|
+
options=(),
|
|
1937
|
+
channel_credentials=None,
|
|
1938
|
+
call_credentials=None,
|
|
1939
|
+
insecure=False,
|
|
1940
|
+
compression=None,
|
|
1941
|
+
wait_for_ready=None,
|
|
1942
|
+
timeout=None,
|
|
1943
|
+
metadata=None):
|
|
1944
|
+
return grpc.experimental.unary_unary(
|
|
1945
|
+
request,
|
|
1946
|
+
target,
|
|
1947
|
+
'/dlubal.api.rfem.Application/set_design_settings',
|
|
1948
|
+
dlubal_dot_api_dot_rfem_dot_application__pb2.SetDesignSettingsRequest.SerializeToString,
|
|
1949
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
965
1950
|
options,
|
|
966
1951
|
channel_credentials,
|
|
967
1952
|
insecure,
|