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,37 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rsection/structure_core/opening.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/rsection/structure_core/opening.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0dlubal/api/rsection/structure_core/opening.proto\x12\"dlubal.api.rsection.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xaf\x05\n\x07Opening\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x16\n\x0e\x62oundary_lines\x18\x02 \x03(\x05\x12\r\n\x05parts\x18\x03 \x03(\x05\x12\x11\n\x04\x61rea\x18\x04 \x01(\x01H\x01\x88\x01\x01\x12;\n\x11\x63\x65nter_of_opening\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x02\x88\x01\x01\x12 \n\x13\x63\x65nter_of_opening_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13\x63\x65nter_of_opening_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x19\n\x0cparent_layer\x18\x08 \x01(\x05H\x05\x88\x01\x01\x12&\n\x19is_locked_by_parent_layer\x18\t \x01(\x08H\x06\x88\x01\x01\x12\x19\n\x0cis_generated\x18\n \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0b \x01(\tH\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\x0b\x88\x01\x01\x42\x05\n\x03_noB\x07\n\x05_areaB\x14\n\x12_center_of_openingB\x16\n\x14_center_of_opening_yB\x16\n\x14_center_of_opening_zB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rsection.structure_core.opening_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_OPENING']._serialized_start=121
|
|
36
|
+
_globals['_OPENING']._serialized_end=808
|
|
37
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class Opening(_message.Message):
|
|
10
|
+
__slots__ = ("no", "boundary_lines", "parts", "area", "center_of_opening", "center_of_opening_y", "center_of_opening_z", "parent_layer", "is_locked_by_parent_layer", "is_generated", "generating_object_info", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
11
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
PARTS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
CENTER_OF_OPENING_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
CENTER_OF_OPENING_Y_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
CENTER_OF_OPENING_Z_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
IS_LOCKED_BY_PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
no: int
|
|
26
|
+
boundary_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
parts: _containers.RepeatedScalarFieldContainer[int]
|
|
28
|
+
area: float
|
|
29
|
+
center_of_opening: _common_pb2.Vector3d
|
|
30
|
+
center_of_opening_y: float
|
|
31
|
+
center_of_opening_z: float
|
|
32
|
+
parent_layer: int
|
|
33
|
+
is_locked_by_parent_layer: bool
|
|
34
|
+
is_generated: bool
|
|
35
|
+
generating_object_info: str
|
|
36
|
+
comment: str
|
|
37
|
+
id_for_export_import: str
|
|
38
|
+
metadata_for_export_import: str
|
|
39
|
+
def __init__(self, no: _Optional[int] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., parts: _Optional[_Iterable[int]] = ..., area: _Optional[float] = ..., center_of_opening: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_opening_y: _Optional[float] = ..., center_of_opening_z: _Optional[float] = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rsection/structure_core/part.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/rsection/structure_core/part.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-dlubal/api/rsection/structure_core/part.proto\x12\"dlubal.api.rsection.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xe6\x08\n\x04Part\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12H\n\x08geometry\x18\x02 \x01(\x0e\x32\x31.dlubal.api.rsection.structure_core.Part.GeometryH\x01\x88\x01\x01\x12 \n\x13only_shear_transfer\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x16\n\x0e\x62oundary_lines\x18\x04 \x03(\x05\x12\x15\n\x08material\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12#\n\x16generating_object_info\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x11\n\x04\x61rea\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x11\n\x04mass\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\n \x01(\x01H\x08\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\n\x88\x01\x01\x12\x1b\n\x13integrated_openings\x18\r \x03(\x05\x12\x31\n$auto_detection_of_integrated_objects\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16has_integrated_objects\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12\x19\n\x0cparent_layer\x18\x10 \x01(\x05H\r\x88\x01\x01\x12&\n\x19is_locked_by_parent_layer\x18\x11 \x01(\x08H\x0e\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x13 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\"=\n\x08Geometry\x12\x14\n\x10GEOMETRY_UNKNOWN\x10\x00\x12\x1b\n\x17GEOMETRY_BOUNDARY_LINES\x10\x01\x42\x05\n\x03_noB\x0b\n\t_geometryB\x16\n\x14_only_shear_transferB\x0b\n\t_materialB\x19\n\x17_generating_object_infoB\x07\n\x05_areaB\x07\n\x05_massB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\n\n\x08_commentB\'\n%_auto_detection_of_integrated_objectsB\x19\n\x17_has_integrated_objectsB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rsection.structure_core.part_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_PART']._serialized_start=118
|
|
36
|
+
_globals['_PART']._serialized_end=1244
|
|
37
|
+
_globals['_PART_GEOMETRY']._serialized_start=811
|
|
38
|
+
_globals['_PART_GEOMETRY']._serialized_end=872
|
|
39
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class Part(_message.Message):
|
|
11
|
+
__slots__ = ("no", "geometry", "only_shear_transfer", "boundary_lines", "material", "generating_object_info", "area", "mass", "center_of_gravity", "center_of_gravity_y", "center_of_gravity_z", "comment", "integrated_openings", "auto_detection_of_integrated_objects", "has_integrated_objects", "parent_layer", "is_locked_by_parent_layer", "is_generated", "id_for_export_import", "metadata_for_export_import")
|
|
12
|
+
class Geometry(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
13
|
+
__slots__ = ()
|
|
14
|
+
GEOMETRY_UNKNOWN: _ClassVar[Part.Geometry]
|
|
15
|
+
GEOMETRY_BOUNDARY_LINES: _ClassVar[Part.Geometry]
|
|
16
|
+
GEOMETRY_UNKNOWN: Part.Geometry
|
|
17
|
+
GEOMETRY_BOUNDARY_LINES: Part.Geometry
|
|
18
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
GEOMETRY_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
ONLY_SHEAR_TRANSFER_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
INTEGRATED_OPENINGS_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
AUTO_DETECTION_OF_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
HAS_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
IS_LOCKED_BY_PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
no: int
|
|
39
|
+
geometry: Part.Geometry
|
|
40
|
+
only_shear_transfer: bool
|
|
41
|
+
boundary_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
42
|
+
material: int
|
|
43
|
+
generating_object_info: str
|
|
44
|
+
area: float
|
|
45
|
+
mass: float
|
|
46
|
+
center_of_gravity: _common_pb2.Vector3d
|
|
47
|
+
center_of_gravity_y: float
|
|
48
|
+
center_of_gravity_z: float
|
|
49
|
+
comment: str
|
|
50
|
+
integrated_openings: _containers.RepeatedScalarFieldContainer[int]
|
|
51
|
+
auto_detection_of_integrated_objects: bool
|
|
52
|
+
has_integrated_objects: bool
|
|
53
|
+
parent_layer: int
|
|
54
|
+
is_locked_by_parent_layer: bool
|
|
55
|
+
is_generated: bool
|
|
56
|
+
id_for_export_import: str
|
|
57
|
+
metadata_for_export_import: str
|
|
58
|
+
def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[Part.Geometry, str]] = ..., only_shear_transfer: bool = ..., boundary_lines: _Optional[_Iterable[int]] = ..., material: _Optional[int] = ..., generating_object_info: _Optional[str] = ..., area: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., comment: _Optional[str] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., auto_detection_of_integrated_objects: bool = ..., has_integrated_objects: bool = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rsection/structure_core/point.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/rsection/structure_core/point.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.dlubal/api/rsection/structure_core/point.proto\x12\"dlubal.api.rsection.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\x9d\x18\n\x05Point\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x41\n\x04type\x18\x02 \x01(\x0e\x32..dlubal.api.rsection.structure_core.Point.TypeH\x01\x88\x01\x01\x12\x1c\n\x0freference_point\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x03\x88\x01\x01\x12\x63\n\x16\x63oordinate_system_type\x18\x05 \x01(\x0e\x32>.dlubal.api.rsection.structure_core.Point.CoordinateSystemTypeH\x04\x88\x01\x01\x12\x35\n\x0b\x63oordinates\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12\x19\n\x0c\x63oordinate_1\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x19\n\x0c\x63oordinate_2\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12<\n\x12global_coordinates\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x08\x88\x01\x01\x12 \n\x13global_coordinate_1\x18\n \x01(\x01H\t\x88\x01\x01\x12 \n\x13global_coordinate_2\x18\x0b \x01(\x01H\n\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\x0b\x88\x01\x01\x12+\n\x1e\x62\x65tween_two_points_start_point\x18\r \x01(\x05H\x0c\x88\x01\x01\x12)\n\x1c\x62\x65tween_two_points_end_point\x18\x0e \x01(\x05H\r\x88\x01\x01\x12W\n-between_two_locations_start_point_coordinates\x18\x0f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0e\x88\x01\x01\x12;\n.between_two_locations_start_point_coordinate_1\x18\x10 \x01(\x01H\x0f\x88\x01\x01\x12;\n.between_two_locations_start_point_coordinate_2\x18\x11 \x01(\x01H\x10\x88\x01\x01\x12U\n+between_two_locations_end_point_coordinates\x18\x12 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x11\x88\x01\x01\x12\x39\n,between_two_locations_end_point_coordinate_1\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12\x39\n,between_two_locations_end_point_coordinate_2\x18\x14 \x01(\x01H\x13\x88\x01\x01\x12#\n\x16on_line_reference_line\x18\x15 \x01(\x05H\x14\x88\x01\x01\x12T\n\x0ereference_type\x18\x16 \x01(\x0e\x32\x37.dlubal.api.rsection.structure_core.Point.ReferenceTypeH\x15\x88\x01\x01\x12.\n!reference_object_projected_length\x18\x17 \x01(\x01H\x16\x88\x01\x01\x12\x37\n*distance_from_start_is_defined_as_relative\x18\x18 \x01(\x08H\x17\x88\x01\x01\x12)\n\x1c\x64istance_from_start_relative\x18\x19 \x01(\x01H\x18\x88\x01\x01\x12)\n\x1c\x64istance_from_start_absolute\x18\x1a \x01(\x01H\x19\x88\x01\x01\x12\'\n\x1a\x64istance_from_end_relative\x18\x1b \x01(\x01H\x1a\x88\x01\x01\x12\'\n\x1a\x64istance_from_end_absolute\x18\x1c \x01(\x01H\x1b\x88\x01\x01\x12&\n\x19offset_in_local_direction\x18\x1d \x01(\x01H\x1c\x88\x01\x01\x12)\n\x1coffset_in_global_direction_y\x18\x1e \x01(\x01H\x1d\x88\x01\x01\x12)\n\x1coffset_in_global_direction_z\x18\x1f \x01(\x01H\x1e\x88\x01\x01\x12\x19\n\x0cparent_layer\x18 \x01(\x05H\x1f\x88\x01\x01\x12&\n\x19is_locked_by_parent_layer\x18! \x01(\x08H \x88\x01\x01\x12\x19\n\x0cis_generated\x18\" \x01(\x08H!\x88\x01\x01\x12#\n\x16generating_object_info\x18# \x01(\tH\"\x88\x01\x01\x12!\n\x14id_for_export_import\x18$ \x01(\tH#\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18% \x01(\tH$\x88\x01\x01\"v\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x1a\n\x16TYPE_BETWEEN_TWO_NODES\x10\x02\x12\x1b\n\x17TYPE_BETWEEN_TWO_POINTS\x10\x03\x12\x10\n\x0cTYPE_ON_LINE\x10\x04\x12\x11\n\rTYPE_STANDARD\x10\x01\"<\n\x14\x43oordinateSystemType\x12$\n COORDINATE_SYSTEM_TYPE_CARTESIAN\x10\x00\"S\n\rReferenceType\x12\x14\n\x10REFERENCE_TYPE_L\x10\x00\x12\x15\n\x11REFERENCE_TYPE_XZ\x10\x02\x12\x15\n\x11REFERENCE_TYPE_YZ\x10\x03\x42\x05\n\x03_noB\x07\n\x05_typeB\x12\n\x10_reference_pointB\x14\n\x12_coordinate_systemB\x19\n\x17_coordinate_system_typeB\x0e\n\x0c_coordinatesB\x0f\n\r_coordinate_1B\x0f\n\r_coordinate_2B\x15\n\x13_global_coordinatesB\x16\n\x14_global_coordinate_1B\x16\n\x14_global_coordinate_2B\n\n\x08_commentB!\n\x1f_between_two_points_start_pointB\x1f\n\x1d_between_two_points_end_pointB0\n._between_two_locations_start_point_coordinatesB1\n/_between_two_locations_start_point_coordinate_1B1\n/_between_two_locations_start_point_coordinate_2B.\n,_between_two_locations_end_point_coordinatesB/\n-_between_two_locations_end_point_coordinate_1B/\n-_between_two_locations_end_point_coordinate_2B\x19\n\x17_on_line_reference_lineB\x11\n\x0f_reference_typeB$\n\"_reference_object_projected_lengthB-\n+_distance_from_start_is_defined_as_relativeB\x1f\n\x1d_distance_from_start_relativeB\x1f\n\x1d_distance_from_start_absoluteB\x1d\n\x1b_distance_from_end_relativeB\x1d\n\x1b_distance_from_end_absoluteB\x1c\n\x1a_offset_in_local_directionB\x1f\n\x1d_offset_in_global_direction_yB\x1f\n\x1d_offset_in_global_direction_zB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rsection.structure_core.point_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_POINT']._serialized_start=119
|
|
36
|
+
_globals['_POINT']._serialized_end=3220
|
|
37
|
+
_globals['_POINT_TYPE']._serialized_start=1869
|
|
38
|
+
_globals['_POINT_TYPE']._serialized_end=1987
|
|
39
|
+
_globals['_POINT_COORDINATESYSTEMTYPE']._serialized_start=1989
|
|
40
|
+
_globals['_POINT_COORDINATESYSTEMTYPE']._serialized_end=2049
|
|
41
|
+
_globals['_POINT_REFERENCETYPE']._serialized_start=2051
|
|
42
|
+
_globals['_POINT_REFERENCETYPE']._serialized_end=2134
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class Point(_message.Message):
|
|
10
|
+
__slots__ = ("no", "type", "reference_point", "coordinate_system", "coordinate_system_type", "coordinates", "coordinate_1", "coordinate_2", "global_coordinates", "global_coordinate_1", "global_coordinate_2", "comment", "between_two_points_start_point", "between_two_points_end_point", "between_two_locations_start_point_coordinates", "between_two_locations_start_point_coordinate_1", "between_two_locations_start_point_coordinate_2", "between_two_locations_end_point_coordinates", "between_two_locations_end_point_coordinate_1", "between_two_locations_end_point_coordinate_2", "on_line_reference_line", "reference_type", "reference_object_projected_length", "distance_from_start_is_defined_as_relative", "distance_from_start_relative", "distance_from_start_absolute", "distance_from_end_relative", "distance_from_end_absolute", "offset_in_local_direction", "offset_in_global_direction_y", "offset_in_global_direction_z", "parent_layer", "is_locked_by_parent_layer", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
11
|
+
class Type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
12
|
+
__slots__ = ()
|
|
13
|
+
TYPE_UNKNOWN: _ClassVar[Point.Type]
|
|
14
|
+
TYPE_BETWEEN_TWO_NODES: _ClassVar[Point.Type]
|
|
15
|
+
TYPE_BETWEEN_TWO_POINTS: _ClassVar[Point.Type]
|
|
16
|
+
TYPE_ON_LINE: _ClassVar[Point.Type]
|
|
17
|
+
TYPE_STANDARD: _ClassVar[Point.Type]
|
|
18
|
+
TYPE_UNKNOWN: Point.Type
|
|
19
|
+
TYPE_BETWEEN_TWO_NODES: Point.Type
|
|
20
|
+
TYPE_BETWEEN_TWO_POINTS: Point.Type
|
|
21
|
+
TYPE_ON_LINE: Point.Type
|
|
22
|
+
TYPE_STANDARD: Point.Type
|
|
23
|
+
class CoordinateSystemType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
24
|
+
__slots__ = ()
|
|
25
|
+
COORDINATE_SYSTEM_TYPE_CARTESIAN: _ClassVar[Point.CoordinateSystemType]
|
|
26
|
+
COORDINATE_SYSTEM_TYPE_CARTESIAN: Point.CoordinateSystemType
|
|
27
|
+
class ReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
28
|
+
__slots__ = ()
|
|
29
|
+
REFERENCE_TYPE_L: _ClassVar[Point.ReferenceType]
|
|
30
|
+
REFERENCE_TYPE_XZ: _ClassVar[Point.ReferenceType]
|
|
31
|
+
REFERENCE_TYPE_YZ: _ClassVar[Point.ReferenceType]
|
|
32
|
+
REFERENCE_TYPE_L: Point.ReferenceType
|
|
33
|
+
REFERENCE_TYPE_XZ: Point.ReferenceType
|
|
34
|
+
REFERENCE_TYPE_YZ: Point.ReferenceType
|
|
35
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
REFERENCE_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
COORDINATE_SYSTEM_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
GLOBAL_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
GLOBAL_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
GLOBAL_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
BETWEEN_TWO_POINTS_START_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
BETWEEN_TWO_POINTS_END_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
BETWEEN_TWO_LOCATIONS_START_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
BETWEEN_TWO_LOCATIONS_START_POINT_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
BETWEEN_TWO_LOCATIONS_START_POINT_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
BETWEEN_TWO_LOCATIONS_END_POINT_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
BETWEEN_TWO_LOCATIONS_END_POINT_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
BETWEEN_TWO_LOCATIONS_END_POINT_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
ON_LINE_REFERENCE_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
REFERENCE_OBJECT_PROJECTED_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
DISTANCE_FROM_START_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
DISTANCE_FROM_START_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
DISTANCE_FROM_START_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
DISTANCE_FROM_END_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
DISTANCE_FROM_END_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
OFFSET_IN_LOCAL_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
OFFSET_IN_GLOBAL_DIRECTION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
OFFSET_IN_GLOBAL_DIRECTION_Z_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
IS_LOCKED_BY_PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
no: int
|
|
73
|
+
type: Point.Type
|
|
74
|
+
reference_point: int
|
|
75
|
+
coordinate_system: int
|
|
76
|
+
coordinate_system_type: Point.CoordinateSystemType
|
|
77
|
+
coordinates: _common_pb2.Vector3d
|
|
78
|
+
coordinate_1: float
|
|
79
|
+
coordinate_2: float
|
|
80
|
+
global_coordinates: _common_pb2.Vector3d
|
|
81
|
+
global_coordinate_1: float
|
|
82
|
+
global_coordinate_2: float
|
|
83
|
+
comment: str
|
|
84
|
+
between_two_points_start_point: int
|
|
85
|
+
between_two_points_end_point: int
|
|
86
|
+
between_two_locations_start_point_coordinates: _common_pb2.Vector3d
|
|
87
|
+
between_two_locations_start_point_coordinate_1: float
|
|
88
|
+
between_two_locations_start_point_coordinate_2: float
|
|
89
|
+
between_two_locations_end_point_coordinates: _common_pb2.Vector3d
|
|
90
|
+
between_two_locations_end_point_coordinate_1: float
|
|
91
|
+
between_two_locations_end_point_coordinate_2: float
|
|
92
|
+
on_line_reference_line: int
|
|
93
|
+
reference_type: Point.ReferenceType
|
|
94
|
+
reference_object_projected_length: float
|
|
95
|
+
distance_from_start_is_defined_as_relative: bool
|
|
96
|
+
distance_from_start_relative: float
|
|
97
|
+
distance_from_start_absolute: float
|
|
98
|
+
distance_from_end_relative: float
|
|
99
|
+
distance_from_end_absolute: float
|
|
100
|
+
offset_in_local_direction: float
|
|
101
|
+
offset_in_global_direction_y: float
|
|
102
|
+
offset_in_global_direction_z: float
|
|
103
|
+
parent_layer: int
|
|
104
|
+
is_locked_by_parent_layer: bool
|
|
105
|
+
is_generated: bool
|
|
106
|
+
generating_object_info: str
|
|
107
|
+
id_for_export_import: str
|
|
108
|
+
metadata_for_export_import: str
|
|
109
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[Point.Type, str]] = ..., reference_point: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., coordinate_system_type: _Optional[_Union[Point.CoordinateSystemType, str]] = ..., coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., coordinate_1: _Optional[float] = ..., coordinate_2: _Optional[float] = ..., global_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., global_coordinate_1: _Optional[float] = ..., global_coordinate_2: _Optional[float] = ..., comment: _Optional[str] = ..., between_two_points_start_point: _Optional[int] = ..., between_two_points_end_point: _Optional[int] = ..., between_two_locations_start_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., between_two_locations_start_point_coordinate_1: _Optional[float] = ..., between_two_locations_start_point_coordinate_2: _Optional[float] = ..., between_two_locations_end_point_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., between_two_locations_end_point_coordinate_1: _Optional[float] = ..., between_two_locations_end_point_coordinate_2: _Optional[float] = ..., on_line_reference_line: _Optional[int] = ..., reference_type: _Optional[_Union[Point.ReferenceType, str]] = ..., reference_object_projected_length: _Optional[float] = ..., distance_from_start_is_defined_as_relative: bool = ..., distance_from_start_relative: _Optional[float] = ..., distance_from_start_absolute: _Optional[float] = ..., distance_from_end_relative: _Optional[float] = ..., distance_from_end_absolute: _Optional[float] = ..., offset_in_local_direction: _Optional[float] = ..., offset_in_global_direction_y: _Optional[float] = ..., offset_in_global_direction_z: _Optional[float] = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rsection/structure_core/reinforcement_layer.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/rsection/structure_core/reinforcement_layer.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'\n<dlubal/api/rsection/structure_core/reinforcement_layer.proto\x12\"dlubal.api.rsection.structure_core\"\xda\x02\n\x12ReinforcementLayer\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12#\n\x16generating_object_info\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x06 \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x07 \x01(\tH\x06\x88\x01\x01\x42\x05\n\x03_noB\x07\n\x05_nameB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB\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.rsection.structure_core.reinforcement_layer_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_REINFORCEMENTLAYER']._serialized_start=101
|
|
35
|
+
_globals['_REINFORCEMENTLAYER']._serialized_end=447
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from google.protobuf import descriptor as _descriptor
|
|
2
|
+
from google.protobuf import message as _message
|
|
3
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class ReinforcementLayer(_message.Message):
|
|
8
|
+
__slots__ = ("no", "name", "is_generated", "generating_object_info", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
9
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
10
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
no: int
|
|
17
|
+
name: str
|
|
18
|
+
is_generated: bool
|
|
19
|
+
generating_object_info: str
|
|
20
|
+
comment: str
|
|
21
|
+
id_for_export_import: str
|
|
22
|
+
metadata_for_export_import: str
|
|
23
|
+
def __init__(self, no: _Optional[int] = ..., name: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rsection/structure_core/section.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/rsection/structure_core/section.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/rsection/structure_core/section.proto\x12\"dlubal.api.rsection.structure_core\"\xa6\xb9\x02\n\x07Section\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x43\n\x04type\x18\x02 \x01(\x0e\x32\x30.dlubal.api.rsection.structure_core.Section.TypeH\x01\x88\x01\x01\x12^\n\x12manufacturing_type\x18\x03 \x01(\x0e\x32=.dlubal.api.rsection.structure_core.Section.ManufacturingTypeH\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12(\n\x1bshear_stiffness_deactivated\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12*\n\x1dwarping_stiffness_deactivated\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12+\n\x1e\x64\x65\x61\x63tivate_shear_weld_elements\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\x1e\n\x11thin_walled_model\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12&\n\x19us_spelling_of_properties\x18\t \x01(\x08H\x08\x88\x01\x01\x12\x34\n\'stress_smoothing_to_avoid_singularities\x18\n \x01(\x08H\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0b \x01(\tH\n\x88\x01\x01\x12\x17\n\narea_axial\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12\x19\n\x0c\x61rea_shear_y\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\x19\n\x0c\x61rea_shear_z\x18\x0e \x01(\x01H\r\x88\x01\x01\x12\'\n\x1ainclination_principal_axes\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12\x17\n\nlocation_y\x18\x10 \x01(\x01H\x0f\x88\x01\x01\x12\x17\n\nlocation_z\x18\x11 \x01(\x01H\x10\x88\x01\x01\x12\x1e\n\x11location_offset_y\x18\x12 \x01(\x01H\x11\x88\x01\x01\x12\x1e\n\x11location_offset_z\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18\x14 \x01(\x01H\x13\x88\x01\x01\x12\x1c\n\x0fmirrored_axis_y\x18\x15 \x01(\x08H\x14\x88\x01\x01\x12\x1c\n\x0fmirrored_axis_z\x18\x16 \x01(\x08H\x15\x88\x01\x01\x12*\n\x1dlocation_of_centroidal_axis_y\x18\x17 \x01(\x01H\x16\x88\x01\x01\x12*\n\x1dlocation_of_centroidal_axis_z\x18\x18 \x01(\x01H\x17\x88\x01\x01\x12(\n\x1bmoment_of_inertia_bending_y\x18\x19 \x01(\x01H\x18\x88\x01\x01\x12(\n\x1bmoment_of_inertia_bending_z\x18\x1a \x01(\x01H\x19\x88\x01\x01\x12\x14\n\x07warping\x18\x1b \x01(\x01H\x1a\x88\x01\x01\x12#\n\x16wobble_friction_factor\x18\x1c \x01(\x01H\x1b\x88\x01\x01\x12&\n\x19\x63urvature_friction_factor\x18\x1d \x01(\x01H\x1c\x88\x01\x01\x12&\n\x19moment_of_inertia_torsion\x18\x1e \x01(\x01H\x1d\x88\x01\x01\x12#\n\x16\x64\x65pth_temperature_load\x18\x1f \x01(\x01H\x1e\x88\x01\x01\x12#\n\x16width_temperature_load\x18 \x01(\x01H\x1f\x88\x01\x01\x12\x15\n\x08material\x18! \x01(\x05H \x88\x01\x01\x12\x1f\n\x12reference_material\x18\" \x01(\x05H!\x88\x01\x01\x12\x1c\n\x0fmaterial_part_1\x18# \x01(\x05H\"\x88\x01\x01\x12\x1c\n\x0fmaterial_part_2\x18$ \x01(\x05H#\x88\x01\x01\x12\x1c\n\x0fmaterial_part_3\x18% \x01(\x05H$\x88\x01\x01\x12\x1c\n\x0fmaterial_part_4\x18& \x01(\x05H%\x88\x01\x01\x12\x1c\n\x0fmaterial_part_5\x18\' \x01(\x05H&\x88\x01\x01\x12\x1c\n\x0fmaterial_part_6\x18( \x01(\x05H\'\x88\x01\x01\x12\x1c\n\x0fmaterial_part_7\x18) \x01(\x05H(\x88\x01\x01\x12_\n\x10hybrid_materials\x18* \x01(\x0b\x32@.dlubal.api.rsection.structure_core.Section.HybridMaterialsTableH)\x88\x01\x01\x12\x1a\n\rhybrid_active\x18+ \x01(\x08H*\x88\x01\x01\x12\x62\n\x14parametrization_type\x18, \x01(\x0e\x32?.dlubal.api.rsection.structure_core.Section.ParametrizationTypeH+\x88\x01\x01\x12Z\n\x10\x63ombination_type\x18- \x01(\x0e\x32;.dlubal.api.rsection.structure_core.Section.CombinationTypeH,\x88\x01\x01\x12W\n\x0ftype_of_welding\x18. \x01(\x0e\x32\x39.dlubal.api.rsection.structure_core.Section.TypeOfWeldingH-\x88\x01\x01\x12#\n\x16\x63orrugated_sheet_width\x18/ \x01(\x01H.\x88\x01\x01\x12\x1a\n\rrail_worn_out\x18\x30 \x01(\x01H/\x88\x01\x01\x12\x33\n&linear_analysis_mesh_refinement_factor\x18\x31 \x01(\x01H0\x88\x01\x01\x12\x36\n)nonlinear_analysis_mesh_refinement_factor\x18\x32 \x01(\x01H1\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x33 \x01(\x08H2\x88\x01\x01\x12#\n\x16generating_object_info\x18\x34 \x01(\tH3\x88\x01\x01\x12\x0e\n\x01\x41\x18\x35 \x01(\x01H4\x88\x01\x01\x12\x10\n\x03\x41_c\x18\x36 \x01(\x01H5\x88\x01\x01\x12\x13\n\x06\x41_cell\x18\x37 \x01(\x01H6\x88\x01\x01\x12\x10\n\x03\x41_m\x18\x38 \x01(\x01H7\x88\x01\x01\x12\x12\n\x05\x41_m_V\x18\x39 \x01(\x01H8\x88\x01\x01\x12\x13\n\x06\x41_pl_u\x18: \x01(\x01H9\x88\x01\x01\x12\x13\n\x06\x41_pl_v\x18; \x01(\x01H:\x88\x01\x01\x12\x13\n\x06\x41_pl_y\x18< \x01(\x01H;\x88\x01\x01\x12\x13\n\x06\x41_pl_z\x18= \x01(\x01H<\x88\x01\x01\x12\x10\n\x03\x41_u\x18> \x01(\x01H=\x88\x01\x01\x12\x10\n\x03\x41_v\x18? \x01(\x01H>\x88\x01\x01\x12\x12\n\x05\x41_v_y\x18@ \x01(\x01H?\x88\x01\x01\x12\x12\n\x05\x41_v_z\x18\x41 \x01(\x01H@\x88\x01\x01\x12\x10\n\x03\x41_y\x18\x42 \x01(\x01HA\x88\x01\x01\x12\x10\n\x03\x41_z\x18\x43 \x01(\x01HB\x88\x01\x01\x12\x12\n\x05\x61lpha\x18\x44 \x01(\x01HC\x88\x01\x01\x12\x1e\n\x11\x61lpha_pl_omega_SC\x18\x45 \x01(\x01HD\x88\x01\x01\x12\x17\n\nalpha_pl_u\x18\x46 \x01(\x01HE\x88\x01\x01\x12\x1c\n\x0f\x61lpha_pl_u_pure\x18G \x01(\x01HF\x88\x01\x01\x12\x17\n\nalpha_pl_v\x18H \x01(\x01HG\x88\x01\x01\x12\x1c\n\x0f\x61lpha_pl_v_pure\x18I \x01(\x01HH\x88\x01\x01\x12\x17\n\nalpha_pl_y\x18J \x01(\x01HI\x88\x01\x01\x12\x1c\n\x0f\x61lpha_pl_y_pure\x18K \x01(\x01HJ\x88\x01\x01\x12\x17\n\nalpha_pl_z\x18L \x01(\x01HK\x88\x01\x01\x12\x1c\n\x0f\x61lpha_pl_z_pure\x18M \x01(\x01HL\x88\x01\x01\x12\x0e\n\x01\x62\x18N \x01(\x01HM\x88\x01\x01\x12\x10\n\x03\x62_b\x18O \x01(\x01HN\x88\x01\x01\x12\x10\n\x03\x62_t\x18P \x01(\x01HO\x88\x01\x01\x12\x14\n\x07\x42\x43_BS_y\x18Q \x01(\tHP\x88\x01\x01\x12\x14\n\x07\x42\x43_BS_z\x18R \x01(\tHQ\x88\x01\x01\x12\x19\n\x0c\x42\x43_EN_S460_y\x18S \x01(\tHR\x88\x01\x01\x12\x19\n\x0c\x42\x43_EN_S460_z\x18T \x01(\tHS\x88\x01\x01\x12\x14\n\x07\x42\x43_EN_y\x18U \x01(\tHT\x88\x01\x01\x12\x14\n\x07\x42\x43_EN_z\x18V \x01(\tHU\x88\x01\x01\x12\x0e\n\x01\x63\x18W \x01(\x01HV\x88\x01\x01\x12\x10\n\x03\x63_1\x18X \x01(\x01HW\x88\x01\x01\x12\x10\n\x03\x63_h\x18Y \x01(\x01HX\x88\x01\x01\x12\x12\n\x05\x63_t_f\x18Z \x01(\x01HY\x88\x01\x01\x12\x12\n\x05\x63_t_w\x18[ \x01(\x01HZ\x88\x01\x01\x12\x12\n\x05\x43r_b1\x18\\ \x01(\x01H[\x88\x01\x01\x12\x12\n\x05\x43r_b2\x18] \x01(\x01H\\\x88\x01\x01\x12\x12\n\x05\x43r_b3\x18^ \x01(\x01H]\x88\x01\x01\x12\x12\n\x05\x43r_f1\x18_ \x01(\x01H^\x88\x01\x01\x12\x12\n\x05\x43r_f2\x18` \x01(\x01H_\x88\x01\x01\x12\x12\n\x05\x43r_f3\x18\x61 \x01(\x01H`\x88\x01\x01\x12\x12\n\x05\x43r_h1\x18\x62 \x01(\x01Ha\x88\x01\x01\x12\x12\n\x05\x43r_h2\x18\x63 \x01(\x01Hb\x88\x01\x01\x12\x12\n\x05\x43r_h3\x18\x64 \x01(\x01Hc\x88\x01\x01\x12\x11\n\x04\x43r_k\x18\x65 \x01(\x01Hd\x88\x01\x01\x12\x12\n\x05\x43r_r1\x18\x66 \x01(\x01He\x88\x01\x01\x12\x12\n\x05\x43r_r2\x18g \x01(\x01Hf\x88\x01\x01\x12\x12\n\x05\x43r_r3\x18h \x01(\x01Hg\x88\x01\x01\x12\x12\n\x05\x43r_r4\x18i \x01(\x01Hh\x88\x01\x01\x12\x12\n\x05\x43r_r5\x18j \x01(\x01Hi\x88\x01\x01\x12\x12\n\x05\x43r_r6\x18k \x01(\x01Hj\x88\x01\x01\x12\x12\n\x05\x43r_r7\x18l \x01(\x01Hk\x88\x01\x01\x12\x0e\n\x01\x64\x18m \x01(\x01Hl\x88\x01\x01\x12\x10\n\x03\x64_0\x18n \x01(\x01Hm\x88\x01\x01\x12\x14\n\x07\x64_0_1_L\x18o \x01(\x01Hn\x88\x01\x01\x12\x14\n\x07\x64_0_2_L\x18p \x01(\x01Ho\x88\x01\x01\x12\x12\n\x05\x64_0_L\x18q \x01(\x01Hp\x88\x01\x01\x12\x10\n\x03\x64_1\x18r \x01(\x01Hq\x88\x01\x01\x12\x10\n\x03\x64_2\x18s \x01(\x01Hr\x88\x01\x01\x12\x10\n\x03\x64_i\x18t \x01(\x01Hs\x88\x01\x01\x12\x0f\n\x02\x44N\x18u \x01(\x01Ht\x88\x01\x01\x12\x10\n\x03\x65_y\x18v \x01(\x01Hu\x88\x01\x01\x12\x10\n\x03\x65_z\x18w \x01(\x01Hv\x88\x01\x01\x12\x16\n\tF_pk_1570\x18x \x01(\x01Hw\x88\x01\x01\x12\x16\n\tF_pk_1770\x18y \x01(\x01Hx\x88\x01\x01\x12\x0e\n\x01G\x18z \x01(\x01Hy\x88\x01\x01\x12\x0e\n\x01h\x18{ \x01(\x01Hz\x88\x01\x01\x12\x12\n\x05h_c_T\x18| \x01(\x01H{\x88\x01\x01\x12\x10\n\x03h_i\x18} \x01(\x01H|\x88\x01\x01\x12\x10\n\x03h_w\x18~ \x01(\x01H}\x88\x01\x01\x12\x12\n\x05h_w_b\x18\x7f \x01(\x01H~\x88\x01\x01\x12\x13\n\x05h_w_t\x18\x80\x01 \x01(\x01H\x7f\x88\x01\x01\x12\x19\n\nI_ef_minus\x18\x81\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12\x18\n\tI_ef_plus\x18\x82\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12\x19\n\nI_omega_SC\x18\x83\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x1f\n\x10I_omega_SC_eigen\x18\x84\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12\x12\n\x03I_p\x18\x85\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12\x15\n\x06I_p_SC\x18\x86\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12\x12\n\x03I_t\x18\x87\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12\x18\n\tI_t_Bredt\x18\x88\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12\x18\n\tI_t_StVen\x18\x89\x01 \x01(\x01H\x88\x01\x88\x01\x01\x12\x12\n\x03I_u\x18\x8a\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12\x12\n\x03I_v\x18\x8b\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12\x12\n\x03I_y\x18\x8c\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12\x13\n\x04I_yz\x18\x8d\x01 \x01(\x01H\x8c\x01\x88\x01\x01\x12\x12\n\x03I_z\x18\x8e\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x14\n\x05I_z_1\x18\x8f\x01 \x01(\x01H\x8e\x01\x88\x01\x01\x12\x14\n\x05j_f_z\x18\x90\x01 \x01(\x01H\x8f\x01\x88\x01\x01\x12\x19\n\nj_omega_SC\x18\x91\x01 \x01(\x01H\x90\x01\x88\x01\x01\x12\x12\n\x03j_p\x18\x92\x01 \x01(\x01H\x91\x01\x88\x01\x01\x12\x15\n\x06j_p_SC\x18\x93\x01 \x01(\x01H\x92\x01\x88\x01\x01\x12\x12\n\x03j_u\x18\x94\x01 \x01(\x01H\x93\x01\x88\x01\x01\x12\x12\n\x03j_v\x18\x95\x01 \x01(\x01H\x94\x01\x88\x01\x01\x12\x12\n\x03j_y\x18\x96\x01 \x01(\x01H\x95\x01\x88\x01\x01\x12\x13\n\x04j_yz\x18\x97\x01 \x01(\x01H\x96\x01\x88\x01\x01\x12\x12\n\x03j_z\x18\x98\x01 \x01(\x01H\x97\x01\x88\x01\x01\x12\x14\n\x05j_z_g\x18\x99\x01 \x01(\x01H\x98\x01\x88\x01\x01\x12\x10\n\x01k\x18\x9a\x01 \x01(\x01H\x99\x01\x88\x01\x01\x12\x12\n\x03k_1\x18\x9b\x01 \x01(\x01H\x9a\x01\x88\x01\x01\x12\x19\n\nM_pl_omega\x18\x9c\x01 \x01(\x01H\x9b\x01\x88\x01\x01\x12\x15\n\x06M_pl_u\x18\x9d\x01 \x01(\x01H\x9c\x01\x88\x01\x01\x12\x15\n\x06M_pl_v\x18\x9e\x01 \x01(\x01H\x9d\x01\x88\x01\x01\x12\x16\n\x07M_pl_xp\x18\x9f\x01 \x01(\x01H\x9e\x01\x88\x01\x01\x12\x16\n\x07M_pl_xs\x18\xa0\x01 \x01(\x01H\x9f\x01\x88\x01\x01\x12\x15\n\x06M_pl_y\x18\xa1\x01 \x01(\x01H\xa0\x01\x88\x01\x01\x12\x15\n\x06M_pl_z\x18\xa2\x01 \x01(\x01H\xa1\x01\x88\x01\x01\x12\x19\n\nM_u_y_S235\x18\xa3\x01 \x01(\x01H\xa2\x01\x88\x01\x01\x12\x13\n\x04N_pl\x18\xa4\x01 \x01(\x01H\xa3\x01\x88\x01\x01\x12\x12\n\x03N_u\x18\xa5\x01 \x01(\x01H\xa4\x01\x88\x01\x01\x12\x1b\n\x0comega_SC_max\x18\xa6\x01 \x01(\x01H\xa5\x01\x88\x01\x01\x12!\n\x12omega_SC_max_eigen\x18\xa7\x01 \x01(\x01H\xa6\x01\x88\x01\x01\x12\x12\n\x03Phi\x18\xa8\x01 \x01(\x01H\xa7\x01\x88\x01\x01\x12\x10\n\x01r\x18\xa9\x01 \x01(\x01H\xa8\x01\x88\x01\x01\x12\x14\n\x05r_toe\x18\xaa\x01 \x01(\x01H\xa9\x01\x88\x01\x01\x12\x12\n\x03r_1\x18\xab\x01 \x01(\x01H\xaa\x01\x88\x01\x01\x12\x12\n\x03r_2\x18\xac\x01 \x01(\x01H\xab\x01\x88\x01\x01\x12\x12\n\x03r_3\x18\xad\x01 \x01(\x01H\xac\x01\x88\x01\x01\x12\x12\n\x03r_4\x18\xae\x01 \x01(\x01H\xad\x01\x88\x01\x01\x12\x12\n\x03r_i\x18\xaf\x01 \x01(\x01H\xae\x01\x88\x01\x01\x12\x14\n\x05r_i_b\x18\xb0\x01 \x01(\x01H\xaf\x01\x88\x01\x01\x12\x14\n\x05r_i_t\x18\xb1\x01 \x01(\x01H\xb0\x01\x88\x01\x01\x12\x12\n\x03r_o\x18\xb2\x01 \x01(\x01H\xb1\x01\x88\x01\x01\x12\x19\n\nr_omega_SC\x18\xb3\x01 \x01(\x01H\xb2\x01\x88\x01\x01\x12\x12\n\x03r_u\x18\xb4\x01 \x01(\x01H\xb3\x01\x88\x01\x01\x12\x15\n\x06r_u_SC\x18\xb5\x01 \x01(\x01H\xb4\x01\x88\x01\x01\x12\x12\n\x03r_v\x18\xb6\x01 \x01(\x01H\xb5\x01\x88\x01\x01\x12\x15\n\x06r_v_SC\x18\xb7\x01 \x01(\x01H\xb6\x01\x88\x01\x01\x12\x12\n\x03r_y\x18\xb8\x01 \x01(\x01H\xb7\x01\x88\x01\x01\x12\x15\n\x06r_y_SC\x18\xb9\x01 \x01(\x01H\xb8\x01\x88\x01\x01\x12\x12\n\x03r_z\x18\xba\x01 \x01(\x01H\xb9\x01\x88\x01\x01\x12\x15\n\x06r_z_SC\x18\xbb\x01 \x01(\x01H\xba\x01\x88\x01\x01\x12\x11\n\x02rm\x18\xbc\x01 \x01(\x01H\xbb\x01\x88\x01\x01\x12\x1d\n\x0eS_omega_SC_max\x18\xbd\x01 \x01(\x01H\xbc\x01\x88\x01\x01\x12\x12\n\x03s_s\x18\xbe\x01 \x01(\x01H\xbd\x01\x88\x01\x01\x12\x16\n\x07S_u_max\x18\xbf\x01 \x01(\x01H\xbe\x01\x88\x01\x01\x12\x16\n\x07S_v_max\x18\xc0\x01 \x01(\x01H\xbf\x01\x88\x01\x01\x12\x16\n\x07S_y_max\x18\xc1\x01 \x01(\x01H\xc0\x01\x88\x01\x01\x12\x16\n\x07S_z_max\x18\xc2\x01 \x01(\x01H\xc1\x01\x88\x01\x01\x12\x14\n\x05Slope\x18\xc3\x01 \x01(\x01H\xc2\x01\x88\x01\x01\x12\x16\n\x07Slope_f\x18\xc4\x01 \x01(\x01H\xc3\x01\x88\x01\x01\x12\x16\n\x07Slope_w\x18\xc5\x01 \x01(\x01H\xc4\x01\x88\x01\x01\x12\x16\n\x07Tr_A_ef\x18\xc6\x01 \x01(\x01H\xc5\x01\x88\x01\x01\x12\x15\n\x06Tr_A_g\x18\xc7\x01 \x01(\x01H\xc6\x01\x88\x01\x01\x12\x13\n\x04Tr_b\x18\xc8\x01 \x01(\x01H\xc7\x01\x88\x01\x01\x12\x15\n\x06Tr_b_b\x18\xc9\x01 \x01(\x01H\xc8\x01\x88\x01\x01\x12\x15\n\x06Tr_b_R\x18\xca\x01 \x01(\x01H\xc9\x01\x88\x01\x01\x12\x15\n\x06Tr_b_t\x18\xcb\x01 \x01(\x01H\xca\x01\x88\x01\x01\x12\x13\n\x04Tr_h\x18\xcc\x01 \x01(\x01H\xcb\x01\x88\x01\x01\x12\x1c\n\rTr_I_ef_minus\x18\xcd\x01 \x01(\x01H\xcc\x01\x88\x01\x01\x12\x1b\n\x0cTr_I_ef_plus\x18\xce\x01 \x01(\x01H\xcd\x01\x88\x01\x01\x12\x16\n\x07Tr_j_ef\x18\xcf\x01 \x01(\x01H\xce\x01\x88\x01\x01\x12\x15\n\x06Tr_j_g\x18\xd0\x01 \x01(\x01H\xcf\x01\x88\x01\x01\x12\x15\n\x06Tr_K_1\x18\xd1\x01 \x01(\x01H\xd0\x01\x88\x01\x01\x12\x17\n\x08Tr_K_1_7\x18\xd2\x01 \x01(\x01H\xd1\x01\x88\x01\x01\x12\x15\n\x06Tr_K_2\x18\xd3\x01 \x01(\x01H\xd2\x01\x88\x01\x01\x12\x17\n\x08Tr_K_2_7\x18\xd4\x01 \x01(\x01H\xd3\x01\x88\x01\x01\x12\x15\n\x06Tr_K_3\x18\xd5\x01 \x01(\x01H\xd4\x01\x88\x01\x01\x12\x17\n\x08Tr_K_3_7\x18\xd6\x01 \x01(\x01H\xd5\x01\x88\x01\x01\x12\x15\n\x06Tr_L_G\x18\xd7\x01 \x01(\x01H\xd6\x01\x88\x01\x01\x12\x17\n\x08Tr_L_G_7\x18\xd8\x01 \x01(\x01H\xd7\x01\x88\x01\x01\x12\x1c\n\rTr_L_gr_multi\x18\xd9\x01 \x01(\x01H\xd8\x01\x88\x01\x01\x12\x1d\n\x0eTr_L_gr_single\x18\xda\x01 \x01(\x01H\xd9\x01\x88\x01\x01\x12\x19\n\nTr_min_L_S\x18\xdb\x01 \x01(\x01H\xda\x01\x88\x01\x01\x12\x1b\n\x0cTr_min_L_S_7\x18\xdc\x01 \x01(\x01H\xdb\x01\x88\x01\x01\x12\x1e\n\x0fTr_perm_F_t_130\x18\xdd\x01 \x01(\x01H\xdc\x01\x88\x01\x01\x12 \n\x11Tr_perm_F_t_130_7\x18\xde\x01 \x01(\x01H\xdd\x01\x88\x01\x01\x12\x1e\n\x0fTr_perm_F_t_280\x18\xdf\x01 \x01(\x01H\xde\x01\x88\x01\x01\x12 \n\x11Tr_perm_F_t_280_7\x18\xe0\x01 \x01(\x01H\xdf\x01\x88\x01\x01\x12\x1a\n\x0bTr_perm_T_1\x18\xe1\x01 \x01(\x01H\xe0\x01\x88\x01\x01\x12\x1c\n\rTr_perm_T_1_7\x18\xe2\x01 \x01(\x01H\xe1\x01\x88\x01\x01\x12\x1a\n\x0bTr_perm_T_2\x18\xe3\x01 \x01(\x01H\xe2\x01\x88\x01\x01\x12\x1c\n\rTr_perm_T_2_7\x18\xe4\x01 \x01(\x01H\xe3\x01\x88\x01\x01\x12\x15\n\x06Tr_t_N\x18\xe5\x01 \x01(\x01H\xe4\x01\x88\x01\x01\x12\x16\n\x07Tr_z_ef\x18\xe6\x01 \x01(\x01H\xe5\x01\x88\x01\x01\x12\x15\n\x06Tr_z_g\x18\xe7\x01 \x01(\x01H\xe6\x01\x88\x01\x01\x12\x12\n\x03u_1\x18\xe8\x01 \x01(\x01H\xe7\x01\x88\x01\x01\x12\x12\n\x03u_2\x18\xe9\x01 \x01(\x01H\xe8\x01\x88\x01\x01\x12\x12\n\x03u_3\x18\xea\x01 \x01(\x01H\xe9\x01\x88\x01\x01\x12\x14\n\x05u_max\x18\xeb\x01 \x01(\x01H\xea\x01\x88\x01\x01\x12\x14\n\x05u_min\x18\xec\x01 \x01(\x01H\xeb\x01\x88\x01\x01\x12\x13\n\x04u_pl\x18\xed\x01 \x01(\x01H\xec\x01\x88\x01\x01\x12\x10\n\x01V\x18\xee\x01 \x01(\x01H\xed\x01\x88\x01\x01\x12\x12\n\x03v_1\x18\xef\x01 \x01(\x01H\xee\x01\x88\x01\x01\x12\x12\n\x03v_2\x18\xf0\x01 \x01(\x01H\xef\x01\x88\x01\x01\x12\x14\n\x05v_max\x18\xf1\x01 \x01(\x01H\xf0\x01\x88\x01\x01\x12\x14\n\x05v_min\x18\xf2\x01 \x01(\x01H\xf1\x01\x88\x01\x01\x12\x13\n\x04v_pl\x18\xf3\x01 \x01(\x01H\xf2\x01\x88\x01\x01\x12\x15\n\x06V_pl_u\x18\xf4\x01 \x01(\x01H\xf3\x01\x88\x01\x01\x12\x15\n\x06V_pl_v\x18\xf5\x01 \x01(\x01H\xf4\x01\x88\x01\x01\x12\x15\n\x06V_pl_y\x18\xf6\x01 \x01(\x01H\xf5\x01\x88\x01\x01\x12\x15\n\x06V_pl_z\x18\xf7\x01 \x01(\x01H\xf6\x01\x88\x01\x01\x12\x12\n\x03w_0\x18\xf8\x01 \x01(\x01H\xf7\x01\x88\x01\x01\x12\x14\n\x05w_0_L\x18\xf9\x01 \x01(\x01H\xf8\x01\x88\x01\x01\x12\x12\n\x03w_1\x18\xfa\x01 \x01(\x01H\xf9\x01\x88\x01\x01\x12\x14\n\x05w_1_L\x18\xfb\x01 \x01(\x01H\xfa\x01\x88\x01\x01\x12\x12\n\x03w_2\x18\xfc\x01 \x01(\x01H\xfb\x01\x88\x01\x01\x12\x14\n\x05w_2_L\x18\xfd\x01 \x01(\x01H\xfc\x01\x88\x01\x01\x12\x14\n\x05w_3_L\x18\xfe\x01 \x01(\x01H\xfd\x01\x88\x01\x01\x12\x19\n\nW_omega_SC\x18\xff\x01 \x01(\x01H\xfe\x01\x88\x01\x01\x12\x1c\n\rW_pl_omega_SC\x18\x80\x02 \x01(\x01H\xff\x01\x88\x01\x01\x12\x15\n\x06W_pl_u\x18\x81\x02 \x01(\x01H\x80\x02\x88\x01\x01\x12\x1a\n\x0bW_pl_u_pure\x18\x82\x02 \x01(\x01H\x81\x02\x88\x01\x01\x12\x15\n\x06W_pl_v\x18\x83\x02 \x01(\x01H\x82\x02\x88\x01\x01\x12\x1a\n\x0bW_pl_v_pure\x18\x84\x02 \x01(\x01H\x83\x02\x88\x01\x01\x12\x15\n\x06W_pl_y\x18\x85\x02 \x01(\x01H\x84\x02\x88\x01\x01\x12\x1a\n\x0bW_pl_y_pure\x18\x86\x02 \x01(\x01H\x85\x02\x88\x01\x01\x12\x15\n\x06W_pl_z\x18\x87\x02 \x01(\x01H\x86\x02\x88\x01\x01\x12\x1a\n\x0bW_pl_z_pure\x18\x88\x02 \x01(\x01H\x87\x02\x88\x01\x01\x12\x12\n\x03W_t\x18\x89\x02 \x01(\x01H\x88\x02\x88\x01\x01\x12\x12\n\x03W_u\x18\x8a\x02 \x01(\x01H\x89\x02\x88\x01\x01\x12\x16\n\x07W_u_max\x18\x8b\x02 \x01(\x01H\x8a\x02\x88\x01\x01\x12\x16\n\x07W_u_min\x18\x8c\x02 \x01(\x01H\x8b\x02\x88\x01\x01\x12\x12\n\x03W_v\x18\x8d\x02 \x01(\x01H\x8c\x02\x88\x01\x01\x12\x16\n\x07W_v_max\x18\x8e\x02 \x01(\x01H\x8d\x02\x88\x01\x01\x12\x16\n\x07W_v_min\x18\x8f\x02 \x01(\x01H\x8e\x02\x88\x01\x01\x12\x12\n\x03W_y\x18\x90\x02 \x01(\x01H\x8f\x02\x88\x01\x01\x12\x16\n\x07W_y_max\x18\x91\x02 \x01(\x01H\x90\x02\x88\x01\x01\x12\x16\n\x07W_y_min\x18\x92\x02 \x01(\x01H\x91\x02\x88\x01\x01\x12\x12\n\x03W_z\x18\x93\x02 \x01(\x01H\x92\x02\x88\x01\x01\x12\x16\n\x07W_z_max\x18\x94\x02 \x01(\x01H\x93\x02\x88\x01\x01\x12\x16\n\x07W_z_min\x18\x95\x02 \x01(\x01H\x94\x02\x88\x01\x01\x12\x12\n\x03WAF\x18\x96\x02 \x01(\x01H\x95\x02\x88\x01\x01\x12\x12\n\x03WLL\x18\x97\x02 \x01(\x01H\x96\x02\x88\x01\x01\x12\x13\n\x04y_SC\x18\x98\x02 \x01(\x01H\x97\x02\x88\x01\x01\x12\x12\n\x03y_p\x18\x99\x02 \x01(\x01H\x98\x02\x88\x01\x01\x12\x13\n\x04y_pl\x18\x9a\x02 \x01(\x01H\x99\x02\x88\x01\x01\x12\x14\n\x05Z_b_k\x18\x9b\x02 \x01(\x01H\x9a\x02\x88\x01\x01\x12\x13\n\x04z_SC\x18\x9c\x02 \x01(\x01H\x9b\x02\x88\x01\x01\x12\x12\n\x03z_p\x18\x9d\x02 \x01(\x01H\x9c\x02\x88\x01\x01\x12\x13\n\x04z_pl\x18\x9e\x02 \x01(\x01H\x9d\x02\x88\x01\x01\x12\x14\n\x05Z_r_d\x18\x9f\x02 \x01(\x01H\x9e\x02\x88\x01\x01\x12\x14\n\x05I_t_s\x18\xa0\x02 \x01(\x01H\x9f\x02\x88\x01\x01\x12\x14\n\x05\x61_1_y\x18\xa1\x02 \x01(\x01H\xa0\x02\x88\x01\x01\x12\x14\n\x05\x61_1_z\x18\xa2\x02 \x01(\x01H\xa1\x02\x88\x01\x01\x12\x14\n\x05\x61_2_y\x18\xa3\x02 \x01(\x01H\xa2\x02\x88\x01\x01\x12\x14\n\x05\x61_2_z\x18\xa4\x02 \x01(\x01H\xa3\x02\x88\x01\x01\x12\x14\n\x05\x61_3_y\x18\xa5\x02 \x01(\x01H\xa4\x02\x88\x01\x01\x12\x14\n\x05\x61_3_z\x18\xa6\x02 \x01(\x01H\xa5\x02\x88\x01\x01\x12\x14\n\x05\x61_4_y\x18\xa7\x02 \x01(\x01H\xa6\x02\x88\x01\x01\x12\x14\n\x05\x61_4_z\x18\xa8\x02 \x01(\x01H\xa7\x02\x88\x01\x01\x12\x14\n\x05\x61_5_y\x18\xa9\x02 \x01(\x01H\xa8\x02\x88\x01\x01\x12\x14\n\x05\x61_5_z\x18\xaa\x02 \x01(\x01H\xa9\x02\x88\x01\x01\x12\x14\n\x05\x61_6_y\x18\xab\x02 \x01(\x01H\xaa\x02\x88\x01\x01\x12\x14\n\x05\x61_6_z\x18\xac\x02 \x01(\x01H\xab\x02\x88\x01\x01\x12\x14\n\x05\x61_7_y\x18\xad\x02 \x01(\x01H\xac\x02\x88\x01\x01\x12\x14\n\x05\x61_7_z\x18\xae\x02 \x01(\x01H\xad\x02\x88\x01\x01\x12\x14\n\x05\x61_8_y\x18\xaf\x02 \x01(\x01H\xae\x02\x88\x01\x01\x12\x14\n\x05\x61_8_z\x18\xb0\x02 \x01(\x01H\xaf\x02\x88\x01\x01\x12\x15\n\x06\x61_weld\x18\xb1\x02 \x01(\x01H\xb0\x02\x88\x01\x01\x12\x17\n\x08\x61_weld_b\x18\xb2\x02 \x01(\x01H\xb1\x02\x88\x01\x01\x12\x17\n\x08\x61_weld_t\x18\xb3\x02 \x01(\x01H\xb2\x02\x88\x01\x01\x12\x12\n\x03\x41_w\x18\xb4\x02 \x01(\x01H\xb3\x02\x88\x01\x01\x12\x14\n\x05\x62_b_l\x18\xb5\x02 \x01(\x01H\xb4\x02\x88\x01\x01\x12\x14\n\x05\x62_b_r\x18\xb6\x02 \x01(\x01H\xb5\x02\x88\x01\x01\x12\x14\n\x05\x62_t_l\x18\xb7\x02 \x01(\x01H\xb6\x02\x88\x01\x01\x12\x14\n\x05\x62_t_r\x18\xb8\x02 \x01(\x01H\xb7\x02\x88\x01\x01\x12\x12\n\x03\x64_o\x18\xb9\x02 \x01(\x01H\xb8\x02\x88\x01\x01\x12\x14\n\x05r_1_b\x18\xba\x02 \x01(\x01H\xb9\x02\x88\x01\x01\x12\x14\n\x05r_1_t\x18\xbb\x02 \x01(\x01H\xba\x02\x88\x01\x01\x12\x12\n\x03\x62_1\x18\xbc\x02 \x01(\x01H\xbb\x02\x88\x01\x01\x12\x12\n\x03h_1\x18\xbd\x02 \x01(\x01H\xbc\x02\x88\x01\x01\x12\x16\n\x07\x61lpha_t\x18\xbe\x02 \x01(\x01H\xbd\x02\x88\x01\x01\x12\x12\n\x03h_0\x18\xbf\x02 \x01(\x01H\xbe\x02\x88\x01\x01\x12\x12\n\x03\x62_0\x18\xc0\x02 \x01(\x01H\xbf\x02\x88\x01\x01\x12\x12\n\x03h_e\x18\xc1\x02 \x01(\x01H\xc0\x02\x88\x01\x01\x12\x12\n\x03h_c\x18\xc2\x02 \x01(\x01H\xc1\x02\x88\x01\x01\x12\x12\n\x03\x62_c\x18\xc3\x02 \x01(\x01H\xc2\x02\x88\x01\x01\x12\x12\n\x03\x62_f\x18\xc4\x02 \x01(\x01H\xc3\x02\x88\x01\x01\x12\x15\n\x06\x62_fb_t\x18\xc5\x02 \x01(\x01H\xc4\x02\x88\x01\x01\x12\x15\n\x06\x62_fb_b\x18\xc6\x02 \x01(\x01H\xc5\x02\x88\x01\x01\x12\x13\n\x04h_ss\x18\xc7\x02 \x01(\x01H\xc6\x02\x88\x01\x01\x12\x13\n\x04\x62_ss\x18\xc8\x02 \x01(\x01H\xc7\x02\x88\x01\x01\x12\x12\n\x03h_s\x18\xc9\x02 \x01(\x01H\xc8\x02\x88\x01\x01\x12\x13\n\x04h_ts\x18\xca\x02 \x01(\x01H\xc9\x02\x88\x01\x01\x12\x13\n\x04\x62_ts\x18\xcb\x02 \x01(\x01H\xca\x02\x88\x01\x01\x12\x18\n\ta_weld_ts\x18\xcc\x02 \x01(\x01H\xcb\x02\x88\x01\x01\x12\x12\n\x03\x62_l\x18\xcd\x02 \x01(\x01H\xcc\x02\x88\x01\x01\x12\x12\n\x03\x62_r\x18\xce\x02 \x01(\x01H\xcd\x02\x88\x01\x01\x12\x12\n\x03\x62_i\x18\xcf\x02 \x01(\x01H\xce\x02\x88\x01\x01\x12\x14\n\x05h_s_t\x18\xd0\x02 \x01(\x01H\xcf\x02\x88\x01\x01\x12\x14\n\x05h_s_b\x18\xd1\x02 \x01(\x01H\xd0\x02\x88\x01\x01\x12\x17\n\x08\x61_weld_s\x18\xd2\x02 \x01(\x01H\xd1\x02\x88\x01\x01\x12\x19\n\na_weld_s_t\x18\xd3\x02 \x01(\x01H\xd2\x02\x88\x01\x01\x12\x19\n\na_weld_s_b\x18\xd4\x02 \x01(\x01H\xd3\x02\x88\x01\x01\x12\x1a\n\x0b\x61_weld_ss_w\x18\xd5\x02 \x01(\x01H\xd4\x02\x88\x01\x01\x12\x1a\n\x0b\x61_weld_ss_f\x18\xd6\x02 \x01(\x01H\xd5\x02\x88\x01\x01\x12\x12\n\x03h_t\x18\xd7\x02 \x01(\x01H\xd6\x02\x88\x01\x01\x12\x10\n\x01n\x18\xd8\x02 \x01(\x01H\xd7\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_1\x18\xda\x02 \x01(\x01H\xd8\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_2\x18\xdb\x02 \x01(\x01H\xd9\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_3\x18\xdc\x02 \x01(\x01H\xda\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_4\x18\xdd\x02 \x01(\x01H\xdb\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_5\x18\xde\x02 \x01(\x01H\xdc\x02\x88\x01\x01\x12\x15\n\x06\x62_ef_6\x18\xdf\x02 \x01(\x01H\xdd\x02\x88\x01\x01\x12\x17\n\x08Tr_b_R_x\x18\xe0\x02 \x01(\x01H\xde\x02\x88\x01\x01\x12\x12\n\x03h_R\x18\xe1\x02 \x01(\x01H\xdf\x02\x88\x01\x01\x12\x14\n\x05\x62_R_t\x18\xe2\x02 \x01(\x01H\xe0\x02\x88\x01\x01\x12\x14\n\x05\x62_R_b\x18\xe3\x02 \x01(\x01H\xe1\x02\x88\x01\x01\x12\x14\n\x05gamma\x18\xe4\x02 \x01(\x01H\xe2\x02\x88\x01\x01\x12\x16\n\x07gamma_1\x18\xe5\x02 \x01(\x01H\xe3\x02\x88\x01\x01\x12\x16\n\x07gamma_2\x18\xe6\x02 \x01(\x01H\xe4\x02\x88\x01\x01\x12\x15\n\x06\x62_t_tr\x18\xe7\x02 \x01(\x01H\xe5\x02\x88\x01\x01\x12\x15\n\x06\x62_b_tr\x18\xe8\x02 \x01(\x01H\xe6\x02\x88\x01\x01\x12\x14\n\x05h_f_M\x18\xe9\x02 \x01(\x01H\xe7\x02\x88\x01\x01\x12\x14\n\x05\x62_w_M\x18\xea\x02 \x01(\x01H\xe8\x02\x88\x01\x01\x12\x16\n\x07h_f_o_M\x18\xeb\x02 \x01(\x01H\xe9\x02\x88\x01\x01\x12\x16\n\x07h_f_i_M\x18\xec\x02 \x01(\x01H\xea\x02\x88\x01\x01\x12\x16\n\x07\x62_w_o_M\x18\xed\x02 \x01(\x01H\xeb\x02\x88\x01\x01\x12\x16\n\x07\x62_w_i_M\x18\xee\x02 \x01(\x01H\xec\x02\x88\x01\x01\x12\x14\n\x05h_c_M\x18\xef\x02 \x01(\x01H\xed\x02\x88\x01\x01\x12\x14\n\x05\x62_c_M\x18\xf0\x02 \x01(\x01H\xee\x02\x88\x01\x01\x12\x16\n\x07h_f_l_M\x18\xf1\x02 \x01(\x01H\xef\x02\x88\x01\x01\x12\x16\n\x07h_f_r_M\x18\xf2\x02 \x01(\x01H\xf0\x02\x88\x01\x01\x12\x16\n\x07h_f_t_M\x18\xf3\x02 \x01(\x01H\xf1\x02\x88\x01\x01\x12\x16\n\x07h_f_b_M\x18\xf4\x02 \x01(\x01H\xf2\x02\x88\x01\x01\x12\x18\n\th_c_t_l_M\x18\xf5\x02 \x01(\x01H\xf3\x02\x88\x01\x01\x12\x18\n\tb_c_t_l_M\x18\xf6\x02 \x01(\x01H\xf4\x02\x88\x01\x01\x12\x18\n\th_c_t_r_M\x18\xf7\x02 \x01(\x01H\xf5\x02\x88\x01\x01\x12\x18\n\tb_c_t_r_M\x18\xf8\x02 \x01(\x01H\xf6\x02\x88\x01\x01\x12\x18\n\th_c_b_l_M\x18\xf9\x02 \x01(\x01H\xf7\x02\x88\x01\x01\x12\x18\n\tb_c_b_l_M\x18\xfa\x02 \x01(\x01H\xf8\x02\x88\x01\x01\x12\x18\n\th_c_b_r_M\x18\xfb\x02 \x01(\x01H\xf9\x02\x88\x01\x01\x12\x18\n\tb_c_b_r_M\x18\xfc\x02 \x01(\x01H\xfa\x02\x88\x01\x01\x12\x18\n\th_f_t_o_M\x18\xfd\x02 \x01(\x01H\xfb\x02\x88\x01\x01\x12\x18\n\th_f_t_i_M\x18\xfe\x02 \x01(\x01H\xfc\x02\x88\x01\x01\x12\x18\n\th_f_b_o_M\x18\xff\x02 \x01(\x01H\xfd\x02\x88\x01\x01\x12\x18\n\th_f_b_i_M\x18\x80\x03 \x01(\x01H\xfe\x02\x88\x01\x01\x12\x16\n\x07\x62_w_l_M\x18\x81\x03 \x01(\x01H\xff\x02\x88\x01\x01\x12\x16\n\x07\x62_w_r_M\x18\x82\x03 \x01(\x01H\x80\x03\x88\x01\x01\x12\x14\n\x05\x62_1_M\x18\x83\x03 \x01(\x01H\x81\x03\x88\x01\x01\x12\x14\n\x05\x62_2_M\x18\x84\x03 \x01(\x01H\x82\x03\x88\x01\x01\x12\x14\n\x05\x61_1_M\x18\x85\x03 \x01(\x01H\x83\x03\x88\x01\x01\x12\x14\n\x05h_1_M\x18\x86\x03 \x01(\x01H\x84\x03\x88\x01\x01\x12\x14\n\x05h_3_M\x18\x87\x03 \x01(\x01H\x85\x03\x88\x01\x01\x12\x14\n\x05h_i_M\x18\x88\x03 \x01(\x01H\x86\x03\x88\x01\x01\x12\x14\n\x05\x62_3_M\x18\x89\x03 \x01(\x01H\x87\x03\x88\x01\x01\x12\x14\n\x05\x62_i_M\x18\x8a\x03 \x01(\x01H\x88\x03\x88\x01\x01\x12\x14\n\x05\x61_i_y\x18\x8b\x03 \x01(\x01H\x89\x03\x88\x01\x01\x12\x14\n\x05\x61_i_z\x18\x8c\x03 \x01(\x01H\x8a\x03\x88\x01\x01\x12\x13\n\x04u_SC\x18\x8d\x03 \x01(\x01H\x8b\x03\x88\x01\x01\x12\x13\n\x04v_SC\x18\x8e\x03 \x01(\x01H\x8c\x03\x88\x01\x01\x12\x18\n\th_f_t_l_M\x18\x8f\x03 \x01(\x01H\x8d\x03\x88\x01\x01\x12\x18\n\th_f_t_r_M\x18\x90\x03 \x01(\x01H\x8e\x03\x88\x01\x01\x12\x18\n\th_f_b_r_M\x18\x91\x03 \x01(\x01H\x8f\x03\x88\x01\x01\x12\x18\n\th_f_b_l_M\x18\x92\x03 \x01(\x01H\x90\x03\x88\x01\x01\x12\x18\n\tN_pl_S235\x18\x93\x03 \x01(\x01H\x91\x03\x88\x01\x01\x12\x1a\n\x0bV_pl_y_S235\x18\x94\x03 \x01(\x01H\x92\x03\x88\x01\x01\x12\x1a\n\x0bV_pl_z_S235\x18\x95\x03 \x01(\x01H\x93\x03\x88\x01\x01\x12\x1a\n\x0bM_pl_y_S235\x18\x96\x03 \x01(\x01H\x94\x03\x88\x01\x01\x12\x1a\n\x0bM_pl_z_S235\x18\x97\x03 \x01(\x01H\x95\x03\x88\x01\x01\x12\x1b\n\x0cM_pl_xp_S235\x18\x98\x03 \x01(\x01H\x96\x03\x88\x01\x01\x12\x1b\n\x0cM_pl_xs_S235\x18\x99\x03 \x01(\x01H\x97\x03\x88\x01\x01\x12\x1e\n\x0fM_pl_omega_S235\x18\x9a\x03 \x01(\x01H\x98\x03\x88\x01\x01\x12\x14\n\x05r_2_h\x18\x9b\x03 \x01(\x01H\x99\x03\x88\x01\x01\x12\x14\n\x05r_2_b\x18\x9c\x03 \x01(\x01H\x9a\x03\x88\x01\x01\x12\x16\n\x07r_i_CHS\x18\x9d\x03 \x01(\x01H\x9b\x03\x88\x01\x01\x12\x16\n\x07r_o_CHS\x18\x9e\x03 \x01(\x01H\x9c\x03\x88\x01\x01\x12\x18\n\tr_mid_CHS\x18\x9f\x03 \x01(\x01H\x9d\x03\x88\x01\x01\x12\x16\n\x07\x62_w_h_M\x18\xa0\x03 \x01(\x01H\x9e\x03\x88\x01\x01\x12\x17\n\x08\x62_w_h2_M\x18\xa1\x03 \x01(\x01H\x9f\x03\x88\x01\x01\x12\x12\n\x03\x64_M\x18\xa2\x03 \x01(\x01H\xa0\x03\x88\x01\x01\x12\x16\n\x07h_f_h_M\x18\xa3\x03 \x01(\x01H\xa1\x03\x88\x01\x01\x12\x16\n\x07h_c_s_M\x18\xa4\x03 \x01(\x01H\xa2\x03\x88\x01\x01\x12\x14\n\x05h_2_M\x18\xa5\x03 \x01(\x01H\xa3\x03\x88\x01\x01\x12\x19\n\nA_w_y_AISC\x18\xa6\x03 \x01(\x01H\xa4\x03\x88\x01\x01\x12\x19\n\nA_w_z_AISC\x18\xa7\x03 \x01(\x01H\xa5\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_y_BS5950\x18\xa8\x03 \x01(\x01H\xa6\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_z_BS5950\x18\xa9\x03 \x01(\x01H\xa7\x03\x88\x01\x01\x12\x1b\n\x0cz_t_1_2_kruh\x18\xaa\x03 \x01(\x01H\xa8\x03\x88\x01\x01\x12\x1b\n\x0cI_y_1_2_kruh\x18\xab\x03 \x01(\x01H\xa9\x03\x88\x01\x01\x12\x16\n\x07h_c_t_M\x18\xac\x03 \x01(\x01H\xaa\x03\x88\x01\x01\x12\x16\n\x07h_c_b_M\x18\xad\x03 \x01(\x01H\xab\x03\x88\x01\x01\x12\x16\n\x07\x62_c_t_M\x18\xae\x03 \x01(\x01H\xac\x03\x88\x01\x01\x12\x16\n\x07\x62_c_b_M\x18\xaf\x03 \x01(\x01H\xad\x03\x88\x01\x01\x12\x16\n\x07\x62_a_s_M\x18\xb0\x03 \x01(\x01H\xae\x03\x88\x01\x01\x12\x18\n\tb_f_t_l_M\x18\xb1\x03 \x01(\x01H\xaf\x03\x88\x01\x01\x12\x18\n\tb_f_t_r_M\x18\xb2\x03 \x01(\x01H\xb0\x03\x88\x01\x01\x12\x18\n\tb_f_b_l_M\x18\xb3\x03 \x01(\x01H\xb1\x03\x88\x01\x01\x12\x18\n\tb_f_b_r_M\x18\xb4\x03 \x01(\x01H\xb2\x03\x88\x01\x01\x12\x1a\n\x0b\x61_weld_fb_t\x18\xb5\x03 \x01(\x01H\xb3\x03\x88\x01\x01\x12\x1a\n\x0b\x61_weld_fb_b\x18\xb6\x03 \x01(\x01H\xb4\x03\x88\x01\x01\x12\x13\n\x04h_is\x18\xb7\x03 \x01(\x01H\xb5\x03\x88\x01\x01\x12\x1b\n\x0c\x61_weld_is_ts\x18\xb8\x03 \x01(\x01H\xb6\x03\x88\x01\x01\x12\x13\n\x04\x62_is\x18\xb9\x03 \x01(\x01H\xb7\x03\x88\x01\x01\x12\x18\n\th_f_h_t_M\x18\xba\x03 \x01(\x01H\xb8\x03\x88\x01\x01\x12\x18\n\th_f_h_b_M\x18\xbb\x03 \x01(\x01H\xb9\x03\x88\x01\x01\x12\x14\n\x05\x63_t_Z\x18\xbc\x03 \x01(\x01H\xba\x03\x88\x01\x01\x12\x14\n\x05\x63_b_Z\x18\xbd\x03 \x01(\x01H\xbb\x03\x88\x01\x01\x12\x14\n\x05\x62_1_C\x18\xbe\x03 \x01(\x01H\xbc\x03\x88\x01\x01\x12\x14\n\x05\x62_2_C\x18\xbf\x03 \x01(\x01H\xbd\x03\x88\x01\x01\x12\x12\n\x03\x63_Z\x18\xc0\x03 \x01(\x01H\xbe\x03\x88\x01\x01\x12\x11\n\x02G1\x18\xc1\x03 \x01(\x01H\xbf\x03\x88\x01\x01\x12\x13\n\x04I_y1\x18\xc2\x03 \x01(\x01H\xc0\x03\x88\x01\x01\x12\x13\n\x04W_y1\x18\xc3\x03 \x01(\x01H\xc1\x03\x88\x01\x01\x12\x13\n\x04I_t1\x18\xc4\x03 \x01(\x01H\xc2\x03\x88\x01\x01\x12\x13\n\x04z_EP\x18\xc5\x03 \x01(\x01H\xc3\x03\x88\x01\x01\x12\x14\n\x05\x61_2_M\x18\xc6\x03 \x01(\x01H\xc4\x03\x88\x01\x01\x12\x14\n\x05\x62_t_M\x18\xc7\x03 \x01(\x01H\xc5\x03\x88\x01\x01\x12\x14\n\x05\x62_b_M\x18\xc8\x03 \x01(\x01H\xc6\x03\x88\x01\x01\x12\x12\n\x03\x61_1\x18\xc9\x03 \x01(\x01H\xc7\x03\x88\x01\x01\x12\x12\n\x03\x61_2\x18\xca\x03 \x01(\x01H\xc8\x03\x88\x01\x01\x12\x14\n\x05Z_min\x18\xcb\x03 \x01(\x01H\xc9\x03\x88\x01\x01\x12\x14\n\x05G_cat\x18\xcc\x03 \x01(\x01H\xca\x03\x88\x01\x01\x12\x16\n\x07\x65_y_cat\x18\xcd\x03 \x01(\x01H\xcb\x03\x88\x01\x01\x12\x16\n\x07\x65_z_cat\x18\xce\x03 \x01(\x01H\xcc\x03\x88\x01\x01\x12\x13\n\x04\x62_fb\x18\xcf\x03 \x01(\x01H\xcd\x03\x88\x01\x01\x12\x14\n\x05\x61_2_b\x18\xd0\x03 \x01(\x01H\xce\x03\x88\x01\x01\x12\x14\n\x05\x61_2_h\x18\xd1\x03 \x01(\x01H\xcf\x03\x88\x01\x01\x12\x17\n\x08Type_c_R\x18\xd2\x03 \x01(\x01H\xd0\x03\x88\x01\x01\x12\x12\n\x03n_R\x18\xd3\x03 \x01(\x01H\xd1\x03\x88\x01\x01\x12\x14\n\x05\x41\x63_cp\x18\xd4\x03 \x01(\x01H\xd2\x03\x88\x01\x01\x12\x18\n\tA_v_y_EC9\x18\xd5\x03 \x01(\x01H\xd3\x03\x88\x01\x01\x12\x18\n\tA_v_z_EC9\x18\xd6\x03 \x01(\x01H\xd4\x03\x88\x01\x01\x12\x15\n\x06\x41_geom\x18\xd7\x03 \x01(\x01H\xd5\x03\x88\x01\x01\x12\x14\n\x05k_des\x18\xd8\x03 \x01(\x01H\xd6\x03\x88\x01\x01\x12\x14\n\x05k_det\x18\xd9\x03 \x01(\x01H\xd7\x03\x88\x01\x01\x12\x14\n\x05\x61_9_y\x18\xda\x03 \x01(\x01H\xd8\x03\x88\x01\x01\x12\x14\n\x05\x61_9_z\x18\xdb\x03 \x01(\x01H\xd9\x03\x88\x01\x01\x12\x19\n\nA_v_yy_ADM\x18\xdc\x03 \x01(\x01H\xda\x03\x88\x01\x01\x12\x19\n\nA_v_zz_ADM\x18\xdd\x03 \x01(\x01H\xdb\x03\x88\x01\x01\x12\x1a\n\x0b\x41_v_y_IS800\x18\xde\x03 \x01(\x01H\xdc\x03\x88\x01\x01\x12\x1a\n\x0b\x41_v_z_IS800\x18\xdf\x03 \x01(\x01H\xdd\x03\x88\x01\x01\x12\x19\n\nBC_IS800_y\x18\xe0\x03 \x01(\tH\xde\x03\x88\x01\x01\x12\x19\n\nBC_IS800_z\x18\xe1\x03 \x01(\tH\xdf\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_y_CSAS16\x18\xe2\x03 \x01(\x01H\xe0\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_z_CSAS16\x18\xe3\x03 \x01(\x01H\xe1\x03\x88\x01\x01\x12\x14\n\x05h_tri\x18\xe4\x03 \x01(\x01H\xe2\x03\x88\x01\x01\x12\x11\n\x02LL\x18\xe5\x03 \x01(\x01H\xe3\x03\x88\x01\x01\x12\x15\n\x06h_1_MB\x18\xe7\x03 \x01(\x01H\xe4\x03\x88\x01\x01\x12\x1a\n\x0bW_y_min_cat\x18\xe8\x03 \x01(\x01H\xe5\x03\x88\x01\x01\x12\x1a\n\x0bW_y_max_cat\x18\xe9\x03 \x01(\x01H\xe6\x03\x88\x01\x01\x12\x1a\n\x0bW_z_min_cat\x18\xea\x03 \x01(\x01H\xe7\x03\x88\x01\x01\x12\x1a\n\x0bW_z_max_cat\x18\xeb\x03 \x01(\x01H\xe8\x03\x88\x01\x01\x12\x16\n\x07W_y_cat\x18\xec\x03 \x01(\x01H\xe9\x03\x88\x01\x01\x12\x16\n\x07W_z_cat\x18\xed\x03 \x01(\x01H\xea\x03\x88\x01\x01\x12\x14\n\x05h_l_M\x18\xee\x03 \x01(\x01H\xeb\x03\x88\x01\x01\x12\x14\n\x05h_r_M\x18\xef\x03 \x01(\x01H\xec\x03\x88\x01\x01\x12\x14\n\x05h_p_M\x18\xf0\x03 \x01(\x01H\xed\x03\x88\x01\x01\x12\x14\n\x05theta\x18\xf1\x03 \x01(\x01H\xee\x03\x88\x01\x01\x12\x12\n\x03h_a\x18\xf2\x03 \x01(\x01H\xef\x03\x88\x01\x01\x12\x12\n\x03\x62_a\x18\xf3\x03 \x01(\x01H\xf0\x03\x88\x01\x01\x12\x12\n\x03\x44\x45\x45\x18\xf4\x03 \x01(\x01H\xf1\x03\x88\x01\x01\x12\x1a\n\x0b\x41_w_yy_AISI\x18\xf5\x03 \x01(\x01H\xf2\x03\x88\x01\x01\x12\x1a\n\x0b\x41_w_zz_AISI\x18\xf6\x03 \x01(\x01H\xf3\x03\x88\x01\x01\x12\x1c\n\rA_w_y_NBR8800\x18\xf7\x03 \x01(\x01H\xf4\x03\x88\x01\x01\x12\x1c\n\rA_w_z_NBR8800\x18\xf8\x03 \x01(\x01H\xf5\x03\x88\x01\x01\x12\x18\n\tgamma_lip\x18\xf9\x03 \x01(\x01H\xf6\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_y_SIA263\x18\xfa\x03 \x01(\x01H\xf7\x03\x88\x01\x01\x12\x1b\n\x0c\x41_v_z_SIA263\x18\xfb\x03 \x01(\x01H\xf8\x03\x88\x01\x01\x12\x1a\n\x0b\x42\x43_SIA263_y\x18\xfc\x03 \x01(\tH\xf9\x03\x88\x01\x01\x12\x1a\n\x0b\x42\x43_SIA263_z\x18\xfd\x03 \x01(\tH\xfa\x03\x88\x01\x01\x12\x16\n\x07gamma_0\x18\xfe\x03 \x01(\x01H\xfb\x03\x88\x01\x01\x12\x14\n\x05h_nom\x18\x80\x04 \x01(\x01H\xfc\x03\x88\x01\x01\x12\x14\n\x05\x62_nom\x18\x81\x04 \x01(\x01H\xfd\x03\x88\x01\x01\x12\x13\n\x04\x62_ps\x18\x82\x04 \x01(\x01H\xfe\x03\x88\x01\x01\x12\x1a\n\x0bW_pl_y_webs\x18\x83\x04 \x01(\x01H\xff\x03\x88\x01\x01\x12\x1d\n\x0eW_pl_z_flanges\x18\x84\x04 \x01(\x01H\x80\x04\x88\x01\x01\x12\x1e\n\x0f\x41_v_y_SANS10162\x18\x85\x04 \x01(\x01H\x81\x04\x88\x01\x01\x12\x1e\n\x0f\x41_v_z_SANS10162\x18\x86\x04 \x01(\x01H\x82\x04\x88\x01\x01\x12\x12\n\x03L_c\x18\x87\x04 \x01(\x01H\x83\x04\x88\x01\x01\x12\x15\n\x06Phi_CF\x18\x88\x04 \x01(\x01H\x84\x04\x88\x01\x01\x12\x18\n\tSum_theta\x18\x89\x04 \x01(\x01H\x85\x04\x88\x01\x01\x12\x15\n\x06\x44_hole\x18\x8a\x04 \x01(\x01H\x86\x04\x88\x01\x01\x12\x15\n\x06L_hole\x18\x8b\x04 \x01(\x01H\x87\x04\x88\x01\x01\x12\x15\n\x06\x41_hole\x18\x8c\x04 \x01(\x01H\x88\x04\x88\x01\x01\x12\x12\n\x03\x62_p\x18\x8d\x04 \x01(\x01H\x89\x04\x88\x01\x01\x12\x12\n\x03\x65_s\x18\x8e\x04 \x01(\x01H\x8a\x04\x88\x01\x01\x12\x14\n\x05r_i_1\x18\x8f\x04 \x01(\x01H\x8b\x04\x88\x01\x01\x12\x14\n\x05r_i_2\x18\x90\x04 \x01(\x01H\x8c\x04\x88\x01\x01\x12\x13\n\x04\x62_C1\x18\x91\x04 \x01(\x01H\x8d\x04\x88\x01\x01\x12\x13\n\x04\x62_CL\x18\x92\x04 \x01(\x01H\x8e\x04\x88\x01\x01\x12\x13\n\x04h_CL\x18\x93\x04 \x01(\x01H\x8f\x04\x88\x01\x01\x12\x17\n\x08\x61_weld_l\x18\x94\x04 \x01(\x01H\x90\x04\x88\x01\x01\x12\x17\n\x08\x61_weld_r\x18\x95\x04 \x01(\x01H\x91\x04\x88\x01\x01\x12\x19\n\na_weld_t_l\x18\x96\x04 \x01(\x01H\x92\x04\x88\x01\x01\x12\x19\n\na_weld_t_r\x18\x97\x04 \x01(\x01H\x93\x04\x88\x01\x01\x12\x19\n\na_weld_b_l\x18\x98\x04 \x01(\x01H\x94\x04\x88\x01\x01\x12\x19\n\na_weld_b_r\x18\x99\x04 \x01(\x01H\x95\x04\x88\x01\x01\x12\x16\n\x07o_f_l_M\x18\x9a\x04 \x01(\x01H\x96\x04\x88\x01\x01\x12\x1b\n\x0cr_i_groove_b\x18\x9b\x04 \x01(\x01H\x97\x04\x88\x01\x01\x12\x1b\n\x0cr_i_groove_t\x18\x9c\x04 \x01(\x01H\x98\x04\x88\x01\x01\x12\x12\n\x03o_U\x18\x9d\x04 \x01(\x01H\x99\x04\x88\x01\x01\x12\x16\n\x07h_tooth\x18\x9e\x04 \x01(\x01H\x9a\x04\x88\x01\x01\x12\x18\n\tt_des_t_1\x18\x9f\x04 \x01(\x01H\x9b\x04\x88\x01\x01\x12\x16\n\x07r_i_s_t\x18\xa0\x04 \x01(\x01H\x9c\x04\x88\x01\x01\x12\x16\n\x07r_i_s_b\x18\xa1\x04 \x01(\x01H\x9d\x04\x88\x01\x01\x12\x18\n\tA_v_y_NTC\x18\xa2\x04 \x01(\x01H\x9e\x04\x88\x01\x01\x12\x18\n\tA_v_z_NTC\x18\xa3\x04 \x01(\x01H\x9f\x04\x88\x01\x01\x12\x17\n\x08\x42\x43_NTC_y\x18\xa4\x04 \x01(\tH\xa0\x04\x88\x01\x01\x12\x17\n\x08\x42\x43_NTC_z\x18\xa5\x04 \x01(\tH\xa1\x04\x88\x01\x01\x12\x1c\n\rBC_NTC_S460_y\x18\xa6\x04 \x01(\tH\xa2\x04\x88\x01\x01\x12\x1c\n\rBC_NTC_S460_z\x18\xa7\x04 \x01(\tH\xa3\x04\x88\x01\x01\x12\x18\n\tA_v_z_cat\x18\xa8\x04 \x01(\x01H\xa4\x04\x88\x01\x01\x12\x16\n\x07o_f_r_M\x18\xa9\x04 \x01(\x01H\xa5\x04\x88\x01\x01\x12\x12\n\x03n_w\x18\xaa\x04 \x01(\x01H\xa6\x04\x88\x01\x01\x12\x12\n\x03n_s\x18\xab\x04 \x01(\x01H\xa7\x04\x88\x01\x01\x12\x12\n\x03\x64_s\x18\xac\x04 \x01(\x01H\xa8\x04\x88\x01\x01\x12\x17\n\x08\x64_duct_i\x18\xad\x04 \x01(\x01H\xa9\x04\x88\x01\x01\x12\x10\n\x01\x65\x18\xae\x04 \x01(\x01H\xaa\x04\x88\x01\x01\x12\x11\n\x02mu\x18\xaf\x04 \x01(\x01H\xab\x04\x88\x01\x01\x12\x13\n\x04k_wf\x18\xb0\x04 \x01(\x01H\xac\x04\x88\x01\x01\x12\x12\n\x03\x46_m\x18\xb1\x04 \x01(\x01H\xad\x04\x88\x01\x01\x12\x14\n\x05\x46_p01\x18\xb2\x04 \x01(\x01H\xae\x04\x88\x01\x01\x12\x1a\n\x0bgamma_lip_t\x18\xb3\x04 \x01(\x01H\xaf\x04\x88\x01\x01\x12\x1a\n\x0bgamma_lip_b\x18\xb4\x04 \x01(\x01H\xb0\x04\x88\x01\x01\x12\x15\n\x06t_duct\x18\xb5\x04 \x01(\x01H\xb1\x04\x88\x01\x01\x12\x17\n\x08\x64_corrug\x18\xb6\x04 \x01(\x01H\xb2\x04\x88\x01\x01\x12\x15\n\x06\x65_auto\x18\xb7\x04 \x01(\x01H\xb3\x04\x88\x01\x01\x12\x14\n\x05\x65_max\x18\xb8\x04 \x01(\x01H\xb4\x04\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xb9\x04 \x01(\tH\xb5\x04\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xba\x04 \x01(\tH\xb6\x04\x88\x01\x01\x1a\x64\n\x14HybridMaterialsTable\x12L\n\x04rows\x18\x01 \x03(\x0b\x32>.dlubal.api.rsection.structure_core.Section.HybridMaterialsRow\x1a\x96\x01\n\x12HybridMaterialsRow\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\x15\n\x08material\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x11\n\x04type\x18\x04 \x01(\tH\x03\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_materialB\x07\n\x05_type\"\x80\x02\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x17\n\x13TYPE_BUILT_UP_STEEL\x10\x08\x12\x18\n\x14TYPE_BUILT_UP_TIMBER\x10\t\x12\x18\n\x14TYPE_PARAMETRIC_BARS\x10\x07\x12\x1d\n\x19TYPE_PARAMETRIC_MASSIVE_I\x10\x04\x12\x1e\n\x1aTYPE_PARAMETRIC_MASSIVE_II\x10\x05\x12\x1f\n\x1bTYPE_PARAMETRIC_THIN_WALLED\x10\x03\x12\x1b\n\x17TYPE_STANDARDIZED_STEEL\x10\x01\x12\x1c\n\x18TYPE_STANDARDIZED_TIMBER\x10\x02\"\xf2\x01\n\x11ManufacturingType\x12\x1e\n\x1aMANUFACTURING_TYPE_UNKNOWN\x10\x00\x12\"\n\x1eMANUFACTURING_TYPE_COLD_FORMED\x10\x03\x12\x1d\n\x19MANUFACTURING_TYPE_GLULAM\x10\x07\x12!\n\x1dMANUFACTURING_TYPE_HOT_ROLLED\x10\x02\x12\x1b\n\x17MANUFACTURING_TYPE_NONE\x10\x06\x12\x1b\n\x17MANUFACTURING_TYPE_SAWN\x10\x05\x12\x1d\n\x19MANUFACTURING_TYPE_WELDED\x10\x04\"\x87p\n\x13ParametrizationType\x12 \n\x1cPARAMETRIZATION_TYPE_UNKNOWN\x10\x00\x12\x37\n3PARAMETRIZATION_TYPE_BUILT_UP_STEEL__CHANNELS__U_BU\x10o\x12M\nIPARAMETRIZATION_TYPE_BUILT_UP_STEEL__CUT_I_SECTIONS_WITH_FLAT_BAR__CIF_BU\x10u\x12T\nPPARAMETRIZATION_TYPE_BUILT_UP_STEEL__CUT_I_SECTIONS_WITH_MODIFIED_DEPTH__CIMD_BU\x10v\x12;\n7PARAMETRIZATION_TYPE_BUILT_UP_STEEL__DOUBLE_BARS__DB_BU\x10y\x12H\nCPARAMETRIZATION_TYPE_BUILT_UP_STEEL__DOUBLE_HOLLOW_SECTIONS__DHS_BU\x10\xbe\x01\x12@\n<PARAMETRIZATION_TYPE_BUILT_UP_STEEL__EQUAL_LEG_ANGLES__LE_BU\x10q\x12Z\nVPARAMETRIZATION_TYPE_BUILT_UP_STEEL__I_SECTIONS_OR_CHANNELS_WITH_SIDE_FLAT_BARS__SF_BU\x10s\x12G\nBPARAMETRIZATION_TYPE_BUILT_UP_STEEL__I_SECTIONS_WITH_ANGLES__IL_BU\x10\xb8\x01\x12H\nDPARAMETRIZATION_TYPE_BUILT_UP_STEEL__I_SECTIONS_WITH_CHANNELS__IU_BU\x10p\x12X\nTPARAMETRIZATION_TYPE_BUILT_UP_STEEL__I_SECTIONS_WITH_OTHER_SECTION_ON_FLANGE__IOF_BU\x10t\x12\x39\n5PARAMETRIZATION_TYPE_BUILT_UP_STEEL__I_SECTIONS__I_BU\x10n\x12@\n<PARAMETRIZATION_TYPE_BUILT_UP_STEEL__STIFFENED_PLATES__SP_BU\x10z\x12<\n7PARAMETRIZATION_TYPE_BUILT_UP_STEEL__TENDONS__TENDON_BU\x10\xbd\x01\x12\x42\n>PARAMETRIZATION_TYPE_BUILT_UP_STEEL__UNEQUAL_LEG_ANGLES__LU_BU\x10r\x12;\n6PARAMETRIZATION_TYPE_BUILT_UP_TIMBER__RECTANGLES__R_BU\x10\x9b\x01\x12\x38\n4PARAMETRIZATION_TYPE_PARAMETRIC_BARS__FLAT_BAR__FLAT\x10\"\x12\x42\n=PARAMETRIZATION_TYPE_PARAMETRIC_BARS__HALF_OVAL_BAR__HALFOVAL\x10\x95\x01\x12\x44\n?PARAMETRIZATION_TYPE_PARAMETRIC_BARS__HALF_ROUND_BAR__HALFROUND\x10\x94\x01\x12?\n:PARAMETRIZATION_TYPE_PARAMETRIC_BARS__HEXAGON_BAR__HEXAGON\x10\x96\x01\x12S\nNPARAMETRIZATION_TYPE_PARAMETRIC_BARS__ISOSCELES_RIGHT_TRIANGLE_BAR__TRIANGLEIR\x10\x9c\x01\x12?\n:PARAMETRIZATION_TYPE_PARAMETRIC_BARS__OCTAGON_BAR__OCTAGON\x10\x97\x01\x12\x37\n2PARAMETRIZATION_TYPE_PARAMETRIC_BARS__REBAR__REBAR\x10\xbc\x01\x12:\n6PARAMETRIZATION_TYPE_PARAMETRIC_BARS__ROUND_BAR__ROUND\x10$\x12K\nFPARAMETRIZATION_TYPE_PARAMETRIC_BARS__ROUND_CORNER_SQUARE_BAR__SQUARER\x10\x93\x01\x12K\nFPARAMETRIZATION_TYPE_PARAMETRIC_BARS__SHARP_CORNER_SQUARE_BAR__SQUARES\x10\x98\x01\x12X\nTPARAMETRIZATION_TYPE_PARAMETRIC_BRIDGES__MULTI_PIECE_TAPERED_FLANGE_T_SECTION__TTF_B\x10\x63\x12k\ngPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__2X2_MASSIVE_RECTANGLES_WITH_FULLY_RIGID_CONNECTION__2X2R_M2\x10]\x12k\ngPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__2X3_MASSIVE_RECTANGLES_WITH_FULLY_RIGID_CONNECTION__2X3R_M2\x10^\x12q\nmPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__2_MASSIVE_RECTANGLES_WITH_CONTINUOUS_PACK_AND_2_SPLICES__2RP2S_M2\x10P\x12K\nGPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__2_MASSIVE_RECTANGLES__2R_M2\x10L\x12K\nGPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__3_MASSIVE_RECTANGLES__3R_M2\x10M\x12K\nGPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__4_MASSIVE_RECTANGLES__4R_M2\x10N\x12\x65\naPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_BOX_WITH_HORIZONTAL_CONNECTION_LINES__BOXH_M2\x10Y\x12\x7f\n{PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_BOX_WITH_OVERHANGING_FLANGES_AND_HORIZONTAL_CONNECTION_LINES__BOXOFH_M2\x10W\x12}\nyPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_BOX_WITH_OVERHANGING_FLANGES_AND_VERTICAL_CONNECTION_LINES__BOXOFV_M2\x10X\x12\x63\n_PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_BOX_WITH_VERTICAL_CONNECTION_LINES__BOXV_M2\x10Z\x12o\nkPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_FIVE_LAYER_RECTANGLE_WITH_3_DIFFERENT_MATERIALS__5LR_M2\x10\x62\x12\x64\n`PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_OVAL_WITH_VERTICAL_CONNECTION_LINES__OVAL_M2\x10K\x12\x63\n_PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_RECTANGLE_WITH_2_CONTINUOUS_SPLICES__R2S_M2\x10O\x12{\nwPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_SINGLY_SYMMETRIC_I_SECTION_WITH_HORIZONTAL_CONNECTION_LINES__ISH_M2\x10U\x12\x8b\x01\n\x86\x01PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_SINGLY_SYMMETRIC_I_SECTION_WITH_THIN_FLANGES_AND_4_REINFORCING_RECTANGLES__IS4R_M2\x10_\x12y\nuPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_SINGLY_SYMMETRIC_I_SECTION_WITH_VERTICAL_CONNECTION_LINES__ISV_M2\x10V\x12p\nlPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_THREE_LAYER_RECTANGLE_WITH_2_DIFFERENT_MATERIALS__3LR_M2\x10\x61\x12j\nfPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_TWO_BOX_WITH_HORIZONTAL_CONNECTION_LINES__2BOXH_M2\x10[\x12h\ndPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_TWO_BOX_WITH_VERTICAL_CONNECTION_LINES__2BOXV_M2\x10\\\x12o\njPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_TWO_LAYER_RECTANGLE_WITH_2_DIFFERENT_MATERIALS__2LR_M2\x10\x9e\x01\x12h\ndPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_T_SECTION_WITH_HORIZONTAL_CONNECTION_LINE__TH_M2\x10Q\x12g\ncPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_T_SECTION_WITH_VERTICAL_CONNECTION_LINES__TV_M2\x10R\x12i\nePARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_U_SECTION_WITH_HORIZONTAL_CONNECTION_LINES__UH_M2\x10S\x12g\ncPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_U_SECTION_WITH_VERTICAL_CONNECTION_LINES__UV_M2\x10T\x12\x66\naPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_II__MASSIVE_V_SECTION_WITH_VERTICAL_CONNECTION_LINE__V_M2\x10\xa6\x01\x12H\nDPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_CIRCLE__CIRCLE_M1\x10\x35\x12l\nhPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_DOUBLE_T_SECTION_WITH_CHAMFERED_INNER_CORNERS__DTC_M1\x10?\x12N\nJPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_DOUBLE_T_SECTION__DT_M1\x10>\x12X\nTPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_DOUBLY_SYMMETRIC_I_SECTION__ID_M1\x10\x33\x12M\nIPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_HALF_OVAL__HALFOVAL_M1\x10,\x12O\nKPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_HALF_ROUND__HALFROUND_M1\x10+\x12J\nFPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_HEXAGON__HEXAGON_M1\x10*\x12P\nLPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_HOLLOW_CIRCLE__HCIRCLE_M1\x10\x36\x12\x64\n`PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_I_SECTION_WITH_CHAMFERED_INNER_CORNERS__IC_M1\x10\x45\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_I_SECTION__I_M1\x10\x34\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_L_SECTION__L_M1\x10\x64\x12J\nFPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_OCTAGON__OCTAGON_M1\x10/\x12\x44\n@PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_OVAL__OVAL_M1\x10\x41\x12M\nHPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_PARALLELOGRAM__PAR_M1\x10\xa5\x01\x12l\nhPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE_WITH_CHAMFERED_RECTANGULAR_OPENING__RROC_M1\x10\x44\x12h\ncPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE_WITH_PEAKS_OUTWARD_AND_INWARD__RPOI_M1\x10\xa2\x01\x12Z\nUPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE_WITH_PEAK_INWARD__RPI_M1\x10\xa0\x01\x12[\nVPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE_WITH_PEAK_OUTWARD__RPO_M1\x10\xa1\x01\x12\x61\n]PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE_WITH_RECTANGULAR_OPENING__RRO_M1\x10\x37\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RECTANGLE__R_M1\x10\x31\x12W\nRPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_RIGHT_ANGLED_TRAPEZOID__TRRA_M1\x10\x9f\x01\x12U\nPPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_ROUND_CORNER_RECTANGLE__RR_M1\x10\x99\x01\x12R\nNPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_ROUND_CORNER_SQUARE__SQR_M1\x10)\x12\x45\n@PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_SQUARE__SQ_M1\x10\x9a\x01\x12W\nSPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_DOUBLE_T_SECTION__DTT_M1\x10@\x12W\nSPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_FLANGE_I_SECTION__ITF_M1\x10:\x12W\nSPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_FLANGE_T_SECTION__TTF_M1\x10;\x12O\nKPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_U_SECTION__UT_M1\x10h\x12r\nnPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_WEB_T_SECTION_WITH_CHAMFERED_INNER_CORNERS__TTWC_M1\x10\x43\x12T\nPPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TAPERED_WEB_T_SECTION__TTW_M1\x10\x42\x12G\nCPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_TRAPEZOID__TR_M1\x10\x38\x12\x64\n`PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_T_SECTION_WITH_CHAMFERED_INNER_CORNERS__TC_M1\x10i\x12Z\nUPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_T_SECTION_WITH_PEAK_INWARD__TPI_M1\x10\xa3\x01\x12[\nVPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_T_SECTION_WITH_PEAK_OUTWARD__TPO_M1\x10\xa4\x01\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_T_SECTION__T_M1\x10\x32\x12q\nmPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_UNSYMMETRIC_I_SECTION_WITH_CHAMFERED_INNER_CORNERS__IUC_M1\x10H\x12S\nOPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_UNSYMMETRIC_I_SECTION__IU_M1\x10\x65\x12y\ntPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_UNSYMMETRIC_T_SECTION_WITH_OFFSET_FLANGES_ON_BOTH_SIDES__TU2OF_M1\x10\xb9\x01\x12i\ndPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_UNSYMMETRIC_T_SECTION_WITH_OFFSET_FLANGE__TUOF_M1\x10\xb5\x01\x12S\nOPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_UNSYMMETRIC_T_SECTION__TU_M1\x10<\x12\x64\n`PARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_U_SECTION_WITH_CHAMFERED_INNER_CORNERS__UC_M1\x10g\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_U_SECTION__U_M1\x10\x39\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_MASSIVE_I__MASSIVE_Z_SECTION__Z_M1\x10=\x12@\n;PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_CHANNELS__2U\x10\xb2\x01\x12\x44\n?PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_CL_SECTIONS__2CL\x10\xb4\x01\x12\x42\n=PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_C_SECTIONS__2C\x10\xb3\x01\x12Y\nTPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_EQUAL_LEG_ANGLES_BACK_TO_BACK__2LE_BB\x10\xa8\x01\x12\x66\naPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_UNEQUAL_LEG_ANGLES_LONG_LEGS_BACK_TO_BACK__2L_LLBB\x10\xaa\x01\x12g\nbPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__2_UNEQUAL_LEG_ANGLES_SHORT_LEGS_BACK_TO_BACK__2L_SLBB\x10\xa9\x01\x12\x44\n@PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__BOX_TYPE_AX__BOX_AX\x10\x1a\x12\x42\n>PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__BOX_TYPE_A__BOX_A\x10\x18\x12\x44\n@PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__BOX_TYPE_BX__BOX_BX\x10\x1b\x12\x42\n>PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__BOX_TYPE_B__BOX_B\x10\x19\x12;\n7PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__CHANNEL__U\x10\r\x12M\nIPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__CIRCULAR_HOLLOW_SECTION__CHS\x10 \x12@\n;PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__CL_SECTION__CL\x10\xad\x01\x12L\nHPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__CROSS_SHAPED_SECTION__CROSS\x10#\x12>\n9PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__C_SECTION__C\x10\xae\x01\x12O\nKPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__ELLIPTICAL_HOLLOW_SECTION__EHS\x10!\x12P\nKPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__EQUAL_LEG_ANGLE_WITH_LIPS__LEL\x10\xb0\x01\x12\x44\n@PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__EQUAL_LEG_ANGLE__LE\x10\x13\x12V\nRPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__I_SECTION_WITH_2_SIDE_FLAT_BARS__I2SF\x10&\x12M\nIPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__I_SECTION_WITH_T_SECTION__IT\x10(\x12=\n9PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__I_SECTION__I\x10\x01\x12Z\nUPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__OMEGA_SECTION_WITH_SLOPING_WEBS__OMEGASW\x10\xb7\x01\x12\x46\nAPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__OMEGA_SECTION__OMEGA\x10\xaf\x01\x12H\nDPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__PI_SECTION_TYPE_A__PI_A\x10\x0b\x12H\nDPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__PI_SECTION_TYPE_B__PI_B\x10\x0c\x12N\nJPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__POLYGONAL_HOLLOW_SECTION__PHS\x10\x1f\x12q\nmPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__RECTANGULAR_HOLLOW_SECTION_WITH_PEAKS_OUTWARD_AND_INWARD__RHSPOI\x10\x1d\x12\x64\n`PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__RECTANGULAR_HOLLOW_SECTION_WITH_PEAK_OUTWARD__RHSPO\x10\x1c\x12P\nLPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__RECTANGULAR_HOLLOW_SECTION__RHS\x10\x16\x12J\nFPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__RIB_HOLLOW_SECTION__RIBHS\x10\x17\x12\x46\nAPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SIGMA_SECTION__SIGMA\x10\xa7\x01\x12\x62\n^PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION_WITH_2_FLAT_BARS__IS2F\x10%\x12l\nhPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION_WITH_2_SLOPING_STIFFENERS__IS2SS\x10\x05\x12j\nfPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION_WITH_2_WELDED_FLAT_BARS__IS2FW\x10j\x12l\nhPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION_WITH_DOUBLE_WEB_THICKNESS__IS2WT\x10\x06\x12t\npPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION_WITH_EDGE_STIFFENERS_ON_1_FLANGE__IS1FES\x10\'\x12O\nKPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SINGLY_SYMMETRIC_I_SECTION__IS\x10\x03\x12K\nGPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__SQUARE_HOLLOW_SECTION__SHS\x10.\x12L\nHPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__TAPERED_FLANGE_CHANNEL__UTF\x10\x0e\x12N\nJPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__TAPERED_FLANGE_I_SECTION__ITF\x10\x02\x12\x61\n]PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__TAPERED_FLANGE_T_SECTION_WITH_TAPERED_WEB__TTFTW\x10\t\x12N\nJPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__TAPERED_FLANGE_T_SECTION__TTF\x10\x08\x12P\nLPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__TRAPEZOIDAL_HOLLOW_SECTION__THS\x10\x1e\x12=\n9PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__T_SECTION__T\x10\x07\x12\x46\nBPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNEQUAL_LEG_ANGLE__LU\x10\x14\x12g\ncPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_CHANNEL_WITH_EDGE_STIFFENERS_INWARD__UUESI\x10\x10\x12t\npPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_CHANNEL_WITH_EDGE_STIFFENERS_OUTWARD_AND_INWARD__UUESOI\x10\x12\x12h\ndPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_CHANNEL_WITH_EDGE_STIFFENERS_OUTWARD__UUESO\x10\x11\x12H\nDPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_CHANNEL__UU\x10\x0f\x12K\nFPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_C_SECTION__CU\x10\xb6\x01\x12J\nFPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_I_SECTION__IU\x10\x04\x12]\nYPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_RECTANGULAR_HOLLOW_SECTION__RHSU\x10m\x12J\nFPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__UNSYMMETRIC_T_SECTION__TU\x10\n\x12I\nDPARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__Z_SECTION_WITH_LIPS__ZL\x10\xb1\x01\x12=\n9PARAMETRIZATION_TYPE_PARAMETRIC_THIN_WALLED__Z_SECTION__Z\x10\x15\x12S\nNPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__2L_SECTIONS_STEEL_DOUBLE_ANGLES__2L_S\x10\xac\x01\x12\x45\n@PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__60_DEGREE_ANGLES__L60_S\x10\x88\x01\x12\x41\n<PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__BAR_SECTIONS__BAR_S\x10\x8f\x01\x12S\nNPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__CIRCULAR_HOLLOW_SECTIONS_PIPES__CHS_S\x10\x8a\x01\x12\x63\n^PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__ELLIPTICAL_AND_SEMI_ELLIPTICAL_HOLLOW_SECTIONS__EHS_S\x10\x8b\x01\x12H\nCPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__I_SECTIONS_H_SECTIONS__I_S\x10\x84\x01\x12J\nEPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__L_SECTIONS_STEEL_ANGLES__L_S\x10\x87\x01\x12\x43\n>PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__RAIL_SECTIONS__RAIL_S\x10\x8d\x01\x12\x45\n@PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__REBAR_SECTIONS__REBAR_S\x10\xba\x01\x12=\n8PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__SHEETS__SHEET_S\x10\x8e\x01\x12[\nVPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__SQUARE_AND_RECTANGULAR_HOLLOW_SECTIONS__RHS_S\x10\x89\x01\x12G\nBPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__TENDON_SECTIONS__TENDON_S\x10\xbb\x01\x12H\nCPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__T_SECTIONS_STEEL_TEES__T_S\x10\x86\x01\x12L\nGPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__U_SECTIONS_STEEL_CHANNELS__U_S\x10\x85\x01\x12\x61\n\\PARAMETRIZATION_TYPE_STANDARDIZED_STEEL__VIRTUAL_JOISTS_AND_VIRTUAL_JOIST_GIRDERS__VIRTUAL_S\x10\xab\x01\x12H\nCPARAMETRIZATION_TYPE_STANDARDIZED_STEEL__Z_SECTIONS_STEEL_ZEES__Z_S\x10\x8c\x01\x12O\nJPARAMETRIZATION_TYPE_STANDARDIZED_TIMBER__TIMBER_COMPOSED_SECTIONS__COMP_S\x10\x91\x01\x12H\nCPARAMETRIZATION_TYPE_STANDARDIZED_TIMBER__TIMBER_RECTANGLES__RECT_S\x10\x90\x01\"\xd8\x1c\n\x0f\x43ombinationType\x12\x1c\n\x18\x43OMBINATION_TYPE_UNKNOWN\x10\x00\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_2CHS\x10\xb1\x02\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2CHS_A\x10\xb5\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2HB\x10\x85\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2HF\x10\xa4\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_2I\x10\x86\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_2I_A\x10\x92\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2LCLI\x10\xa5\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LCLIR\x10\xa7\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LCLIR_A\x10\xa9\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2LCLI_A\x10\xa8\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2LCLO\x10\xa1\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LCLOC\x10\xbc\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LCLOC_A\x10\xbf\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LCLOR\x10\xa4\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LCLOR_A\x10\xa6\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2LCLO_A\x10\xa3\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2LHLI\x10\x9f\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2LHLI_A\x10\xa0\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2LHLO\x10\x9e\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2LHLO_A\x10\xa2\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LLHLI\x10\xbd\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LLHLI_A\x10\xbe\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LLHLO\x10\xb4\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LLHLO_A\x10\xb6\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LSHLI\x10\xb8\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LSHLI_A\x10\xba\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2LSHLO\x10\xb0\x01\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_2LSHLO_A\x10\xb1\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2RB\x10\x84\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2RHSH\x10\xb4\x02\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2RHSH_A\x10\xb8\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2RHSV\x10\xb3\x02\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_2RHSV_A\x10\xb7\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2SB\x10\x86\x02\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_2SHS\x10\xb2\x02\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_2SHS_A\x10\xb6\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2UCCC\x10\x9d\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2UF\x10\x94\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2UI\x10\x96\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2UI_A\x10\x97\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2UO\x10\x87\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_2UO_A\x10\x95\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2UU\x10\x9c\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_2VF\x10\xa5\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_3I\x10\x9a\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_4LHLO\x10\xaa\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_4LHLO_A\x10\xb3\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_4LLI\x10\xac\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_4LLI_A\x10\xad\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_4LLO\x10\xab\x01\x12(\n#COMBINATION_TYPE_BUILT_UP_NG_4LLO_A\x10\xae\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_CIHF\x10\xc3\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_CIMD\x10\xda\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_HNBH\x10\xaf\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_I1F\x10\xc2\x01\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_I1HIC\x10\x9d\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_I1IC\x10\x9c\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_I2F\x10\xc0\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_I2HF\x10\xb9\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_I2HIC\x10\x93\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_I2I\x10\x9b\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_I2L\x10\xa9\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_I2LLL\x10\xab\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_I2LSL\x10\xad\x02\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_ICI_MAX\x10\xb2\x01\x12)\n$COMBINATION_TYPE_BUILT_UP_NG_ICI_MIN\x10\xb5\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_IHF\x10\xbb\x01\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_IL\x10\xa8\x02\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_ILLL\x10\xaa\x02\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_ILSL\x10\xac\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_IUD\x10\x88\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_IUU\x10\x98\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_IVF\x10\xb7\x01\x12%\n COMBINATION_TYPE_BUILT_UP_NG_IWT\x10\xb9\x01\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_P2BF\x10\x8a\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_P2L\x10\x94\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_P2LLL\x10\x88\x02\x12\'\n\"COMBINATION_TYPE_BUILT_UP_NG_P2LSL\x10\x8c\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_P2T\x10\x8e\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_P2U\x10\x90\x02\x12%\n COMBINATION_TYPE_BUILT_UP_NG_PBF\x10\x89\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_PL\x10\x93\x02\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_PLLL\x10\x87\x02\x12&\n!COMBINATION_TYPE_BUILT_UP_NG_PLSL\x10\x8b\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_PT\x10\x8d\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_PU\x10\x8f\x02\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_TENDON_C\x10\xbd\x02\x12*\n%COMBINATION_TYPE_BUILT_UP_NG_TENDON_S\x10\xb0\x02\x12$\n\x1f\x43OMBINATION_TYPE_BUILT_UP_NG_UF\x10\xc1\x01\"\\\n\rTypeOfWelding\x12&\n\"TYPE_OF_WELDING_TUNGSTEN_INERT_GAS\x10\x00\x12#\n\x1fTYPE_OF_WELDING_METAL_INERT_GAS\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\x15\n\x13_manufacturing_typeB\x07\n\x05_nameB\x1e\n\x1c_shear_stiffness_deactivatedB \n\x1e_warping_stiffness_deactivatedB!\n\x1f_deactivate_shear_weld_elementsB\x14\n\x12_thin_walled_modelB\x1c\n\x1a_us_spelling_of_propertiesB*\n(_stress_smoothing_to_avoid_singularitiesB\n\n\x08_commentB\r\n\x0b_area_axialB\x0f\n\r_area_shear_yB\x0f\n\r_area_shear_zB\x1d\n\x1b_inclination_principal_axesB\r\n\x0b_location_yB\r\n\x0b_location_zB\x14\n\x12_location_offset_yB\x14\n\x12_location_offset_zB\x11\n\x0f_rotation_angleB\x12\n\x10_mirrored_axis_yB\x12\n\x10_mirrored_axis_zB \n\x1e_location_of_centroidal_axis_yB \n\x1e_location_of_centroidal_axis_zB\x1e\n\x1c_moment_of_inertia_bending_yB\x1e\n\x1c_moment_of_inertia_bending_zB\n\n\x08_warpingB\x19\n\x17_wobble_friction_factorB\x1c\n\x1a_curvature_friction_factorB\x1c\n\x1a_moment_of_inertia_torsionB\x19\n\x17_depth_temperature_loadB\x19\n\x17_width_temperature_loadB\x0b\n\t_materialB\x15\n\x13_reference_materialB\x12\n\x10_material_part_1B\x12\n\x10_material_part_2B\x12\n\x10_material_part_3B\x12\n\x10_material_part_4B\x12\n\x10_material_part_5B\x12\n\x10_material_part_6B\x12\n\x10_material_part_7B\x13\n\x11_hybrid_materialsB\x10\n\x0e_hybrid_activeB\x17\n\x15_parametrization_typeB\x13\n\x11_combination_typeB\x12\n\x10_type_of_weldingB\x19\n\x17_corrugated_sheet_widthB\x10\n\x0e_rail_worn_outB)\n\'_linear_analysis_mesh_refinement_factorB,\n*_nonlinear_analysis_mesh_refinement_factorB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x04\n\x02_AB\x06\n\x04_A_cB\t\n\x07_A_cellB\x06\n\x04_A_mB\x08\n\x06_A_m_VB\t\n\x07_A_pl_uB\t\n\x07_A_pl_vB\t\n\x07_A_pl_yB\t\n\x07_A_pl_zB\x06\n\x04_A_uB\x06\n\x04_A_vB\x08\n\x06_A_v_yB\x08\n\x06_A_v_zB\x06\n\x04_A_yB\x06\n\x04_A_zB\x08\n\x06_alphaB\x14\n\x12_alpha_pl_omega_SCB\r\n\x0b_alpha_pl_uB\x12\n\x10_alpha_pl_u_pureB\r\n\x0b_alpha_pl_vB\x12\n\x10_alpha_pl_v_pureB\r\n\x0b_alpha_pl_yB\x12\n\x10_alpha_pl_y_pureB\r\n\x0b_alpha_pl_zB\x12\n\x10_alpha_pl_z_pureB\x04\n\x02_bB\x06\n\x04_b_bB\x06\n\x04_b_tB\n\n\x08_BC_BS_yB\n\n\x08_BC_BS_zB\x0f\n\r_BC_EN_S460_yB\x0f\n\r_BC_EN_S460_zB\n\n\x08_BC_EN_yB\n\n\x08_BC_EN_zB\x04\n\x02_cB\x06\n\x04_c_1B\x06\n\x04_c_hB\x08\n\x06_c_t_fB\x08\n\x06_c_t_wB\x08\n\x06_Cr_b1B\x08\n\x06_Cr_b2B\x08\n\x06_Cr_b3B\x08\n\x06_Cr_f1B\x08\n\x06_Cr_f2B\x08\n\x06_Cr_f3B\x08\n\x06_Cr_h1B\x08\n\x06_Cr_h2B\x08\n\x06_Cr_h3B\x07\n\x05_Cr_kB\x08\n\x06_Cr_r1B\x08\n\x06_Cr_r2B\x08\n\x06_Cr_r3B\x08\n\x06_Cr_r4B\x08\n\x06_Cr_r5B\x08\n\x06_Cr_r6B\x08\n\x06_Cr_r7B\x04\n\x02_dB\x06\n\x04_d_0B\n\n\x08_d_0_1_LB\n\n\x08_d_0_2_LB\x08\n\x06_d_0_LB\x06\n\x04_d_1B\x06\n\x04_d_2B\x06\n\x04_d_iB\x05\n\x03_DNB\x06\n\x04_e_yB\x06\n\x04_e_zB\x0c\n\n_F_pk_1570B\x0c\n\n_F_pk_1770B\x04\n\x02_GB\x04\n\x02_hB\x08\n\x06_h_c_TB\x06\n\x04_h_iB\x06\n\x04_h_wB\x08\n\x06_h_w_bB\x08\n\x06_h_w_tB\r\n\x0b_I_ef_minusB\x0c\n\n_I_ef_plusB\r\n\x0b_I_omega_SCB\x13\n\x11_I_omega_SC_eigenB\x06\n\x04_I_pB\t\n\x07_I_p_SCB\x06\n\x04_I_tB\x0c\n\n_I_t_BredtB\x0c\n\n_I_t_StVenB\x06\n\x04_I_uB\x06\n\x04_I_vB\x06\n\x04_I_yB\x07\n\x05_I_yzB\x06\n\x04_I_zB\x08\n\x06_I_z_1B\x08\n\x06_j_f_zB\r\n\x0b_j_omega_SCB\x06\n\x04_j_pB\t\n\x07_j_p_SCB\x06\n\x04_j_uB\x06\n\x04_j_vB\x06\n\x04_j_yB\x07\n\x05_j_yzB\x06\n\x04_j_zB\x08\n\x06_j_z_gB\x04\n\x02_kB\x06\n\x04_k_1B\r\n\x0b_M_pl_omegaB\t\n\x07_M_pl_uB\t\n\x07_M_pl_vB\n\n\x08_M_pl_xpB\n\n\x08_M_pl_xsB\t\n\x07_M_pl_yB\t\n\x07_M_pl_zB\r\n\x0b_M_u_y_S235B\x07\n\x05_N_plB\x06\n\x04_N_uB\x0f\n\r_omega_SC_maxB\x15\n\x13_omega_SC_max_eigenB\x06\n\x04_PhiB\x04\n\x02_rB\x08\n\x06_r_toeB\x06\n\x04_r_1B\x06\n\x04_r_2B\x06\n\x04_r_3B\x06\n\x04_r_4B\x06\n\x04_r_iB\x08\n\x06_r_i_bB\x08\n\x06_r_i_tB\x06\n\x04_r_oB\r\n\x0b_r_omega_SCB\x06\n\x04_r_uB\t\n\x07_r_u_SCB\x06\n\x04_r_vB\t\n\x07_r_v_SCB\x06\n\x04_r_yB\t\n\x07_r_y_SCB\x06\n\x04_r_zB\t\n\x07_r_z_SCB\x05\n\x03_rmB\x11\n\x0f_S_omega_SC_maxB\x06\n\x04_s_sB\n\n\x08_S_u_maxB\n\n\x08_S_v_maxB\n\n\x08_S_y_maxB\n\n\x08_S_z_maxB\x08\n\x06_SlopeB\n\n\x08_Slope_fB\n\n\x08_Slope_wB\n\n\x08_Tr_A_efB\t\n\x07_Tr_A_gB\x07\n\x05_Tr_bB\t\n\x07_Tr_b_bB\t\n\x07_Tr_b_RB\t\n\x07_Tr_b_tB\x07\n\x05_Tr_hB\x10\n\x0e_Tr_I_ef_minusB\x0f\n\r_Tr_I_ef_plusB\n\n\x08_Tr_j_efB\t\n\x07_Tr_j_gB\t\n\x07_Tr_K_1B\x0b\n\t_Tr_K_1_7B\t\n\x07_Tr_K_2B\x0b\n\t_Tr_K_2_7B\t\n\x07_Tr_K_3B\x0b\n\t_Tr_K_3_7B\t\n\x07_Tr_L_GB\x0b\n\t_Tr_L_G_7B\x10\n\x0e_Tr_L_gr_multiB\x11\n\x0f_Tr_L_gr_singleB\r\n\x0b_Tr_min_L_SB\x0f\n\r_Tr_min_L_S_7B\x12\n\x10_Tr_perm_F_t_130B\x14\n\x12_Tr_perm_F_t_130_7B\x12\n\x10_Tr_perm_F_t_280B\x14\n\x12_Tr_perm_F_t_280_7B\x0e\n\x0c_Tr_perm_T_1B\x10\n\x0e_Tr_perm_T_1_7B\x0e\n\x0c_Tr_perm_T_2B\x10\n\x0e_Tr_perm_T_2_7B\t\n\x07_Tr_t_NB\n\n\x08_Tr_z_efB\t\n\x07_Tr_z_gB\x06\n\x04_u_1B\x06\n\x04_u_2B\x06\n\x04_u_3B\x08\n\x06_u_maxB\x08\n\x06_u_minB\x07\n\x05_u_plB\x04\n\x02_VB\x06\n\x04_v_1B\x06\n\x04_v_2B\x08\n\x06_v_maxB\x08\n\x06_v_minB\x07\n\x05_v_plB\t\n\x07_V_pl_uB\t\n\x07_V_pl_vB\t\n\x07_V_pl_yB\t\n\x07_V_pl_zB\x06\n\x04_w_0B\x08\n\x06_w_0_LB\x06\n\x04_w_1B\x08\n\x06_w_1_LB\x06\n\x04_w_2B\x08\n\x06_w_2_LB\x08\n\x06_w_3_LB\r\n\x0b_W_omega_SCB\x10\n\x0e_W_pl_omega_SCB\t\n\x07_W_pl_uB\x0e\n\x0c_W_pl_u_pureB\t\n\x07_W_pl_vB\x0e\n\x0c_W_pl_v_pureB\t\n\x07_W_pl_yB\x0e\n\x0c_W_pl_y_pureB\t\n\x07_W_pl_zB\x0e\n\x0c_W_pl_z_pureB\x06\n\x04_W_tB\x06\n\x04_W_uB\n\n\x08_W_u_maxB\n\n\x08_W_u_minB\x06\n\x04_W_vB\n\n\x08_W_v_maxB\n\n\x08_W_v_minB\x06\n\x04_W_yB\n\n\x08_W_y_maxB\n\n\x08_W_y_minB\x06\n\x04_W_zB\n\n\x08_W_z_maxB\n\n\x08_W_z_minB\x06\n\x04_WAFB\x06\n\x04_WLLB\x07\n\x05_y_SCB\x06\n\x04_y_pB\x07\n\x05_y_plB\x08\n\x06_Z_b_kB\x07\n\x05_z_SCB\x06\n\x04_z_pB\x07\n\x05_z_plB\x08\n\x06_Z_r_dB\x08\n\x06_I_t_sB\x08\n\x06_a_1_yB\x08\n\x06_a_1_zB\x08\n\x06_a_2_yB\x08\n\x06_a_2_zB\x08\n\x06_a_3_yB\x08\n\x06_a_3_zB\x08\n\x06_a_4_yB\x08\n\x06_a_4_zB\x08\n\x06_a_5_yB\x08\n\x06_a_5_zB\x08\n\x06_a_6_yB\x08\n\x06_a_6_zB\x08\n\x06_a_7_yB\x08\n\x06_a_7_zB\x08\n\x06_a_8_yB\x08\n\x06_a_8_zB\t\n\x07_a_weldB\x0b\n\t_a_weld_bB\x0b\n\t_a_weld_tB\x06\n\x04_A_wB\x08\n\x06_b_b_lB\x08\n\x06_b_b_rB\x08\n\x06_b_t_lB\x08\n\x06_b_t_rB\x06\n\x04_d_oB\x08\n\x06_r_1_bB\x08\n\x06_r_1_tB\x06\n\x04_b_1B\x06\n\x04_h_1B\n\n\x08_alpha_tB\x06\n\x04_h_0B\x06\n\x04_b_0B\x06\n\x04_h_eB\x06\n\x04_h_cB\x06\n\x04_b_cB\x06\n\x04_b_fB\t\n\x07_b_fb_tB\t\n\x07_b_fb_bB\x07\n\x05_h_ssB\x07\n\x05_b_ssB\x06\n\x04_h_sB\x07\n\x05_h_tsB\x07\n\x05_b_tsB\x0c\n\n_a_weld_tsB\x06\n\x04_b_lB\x06\n\x04_b_rB\x06\n\x04_b_iB\x08\n\x06_h_s_tB\x08\n\x06_h_s_bB\x0b\n\t_a_weld_sB\r\n\x0b_a_weld_s_tB\r\n\x0b_a_weld_s_bB\x0e\n\x0c_a_weld_ss_wB\x0e\n\x0c_a_weld_ss_fB\x06\n\x04_h_tB\x04\n\x02_nB\t\n\x07_b_ef_1B\t\n\x07_b_ef_2B\t\n\x07_b_ef_3B\t\n\x07_b_ef_4B\t\n\x07_b_ef_5B\t\n\x07_b_ef_6B\x0b\n\t_Tr_b_R_xB\x06\n\x04_h_RB\x08\n\x06_b_R_tB\x08\n\x06_b_R_bB\x08\n\x06_gammaB\n\n\x08_gamma_1B\n\n\x08_gamma_2B\t\n\x07_b_t_trB\t\n\x07_b_b_trB\x08\n\x06_h_f_MB\x08\n\x06_b_w_MB\n\n\x08_h_f_o_MB\n\n\x08_h_f_i_MB\n\n\x08_b_w_o_MB\n\n\x08_b_w_i_MB\x08\n\x06_h_c_MB\x08\n\x06_b_c_MB\n\n\x08_h_f_l_MB\n\n\x08_h_f_r_MB\n\n\x08_h_f_t_MB\n\n\x08_h_f_b_MB\x0c\n\n_h_c_t_l_MB\x0c\n\n_b_c_t_l_MB\x0c\n\n_h_c_t_r_MB\x0c\n\n_b_c_t_r_MB\x0c\n\n_h_c_b_l_MB\x0c\n\n_b_c_b_l_MB\x0c\n\n_h_c_b_r_MB\x0c\n\n_b_c_b_r_MB\x0c\n\n_h_f_t_o_MB\x0c\n\n_h_f_t_i_MB\x0c\n\n_h_f_b_o_MB\x0c\n\n_h_f_b_i_MB\n\n\x08_b_w_l_MB\n\n\x08_b_w_r_MB\x08\n\x06_b_1_MB\x08\n\x06_b_2_MB\x08\n\x06_a_1_MB\x08\n\x06_h_1_MB\x08\n\x06_h_3_MB\x08\n\x06_h_i_MB\x08\n\x06_b_3_MB\x08\n\x06_b_i_MB\x08\n\x06_a_i_yB\x08\n\x06_a_i_zB\x07\n\x05_u_SCB\x07\n\x05_v_SCB\x0c\n\n_h_f_t_l_MB\x0c\n\n_h_f_t_r_MB\x0c\n\n_h_f_b_r_MB\x0c\n\n_h_f_b_l_MB\x0c\n\n_N_pl_S235B\x0e\n\x0c_V_pl_y_S235B\x0e\n\x0c_V_pl_z_S235B\x0e\n\x0c_M_pl_y_S235B\x0e\n\x0c_M_pl_z_S235B\x0f\n\r_M_pl_xp_S235B\x0f\n\r_M_pl_xs_S235B\x12\n\x10_M_pl_omega_S235B\x08\n\x06_r_2_hB\x08\n\x06_r_2_bB\n\n\x08_r_i_CHSB\n\n\x08_r_o_CHSB\x0c\n\n_r_mid_CHSB\n\n\x08_b_w_h_MB\x0b\n\t_b_w_h2_MB\x06\n\x04_d_MB\n\n\x08_h_f_h_MB\n\n\x08_h_c_s_MB\x08\n\x06_h_2_MB\r\n\x0b_A_w_y_AISCB\r\n\x0b_A_w_z_AISCB\x0f\n\r_A_v_y_BS5950B\x0f\n\r_A_v_z_BS5950B\x0f\n\r_z_t_1_2_kruhB\x0f\n\r_I_y_1_2_kruhB\n\n\x08_h_c_t_MB\n\n\x08_h_c_b_MB\n\n\x08_b_c_t_MB\n\n\x08_b_c_b_MB\n\n\x08_b_a_s_MB\x0c\n\n_b_f_t_l_MB\x0c\n\n_b_f_t_r_MB\x0c\n\n_b_f_b_l_MB\x0c\n\n_b_f_b_r_MB\x0e\n\x0c_a_weld_fb_tB\x0e\n\x0c_a_weld_fb_bB\x07\n\x05_h_isB\x0f\n\r_a_weld_is_tsB\x07\n\x05_b_isB\x0c\n\n_h_f_h_t_MB\x0c\n\n_h_f_h_b_MB\x08\n\x06_c_t_ZB\x08\n\x06_c_b_ZB\x08\n\x06_b_1_CB\x08\n\x06_b_2_CB\x06\n\x04_c_ZB\x05\n\x03_G1B\x07\n\x05_I_y1B\x07\n\x05_W_y1B\x07\n\x05_I_t1B\x07\n\x05_z_EPB\x08\n\x06_a_2_MB\x08\n\x06_b_t_MB\x08\n\x06_b_b_MB\x06\n\x04_a_1B\x06\n\x04_a_2B\x08\n\x06_Z_minB\x08\n\x06_G_catB\n\n\x08_e_y_catB\n\n\x08_e_z_catB\x07\n\x05_b_fbB\x08\n\x06_a_2_bB\x08\n\x06_a_2_hB\x0b\n\t_Type_c_RB\x06\n\x04_n_RB\x08\n\x06_Ac_cpB\x0c\n\n_A_v_y_EC9B\x0c\n\n_A_v_z_EC9B\t\n\x07_A_geomB\x08\n\x06_k_desB\x08\n\x06_k_detB\x08\n\x06_a_9_yB\x08\n\x06_a_9_zB\r\n\x0b_A_v_yy_ADMB\r\n\x0b_A_v_zz_ADMB\x0e\n\x0c_A_v_y_IS800B\x0e\n\x0c_A_v_z_IS800B\r\n\x0b_BC_IS800_yB\r\n\x0b_BC_IS800_zB\x0f\n\r_A_v_y_CSAS16B\x0f\n\r_A_v_z_CSAS16B\x08\n\x06_h_triB\x05\n\x03_LLB\t\n\x07_h_1_MBB\x0e\n\x0c_W_y_min_catB\x0e\n\x0c_W_y_max_catB\x0e\n\x0c_W_z_min_catB\x0e\n\x0c_W_z_max_catB\n\n\x08_W_y_catB\n\n\x08_W_z_catB\x08\n\x06_h_l_MB\x08\n\x06_h_r_MB\x08\n\x06_h_p_MB\x08\n\x06_thetaB\x06\n\x04_h_aB\x06\n\x04_b_aB\x06\n\x04_DEEB\x0e\n\x0c_A_w_yy_AISIB\x0e\n\x0c_A_w_zz_AISIB\x10\n\x0e_A_w_y_NBR8800B\x10\n\x0e_A_w_z_NBR8800B\x0c\n\n_gamma_lipB\x0f\n\r_A_v_y_SIA263B\x0f\n\r_A_v_z_SIA263B\x0e\n\x0c_BC_SIA263_yB\x0e\n\x0c_BC_SIA263_zB\n\n\x08_gamma_0B\x08\n\x06_h_nomB\x08\n\x06_b_nomB\x07\n\x05_b_psB\x0e\n\x0c_W_pl_y_websB\x11\n\x0f_W_pl_z_flangesB\x12\n\x10_A_v_y_SANS10162B\x12\n\x10_A_v_z_SANS10162B\x06\n\x04_L_cB\t\n\x07_Phi_CFB\x0c\n\n_Sum_thetaB\t\n\x07_D_holeB\t\n\x07_L_holeB\t\n\x07_A_holeB\x06\n\x04_b_pB\x06\n\x04_e_sB\x08\n\x06_r_i_1B\x08\n\x06_r_i_2B\x07\n\x05_b_C1B\x07\n\x05_b_CLB\x07\n\x05_h_CLB\x0b\n\t_a_weld_lB\x0b\n\t_a_weld_rB\r\n\x0b_a_weld_t_lB\r\n\x0b_a_weld_t_rB\r\n\x0b_a_weld_b_lB\r\n\x0b_a_weld_b_rB\n\n\x08_o_f_l_MB\x0f\n\r_r_i_groove_bB\x0f\n\r_r_i_groove_tB\x06\n\x04_o_UB\n\n\x08_h_toothB\x0c\n\n_t_des_t_1B\n\n\x08_r_i_s_tB\n\n\x08_r_i_s_bB\x0c\n\n_A_v_y_NTCB\x0c\n\n_A_v_z_NTCB\x0b\n\t_BC_NTC_yB\x0b\n\t_BC_NTC_zB\x10\n\x0e_BC_NTC_S460_yB\x10\n\x0e_BC_NTC_S460_zB\x0c\n\n_A_v_z_catB\n\n\x08_o_f_r_MB\x06\n\x04_n_wB\x06\n\x04_n_sB\x06\n\x04_d_sB\x0b\n\t_d_duct_iB\x04\n\x02_eB\x05\n\x03_muB\x07\n\x05_k_wfB\x06\n\x04_F_mB\x08\n\x06_F_p01B\x0e\n\x0c_gamma_lip_tB\x0e\n\x0c_gamma_lip_bB\t\n\x07_t_ductB\x0b\n\t_d_corrugB\t\n\x07_e_autoB\x08\n\x06_e_maxB\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.rsection.structure_core.section_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_SECTION']._serialized_start=90
|
|
35
|
+
_globals['_SECTION']._serialized_end=40192
|
|
36
|
+
_globals['_SECTION_HYBRIDMATERIALSTABLE']._serialized_start=14167
|
|
37
|
+
_globals['_SECTION_HYBRIDMATERIALSTABLE']._serialized_end=14267
|
|
38
|
+
_globals['_SECTION_HYBRIDMATERIALSROW']._serialized_start=14270
|
|
39
|
+
_globals['_SECTION_HYBRIDMATERIALSROW']._serialized_end=14420
|
|
40
|
+
_globals['_SECTION_TYPE']._serialized_start=14423
|
|
41
|
+
_globals['_SECTION_TYPE']._serialized_end=14679
|
|
42
|
+
_globals['_SECTION_MANUFACTURINGTYPE']._serialized_start=14682
|
|
43
|
+
_globals['_SECTION_MANUFACTURINGTYPE']._serialized_end=14924
|
|
44
|
+
_globals['_SECTION_PARAMETRIZATIONTYPE']._serialized_start=14927
|
|
45
|
+
_globals['_SECTION_PARAMETRIZATIONTYPE']._serialized_end=29270
|
|
46
|
+
_globals['_SECTION_COMBINATIONTYPE']._serialized_start=29273
|
|
47
|
+
_globals['_SECTION_COMBINATIONTYPE']._serialized_end=32945
|
|
48
|
+
_globals['_SECTION_TYPEOFWELDING']._serialized_start=32947
|
|
49
|
+
_globals['_SECTION_TYPEOFWELDING']._serialized_end=33039
|
|
50
|
+
# @@protoc_insertion_point(module_scope)
|