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
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rstab/load_wizards/wind_profile.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rstab/load_wizards/wind_profile.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0dlubal/api/rstab/load_wizards/wind_profile.proto\x12\x1d\x64lubal.api.rstab.load_wizards\"\xfc\\\n\x0bWindProfile\x12\x42\n\x04type\x18\x01 \x01(\x0e\x32/.dlubal.api.rstab.load_wizards.WindProfile.TypeH\x00\x88\x01\x01\x12\x0f\n\x02no\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x8f\x01\n-user_defined_inlet_turbulence_definition_type\x18\x05 \x01(\x0e\x32S.dlubal.api.rstab.load_wizards.WindProfile.UserDefinedInletTurbulenceDefinitionTypeH\x04\x88\x01\x01\x12.\n!user_defined_wind_profile_density\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x33\n&user_defined_wind_profile_step_enabled\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\x32\n%user_defined_wind_profile_period_step\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12-\n user_defined_wind_profile_sorted\x18\t \x01(\x08H\x08\x88\x01\x01\x12n\n\x19user_defined_wind_profile\x18\n \x01(\x0b\x32\x46.dlubal.api.rstab.load_wizards.WindProfile.UserDefinedWindProfileTableH\t\x88\x01\x01\x12@\n3user_defined_wind_profile_uniform_intensity_enabled\x18\x0b \x01(\x08H\n\x88\x01\x01\x12\x38\n+user_defined_wind_profile_uniform_intensity\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12\x46\n9user_defined_wind_profile_turbulence_length_scale_enabled\x18\r \x01(\x08H\x0c\x88\x01\x01\x12>\n1user_defined_wind_profile_turbulence_length_scale\x18\x0e \x01(\x01H\r\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0f \x01(\tH\x0e\x88\x01\x01\x12K\n\tload_zone\x18\x10 \x01(\x0e\x32\x33.dlubal.api.rstab.load_wizards.WindProfile.LoadZoneH\x0f\x88\x01\x01\x12W\n\x0f\x64\x65\x66inition_type\x18\x11 \x01(\x0e\x32\x39.dlubal.api.rstab.load_wizards.WindProfile.DefinitionTypeH\x10\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\x11\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x12\x88\x01\x01\x1aq\n\x1bUserDefinedWindProfileTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rstab.load_wizards.WindProfile.UserDefinedWindProfileRow\x1a\xaf\x03\n\x19UserDefinedWindProfileRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06height\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08velocity\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12!\n\x14turbulence_intensity\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12%\n\x18turbulent_kinetic_energy\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\'\n\x1aturbulent_dissipation_rate\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12&\n\x19specific_dissipation_rate\x18\x08 \x01(\x01H\x07\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\t\n\x07_heightB\x0b\n\t_velocityB\x17\n\x15_turbulence_intensityB\x1b\n\x19_turbulent_kinetic_energyB\x1d\n\x1b_turbulent_dissipation_rateB\x1c\n\x1a_specific_dissipation_rate\"O\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x1e\n\x1aTYPE_ACCORDING_TO_STANDARD\x10\x02\x12\x15\n\x11TYPE_USER_DEFINED\x10\x01\"\xdb\x01\n(UserDefinedInletTurbulenceDefinitionType\x12\x37\n3USER_DEFINED_INLET_TURBULENCE_DEFINITION_TYPE_I_TUL\x10\x00\x12;\n7USER_DEFINED_INLET_TURBULENCE_DEFINITION_TYPE_K_EPSILON\x10\x01\x12\x39\n5USER_DEFINED_INLET_TURBULENCE_DEFINITION_TYPE_K_OMEGA\x10\x02\"\xcfG\n\x08LoadZone\x12\x15\n\x11LOAD_ZONE_UNKNOWN\x10\x00\x12\x19\n\x15LOAD_ZONE_NOT_DEFINED\x10\n\x12 \n\x1bLOAD_ZONE_TYPE_0_18_TO_0_38\x10\xbf\x01\x12\x17\n\x12LOAD_ZONE_TYPE_0_2\x10\xff\x01\x12\x17\n\x12LOAD_ZONE_TYPE_0_3\x10\xfd\x01\x12 \n\x1bLOAD_ZONE_TYPE_0_39_TO_0_48\x10\xc0\x01\x12\x19\n\x14LOAD_ZONE_TYPE_0_3_S\x10\xb0\x02\x12\x17\n\x12LOAD_ZONE_TYPE_0_4\x10\xa0\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_0_49_TO_0_6\x10\xc1\x01\x12\x17\n\x12LOAD_ZONE_TYPE_0_5\x10\xa1\x01\x12\x17\n\x12LOAD_ZONE_TYPE_0_6\x10\xa2\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_0_61_TO_0_7\x10\xc2\x01\x12\x18\n\x13LOAD_ZONE_TYPE_0_65\x10\xea\x02\x12\x16\n\x12LOAD_ZONE_TYPE_0_7\x10l\x12\x1f\n\x1aLOAD_ZONE_TYPE_0_71_TO_0_8\x10\xc3\x01\x12\x18\n\x13LOAD_ZONE_TYPE_0_75\x10\x84\x03\x12\x17\n\x12LOAD_ZONE_TYPE_0_8\x10\xfe\x01\x12\x16\n\x12LOAD_ZONE_TYPE_0_9\x10.\x12\x19\n\x14LOAD_ZONE_TYPE_0_9_S\x10\xb1\x02\x12\x17\n\x12LOAD_ZONE_TYPE_0_M\x10\x91\x01\x12\x14\n\x10LOAD_ZONE_TYPE_1\x10\x13\x12\x15\n\x11LOAD_ZONE_TYPE_10\x10\x45\x12\x16\n\x12LOAD_ZONE_TYPE_100\x10Q\x12\x17\n\x12LOAD_ZONE_TYPE_110\x10\x87\x03\x12\x17\n\x12LOAD_ZONE_TYPE_120\x10\x8d\x02\x12\x17\n\x12LOAD_ZONE_TYPE_130\x10\x8e\x02\x12\x17\n\x12LOAD_ZONE_TYPE_140\x10\x8f\x02\x12\x15\n\x11LOAD_ZONE_TYPE_15\x10\x46\x12\x17\n\x12LOAD_ZONE_TYPE_150\x10\x90\x02\x12\x17\n\x12LOAD_ZONE_TYPE_152\x10\x84\x02\x12\x17\n\x12LOAD_ZONE_TYPE_155\x10\x85\x02\x12\x17\n\x12LOAD_ZONE_TYPE_160\x10\x91\x02\x12\x17\n\x12LOAD_ZONE_TYPE_165\x10\x86\x02\x12\x17\n\x12LOAD_ZONE_TYPE_166\x10\x87\x02\x12\x17\n\x12LOAD_ZONE_TYPE_170\x10\x88\x02\x12\x17\n\x12LOAD_ZONE_TYPE_175\x10\x89\x02\x12\x17\n\x12LOAD_ZONE_TYPE_180\x10\x8a\x02\x12\x17\n\x12LOAD_ZONE_TYPE_184\x10\x8b\x02\x12\x16\n\x11LOAD_ZONE_TYPE_19\x10\xdd\x01\x12\x17\n\x12LOAD_ZONE_TYPE_190\x10\x8c\x02\x12\x17\n\x12LOAD_ZONE_TYPE_195\x10\xc3\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_1_0_COMMA\x10\x98\x01\x12\x17\n\x12LOAD_ZONE_TYPE_1_1\x10\xdf\x01\x12\x1e\n\x19LOAD_ZONE_TYPE_1_1_TO_2_7\x10\xe1\x01\x12\x16\n\x12LOAD_ZONE_TYPE_1_2\x10/\x12\x17\n\x13LOAD_ZONE_TYPE_1_25\x10j\x12\x17\n\x12LOAD_ZONE_TYPE_1_3\x10\xe0\x01\x12\x1e\n\x19LOAD_ZONE_TYPE_1_4_TO_3_3\x10\xe2\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_1_5_COMMA\x10\x99\x01\x12\x16\n\x12LOAD_ZONE_TYPE_1_8\x10\x31\x12\x16\n\x12LOAD_ZONE_TYPE_1_A\x10\x1a\x12\x1d\n\x19LOAD_ZONE_TYPE_1_ASTERISK\x10\x19\x12\x1f\n\x1bLOAD_ZONE_TYPE_1_A_ASTERISK\x10\x1b\x12\x16\n\x12LOAD_ZONE_TYPE_1_B\x10m\x12\x1a\n\x15LOAD_ZONE_TYPE_1_TO_2\x10\xa3\x01\x12\x16\n\x12LOAD_ZONE_TYPE_1_V\x10n\x12\x14\n\x10LOAD_ZONE_TYPE_2\x10\x14\x12\x15\n\x11LOAD_ZONE_TYPE_20\x10G\x12\x17\n\x12LOAD_ZONE_TYPE_200\x10\x92\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_20_9_LESS\x10\xb2\x01\x12\x16\n\x11LOAD_ZONE_TYPE_21\x10\xac\x01\x12\x17\n\x12LOAD_ZONE_TYPE_210\x10\x93\x02\x12\x18\n\x13LOAD_ZONE_TYPE_21_5\x10\xe6\x01\x12\x16\n\x11LOAD_ZONE_TYPE_22\x10\xb0\x01\x12\x17\n\x12LOAD_ZONE_TYPE_220\x10\x94\x02\x12\x18\n\x13LOAD_ZONE_TYPE_22_5\x10\xe7\x01\x12\x16\n\x11LOAD_ZONE_TYPE_23\x10\xb1\x01\x12\x17\n\x12LOAD_ZONE_TYPE_230\x10\x95\x02\x12\x18\n\x13LOAD_ZONE_TYPE_23_5\x10\xe8\x01\x12\x18\n\x13LOAD_ZONE_TYPE_23_6\x10\xc4\x01\x12\x16\n\x11LOAD_ZONE_TYPE_24\x10\xa9\x01\x12\x17\n\x12LOAD_ZONE_TYPE_240\x10\x96\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_24_2_LESS\x10\xb3\x01\x12\x18\n\x13LOAD_ZONE_TYPE_24_5\x10\xe9\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_24_ASTERISK\x10\xc8\x02\x12\x15\n\x11LOAD_ZONE_TYPE_25\x10H\x12\x17\n\x12LOAD_ZONE_TYPE_250\x10\x97\x02\x12\x18\n\x13LOAD_ZONE_TYPE_25_5\x10\xea\x01\x12\x16\n\x11LOAD_ZONE_TYPE_26\x10\xaa\x01\x12\x17\n\x12LOAD_ZONE_TYPE_260\x10\x98\x02\x12\x18\n\x13LOAD_ZONE_TYPE_26_5\x10\xeb\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_26_ASTERISK\x10\xc9\x02\x12\x16\n\x11LOAD_ZONE_TYPE_27\x10\xad\x01\x12\x17\n\x12LOAD_ZONE_TYPE_270\x10\xf8\x02\x12\x18\n\x13LOAD_ZONE_TYPE_27_5\x10\xec\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_27_5_LESS\x10\xb4\x01\x12\x16\n\x11LOAD_ZONE_TYPE_28\x10\xbd\x01\x12\x17\n\x12LOAD_ZONE_TYPE_280\x10\xf9\x02\x12\x18\n\x13LOAD_ZONE_TYPE_28_5\x10\xed\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_28_ASTERISK\x10\xca\x02\x12\x16\n\x11LOAD_ZONE_TYPE_29\x10\xde\x01\x12\x17\n\x12LOAD_ZONE_TYPE_290\x10\xfa\x02\x12\x18\n\x13LOAD_ZONE_TYPE_29_5\x10\xee\x01\x12\x1a\n\x16LOAD_ZONE_TYPE_2_0_2_5\x10T\x12\x1d\n\x18LOAD_ZONE_TYPE_2_0_COMMA\x10\x9a\x01\x12\x1b\n\x17LOAD_ZONE_TYPE_2_5_2_75\x10V\x12\x1a\n\x16LOAD_ZONE_TYPE_2_5_3_0\x10X\x12\x1d\n\x18LOAD_ZONE_TYPE_2_5_COMMA\x10\x9b\x01\x12\x1b\n\x17LOAD_ZONE_TYPE_2_75_3_0\x10Y\x12\x1b\n\x17LOAD_ZONE_TYPE_2_75_3_5\x10[\x12\x16\n\x12LOAD_ZONE_TYPE_2_A\x10\x1c\x12\x1d\n\x19LOAD_ZONE_TYPE_2_ASTERISK\x10\x15\x12\x1f\n\x1bLOAD_ZONE_TYPE_2_ASTERISK_2\x10(\x12\x1f\n\x1bLOAD_ZONE_TYPE_2_ASTERISK_3\x10)\x12\x16\n\x12LOAD_ZONE_TYPE_2_B\x10o\x12\x16\n\x12LOAD_ZONE_TYPE_2_V\x10p\x12\x14\n\x10LOAD_ZONE_TYPE_3\x10\x16\x12\x15\n\x11LOAD_ZONE_TYPE_30\x10I\x12\x17\n\x12LOAD_ZONE_TYPE_300\x10\xfb\x02\x12\x18\n\x13LOAD_ZONE_TYPE_30_5\x10\xef\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_30_8_LESS\x10\xb5\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_30_ASTERISK\x10\xcb\x02\x12\x16\n\x11LOAD_ZONE_TYPE_31\x10\xe4\x01\x12\x17\n\x12LOAD_ZONE_TYPE_310\x10\xfc\x02\x12\x16\n\x11LOAD_ZONE_TYPE_32\x10\xbe\x01\x12\x17\n\x12LOAD_ZONE_TYPE_320\x10\xfd\x02\x12\x18\n\x13LOAD_ZONE_TYPE_32_5\x10\xd2\x02\x12\x1f\n\x1aLOAD_ZONE_TYPE_32_ASTERISK\x10\xcc\x02\x12\x16\n\x11LOAD_ZONE_TYPE_33\x10\xab\x01\x12\x17\n\x12LOAD_ZONE_TYPE_330\x10\xfe\x02\x12\x16\n\x11LOAD_ZONE_TYPE_34\x10\xc7\x02\x12\x17\n\x12LOAD_ZONE_TYPE_340\x10\xff\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_34_1_LESS\x10\xb6\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_34_ASTERISK\x10\xcd\x02\x12\x15\n\x11LOAD_ZONE_TYPE_35\x10J\x12\x16\n\x11LOAD_ZONE_TYPE_36\x10\xf9\x01\x12\x18\n\x13LOAD_ZONE_TYPE_36_0\x10\xe3\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_36_ASTERISK\x10\xce\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_37_4_LESS\x10\xb7\x01\x12\x18\n\x13LOAD_ZONE_TYPE_37_5\x10\xd8\x02\x12\x16\n\x11LOAD_ZONE_TYPE_38\x10\x9c\x02\x12\x1f\n\x1aLOAD_ZONE_TYPE_38_ASTERISK\x10\xcf\x02\x12\x16\n\x11LOAD_ZONE_TYPE_39\x10\xfb\x01\x12\x1a\n\x16LOAD_ZONE_TYPE_3_0_3_5\x10\\\x12\x1d\n\x18LOAD_ZONE_TYPE_3_0_COMMA\x10\x9c\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_3_5_COMMA\x10\x9d\x01\x12\x16\n\x12LOAD_ZONE_TYPE_3_A\x10\x1e\x12\x1d\n\x19LOAD_ZONE_TYPE_3_ASTERISK\x10\x1d\x12\x1e\n\x1aLOAD_ZONE_TYPE_3_A_GREATER\x10\x1f\x12\x14\n\x10LOAD_ZONE_TYPE_4\x10\x17\x12\x15\n\x11LOAD_ZONE_TYPE_40\x10K\x12\x1d\n\x18LOAD_ZONE_TYPE_40_7_LESS\x10\xb8\x01\x12!\n\x1cLOAD_ZONE_TYPE_41_4_ASTERISK\x10\xed\x02\x12\x16\n\x11LOAD_ZONE_TYPE_42\x10\x9d\x02\x12\x18\n\x13LOAD_ZONE_TYPE_42_5\x10\xd4\x02\x12\x16\n\x11LOAD_ZONE_TYPE_44\x10\xfa\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_44_0_LESS\x10\xb9\x01\x12\x18\n\x13LOAD_ZONE_TYPE_44_7\x10\xee\x02\x12\x16\n\x11LOAD_ZONE_TYPE_45\x10\xd1\x01\x12\x16\n\x11LOAD_ZONE_TYPE_46\x10\x9e\x02\x12\x16\n\x11LOAD_ZONE_TYPE_47\x10\xfc\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_47_3_LESS\x10\xba\x01\x12\x18\n\x13LOAD_ZONE_TYPE_47_5\x10\xd5\x02\x12\x16\n\x11LOAD_ZONE_TYPE_48\x10\xd2\x01\x12\x1d\n\x18LOAD_ZONE_TYPE_4_5_COMMA\x10\x9e\x01\x12\x1e\n\x19LOAD_ZONE_TYPE_4_ASTERISK\x10\xeb\x02\x12\x14\n\x10LOAD_ZONE_TYPE_5\x10-\x12\x15\n\x11LOAD_ZONE_TYPE_50\x10L\x12\x18\n\x13LOAD_ZONE_TYPE_50_6\x10\xef\x02\x12!\n\x1cLOAD_ZONE_TYPE_50_6_ASTERISK\x10\xf0\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_50_6_LESS\x10\xbb\x01\x12\x16\n\x11LOAD_ZONE_TYPE_52\x10\x9f\x02\x12\x16\n\x11LOAD_ZONE_TYPE_54\x10\xa0\x02\x12\x16\n\x11LOAD_ZONE_TYPE_55\x10\xf8\x01\x12\x16\n\x11LOAD_ZONE_TYPE_56\x10\xa1\x02\x12\x18\n\x13LOAD_ZONE_TYPE_56_7\x10\xf1\x02\x12\x16\n\x11LOAD_ZONE_TYPE_57\x10\xd6\x02\x12\x16\n\x11LOAD_ZONE_TYPE_58\x10\xa2\x02\x12\x1d\n\x18LOAD_ZONE_TYPE_5_5_COMMA\x10\x9f\x01\x12\x1e\n\x19LOAD_ZONE_TYPE_5_ASTERISK\x10\xec\x02\x12\x14\n\x10LOAD_ZONE_TYPE_6\x10w\x12\x15\n\x11LOAD_ZONE_TYPE_60\x10M\x12\x16\n\x11LOAD_ZONE_TYPE_62\x10\xa3\x02\x12\x18\n\x13LOAD_ZONE_TYPE_62_5\x10\xf2\x02\x12\x16\n\x11LOAD_ZONE_TYPE_64\x10\xa4\x02\x12\x16\n\x11LOAD_ZONE_TYPE_65\x10\xd7\x02\x12!\n\x1cLOAD_ZONE_TYPE_65_6_ASTERISK\x10\xf3\x02\x12\x16\n\x11LOAD_ZONE_TYPE_66\x10\xa5\x02\x12\x18\n\x13LOAD_ZONE_TYPE_67_5\x10\xa6\x02\x12\x18\n\x13LOAD_ZONE_TYPE_68_1\x10\xf4\x02\x12!\n\x1cLOAD_ZONE_TYPE_68_1_ASTERISK\x10\xf5\x02\x12\x15\n\x10LOAD_ZONE_TYPE_7\x10\xae\x01\x12\x15\n\x11LOAD_ZONE_TYPE_70\x10N\x12\x18\n\x13LOAD_ZONE_TYPE_73_9\x10\xf6\x02\x12\x17\n\x12LOAD_ZONE_TYPE_7_5\x10\x8e\x01\x12\x14\n\x10LOAD_ZONE_TYPE_8\x10x\x12\x15\n\x11LOAD_ZONE_TYPE_80\x10O\x12\x1f\n\x1aLOAD_ZONE_TYPE_80_ASTERISK\x10\xf7\x02\x12\x15\n\x10LOAD_ZONE_TYPE_9\x10\xaf\x01\x12\x15\n\x11LOAD_ZONE_TYPE_90\x10P\x12\x14\n\x10LOAD_ZONE_TYPE_A\x10\x66\x12\x1f\n\x1aLOAD_ZONE_TYPE_ABOVE_200_M\x10\x92\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_ABOVE_400_M\x10\x93\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_ABOVE_500_M\x10\x94\x01\x12\x16\n\x11LOAD_ZONE_TYPE_AC\x10\xda\x02\x12\x1c\n\x17LOAD_ZONE_TYPE_ALPINE_N\x10\xe2\x02\x12\x1c\n\x17LOAD_ZONE_TYPE_ALPINE_S\x10\xe3\x02\x12\x16\n\x11LOAD_ZONE_TYPE_AN\x10\xd9\x02\x12\x16\n\x11LOAD_ZONE_TYPE_AS\x10\xdb\x02\x12\x16\n\x11LOAD_ZONE_TYPE_AT\x10\xdc\x02\x12\x17\n\x12LOAD_ZONE_TYPE_A_0\x10\xab\x02\x12\x16\n\x12LOAD_ZONE_TYPE_A_1\x10\x36\x12\x16\n\x12LOAD_ZONE_TYPE_A_2\x10\x37\x12\x1f\n\x1bLOAD_ZONE_TYPE_A_2_ASTERISK\x10q\x12\x16\n\x12LOAD_ZONE_TYPE_A_3\x10r\x12\x1f\n\x1bLOAD_ZONE_TYPE_A_3_ASTERISK\x10s\x12\x16\n\x12LOAD_ZONE_TYPE_A_4\x10t\x12\x1f\n\x1bLOAD_ZONE_TYPE_A_4_ASTERISK\x10u\x12\x17\n\x12LOAD_ZONE_TYPE_A_5\x10\x80\x02\x12\x17\n\x12LOAD_ZONE_TYPE_A_6\x10\x81\x02\x12\x17\n\x12LOAD_ZONE_TYPE_A_7\x10\x82\x02\x12\x14\n\x10LOAD_ZONE_TYPE_B\x10g\x12\x16\n\x12LOAD_ZONE_TYPE_B_1\x10\x38\x12\x16\n\x12LOAD_ZONE_TYPE_B_2\x10\x39\x12\x15\n\x10LOAD_ZONE_TYPE_C\x10\xe5\x01\x12\x15\n\x11LOAD_ZONE_TYPE_CS\x10R\x12\x16\n\x12LOAD_ZONE_TYPE_C_1\x10:\x12\x16\n\x12LOAD_ZONE_TYPE_C_2\x10;\x12\x14\n\x10LOAD_ZONE_TYPE_D\x10<\x12\x14\n\x10LOAD_ZONE_TYPE_E\x10=\x12\x18\n\x14LOAD_ZONE_TYPE_GAMMA\x10h\x12!\n\x1dLOAD_ZONE_TYPE_GAMMA_ASTERISK\x10i\x12\x18\n\x14LOAD_ZONE_TYPE_GEQ_8\x10y\x12\'\n\"LOAD_ZONE_TYPE_GREATER_38_ASTERISK\x10\xd0\x02\x12\x1e\n\x19LOAD_ZONE_TYPE_GUADELOUPE\x10\xa8\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_GUYANE\x10\xa4\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_G_10_0\x10\xaa\x02\x12\x15\n\x10LOAD_ZONE_TYPE_H\x10\x85\x01\x12\x14\n\x10LOAD_ZONE_TYPE_I\x10 \x12\x15\n\x11LOAD_ZONE_TYPE_II\x10!\x12\x16\n\x12LOAD_ZONE_TYPE_III\x10\"\x12\x19\n\x14LOAD_ZONE_TYPE_III_A\x10\xe6\x02\x12\x1f\n\x1bLOAD_ZONE_TYPE_III_ASTERISK\x10\x43\x12\x19\n\x14LOAD_ZONE_TYPE_III_B\x10\xe7\x02\x12\x18\n\x13LOAD_ZONE_TYPE_II_A\x10\xe4\x02\x12\x1e\n\x1aLOAD_ZONE_TYPE_II_ASTERISK\x10\x42\x12\x18\n\x13LOAD_ZONE_TYPE_II_B\x10\xe5\x02\x12\x15\n\x11LOAD_ZONE_TYPE_IV\x10#\x12\x18\n\x13LOAD_ZONE_TYPE_IV_B\x10\xe8\x02\x12\x16\n\x11LOAD_ZONE_TYPE_IX\x10\x84\x01\x12\x16\n\x12LOAD_ZONE_TYPE_I_A\x10>\x12\x1f\n\x1bLOAD_ZONE_TYPE_I_ASTERISK_A\x10?\x12\x1f\n\x1bLOAD_ZONE_TYPE_I_ASTERISK_M\x10\x41\x12\x16\n\x12LOAD_ZONE_TYPE_I_M\x10@\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_25\x10\xd3\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_30\x10\xd4\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_35\x10\xd5\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_40\x10\xd6\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_45\x10\xd7\x01\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_0_5\x10^\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_50\x10\xd8\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_55\x10\xd9\x01\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_0_6\x10_\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_60\x10\xda\x01\x12\"\n\x1dLOAD_ZONE_TYPE_LEQ_0_6_CIRSOC\x10\x85\x03\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_0_7\x10`\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_75\x10\xdb\x01\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_0_8\x10\x61\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_0_9\x10\x62\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_0_95\x10\xdc\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_10\x10\xb9\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_100\x10\xc6\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_105\x10\xb4\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_110\x10\xc7\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_12\x10\xf0\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_120\x10\xc8\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_130\x10\xc9\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_140\x10\xca\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_15\x10\xf1\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_150\x10\xcb\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_160\x10\xcc\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_170\x10\xcd\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_18\x10\xf2\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_180\x10\xce\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_190\x10\xb5\x02\x12\x1a\n\x16LOAD_ZONE_TYPE_LEQ_1_1\x10\x64\x12\"\n\x1dLOAD_ZONE_TYPE_LEQ_1_2_CIRSOC\x10\x86\x03\x12\x1b\n\x17LOAD_ZONE_TYPE_LEQ_1_75\x10~\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_20\x10\xba\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_200\x10\xcf\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_21\x10\xf3\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_210\x10\xc4\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_220\x10\xb6\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_24\x10\xf4\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_240\x10\xb7\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_265\x10\xc0\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_27\x10\xf5\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_2_25\x10\x80\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_2_5\x10\x81\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_2_75\x10\x82\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_30\x10\xf6\x01\x12\x1c\n\x17LOAD_ZONE_TYPE_LEQ_32_1\x10\xf7\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_3_2\x10\xb2\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_3_5\x10\x95\x01\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_40\x10\xbb\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_42\x10\x80\x03\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_44\x10\x81\x03\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_46\x10\x82\x03\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_48\x10\x83\x03\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_4_5\x10\x97\x01\x12\x19\n\x14LOAD_ZONE_TYPE_LEQ_5\x10\xb8\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_50\x10\xbc\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_500\x10\xc1\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_60\x10\xbd\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_6_5\x10\x9a\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_70\x10\xbe\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_80\x10\xbf\x02\x12\x1b\n\x16LOAD_ZONE_TYPE_LEQ_843\x10\xc2\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_90\x10\xb3\x02\x12\x1a\n\x15LOAD_ZONE_TYPE_LEQ_95\x10\xc5\x01\x12\x1e\n\x19LOAD_ZONE_TYPE_MARTINIQUE\x10\xa6\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_MAYOTTE\x10\xa5\x01\x12\x1b\n\x16LOAD_ZONE_TYPE_MEQ_0_7\x10\xbc\x01\x12\x16\n\x12LOAD_ZONE_TYPE_M_1\x10v\x12\x16\n\x11LOAD_ZONE_TYPE_N1\x10\xdd\x02\x12\x16\n\x11LOAD_ZONE_TYPE_N2\x10\xde\x02\x12\x16\n\x11LOAD_ZONE_TYPE_N3\x10\xdf\x02\x12\x16\n\x11LOAD_ZONE_TYPE_N4\x10\xe0\x02\x12\x16\n\x11LOAD_ZONE_TYPE_N5\x10\xe1\x02\x12\x18\n\x13LOAD_ZONE_TYPE_NZ_1\x10\xac\x02\x12\x18\n\x13LOAD_ZONE_TYPE_NZ_2\x10\xad\x02\x12\x18\n\x13LOAD_ZONE_TYPE_NZ_3\x10\xae\x02\x12\x18\n\x13LOAD_ZONE_TYPE_NZ_4\x10\xaf\x02\x12\x16\n\x12LOAD_ZONE_TYPE_N_A\x10\x18\x12\x1b\n\x16LOAD_ZONE_TYPE_REUNION\x10\xa7\x01\x12\x16\n\x11LOAD_ZONE_TYPE_SR\x10\xd0\x01\x12\x1f\n\x1aLOAD_ZONE_TYPE_UNDER_200_M\x10\x90\x01\x12\x14\n\x10LOAD_ZONE_TYPE_V\x10$\x12\x15\n\x11LOAD_ZONE_TYPE_VI\x10%\x12\x16\n\x12LOAD_ZONE_TYPE_VII\x10&\x12\x17\n\x13LOAD_ZONE_TYPE_VIII\x10\'\x12\x1f\n\x1aLOAD_ZONE_TYPE_VI_ASTERISK\x10\xc6\x02\x12\x1e\n\x19LOAD_ZONE_TYPE_V_ASTERISK\x10\xc5\x02\x12\x17\n\x12LOAD_ZONE_TYPE_V_B\x10\xe9\x02\x12\x15\n\x10LOAD_ZONE_TYPE_W\x10\x83\x02\x12\x15\n\x11LOAD_ZONE_TYPE_Z1\x10z\x12\x15\n\x11LOAD_ZONE_TYPE_Z2\x10{\x12\x15\n\x11LOAD_ZONE_TYPE_Z3\x10|\x12\x17\n\x13LOAD_ZONE_TYPE_ZERO\x10\x44\"x\n\x0e\x44\x65\x66initionType\x12\x1b\n\x17\x44\x45\x46INITION_TYPE_UNKNOWN\x10\x00\x12\'\n#DEFINITION_TYPE_PARAMETERS_FROM_MAP\x10\x01\x12 \n\x1c\x44\x45\x46INITION_TYPE_USER_DEFINED\x10\x02\x42\x07\n\x05_typeB\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB0\n._user_defined_inlet_turbulence_definition_typeB$\n\"_user_defined_wind_profile_densityB)\n\'_user_defined_wind_profile_step_enabledB(\n&_user_defined_wind_profile_period_stepB#\n!_user_defined_wind_profile_sortedB\x1c\n\x1a_user_defined_wind_profileB6\n4_user_defined_wind_profile_uniform_intensity_enabledB.\n,_user_defined_wind_profile_uniform_intensityB<\n:_user_defined_wind_profile_turbulence_length_scale_enabledB4\n2_user_defined_wind_profile_turbulence_length_scaleB\n\n\x08_commentB\x0c\n\n_load_zoneB\x12\n\x10_definition_typeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rstab.load_wizards.wind_profile_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_WINDPROFILE']._serialized_start=84
|
|
35
|
+
_globals['_WINDPROFILE']._serialized_end=11984
|
|
36
|
+
_globals['_WINDPROFILE_USERDEFINEDWINDPROFILETABLE']._serialized_start=1225
|
|
37
|
+
_globals['_WINDPROFILE_USERDEFINEDWINDPROFILETABLE']._serialized_end=1338
|
|
38
|
+
_globals['_WINDPROFILE_USERDEFINEDWINDPROFILEROW']._serialized_start=1341
|
|
39
|
+
_globals['_WINDPROFILE_USERDEFINEDWINDPROFILEROW']._serialized_end=1772
|
|
40
|
+
_globals['_WINDPROFILE_TYPE']._serialized_start=1774
|
|
41
|
+
_globals['_WINDPROFILE_TYPE']._serialized_end=1853
|
|
42
|
+
_globals['_WINDPROFILE_USERDEFINEDINLETTURBULENCEDEFINITIONTYPE']._serialized_start=1856
|
|
43
|
+
_globals['_WINDPROFILE_USERDEFINEDINLETTURBULENCEDEFINITIONTYPE']._serialized_end=2075
|
|
44
|
+
_globals['_WINDPROFILE_LOADZONE']._serialized_start=2078
|
|
45
|
+
_globals['_WINDPROFILE_LOADZONE']._serialized_end=11245
|
|
46
|
+
_globals['_WINDPROFILE_DEFINITIONTYPE']._serialized_start=11247
|
|
47
|
+
_globals['_WINDPROFILE_DEFINITIONTYPE']._serialized_end=11367
|
|
48
|
+
# @@protoc_insertion_point(module_scope)
|