dlubal.api 0.1.293714a1__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/__init__.py +0 -0
- dlubal/api/__init__.py +0 -0
- dlubal/api/common/__init__.py +3 -0
- dlubal/api/common/common_pb2.py +42 -0
- dlubal/api/common/common_pb2.pyi +41 -0
- dlubal/api/common/connection.py +251 -0
- dlubal/api/common/exceptions.py +12 -0
- dlubal/api/common/model_id_pb2.py +38 -0
- dlubal/api/common/model_id_pb2.pyi +17 -0
- dlubal/api/common/table.py +35 -0
- dlubal/api/common/table_data_pb2.py +39 -0
- dlubal/api/common/table_data_pb2.pyi +21 -0
- dlubal/api/rfem/__init__.py +32 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/application.py +290 -0
- dlubal/api/rfem/application_pb2.py +67 -0
- dlubal/api/rfem/application_pb2.pyi +135 -0
- dlubal/api/rfem/application_pb2_grpc.py +973 -0
- dlubal/api/rfem/base_data/__init__.py +1 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
- dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
- dlubal/api/rfem/building_model/__init__.py +4 -0
- dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
- dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
- dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/construction_stages/__init__.py +1 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
- dlubal/api/rfem/guide_objects/__init__.py +10 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
- dlubal/api/rfem/imperfections/__init__.py +5 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/load_wizards/__init__.py +2 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
- dlubal/api/rfem/loading/__init__.py +15 -0
- dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
- dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
- dlubal/api/rfem/loading/action_pb2.py +42 -0
- dlubal/api/rfem/loading/action_pb2.pyi +80 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
- dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
- dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
- dlubal/api/rfem/loading/load_case_pb2.py +77 -0
- dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
- dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
- dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
- dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
- dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
- dlubal/api/rfem/loads/__init__.py +17 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rfem/loads/line_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/member_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
- dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
- dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
- dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
- dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
- dlubal/api/rfem/packing.py +45 -0
- dlubal/api/rfem/result_objects/__init__.py +1 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
- dlubal/api/rfem/results/__init__.py +2 -0
- dlubal/api/rfem/results/results_id_pb2.py +36 -0
- dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
- dlubal/api/rfem/results/results_query_pb2.py +40 -0
- dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/structure_advanced/__init__.py +9 -0
- dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
- dlubal/api/rfem/structure_core/__init__.py +15 -0
- dlubal/api/rfem/structure_core/line_pb2.py +53 -0
- dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
- dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
- dlubal/api/rfem/structure_core/material_pb2.py +100 -0
- dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
- dlubal/api/rfem/structure_core/member_pb2.py +79 -0
- dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
- dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
- dlubal/api/rfem/structure_core/node_pb2.py +43 -0
- dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
- dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
- dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
- dlubal/api/rfem/structure_core/section_pb2.py +66 -0
- dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
- dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
- dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
- dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
- dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
- dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
- dlubal/api/rfem/types_for_lines/__init__.py +4 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
- dlubal/api/rfem/types_for_members/__init__.py +13 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
- dlubal/api/rfem/types_for_solids/__init__.py +3 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
- dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
- dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
- dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
- dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
- dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
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, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class MemberSetImperfectionImperfectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN: _ClassVar[MemberSetImperfectionImperfectionType]
|
|
12
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW: _ClassVar[MemberSetImperfectionImperfectionType]
|
|
13
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION: _ClassVar[MemberSetImperfectionImperfectionType]
|
|
14
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY: _ClassVar[MemberSetImperfectionImperfectionType]
|
|
15
|
+
|
|
16
|
+
class MemberSetImperfectionDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
19
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
20
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
21
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
22
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
23
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
24
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
25
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
26
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
27
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
28
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1992_1: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
29
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1993_1: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
30
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1995_1: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
31
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1999_1: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
32
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
33
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
34
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
35
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
36
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD: _ClassVar[MemberSetImperfectionDefinitionType]
|
|
37
|
+
|
|
38
|
+
class MemberSetImperfectionImperfectionDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
39
|
+
__slots__ = ()
|
|
40
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
41
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
42
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
43
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
44
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
45
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
46
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
47
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
48
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
49
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
50
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
51
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
52
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
53
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
54
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE: _ClassVar[MemberSetImperfectionImperfectionDirection]
|
|
55
|
+
|
|
56
|
+
class MemberSetImperfectionSectionDesign(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
57
|
+
__slots__ = ()
|
|
58
|
+
MEMBER_SET_IMPERFECTION_SECTION_DESIGN_ELASTIC: _ClassVar[MemberSetImperfectionSectionDesign]
|
|
59
|
+
MEMBER_SET_IMPERFECTION_SECTION_DESIGN_PLASTIC: _ClassVar[MemberSetImperfectionSectionDesign]
|
|
60
|
+
|
|
61
|
+
class MemberSetImperfectionActiveCriterion(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
62
|
+
__slots__ = ()
|
|
63
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_ALWAYS: _ClassVar[MemberSetImperfectionActiveCriterion]
|
|
64
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DEFINE: _ClassVar[MemberSetImperfectionActiveCriterion]
|
|
65
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DIN_18800: _ClassVar[MemberSetImperfectionActiveCriterion]
|
|
66
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1993: _ClassVar[MemberSetImperfectionActiveCriterion]
|
|
67
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1999: _ClassVar[MemberSetImperfectionActiveCriterion]
|
|
68
|
+
|
|
69
|
+
class MemberSetImperfectionStandardFactorEnumeration(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
70
|
+
__slots__ = ()
|
|
71
|
+
MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD: _ClassVar[MemberSetImperfectionStandardFactorEnumeration]
|
|
72
|
+
MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD: _ClassVar[MemberSetImperfectionStandardFactorEnumeration]
|
|
73
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN: MemberSetImperfectionImperfectionType
|
|
74
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW: MemberSetImperfectionImperfectionType
|
|
75
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION: MemberSetImperfectionImperfectionType
|
|
76
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY: MemberSetImperfectionImperfectionType
|
|
77
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE: MemberSetImperfectionDefinitionType
|
|
78
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: MemberSetImperfectionDefinitionType
|
|
79
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT: MemberSetImperfectionDefinitionType
|
|
80
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
81
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT: MemberSetImperfectionDefinitionType
|
|
82
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
83
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT: MemberSetImperfectionDefinitionType
|
|
84
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
85
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT: MemberSetImperfectionDefinitionType
|
|
86
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
87
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1992_1: MemberSetImperfectionDefinitionType
|
|
88
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1993_1: MemberSetImperfectionDefinitionType
|
|
89
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1995_1: MemberSetImperfectionDefinitionType
|
|
90
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1999_1: MemberSetImperfectionDefinitionType
|
|
91
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017: MemberSetImperfectionDefinitionType
|
|
92
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT: MemberSetImperfectionDefinitionType
|
|
93
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
94
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD: MemberSetImperfectionDefinitionType
|
|
95
|
+
MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD: MemberSetImperfectionDefinitionType
|
|
96
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: MemberSetImperfectionImperfectionDirection
|
|
97
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
98
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: MemberSetImperfectionImperfectionDirection
|
|
99
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
100
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: MemberSetImperfectionImperfectionDirection
|
|
101
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
102
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: MemberSetImperfectionImperfectionDirection
|
|
103
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y: MemberSetImperfectionImperfectionDirection
|
|
104
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
105
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: MemberSetImperfectionImperfectionDirection
|
|
106
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
107
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U: MemberSetImperfectionImperfectionDirection
|
|
108
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
109
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V: MemberSetImperfectionImperfectionDirection
|
|
110
|
+
MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE: MemberSetImperfectionImperfectionDirection
|
|
111
|
+
MEMBER_SET_IMPERFECTION_SECTION_DESIGN_ELASTIC: MemberSetImperfectionSectionDesign
|
|
112
|
+
MEMBER_SET_IMPERFECTION_SECTION_DESIGN_PLASTIC: MemberSetImperfectionSectionDesign
|
|
113
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_ALWAYS: MemberSetImperfectionActiveCriterion
|
|
114
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DEFINE: MemberSetImperfectionActiveCriterion
|
|
115
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DIN_18800: MemberSetImperfectionActiveCriterion
|
|
116
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1993: MemberSetImperfectionActiveCriterion
|
|
117
|
+
MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1999: MemberSetImperfectionActiveCriterion
|
|
118
|
+
MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD: MemberSetImperfectionStandardFactorEnumeration
|
|
119
|
+
MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD: MemberSetImperfectionStandardFactorEnumeration
|
|
120
|
+
|
|
121
|
+
class MemberSetImperfection(_message.Message):
|
|
122
|
+
__slots__ = ("no", "imperfection_type", "member_sets", "imperfection_case", "definition_type", "coordinate_system", "imperfection_direction", "basic_value_absolute", "basic_value_relative", "basic_value_coefficient", "basic_value_force", "section_design", "active_criterion", "active_bow", "column_in_row", "number_of_floors", "standard_factor_enumeration", "standard_factor_number", "height", "case_object", "reduction_factor_h", "reduction_factor_h_limit", "reduction_factor_m", "initial_sway", "initial_sway_inverted", "delta", "parameters", "refer_distance_from_objects_to_assign", "imperfection_over_total_length_of_objects_to_assign", "distance_a_is_defined_as_relative", "distance_b_is_defined_as_relative", "distance_a_relative", "distance_b_relative", "distance_a_absolute", "distance_b_absolute", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
123
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
IMPERFECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
IMPERFECTION_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
BASIC_VALUE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
BASIC_VALUE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
BASIC_VALUE_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
BASIC_VALUE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
SECTION_DESIGN_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
ACTIVE_CRITERION_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
ACTIVE_BOW_FIELD_NUMBER: _ClassVar[int]
|
|
137
|
+
COLUMN_IN_ROW_FIELD_NUMBER: _ClassVar[int]
|
|
138
|
+
NUMBER_OF_FLOORS_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
STANDARD_FACTOR_ENUMERATION_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
STANDARD_FACTOR_NUMBER_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
CASE_OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
REDUCTION_FACTOR_H_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
REDUCTION_FACTOR_H_LIMIT_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
REDUCTION_FACTOR_M_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
INITIAL_SWAY_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
INITIAL_SWAY_INVERTED_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
DELTA_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
REFER_DISTANCE_FROM_OBJECTS_TO_ASSIGN_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
IMPERFECTION_OVER_TOTAL_LENGTH_OF_OBJECTS_TO_ASSIGN_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
no: int
|
|
164
|
+
imperfection_type: MemberSetImperfectionImperfectionType
|
|
165
|
+
member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
166
|
+
imperfection_case: int
|
|
167
|
+
definition_type: MemberSetImperfectionDefinitionType
|
|
168
|
+
coordinate_system: str
|
|
169
|
+
imperfection_direction: MemberSetImperfectionImperfectionDirection
|
|
170
|
+
basic_value_absolute: float
|
|
171
|
+
basic_value_relative: float
|
|
172
|
+
basic_value_coefficient: float
|
|
173
|
+
basic_value_force: float
|
|
174
|
+
section_design: MemberSetImperfectionSectionDesign
|
|
175
|
+
active_criterion: MemberSetImperfectionActiveCriterion
|
|
176
|
+
active_bow: float
|
|
177
|
+
column_in_row: int
|
|
178
|
+
number_of_floors: int
|
|
179
|
+
standard_factor_enumeration: MemberSetImperfectionStandardFactorEnumeration
|
|
180
|
+
standard_factor_number: float
|
|
181
|
+
height: float
|
|
182
|
+
case_object: int
|
|
183
|
+
reduction_factor_h: float
|
|
184
|
+
reduction_factor_h_limit: bool
|
|
185
|
+
reduction_factor_m: float
|
|
186
|
+
initial_sway: float
|
|
187
|
+
initial_sway_inverted: float
|
|
188
|
+
delta: float
|
|
189
|
+
parameters: _containers.RepeatedScalarFieldContainer[int]
|
|
190
|
+
refer_distance_from_objects_to_assign: bool
|
|
191
|
+
imperfection_over_total_length_of_objects_to_assign: bool
|
|
192
|
+
distance_a_is_defined_as_relative: bool
|
|
193
|
+
distance_b_is_defined_as_relative: bool
|
|
194
|
+
distance_a_relative: float
|
|
195
|
+
distance_b_relative: float
|
|
196
|
+
distance_a_absolute: float
|
|
197
|
+
distance_b_absolute: float
|
|
198
|
+
comment: str
|
|
199
|
+
is_generated: bool
|
|
200
|
+
generating_object_info: str
|
|
201
|
+
id_for_export_import: str
|
|
202
|
+
metadata_for_export_import: str
|
|
203
|
+
def __init__(self, no: _Optional[int] = ..., imperfection_type: _Optional[_Union[MemberSetImperfectionImperfectionType, str]] = ..., member_sets: _Optional[_Iterable[int]] = ..., imperfection_case: _Optional[int] = ..., definition_type: _Optional[_Union[MemberSetImperfectionDefinitionType, str]] = ..., coordinate_system: _Optional[str] = ..., imperfection_direction: _Optional[_Union[MemberSetImperfectionImperfectionDirection, str]] = ..., basic_value_absolute: _Optional[float] = ..., basic_value_relative: _Optional[float] = ..., basic_value_coefficient: _Optional[float] = ..., basic_value_force: _Optional[float] = ..., section_design: _Optional[_Union[MemberSetImperfectionSectionDesign, str]] = ..., active_criterion: _Optional[_Union[MemberSetImperfectionActiveCriterion, str]] = ..., active_bow: _Optional[float] = ..., column_in_row: _Optional[int] = ..., number_of_floors: _Optional[int] = ..., standard_factor_enumeration: _Optional[_Union[MemberSetImperfectionStandardFactorEnumeration, str]] = ..., standard_factor_number: _Optional[float] = ..., height: _Optional[float] = ..., case_object: _Optional[int] = ..., reduction_factor_h: _Optional[float] = ..., reduction_factor_h_limit: bool = ..., reduction_factor_m: _Optional[float] = ..., initial_sway: _Optional[float] = ..., initial_sway_inverted: _Optional[float] = ..., delta: _Optional[float] = ..., parameters: _Optional[_Iterable[int]] = ..., refer_distance_from_objects_to_assign: bool = ..., imperfection_over_total_length_of_objects_to_assign: bool = ..., distance_a_is_defined_as_relative: bool = ..., distance_b_is_defined_as_relative: bool = ..., distance_a_relative: _Optional[float] = ..., distance_b_relative: _Optional[float] = ..., distance_a_absolute: _Optional[float] = ..., distance_b_absolute: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/imperfections/surface_imperfection.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/imperfections/surface_imperfection.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'\n8dlubal/api/rfem/imperfections/surface_imperfection.proto\x12\x1d\x64lubal.api.rfem.imperfections\"\xa6\x06\n\x13SurfaceImperfection\x12\n\n\x02no\x18\x01 \x01(\x05\x12^\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32@.dlubal.api.rfem.imperfections.SurfaceImperfectionDefinitionTypeH\x00\x88\x01\x01\x12\x1e\n\x11imperfection_case\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12l\n\x16imperfection_direction\x18\x04 \x01(\x0e\x32G.dlubal.api.rfem.imperfections.SurfaceImperfectionImperfectionDirectionH\x02\x88\x01\x01\x12\x18\n\x0binitial_bow\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12!\n\x14initial_bow_relative\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x12\n\nparameters\x18\x07 \x03(\x05\x12\x1d\n\x10reference_length\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x10\n\x08surfaces\x18\t \x03(\x05\x12\x14\n\x07\x63omment\x18\n \x01(\tH\x06\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\x08\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\t\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\n\x88\x01\x01\x42\x12\n\x10_definition_typeB\x14\n\x12_imperfection_caseB\x19\n\x17_imperfection_directionB\x0e\n\x0c_initial_bowB\x17\n\x15_initial_bow_relativeB\x13\n\x11_reference_lengthB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\x89\x01\n!SurfaceImperfectionDefinitionType\x12\x31\n-SURFACE_IMPERFECTION_DEFINITION_TYPE_RELATIVE\x10\x00\x12\x31\n-SURFACE_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE\x10\x01*\xde\x01\n(SurfaceImperfectionImperfectionDirection\x12\x37\n3SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN\x10\x00\x12\x37\n3SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z\x10\x02\x12@\n<SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE\x10\x12\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.imperfections.surface_imperfection_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_SURFACEIMPERFECTIONDEFINITIONTYPE']._serialized_start=901
|
|
35
|
+
_globals['_SURFACEIMPERFECTIONDEFINITIONTYPE']._serialized_end=1038
|
|
36
|
+
_globals['_SURFACEIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_start=1041
|
|
37
|
+
_globals['_SURFACEIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_end=1263
|
|
38
|
+
_globals['_SURFACEIMPERFECTION']._serialized_start=92
|
|
39
|
+
_globals['_SURFACEIMPERFECTION']._serialized_end=898
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
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, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class SurfaceImperfectionDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
SURFACE_IMPERFECTION_DEFINITION_TYPE_RELATIVE: _ClassVar[SurfaceImperfectionDefinitionType]
|
|
12
|
+
SURFACE_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: _ClassVar[SurfaceImperfectionDefinitionType]
|
|
13
|
+
|
|
14
|
+
class SurfaceImperfectionImperfectionDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
15
|
+
__slots__ = ()
|
|
16
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: _ClassVar[SurfaceImperfectionImperfectionDirection]
|
|
17
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: _ClassVar[SurfaceImperfectionImperfectionDirection]
|
|
18
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: _ClassVar[SurfaceImperfectionImperfectionDirection]
|
|
19
|
+
SURFACE_IMPERFECTION_DEFINITION_TYPE_RELATIVE: SurfaceImperfectionDefinitionType
|
|
20
|
+
SURFACE_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: SurfaceImperfectionDefinitionType
|
|
21
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: SurfaceImperfectionImperfectionDirection
|
|
22
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: SurfaceImperfectionImperfectionDirection
|
|
23
|
+
SURFACE_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: SurfaceImperfectionImperfectionDirection
|
|
24
|
+
|
|
25
|
+
class SurfaceImperfection(_message.Message):
|
|
26
|
+
__slots__ = ("no", "definition_type", "imperfection_case", "imperfection_direction", "initial_bow", "initial_bow_relative", "parameters", "reference_length", "surfaces", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
27
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
IMPERFECTION_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
INITIAL_BOW_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
INITIAL_BOW_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
REFERENCE_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
no: int
|
|
42
|
+
definition_type: SurfaceImperfectionDefinitionType
|
|
43
|
+
imperfection_case: int
|
|
44
|
+
imperfection_direction: SurfaceImperfectionImperfectionDirection
|
|
45
|
+
initial_bow: float
|
|
46
|
+
initial_bow_relative: float
|
|
47
|
+
parameters: _containers.RepeatedScalarFieldContainer[int]
|
|
48
|
+
reference_length: float
|
|
49
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
50
|
+
comment: str
|
|
51
|
+
is_generated: bool
|
|
52
|
+
generating_object_info: str
|
|
53
|
+
id_for_export_import: str
|
|
54
|
+
metadata_for_export_import: str
|
|
55
|
+
def __init__(self, no: _Optional[int] = ..., definition_type: _Optional[_Union[SurfaceImperfectionDefinitionType, str]] = ..., imperfection_case: _Optional[int] = ..., imperfection_direction: _Optional[_Union[SurfaceImperfectionImperfectionDirection, str]] = ..., initial_bow: _Optional[float] = ..., initial_bow_relative: _Optional[float] = ..., parameters: _Optional[_Iterable[int]] = ..., reference_length: _Optional[float] = ..., surfaces: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/imperfections/surface_set_imperfection.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/imperfections/surface_set_imperfection.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/rfem/imperfections/surface_set_imperfection.proto\x12\x1d\x64lubal.api.rfem.imperfections\"\xb3\x06\n\x16SurfaceSetImperfection\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x61\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32\x43.dlubal.api.rfem.imperfections.SurfaceSetImperfectionDefinitionTypeH\x00\x88\x01\x01\x12\x1e\n\x11imperfection_case\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12o\n\x16imperfection_direction\x18\x04 \x01(\x0e\x32J.dlubal.api.rfem.imperfections.SurfaceSetImperfectionImperfectionDirectionH\x02\x88\x01\x01\x12\x18\n\x0binitial_bow\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12!\n\x14initial_bow_relative\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x12\n\nparameters\x18\x07 \x03(\x05\x12\x1d\n\x10reference_length\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x14\n\x0csurface_sets\x18\t \x03(\x05\x12\x14\n\x07\x63omment\x18\n \x01(\tH\x06\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\x08\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\t\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\n\x88\x01\x01\x42\x12\n\x10_definition_typeB\x14\n\x12_imperfection_caseB\x19\n\x17_imperfection_directionB\x0e\n\x0c_initial_bowB\x17\n\x15_initial_bow_relativeB\x13\n\x11_reference_lengthB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\x94\x01\n$SurfaceSetImperfectionDefinitionType\x12\x35\n1SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE\x10\x00\x12\x35\n1SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE\x10\x01*\xed\x01\n+SurfaceSetImperfectionImperfectionDirection\x12;\n7SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN\x10\x00\x12;\n7SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z\x10\x02\x12\x44\n@SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE\x10\x12\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.imperfections.surface_set_imperfection_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_SURFACESETIMPERFECTIONDEFINITIONTYPE']._serialized_start=918
|
|
35
|
+
_globals['_SURFACESETIMPERFECTIONDEFINITIONTYPE']._serialized_end=1066
|
|
36
|
+
_globals['_SURFACESETIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_start=1069
|
|
37
|
+
_globals['_SURFACESETIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_end=1306
|
|
38
|
+
_globals['_SURFACESETIMPERFECTION']._serialized_start=96
|
|
39
|
+
_globals['_SURFACESETIMPERFECTION']._serialized_end=915
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
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, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class SurfaceSetImperfectionDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE: _ClassVar[SurfaceSetImperfectionDefinitionType]
|
|
12
|
+
SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: _ClassVar[SurfaceSetImperfectionDefinitionType]
|
|
13
|
+
|
|
14
|
+
class SurfaceSetImperfectionImperfectionDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
15
|
+
__slots__ = ()
|
|
16
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: _ClassVar[SurfaceSetImperfectionImperfectionDirection]
|
|
17
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: _ClassVar[SurfaceSetImperfectionImperfectionDirection]
|
|
18
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: _ClassVar[SurfaceSetImperfectionImperfectionDirection]
|
|
19
|
+
SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE: SurfaceSetImperfectionDefinitionType
|
|
20
|
+
SURFACE_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: SurfaceSetImperfectionDefinitionType
|
|
21
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: SurfaceSetImperfectionImperfectionDirection
|
|
22
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: SurfaceSetImperfectionImperfectionDirection
|
|
23
|
+
SURFACE_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: SurfaceSetImperfectionImperfectionDirection
|
|
24
|
+
|
|
25
|
+
class SurfaceSetImperfection(_message.Message):
|
|
26
|
+
__slots__ = ("no", "definition_type", "imperfection_case", "imperfection_direction", "initial_bow", "initial_bow_relative", "parameters", "reference_length", "surface_sets", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
27
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
IMPERFECTION_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
INITIAL_BOW_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
INITIAL_BOW_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
REFERENCE_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
no: int
|
|
42
|
+
definition_type: SurfaceSetImperfectionDefinitionType
|
|
43
|
+
imperfection_case: int
|
|
44
|
+
imperfection_direction: SurfaceSetImperfectionImperfectionDirection
|
|
45
|
+
initial_bow: float
|
|
46
|
+
initial_bow_relative: float
|
|
47
|
+
parameters: _containers.RepeatedScalarFieldContainer[int]
|
|
48
|
+
reference_length: float
|
|
49
|
+
surface_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
50
|
+
comment: str
|
|
51
|
+
is_generated: bool
|
|
52
|
+
generating_object_info: str
|
|
53
|
+
id_for_export_import: str
|
|
54
|
+
metadata_for_export_import: str
|
|
55
|
+
def __init__(self, no: _Optional[int] = ..., definition_type: _Optional[_Union[SurfaceSetImperfectionDefinitionType, str]] = ..., imperfection_case: _Optional[int] = ..., imperfection_direction: _Optional[_Union[SurfaceSetImperfectionImperfectionDirection, str]] = ..., initial_bow: _Optional[float] = ..., initial_bow_relative: _Optional[float] = ..., parameters: _Optional[_Iterable[int]] = ..., reference_length: _Optional[float] = ..., surface_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/load_wizards/wind_profile.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/load_wizards/wind_profile.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/dlubal/api/rfem/load_wizards/wind_profile.proto\x12\x1c\x64lubal.api.rfem.load_wizards\"\xb4\t\n\x0bWindProfile\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12@\n\x04type\x18\x04 \x01(\x0e\x32-.dlubal.api.rfem.load_wizards.WindProfileTypeH\x02\x88\x01\x01\x12\x33\n&user_defined_wind_profile_step_enabled\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12-\n user_defined_wind_profile_sorted\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12@\n3user_defined_wind_profile_uniform_intensity_enabled\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\x38\n+user_defined_wind_profile_uniform_intensity\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x32\n%user_defined_wind_profile_period_step\x18\t \x01(\x01H\x07\x88\x01\x01\x12n\n\x19user_defined_wind_profile\x18\n \x01(\x0b\x32\x46.dlubal.api.rfem.load_wizards.ArrayOfWindProfileUserDefinedWindProfileH\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0b \x01(\tH\t\x88\x01\x01\x12I\n\tload_zone\x18\x0c \x01(\x0e\x32\x31.dlubal.api.rfem.load_wizards.WindProfileLoadZoneH\n\x88\x01\x01\x12U\n\x0f\x64\x65\x66inition_type\x18\r \x01(\x0e\x32\x37.dlubal.api.rfem.load_wizards.WindProfileDefinitionTypeH\x0b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0e \x01(\tH\x0c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0f \x01(\tH\r\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x07\n\x05_typeB)\n\'_user_defined_wind_profile_step_enabledB#\n!_user_defined_wind_profile_sortedB6\n4_user_defined_wind_profile_uniform_intensity_enabledB.\n,_user_defined_wind_profile_uniform_intensityB(\n&_user_defined_wind_profile_period_stepB\x1c\n\x1a_user_defined_wind_profileB\n\n\x08_commentB\x0c\n\n_load_zoneB\x12\n\x10_definition_typeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"*\n(ArrayOfWindProfileUserDefinedWindProfile*\x81\x01\n\x0fWindProfileType\x12\x1d\n\x19WIND_PROFILE_TYPE_UNKNOWN\x10\x00\x12+\n\'WIND_PROFILE_TYPE_ACCORDING_TO_STANDARD\x10\x02\x12\"\n\x1eWIND_PROFILE_TYPE_USER_DEFINED\x10\x01*\xbeg\n\x13WindProfileLoadZone\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_UNKNOWN\x10\x00\x12&\n\"WIND_PROFILE_LOAD_ZONE_NOT_DEFINED\x10\n\x12-\n(WIND_PROFILE_LOAD_ZONE_TYPE_0_18_TO_0_38\x10\xbf\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_2\x10\xff\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_3\x10\xfd\x01\x12-\n(WIND_PROFILE_LOAD_ZONE_TYPE_0_39_TO_0_48\x10\xc0\x01\x12&\n!WIND_PROFILE_LOAD_ZONE_TYPE_0_3_S\x10\xb0\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_4\x10\xa0\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_0_49_TO_0_6\x10\xc1\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_5\x10\xa1\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_6\x10\xa2\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_0_61_TO_0_7\x10\xc2\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_0_65\x10\xea\x02\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_7\x10l\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_0_71_TO_0_8\x10\xc3\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_8\x10\xfe\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_9\x10.\x12&\n!WIND_PROFILE_LOAD_ZONE_TYPE_0_9_S\x10\xb1\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_0_M\x10\x91\x01\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_1\x10\x13\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_10\x10\x45\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_100\x10Q\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_120\x10\x8d\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_130\x10\x8e\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_140\x10\x8f\x02\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_15\x10\x46\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_150\x10\x90\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_152\x10\x84\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_155\x10\x85\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_160\x10\x91\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_165\x10\x86\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_166\x10\x87\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_170\x10\x88\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_175\x10\x89\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_180\x10\x8a\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_184\x10\x8b\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_19\x10\xdd\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_190\x10\x8c\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_195\x10\xc3\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_1_0_COMMA\x10\x98\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_1\x10\xdf\x01\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_1_1_TO_2_7\x10\xe1\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_2\x10/\x12$\n WIND_PROFILE_LOAD_ZONE_TYPE_1_25\x10j\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_3\x10\xe0\x01\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_1_4_TO_3_3\x10\xe2\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_1_5_COMMA\x10\x99\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_8\x10\x31\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_A\x10\x1a\x12*\n&WIND_PROFILE_LOAD_ZONE_TYPE_1_ASTERISK\x10\x19\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_1_A_ASTERISK\x10\x1b\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_B\x10m\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_1_TO_2\x10\xa3\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_1_V\x10n\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_2\x10\x14\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_20\x10G\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_200\x10\x92\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_20_9_LESS\x10\xb2\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_21\x10\xac\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_210\x10\x93\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_21_5\x10\xe6\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_22\x10\xb0\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_220\x10\x94\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_22_5\x10\xe7\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_23\x10\xb1\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_230\x10\x95\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_23_5\x10\xe8\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_23_6\x10\xc4\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_24\x10\xa9\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_240\x10\x96\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_24_2_LESS\x10\xb3\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_24_5\x10\xe9\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_24_ASTERISK\x10\xc8\x02\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_25\x10H\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_250\x10\x97\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_25_5\x10\xea\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_26\x10\xaa\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_260\x10\x98\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_26_5\x10\xeb\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_26_ASTERISK\x10\xc9\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_27\x10\xad\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_270\x10\xf8\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_27_5\x10\xec\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_27_5_LESS\x10\xb4\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_28\x10\xbd\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_280\x10\xf9\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_28_5\x10\xed\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_28_ASTERISK\x10\xca\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_29\x10\xde\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_290\x10\xfa\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_29_5\x10\xee\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_2_0_2_5\x10T\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_2_0_COMMA\x10\x9a\x01\x12(\n$WIND_PROFILE_LOAD_ZONE_TYPE_2_5_2_75\x10V\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_2_5_3_0\x10X\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_2_5_COMMA\x10\x9b\x01\x12(\n$WIND_PROFILE_LOAD_ZONE_TYPE_2_75_3_0\x10Y\x12(\n$WIND_PROFILE_LOAD_ZONE_TYPE_2_75_3_5\x10[\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_2_A\x10\x1c\x12*\n&WIND_PROFILE_LOAD_ZONE_TYPE_2_ASTERISK\x10\x15\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_2_ASTERISK_2\x10(\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_2_ASTERISK_3\x10)\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_2_B\x10o\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_2_V\x10p\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_3\x10\x16\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_30\x10I\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_300\x10\xfb\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_30_5\x10\xef\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_30_8_LESS\x10\xb5\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_30_ASTERISK\x10\xcb\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_31\x10\xe4\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_310\x10\xfc\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_32\x10\xbe\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_320\x10\xfd\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_32_5\x10\xd2\x02\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_32_ASTERISK\x10\xcc\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_33\x10\xab\x01\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_330\x10\xfe\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_34\x10\xc7\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_340\x10\xff\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_34_1_LESS\x10\xb6\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_34_ASTERISK\x10\xcd\x02\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_35\x10J\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_36\x10\xf9\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_36_0\x10\xe3\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_36_ASTERISK\x10\xce\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_37_4_LESS\x10\xb7\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_37_5\x10\xd8\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_38\x10\x9c\x02\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_38_ASTERISK\x10\xcf\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_39\x10\xfb\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_3_0_3_5\x10\\\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_3_0_COMMA\x10\x9c\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_3_5_COMMA\x10\x9d\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_3_A\x10\x1e\x12*\n&WIND_PROFILE_LOAD_ZONE_TYPE_3_ASTERISK\x10\x1d\x12+\n\'WIND_PROFILE_LOAD_ZONE_TYPE_3_A_GREATER\x10\x1f\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_4\x10\x17\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_40\x10K\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_40_7_LESS\x10\xb8\x01\x12.\n)WIND_PROFILE_LOAD_ZONE_TYPE_41_4_ASTERISK\x10\xed\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_42\x10\x9d\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_42_5\x10\xd4\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_44\x10\xfa\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_44_0_LESS\x10\xb9\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_44_7\x10\xee\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_45\x10\xd1\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_46\x10\x9e\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_47\x10\xfc\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_47_3_LESS\x10\xba\x01\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_47_5\x10\xd5\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_48\x10\xd2\x01\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_4_5_COMMA\x10\x9e\x01\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_4_ASTERISK\x10\xeb\x02\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_5\x10-\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_50\x10L\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_50_6\x10\xef\x02\x12.\n)WIND_PROFILE_LOAD_ZONE_TYPE_50_6_ASTERISK\x10\xf0\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_50_6_LESS\x10\xbb\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_52\x10\x9f\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_54\x10\xa0\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_55\x10\xf8\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_56\x10\xa1\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_56_7\x10\xf1\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_57\x10\xd6\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_58\x10\xa2\x02\x12*\n%WIND_PROFILE_LOAD_ZONE_TYPE_5_5_COMMA\x10\x9f\x01\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_5_ASTERISK\x10\xec\x02\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_6\x10w\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_60\x10M\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_62\x10\xa3\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_62_5\x10\xf2\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_64\x10\xa4\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_65\x10\xd7\x02\x12.\n)WIND_PROFILE_LOAD_ZONE_TYPE_65_6_ASTERISK\x10\xf3\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_66\x10\xa5\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_67_5\x10\xa6\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_68_1\x10\xf4\x02\x12.\n)WIND_PROFILE_LOAD_ZONE_TYPE_68_1_ASTERISK\x10\xf5\x02\x12\"\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_7\x10\xae\x01\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_70\x10N\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_73_9\x10\xf6\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_7_5\x10\x8e\x01\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_8\x10x\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_80\x10O\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_80_ASTERISK\x10\xf7\x02\x12\"\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_9\x10\xaf\x01\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_90\x10P\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_A\x10\x66\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_ABOVE_200_M\x10\x92\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_ABOVE_400_M\x10\x93\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_ABOVE_500_M\x10\x94\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_AC\x10\xda\x02\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_ALPINE_N\x10\xe2\x02\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_ALPINE_S\x10\xe3\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_AN\x10\xd9\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_AS\x10\xdb\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_AT\x10\xdc\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_0\x10\xab\x02\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_1\x10\x36\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_2\x10\x37\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_A_2_ASTERISK\x10q\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_3\x10r\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_A_3_ASTERISK\x10s\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_4\x10t\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_A_4_ASTERISK\x10u\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_5\x10\x80\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_6\x10\x81\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_A_7\x10\x82\x02\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_B\x10g\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_B_1\x10\x38\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_B_2\x10\x39\x12\"\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_C\x10\xe5\x01\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_CS\x10R\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_C_1\x10:\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_C_2\x10;\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_D\x10<\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_E\x10=\x12%\n!WIND_PROFILE_LOAD_ZONE_TYPE_GAMMA\x10h\x12.\n*WIND_PROFILE_LOAD_ZONE_TYPE_GAMMA_ASTERISK\x10i\x12%\n!WIND_PROFILE_LOAD_ZONE_TYPE_GEQ_8\x10y\x12\x34\n/WIND_PROFILE_LOAD_ZONE_TYPE_GREATER_38_ASTERISK\x10\xd0\x02\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_GUADELOUPE\x10\xa8\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_GUYANE\x10\xa4\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_G_10_0\x10\xaa\x02\x12\"\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_H\x10\x85\x01\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_I\x10 \x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_II\x10!\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_III\x10\"\x12&\n!WIND_PROFILE_LOAD_ZONE_TYPE_III_A\x10\xe6\x02\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_III_ASTERISK\x10\x43\x12&\n!WIND_PROFILE_LOAD_ZONE_TYPE_III_B\x10\xe7\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_II_A\x10\xe4\x02\x12+\n\'WIND_PROFILE_LOAD_ZONE_TYPE_II_ASTERISK\x10\x42\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_II_B\x10\xe5\x02\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_IV\x10#\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_IV_B\x10\xe8\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_IX\x10\x84\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_I_A\x10>\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_I_ASTERISK_A\x10?\x12,\n(WIND_PROFILE_LOAD_ZONE_TYPE_I_ASTERISK_M\x10\x41\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_I_M\x10@\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_25\x10\xd3\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_30\x10\xd4\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_35\x10\xd5\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_40\x10\xd6\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_45\x10\xd7\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_5\x10^\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_50\x10\xd8\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_55\x10\xd9\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_6\x10_\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_60\x10\xda\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_7\x10`\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_75\x10\xdb\x01\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_8\x10\x61\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_9\x10\x62\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_0_95\x10\xdc\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_10\x10\xb9\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_100\x10\xc6\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_105\x10\xb4\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_110\x10\xc7\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_12\x10\xf0\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_120\x10\xc8\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_130\x10\xc9\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_140\x10\xca\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_15\x10\xf1\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_150\x10\xcb\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_160\x10\xcc\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_170\x10\xcd\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_18\x10\xf2\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_180\x10\xce\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_190\x10\xb5\x02\x12\'\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_1_1\x10\x64\x12(\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_1_75\x10~\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_20\x10\xba\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_200\x10\xcf\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_21\x10\xf3\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_210\x10\xc4\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_220\x10\xb6\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_24\x10\xf4\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_240\x10\xb7\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_265\x10\xc0\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_27\x10\xf5\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_2_25\x10\x80\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_2_5\x10\x81\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_2_75\x10\x82\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_30\x10\xf6\x01\x12)\n$WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_32_1\x10\xf7\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_3_2\x10\xb2\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_3_5\x10\x95\x01\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_40\x10\xbb\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_4_5\x10\x97\x01\x12&\n!WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_5\x10\xb8\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_50\x10\xbc\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_500\x10\xc1\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_60\x10\xbd\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_6_5\x10\x9a\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_70\x10\xbe\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_80\x10\xbf\x02\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_843\x10\xc2\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_90\x10\xb3\x02\x12\'\n\"WIND_PROFILE_LOAD_ZONE_TYPE_LEQ_95\x10\xc5\x01\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_MARTINIQUE\x10\xa6\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_MAYOTTE\x10\xa5\x01\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_MEQ_0_7\x10\xbc\x01\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_M_1\x10v\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_N1\x10\xdd\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_N2\x10\xde\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_N3\x10\xdf\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_N4\x10\xe0\x02\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_N5\x10\xe1\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_NZ_1\x10\xac\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_NZ_2\x10\xad\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_NZ_3\x10\xae\x02\x12%\n WIND_PROFILE_LOAD_ZONE_TYPE_NZ_4\x10\xaf\x02\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_N_A\x10\x18\x12(\n#WIND_PROFILE_LOAD_ZONE_TYPE_REUNION\x10\xa7\x01\x12#\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_SR\x10\xd0\x01\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_UNDER_200_M\x10\x90\x01\x12!\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_V\x10$\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_VI\x10%\x12#\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_VII\x10&\x12$\n WIND_PROFILE_LOAD_ZONE_TYPE_VIII\x10\'\x12,\n\'WIND_PROFILE_LOAD_ZONE_TYPE_VI_ASTERISK\x10\xc6\x02\x12+\n&WIND_PROFILE_LOAD_ZONE_TYPE_V_ASTERISK\x10\xc5\x02\x12$\n\x1fWIND_PROFILE_LOAD_ZONE_TYPE_V_B\x10\xe9\x02\x12\"\n\x1dWIND_PROFILE_LOAD_ZONE_TYPE_W\x10\x83\x02\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_Z1\x10z\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_Z2\x10{\x12\"\n\x1eWIND_PROFILE_LOAD_ZONE_TYPE_Z3\x10|\x12$\n WIND_PROFILE_LOAD_ZONE_TYPE_ZERO\x10\x44*\xaa\x01\n\x19WindProfileDefinitionType\x12(\n$WIND_PROFILE_DEFINITION_TYPE_UNKNOWN\x10\x00\x12\x34\n0WIND_PROFILE_DEFINITION_TYPE_PARAMETERS_FROM_MAP\x10\x01\x12-\n)WIND_PROFILE_DEFINITION_TYPE_USER_DEFINED\x10\x02\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.load_wizards.wind_profile_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_WINDPROFILETYPE']._serialized_start=1333
|
|
35
|
+
_globals['_WINDPROFILETYPE']._serialized_end=1462
|
|
36
|
+
_globals['_WINDPROFILELOADZONE']._serialized_start=1465
|
|
37
|
+
_globals['_WINDPROFILELOADZONE']._serialized_end=14711
|
|
38
|
+
_globals['_WINDPROFILEDEFINITIONTYPE']._serialized_start=14714
|
|
39
|
+
_globals['_WINDPROFILEDEFINITIONTYPE']._serialized_end=14884
|
|
40
|
+
_globals['_WINDPROFILE']._serialized_start=82
|
|
41
|
+
_globals['_WINDPROFILE']._serialized_end=1286
|
|
42
|
+
_globals['_ARRAYOFWINDPROFILEUSERDEFINEDWINDPROFILE']._serialized_start=1288
|
|
43
|
+
_globals['_ARRAYOFWINDPROFILEUSERDEFINEDWINDPROFILE']._serialized_end=1330
|
|
44
|
+
# @@protoc_insertion_point(module_scope)
|