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,57 @@
|
|
|
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/loads/surface_set_load.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/loads/surface_set_load.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/rfem/loads/surface_set_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\x8e+\n\x0eSurfaceSetLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x45\n\tload_type\x18\x02 \x01(\x0e\x32-.dlubal.api.rfem.loads.SurfaceSetLoadLoadTypeH\x00\x88\x01\x01\x12\x14\n\x0csurface_sets\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x05 \x01(\tH\x02\x88\x01\x01\x12U\n\x11load_distribution\x18\x06 \x01(\x0e\x32\x35.dlubal.api.rfem.loads.SurfaceSetLoadLoadDistributionH\x03\x88\x01\x01\x12O\n\x0eload_direction\x18\x07 \x01(\x0e\x32\x32.dlubal.api.rfem.loads.SurfaceSetLoadLoadDirectionH\x04\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18\x08 \x01(\x08H\x05\x88\x01\x01\x12\x1e\n\x11uniform_magnitude\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x18\n\x0bmagnitude_3\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\"\n\x15uniform_magnitude_t_c\x18\r \x01(\x01H\n\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_1\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_2\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_3\x18\x10 \x01(\x01H\r\x88\x01\x01\x12&\n\x19uniform_magnitude_delta_t\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13magnitude_delta_t_1\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13magnitude_delta_t_2\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13magnitude_delta_t_3\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12%\n\x18magnitude_axial_strain_x\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12%\n\x18magnitude_axial_strain_y\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12&\n\x19magnitude_axial_strain_1x\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12&\n\x19magnitude_axial_strain_1y\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12&\n\x19magnitude_axial_strain_2x\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12&\n\x19magnitude_axial_strain_2y\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12&\n\x19magnitude_axial_strain_3x\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12&\n\x19magnitude_axial_strain_3y\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12\x13\n\x06node_1\x18\x1f \x01(\x05H\x1c\x88\x01\x01\x12\x13\n\x06node_2\x18 \x01(\x05H\x1d\x88\x01\x01\x12\x13\n\x06node_3\x18! \x01(\x05H\x1e\x88\x01\x01\x12Z\n\x14\x61xis_definition_type\x18\" \x01(\x0e\x32\x37.dlubal.api.rfem.loads.SurfaceSetLoadAxisDefinitionTypeH\x1f\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18# \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH \x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18$ \x01(\x01H!\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18% \x01(\x01H\"\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18& \x01(\x01H#\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18\' \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH$\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18( \x01(\x01H%\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18) \x01(\x01H&\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18* \x01(\x01H\'\x88\x01\x01\x12Z\n\x14\x61xis_definition_axis\x18+ \x01(\x0e\x32\x37.dlubal.api.rfem.loads.SurfaceSetLoadAxisDefinitionAxisH(\x88\x01\x01\x12q\n axis_definition_axis_orientation\x18, \x01(\x0e\x32\x42.dlubal.api.rfem.loads.SurfaceSetLoadAxisDefinitionAxisOrientationH)\x88\x01\x01\x12g\n\x17varying_load_parameters\x18- \x01(\x0b\x32\x41.dlubal.api.rfem.loads.ArrayOfSurfaceSetLoadVaryingLoadParametersH*\x88\x01\x01\x12+\n\x1evarying_load_parameters_sorted\x18. \x01(\x08H+\x88\x01\x01\x12`\n\x17\x66orm_finding_definition\x18/ \x01(\x0e\x32:.dlubal.api.rfem.loads.SurfaceSetLoadFormFindingDefinitionH,\x88\x01\x01\x12\x1e\n\x11magnitude_force_u\x18\x30 \x01(\x01H-\x88\x01\x01\x12\x1e\n\x11magnitude_force_v\x18\x31 \x01(\x01H.\x88\x01\x01\x12\x1e\n\x11magnitude_force_r\x18\x32 \x01(\x01H/\x88\x01\x01\x12\x1e\n\x11magnitude_force_t\x18\x33 \x01(\x01H0\x88\x01\x01\x12\x1d\n\x10magnitude_mass_x\x18\x34 \x01(\x01H1\x88\x01\x01\x12\x1d\n\x10magnitude_mass_y\x18\x35 \x01(\x01H2\x88\x01\x01\x12\x1d\n\x10magnitude_mass_z\x18\x36 \x01(\x01H3\x88\x01\x01\x12\x1f\n\x12magnitude_stress_u\x18\x37 \x01(\x01H4\x88\x01\x01\x12\x1f\n\x12magnitude_stress_v\x18\x38 \x01(\x01H5\x88\x01\x01\x12\x1f\n\x12magnitude_stress_r\x18\x39 \x01(\x01H6\x88\x01\x01\x12\x1f\n\x12magnitude_stress_t\x18: \x01(\x01H7\x88\x01\x01\x12\x1a\n\rmagnitude_sag\x18; \x01(\x01H8\x88\x01\x01\x12$\n\x17magnitude_force_scale_x\x18< \x01(\x01H9\x88\x01\x01\x12$\n\x17magnitude_force_scale_y\x18= \x01(\x01H:\x88\x01\x01\x12o\n\x1f\x66orm_finding_calculation_method\x18> \x01(\x0e\x32\x41.dlubal.api.rfem.loads.SurfaceSetLoadFormFindingCalculationMethodH;\x88\x01\x01\x12s\n\"form_finding_sag_related_to_object\x18? \x01(\x0e\x32\x42.dlubal.api.rfem.loads.SurfaceSetLoadFormFindingSagRelatedToObjectH<\x88\x01\x01\x12\x30\n#form_finding_sag_related_to_surface\x18@ \x01(\x05H=\x88\x01\x01\x12\"\n\x15magnitude_mass_global\x18\x41 \x01(\x01H>\x88\x01\x01\x12.\n!ponding_magnitude_specific_weight\x18\x42 \x01(\x01H?\x88\x01\x01\x12\x33\n&ponding_magnitude_amount_precipitation\x18\x43 \x01(\x01H@\x88\x01\x01\x12)\n\x1cponding_amount_precipitation\x18\x44 \x01(\x08HA\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x45 \x01(\tHB\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x46 \x01(\x08HC\x88\x01\x01\x12#\n\x16generating_object_info\x18G \x01(\tHD\x88\x01\x01\x12)\n\x1cmagnitude_orthogonal_force_x\x18H \x01(\x01HE\x88\x01\x01\x12)\n\x1cmagnitude_orthogonal_force_y\x18I \x01(\x01HF\x88\x01\x01\x12*\n\x1dmagnitude_orthogonal_stress_x\x18J \x01(\x01HG\x88\x01\x01\x12*\n\x1dmagnitude_orthogonal_stress_y\x18K \x01(\x01HH\x88\x01\x01\x12&\n\x19magnitude_uniform_force_x\x18L \x01(\x01HI\x88\x01\x01\x12&\n\x19magnitude_uniform_force_y\x18M \x01(\x01HJ\x88\x01\x01\x12\'\n\x1amagnitude_uniform_stress_x\x18N \x01(\x01HK\x88\x01\x01\x12\'\n\x1amagnitude_uniform_stress_y\x18O \x01(\x01HL\x88\x01\x01\x12!\n\x14id_for_export_import\x18P \x01(\tHM\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18Q \x01(\tHN\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_individual_mass_componentsB\x14\n\x12_uniform_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\x18\n\x16_uniform_magnitude_t_cB\x12\n\x10_magnitude_t_c_1B\x12\n\x10_magnitude_t_c_2B\x12\n\x10_magnitude_t_c_3B\x1c\n\x1a_uniform_magnitude_delta_tB\x16\n\x14_magnitude_delta_t_1B\x16\n\x14_magnitude_delta_t_2B\x16\n\x14_magnitude_delta_t_3B\x1b\n\x19_magnitude_axial_strain_xB\x1b\n\x19_magnitude_axial_strain_yB\x1c\n\x1a_magnitude_axial_strain_1xB\x1c\n\x1a_magnitude_axial_strain_1yB\x1c\n\x1a_magnitude_axial_strain_2xB\x1c\n\x1a_magnitude_axial_strain_2yB\x1c\n\x1a_magnitude_axial_strain_3xB\x1c\n\x1a_magnitude_axial_strain_3yB\x13\n\x11_angular_velocityB\x17\n\x15_angular_accelerationB\t\n\x07_node_1B\t\n\x07_node_2B\t\n\x07_node_3B\x17\n\x15_axis_definition_typeB\x15\n\x13_axis_definition_p1B\x17\n\x15_axis_definition_p1_xB\x17\n\x15_axis_definition_p1_yB\x17\n\x15_axis_definition_p1_zB\x15\n\x13_axis_definition_p2B\x17\n\x15_axis_definition_p2_xB\x17\n\x15_axis_definition_p2_yB\x17\n\x15_axis_definition_p2_zB\x17\n\x15_axis_definition_axisB#\n!_axis_definition_axis_orientationB\x1a\n\x18_varying_load_parametersB!\n\x1f_varying_load_parameters_sortedB\x1a\n\x18_form_finding_definitionB\x14\n\x12_magnitude_force_uB\x14\n\x12_magnitude_force_vB\x14\n\x12_magnitude_force_rB\x14\n\x12_magnitude_force_tB\x13\n\x11_magnitude_mass_xB\x13\n\x11_magnitude_mass_yB\x13\n\x11_magnitude_mass_zB\x15\n\x13_magnitude_stress_uB\x15\n\x13_magnitude_stress_vB\x15\n\x13_magnitude_stress_rB\x15\n\x13_magnitude_stress_tB\x10\n\x0e_magnitude_sagB\x1a\n\x18_magnitude_force_scale_xB\x1a\n\x18_magnitude_force_scale_yB\"\n _form_finding_calculation_methodB%\n#_form_finding_sag_related_to_objectB&\n$_form_finding_sag_related_to_surfaceB\x18\n\x16_magnitude_mass_globalB$\n\"_ponding_magnitude_specific_weightB)\n\'_ponding_magnitude_amount_precipitationB\x1f\n\x1d_ponding_amount_precipitationB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1f\n\x1d_magnitude_orthogonal_force_xB\x1f\n\x1d_magnitude_orthogonal_force_yB \n\x1e_magnitude_orthogonal_stress_xB \n\x1e_magnitude_orthogonal_stress_yB\x1c\n\x1a_magnitude_uniform_force_xB\x1c\n\x1a_magnitude_uniform_force_yB\x1d\n\x1b_magnitude_uniform_stress_xB\x1d\n\x1b_magnitude_uniform_stress_yB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\",\n*ArrayOfSurfaceSetLoadVaryingLoadParameters*\x91\x03\n\x16SurfaceSetLoadLoadType\x12&\n\"SURFACE_SET_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12+\n\'SURFACE_SET_LOAD_LOAD_TYPE_AXIAL_STRAIN\x10\x03\x12$\n SURFACE_SET_LOAD_LOAD_TYPE_FORCE\x10\x01\x12+\n\'SURFACE_SET_LOAD_LOAD_TYPE_FORM_FINDING\x10\x06\x12#\n\x1fSURFACE_SET_LOAD_LOAD_TYPE_MASS\x10\x07\x12&\n\"SURFACE_SET_LOAD_LOAD_TYPE_PONDING\x10\x08\x12(\n$SURFACE_SET_LOAD_LOAD_TYPE_PRECAMBER\x10\x04\x12,\n(SURFACE_SET_LOAD_LOAD_TYPE_ROTARY_MOTION\x10\x05\x12*\n&SURFACE_SET_LOAD_LOAD_TYPE_TEMPERATURE\x10\x02*\xff\x02\n\x1eSurfaceSetLoadLoadDistribution\x12.\n*SURFACE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12-\n)SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR\x10\x01\x12\x32\n.SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X\x10\x02\x12\x32\n.SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y\x10\x03\x12\x32\n.SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z\x10\x04\x12-\n)SURFACE_SET_LOAD_LOAD_DISTRIBUTION_RADIAL\x10\x05\x12\x33\n/SURFACE_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z\x10\x08*\xd1\x04\n\x1bSurfaceSetLoadLoadDirection\x12+\n\'SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12H\nDSURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12\x43\n?SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12H\nDSURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12\x43\n?SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12H\nDSURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12\x43\n?SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12+\n\'SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12+\n\'SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\x92\x01\n SurfaceSetLoadAxisDefinitionType\x12\x34\n0SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x38\n4SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\xa9\x01\n SurfaceSetLoadAxisDefinitionAxis\x12+\n\'SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12+\n\'SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12+\n\'SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\xad\x01\n+SurfaceSetLoadAxisDefinitionAxisOrientation\x12>\n:SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12>\n:SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\xc0\x01\n#SurfaceSetLoadFormFindingDefinition\x12\x32\n.SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_FORCE\x10\x00\x12\x30\n,SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_SAG\x10\x02\x12\x33\n/SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_STRESS\x10\x01*\xac\x01\n*SurfaceSetLoadFormFindingCalculationMethod\x12=\n9SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD\x10\x00\x12?\n;SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION\x10\x01*\xe8\x01\n+SurfaceSetLoadFormFindingSagRelatedToObject\x12<\n8SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE\x10\x00\x12:\n6SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS\x10\x01\x12?\n;SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_SURFACE\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.surface_set_load_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SURFACESETLOADLOADTYPE']._serialized_start=5671
|
|
36
|
+
_globals['_SURFACESETLOADLOADTYPE']._serialized_end=6072
|
|
37
|
+
_globals['_SURFACESETLOADLOADDISTRIBUTION']._serialized_start=6075
|
|
38
|
+
_globals['_SURFACESETLOADLOADDISTRIBUTION']._serialized_end=6458
|
|
39
|
+
_globals['_SURFACESETLOADLOADDIRECTION']._serialized_start=6461
|
|
40
|
+
_globals['_SURFACESETLOADLOADDIRECTION']._serialized_end=7054
|
|
41
|
+
_globals['_SURFACESETLOADAXISDEFINITIONTYPE']._serialized_start=7057
|
|
42
|
+
_globals['_SURFACESETLOADAXISDEFINITIONTYPE']._serialized_end=7203
|
|
43
|
+
_globals['_SURFACESETLOADAXISDEFINITIONAXIS']._serialized_start=7206
|
|
44
|
+
_globals['_SURFACESETLOADAXISDEFINITIONAXIS']._serialized_end=7375
|
|
45
|
+
_globals['_SURFACESETLOADAXISDEFINITIONAXISORIENTATION']._serialized_start=7378
|
|
46
|
+
_globals['_SURFACESETLOADAXISDEFINITIONAXISORIENTATION']._serialized_end=7551
|
|
47
|
+
_globals['_SURFACESETLOADFORMFINDINGDEFINITION']._serialized_start=7554
|
|
48
|
+
_globals['_SURFACESETLOADFORMFINDINGDEFINITION']._serialized_end=7746
|
|
49
|
+
_globals['_SURFACESETLOADFORMFINDINGCALCULATIONMETHOD']._serialized_start=7749
|
|
50
|
+
_globals['_SURFACESETLOADFORMFINDINGCALCULATIONMETHOD']._serialized_end=7921
|
|
51
|
+
_globals['_SURFACESETLOADFORMFINDINGSAGRELATEDTOOBJECT']._serialized_start=7924
|
|
52
|
+
_globals['_SURFACESETLOADFORMFINDINGSAGRELATEDTOOBJECT']._serialized_end=8156
|
|
53
|
+
_globals['_SURFACESETLOAD']._serialized_start=104
|
|
54
|
+
_globals['_SURFACESETLOAD']._serialized_end=5622
|
|
55
|
+
_globals['_ARRAYOFSURFACESETLOADVARYINGLOADPARAMETERS']._serialized_start=5624
|
|
56
|
+
_globals['_ARRAYOFSURFACESETLOADVARYINGLOADPARAMETERS']._serialized_end=5668
|
|
57
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,285 @@
|
|
|
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 SurfaceSetLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SURFACE_SET_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[SurfaceSetLoadLoadType]
|
|
13
|
+
SURFACE_SET_LOAD_LOAD_TYPE_AXIAL_STRAIN: _ClassVar[SurfaceSetLoadLoadType]
|
|
14
|
+
SURFACE_SET_LOAD_LOAD_TYPE_FORCE: _ClassVar[SurfaceSetLoadLoadType]
|
|
15
|
+
SURFACE_SET_LOAD_LOAD_TYPE_FORM_FINDING: _ClassVar[SurfaceSetLoadLoadType]
|
|
16
|
+
SURFACE_SET_LOAD_LOAD_TYPE_MASS: _ClassVar[SurfaceSetLoadLoadType]
|
|
17
|
+
SURFACE_SET_LOAD_LOAD_TYPE_PONDING: _ClassVar[SurfaceSetLoadLoadType]
|
|
18
|
+
SURFACE_SET_LOAD_LOAD_TYPE_PRECAMBER: _ClassVar[SurfaceSetLoadLoadType]
|
|
19
|
+
SURFACE_SET_LOAD_LOAD_TYPE_ROTARY_MOTION: _ClassVar[SurfaceSetLoadLoadType]
|
|
20
|
+
SURFACE_SET_LOAD_LOAD_TYPE_TEMPERATURE: _ClassVar[SurfaceSetLoadLoadType]
|
|
21
|
+
|
|
22
|
+
class SurfaceSetLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
23
|
+
__slots__ = ()
|
|
24
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
25
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
26
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
27
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
28
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
29
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_RADIAL: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
30
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: _ClassVar[SurfaceSetLoadLoadDistribution]
|
|
31
|
+
|
|
32
|
+
class SurfaceSetLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
33
|
+
__slots__ = ()
|
|
34
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
35
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
36
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
37
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
38
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
39
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
40
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
41
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
42
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[SurfaceSetLoadLoadDirection]
|
|
43
|
+
|
|
44
|
+
class SurfaceSetLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
45
|
+
__slots__ = ()
|
|
46
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[SurfaceSetLoadAxisDefinitionType]
|
|
47
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[SurfaceSetLoadAxisDefinitionType]
|
|
48
|
+
|
|
49
|
+
class SurfaceSetLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
50
|
+
__slots__ = ()
|
|
51
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[SurfaceSetLoadAxisDefinitionAxis]
|
|
52
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[SurfaceSetLoadAxisDefinitionAxis]
|
|
53
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[SurfaceSetLoadAxisDefinitionAxis]
|
|
54
|
+
|
|
55
|
+
class SurfaceSetLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
56
|
+
__slots__ = ()
|
|
57
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[SurfaceSetLoadAxisDefinitionAxisOrientation]
|
|
58
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[SurfaceSetLoadAxisDefinitionAxisOrientation]
|
|
59
|
+
|
|
60
|
+
class SurfaceSetLoadFormFindingDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
61
|
+
__slots__ = ()
|
|
62
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_FORCE: _ClassVar[SurfaceSetLoadFormFindingDefinition]
|
|
63
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_SAG: _ClassVar[SurfaceSetLoadFormFindingDefinition]
|
|
64
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_STRESS: _ClassVar[SurfaceSetLoadFormFindingDefinition]
|
|
65
|
+
|
|
66
|
+
class SurfaceSetLoadFormFindingCalculationMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
67
|
+
__slots__ = ()
|
|
68
|
+
SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD: _ClassVar[SurfaceSetLoadFormFindingCalculationMethod]
|
|
69
|
+
SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION: _ClassVar[SurfaceSetLoadFormFindingCalculationMethod]
|
|
70
|
+
|
|
71
|
+
class SurfaceSetLoadFormFindingSagRelatedToObject(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
72
|
+
__slots__ = ()
|
|
73
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE: _ClassVar[SurfaceSetLoadFormFindingSagRelatedToObject]
|
|
74
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS: _ClassVar[SurfaceSetLoadFormFindingSagRelatedToObject]
|
|
75
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_SURFACE: _ClassVar[SurfaceSetLoadFormFindingSagRelatedToObject]
|
|
76
|
+
SURFACE_SET_LOAD_LOAD_TYPE_UNKNOWN: SurfaceSetLoadLoadType
|
|
77
|
+
SURFACE_SET_LOAD_LOAD_TYPE_AXIAL_STRAIN: SurfaceSetLoadLoadType
|
|
78
|
+
SURFACE_SET_LOAD_LOAD_TYPE_FORCE: SurfaceSetLoadLoadType
|
|
79
|
+
SURFACE_SET_LOAD_LOAD_TYPE_FORM_FINDING: SurfaceSetLoadLoadType
|
|
80
|
+
SURFACE_SET_LOAD_LOAD_TYPE_MASS: SurfaceSetLoadLoadType
|
|
81
|
+
SURFACE_SET_LOAD_LOAD_TYPE_PONDING: SurfaceSetLoadLoadType
|
|
82
|
+
SURFACE_SET_LOAD_LOAD_TYPE_PRECAMBER: SurfaceSetLoadLoadType
|
|
83
|
+
SURFACE_SET_LOAD_LOAD_TYPE_ROTARY_MOTION: SurfaceSetLoadLoadType
|
|
84
|
+
SURFACE_SET_LOAD_LOAD_TYPE_TEMPERATURE: SurfaceSetLoadLoadType
|
|
85
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: SurfaceSetLoadLoadDistribution
|
|
86
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR: SurfaceSetLoadLoadDistribution
|
|
87
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: SurfaceSetLoadLoadDistribution
|
|
88
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: SurfaceSetLoadLoadDistribution
|
|
89
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: SurfaceSetLoadLoadDistribution
|
|
90
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_RADIAL: SurfaceSetLoadLoadDistribution
|
|
91
|
+
SURFACE_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: SurfaceSetLoadLoadDistribution
|
|
92
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_X: SurfaceSetLoadLoadDirection
|
|
93
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: SurfaceSetLoadLoadDirection
|
|
94
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: SurfaceSetLoadLoadDirection
|
|
95
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: SurfaceSetLoadLoadDirection
|
|
96
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: SurfaceSetLoadLoadDirection
|
|
97
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: SurfaceSetLoadLoadDirection
|
|
98
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: SurfaceSetLoadLoadDirection
|
|
99
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: SurfaceSetLoadLoadDirection
|
|
100
|
+
SURFACE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: SurfaceSetLoadLoadDirection
|
|
101
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: SurfaceSetLoadAxisDefinitionType
|
|
102
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: SurfaceSetLoadAxisDefinitionType
|
|
103
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_X: SurfaceSetLoadAxisDefinitionAxis
|
|
104
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Y: SurfaceSetLoadAxisDefinitionAxis
|
|
105
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_Z: SurfaceSetLoadAxisDefinitionAxis
|
|
106
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: SurfaceSetLoadAxisDefinitionAxisOrientation
|
|
107
|
+
SURFACE_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: SurfaceSetLoadAxisDefinitionAxisOrientation
|
|
108
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_FORCE: SurfaceSetLoadFormFindingDefinition
|
|
109
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_SAG: SurfaceSetLoadFormFindingDefinition
|
|
110
|
+
SURFACE_SET_LOAD_FORM_FINDING_DEFINITION_STRESS: SurfaceSetLoadFormFindingDefinition
|
|
111
|
+
SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD: SurfaceSetLoadFormFindingCalculationMethod
|
|
112
|
+
SURFACE_SET_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION: SurfaceSetLoadFormFindingCalculationMethod
|
|
113
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE: SurfaceSetLoadFormFindingSagRelatedToObject
|
|
114
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS: SurfaceSetLoadFormFindingSagRelatedToObject
|
|
115
|
+
SURFACE_SET_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_SURFACE: SurfaceSetLoadFormFindingSagRelatedToObject
|
|
116
|
+
|
|
117
|
+
class SurfaceSetLoad(_message.Message):
|
|
118
|
+
__slots__ = ("no", "load_type", "surface_sets", "load_case", "coordinate_system", "load_distribution", "load_direction", "individual_mass_components", "uniform_magnitude", "magnitude_1", "magnitude_2", "magnitude_3", "uniform_magnitude_t_c", "magnitude_t_c_1", "magnitude_t_c_2", "magnitude_t_c_3", "uniform_magnitude_delta_t", "magnitude_delta_t_1", "magnitude_delta_t_2", "magnitude_delta_t_3", "magnitude_axial_strain_x", "magnitude_axial_strain_y", "magnitude_axial_strain_1x", "magnitude_axial_strain_1y", "magnitude_axial_strain_2x", "magnitude_axial_strain_2y", "magnitude_axial_strain_3x", "magnitude_axial_strain_3y", "angular_velocity", "angular_acceleration", "node_1", "node_2", "node_3", "axis_definition_type", "axis_definition_p1", "axis_definition_p1_x", "axis_definition_p1_y", "axis_definition_p1_z", "axis_definition_p2", "axis_definition_p2_x", "axis_definition_p2_y", "axis_definition_p2_z", "axis_definition_axis", "axis_definition_axis_orientation", "varying_load_parameters", "varying_load_parameters_sorted", "form_finding_definition", "magnitude_force_u", "magnitude_force_v", "magnitude_force_r", "magnitude_force_t", "magnitude_mass_x", "magnitude_mass_y", "magnitude_mass_z", "magnitude_stress_u", "magnitude_stress_v", "magnitude_stress_r", "magnitude_stress_t", "magnitude_sag", "magnitude_force_scale_x", "magnitude_force_scale_y", "form_finding_calculation_method", "form_finding_sag_related_to_object", "form_finding_sag_related_to_surface", "magnitude_mass_global", "ponding_magnitude_specific_weight", "ponding_magnitude_amount_precipitation", "ponding_amount_precipitation", "comment", "is_generated", "generating_object_info", "magnitude_orthogonal_force_x", "magnitude_orthogonal_force_y", "magnitude_orthogonal_stress_x", "magnitude_orthogonal_stress_y", "magnitude_uniform_force_x", "magnitude_uniform_force_y", "magnitude_uniform_stress_x", "magnitude_uniform_stress_y", "id_for_export_import", "metadata_for_export_import")
|
|
119
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
UNIFORM_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
UNIFORM_MAGNITUDE_T_C_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
MAGNITUDE_T_C_1_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
MAGNITUDE_T_C_2_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
MAGNITUDE_T_C_3_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
UNIFORM_MAGNITUDE_DELTA_T_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
MAGNITUDE_DELTA_T_1_FIELD_NUMBER: _ClassVar[int]
|
|
137
|
+
MAGNITUDE_DELTA_T_2_FIELD_NUMBER: _ClassVar[int]
|
|
138
|
+
MAGNITUDE_DELTA_T_3_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
MAGNITUDE_AXIAL_STRAIN_X_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
MAGNITUDE_AXIAL_STRAIN_Y_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
MAGNITUDE_AXIAL_STRAIN_1X_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
MAGNITUDE_AXIAL_STRAIN_1Y_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
MAGNITUDE_AXIAL_STRAIN_2X_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
MAGNITUDE_AXIAL_STRAIN_2Y_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
MAGNITUDE_AXIAL_STRAIN_3X_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
MAGNITUDE_AXIAL_STRAIN_3Y_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
NODE_3_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
FORM_FINDING_DEFINITION_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
MAGNITUDE_FORCE_U_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
MAGNITUDE_FORCE_V_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
MAGNITUDE_FORCE_R_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
MAGNITUDE_FORCE_T_FIELD_NUMBER: _ClassVar[int]
|
|
170
|
+
MAGNITUDE_MASS_X_FIELD_NUMBER: _ClassVar[int]
|
|
171
|
+
MAGNITUDE_MASS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
172
|
+
MAGNITUDE_MASS_Z_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
MAGNITUDE_STRESS_U_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
MAGNITUDE_STRESS_V_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
MAGNITUDE_STRESS_R_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
MAGNITUDE_STRESS_T_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
+
MAGNITUDE_SAG_FIELD_NUMBER: _ClassVar[int]
|
|
178
|
+
MAGNITUDE_FORCE_SCALE_X_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
MAGNITUDE_FORCE_SCALE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
FORM_FINDING_CALCULATION_METHOD_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
FORM_FINDING_SAG_RELATED_TO_OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
FORM_FINDING_SAG_RELATED_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
MAGNITUDE_MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
PONDING_MAGNITUDE_SPECIFIC_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
PONDING_MAGNITUDE_AMOUNT_PRECIPITATION_FIELD_NUMBER: _ClassVar[int]
|
|
186
|
+
PONDING_AMOUNT_PRECIPITATION_FIELD_NUMBER: _ClassVar[int]
|
|
187
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
188
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
189
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
190
|
+
MAGNITUDE_ORTHOGONAL_FORCE_X_FIELD_NUMBER: _ClassVar[int]
|
|
191
|
+
MAGNITUDE_ORTHOGONAL_FORCE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
MAGNITUDE_ORTHOGONAL_STRESS_X_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
MAGNITUDE_ORTHOGONAL_STRESS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
MAGNITUDE_UNIFORM_FORCE_X_FIELD_NUMBER: _ClassVar[int]
|
|
195
|
+
MAGNITUDE_UNIFORM_FORCE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
+
MAGNITUDE_UNIFORM_STRESS_X_FIELD_NUMBER: _ClassVar[int]
|
|
197
|
+
MAGNITUDE_UNIFORM_STRESS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
198
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
no: int
|
|
201
|
+
load_type: SurfaceSetLoadLoadType
|
|
202
|
+
surface_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
203
|
+
load_case: int
|
|
204
|
+
coordinate_system: str
|
|
205
|
+
load_distribution: SurfaceSetLoadLoadDistribution
|
|
206
|
+
load_direction: SurfaceSetLoadLoadDirection
|
|
207
|
+
individual_mass_components: bool
|
|
208
|
+
uniform_magnitude: float
|
|
209
|
+
magnitude_1: float
|
|
210
|
+
magnitude_2: float
|
|
211
|
+
magnitude_3: float
|
|
212
|
+
uniform_magnitude_t_c: float
|
|
213
|
+
magnitude_t_c_1: float
|
|
214
|
+
magnitude_t_c_2: float
|
|
215
|
+
magnitude_t_c_3: float
|
|
216
|
+
uniform_magnitude_delta_t: float
|
|
217
|
+
magnitude_delta_t_1: float
|
|
218
|
+
magnitude_delta_t_2: float
|
|
219
|
+
magnitude_delta_t_3: float
|
|
220
|
+
magnitude_axial_strain_x: float
|
|
221
|
+
magnitude_axial_strain_y: float
|
|
222
|
+
magnitude_axial_strain_1x: float
|
|
223
|
+
magnitude_axial_strain_1y: float
|
|
224
|
+
magnitude_axial_strain_2x: float
|
|
225
|
+
magnitude_axial_strain_2y: float
|
|
226
|
+
magnitude_axial_strain_3x: float
|
|
227
|
+
magnitude_axial_strain_3y: float
|
|
228
|
+
angular_velocity: float
|
|
229
|
+
angular_acceleration: float
|
|
230
|
+
node_1: int
|
|
231
|
+
node_2: int
|
|
232
|
+
node_3: int
|
|
233
|
+
axis_definition_type: SurfaceSetLoadAxisDefinitionType
|
|
234
|
+
axis_definition_p1: _common_pb2.Vector3d
|
|
235
|
+
axis_definition_p1_x: float
|
|
236
|
+
axis_definition_p1_y: float
|
|
237
|
+
axis_definition_p1_z: float
|
|
238
|
+
axis_definition_p2: _common_pb2.Vector3d
|
|
239
|
+
axis_definition_p2_x: float
|
|
240
|
+
axis_definition_p2_y: float
|
|
241
|
+
axis_definition_p2_z: float
|
|
242
|
+
axis_definition_axis: SurfaceSetLoadAxisDefinitionAxis
|
|
243
|
+
axis_definition_axis_orientation: SurfaceSetLoadAxisDefinitionAxisOrientation
|
|
244
|
+
varying_load_parameters: ArrayOfSurfaceSetLoadVaryingLoadParameters
|
|
245
|
+
varying_load_parameters_sorted: bool
|
|
246
|
+
form_finding_definition: SurfaceSetLoadFormFindingDefinition
|
|
247
|
+
magnitude_force_u: float
|
|
248
|
+
magnitude_force_v: float
|
|
249
|
+
magnitude_force_r: float
|
|
250
|
+
magnitude_force_t: float
|
|
251
|
+
magnitude_mass_x: float
|
|
252
|
+
magnitude_mass_y: float
|
|
253
|
+
magnitude_mass_z: float
|
|
254
|
+
magnitude_stress_u: float
|
|
255
|
+
magnitude_stress_v: float
|
|
256
|
+
magnitude_stress_r: float
|
|
257
|
+
magnitude_stress_t: float
|
|
258
|
+
magnitude_sag: float
|
|
259
|
+
magnitude_force_scale_x: float
|
|
260
|
+
magnitude_force_scale_y: float
|
|
261
|
+
form_finding_calculation_method: SurfaceSetLoadFormFindingCalculationMethod
|
|
262
|
+
form_finding_sag_related_to_object: SurfaceSetLoadFormFindingSagRelatedToObject
|
|
263
|
+
form_finding_sag_related_to_surface: int
|
|
264
|
+
magnitude_mass_global: float
|
|
265
|
+
ponding_magnitude_specific_weight: float
|
|
266
|
+
ponding_magnitude_amount_precipitation: float
|
|
267
|
+
ponding_amount_precipitation: bool
|
|
268
|
+
comment: str
|
|
269
|
+
is_generated: bool
|
|
270
|
+
generating_object_info: str
|
|
271
|
+
magnitude_orthogonal_force_x: float
|
|
272
|
+
magnitude_orthogonal_force_y: float
|
|
273
|
+
magnitude_orthogonal_stress_x: float
|
|
274
|
+
magnitude_orthogonal_stress_y: float
|
|
275
|
+
magnitude_uniform_force_x: float
|
|
276
|
+
magnitude_uniform_force_y: float
|
|
277
|
+
magnitude_uniform_stress_x: float
|
|
278
|
+
magnitude_uniform_stress_y: float
|
|
279
|
+
id_for_export_import: str
|
|
280
|
+
metadata_for_export_import: str
|
|
281
|
+
def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[SurfaceSetLoadLoadType, str]] = ..., surface_sets: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_distribution: _Optional[_Union[SurfaceSetLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[SurfaceSetLoadLoadDirection, str]] = ..., individual_mass_components: bool = ..., uniform_magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., magnitude_3: _Optional[float] = ..., uniform_magnitude_t_c: _Optional[float] = ..., magnitude_t_c_1: _Optional[float] = ..., magnitude_t_c_2: _Optional[float] = ..., magnitude_t_c_3: _Optional[float] = ..., uniform_magnitude_delta_t: _Optional[float] = ..., magnitude_delta_t_1: _Optional[float] = ..., magnitude_delta_t_2: _Optional[float] = ..., magnitude_delta_t_3: _Optional[float] = ..., magnitude_axial_strain_x: _Optional[float] = ..., magnitude_axial_strain_y: _Optional[float] = ..., magnitude_axial_strain_1x: _Optional[float] = ..., magnitude_axial_strain_1y: _Optional[float] = ..., magnitude_axial_strain_2x: _Optional[float] = ..., magnitude_axial_strain_2y: _Optional[float] = ..., magnitude_axial_strain_3x: _Optional[float] = ..., magnitude_axial_strain_3y: _Optional[float] = ..., angular_velocity: _Optional[float] = ..., angular_acceleration: _Optional[float] = ..., node_1: _Optional[int] = ..., node_2: _Optional[int] = ..., node_3: _Optional[int] = ..., axis_definition_type: _Optional[_Union[SurfaceSetLoadAxisDefinitionType, str]] = ..., axis_definition_p1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., axis_definition_p1_x: _Optional[float] = ..., axis_definition_p1_y: _Optional[float] = ..., axis_definition_p1_z: _Optional[float] = ..., axis_definition_p2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., axis_definition_p2_x: _Optional[float] = ..., axis_definition_p2_y: _Optional[float] = ..., axis_definition_p2_z: _Optional[float] = ..., axis_definition_axis: _Optional[_Union[SurfaceSetLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[SurfaceSetLoadAxisDefinitionAxisOrientation, str]] = ..., varying_load_parameters: _Optional[_Union[ArrayOfSurfaceSetLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., form_finding_definition: _Optional[_Union[SurfaceSetLoadFormFindingDefinition, str]] = ..., magnitude_force_u: _Optional[float] = ..., magnitude_force_v: _Optional[float] = ..., magnitude_force_r: _Optional[float] = ..., magnitude_force_t: _Optional[float] = ..., magnitude_mass_x: _Optional[float] = ..., magnitude_mass_y: _Optional[float] = ..., magnitude_mass_z: _Optional[float] = ..., magnitude_stress_u: _Optional[float] = ..., magnitude_stress_v: _Optional[float] = ..., magnitude_stress_r: _Optional[float] = ..., magnitude_stress_t: _Optional[float] = ..., magnitude_sag: _Optional[float] = ..., magnitude_force_scale_x: _Optional[float] = ..., magnitude_force_scale_y: _Optional[float] = ..., form_finding_calculation_method: _Optional[_Union[SurfaceSetLoadFormFindingCalculationMethod, str]] = ..., form_finding_sag_related_to_object: _Optional[_Union[SurfaceSetLoadFormFindingSagRelatedToObject, str]] = ..., form_finding_sag_related_to_surface: _Optional[int] = ..., magnitude_mass_global: _Optional[float] = ..., ponding_magnitude_specific_weight: _Optional[float] = ..., ponding_magnitude_amount_precipitation: _Optional[float] = ..., ponding_amount_precipitation: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., magnitude_orthogonal_force_x: _Optional[float] = ..., magnitude_orthogonal_force_y: _Optional[float] = ..., magnitude_orthogonal_stress_x: _Optional[float] = ..., magnitude_orthogonal_stress_y: _Optional[float] = ..., magnitude_uniform_force_x: _Optional[float] = ..., magnitude_uniform_force_y: _Optional[float] = ..., magnitude_uniform_stress_x: _Optional[float] = ..., magnitude_uniform_stress_y: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
282
|
+
|
|
283
|
+
class ArrayOfSurfaceSetLoadVaryingLoadParameters(_message.Message):
|
|
284
|
+
__slots__ = ()
|
|
285
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
from dlubal.api.rfem.application_pb2 import Object, ObjectList
|
|
2
|
+
from dlubal.api.common.model_id_pb2 import ModelId
|
|
3
|
+
from google.protobuf.any_pb2 import Any
|
|
4
|
+
from google.protobuf.struct_pb2 import Value
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def pack_object(object, model_id=None) -> Object:
|
|
8
|
+
packed = Any()
|
|
9
|
+
packed.Pack(object)
|
|
10
|
+
|
|
11
|
+
if model_id is None:
|
|
12
|
+
return Object(object=packed)
|
|
13
|
+
|
|
14
|
+
return Object(object=packed, model_id=ModelId(id=model_id))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def unpack_object(packed_object: Object, Type):
|
|
18
|
+
result = Type()
|
|
19
|
+
packed_object.object.Unpack(result)
|
|
20
|
+
return result
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def pack_object_list(object_list, model_id=None) -> ObjectList:
|
|
24
|
+
packed_list = ObjectList()
|
|
25
|
+
|
|
26
|
+
for object in object_list:
|
|
27
|
+
packed_list.objects.append(pack_object(object, model_id))
|
|
28
|
+
|
|
29
|
+
return packed_list
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def unpack_object_list(packed_object_list: ObjectList, Type):
|
|
33
|
+
unpacked_list = []
|
|
34
|
+
|
|
35
|
+
for object in packed_object_list.objects:
|
|
36
|
+
unpacked_list.append(unpack_object(object, Type))
|
|
37
|
+
|
|
38
|
+
return unpacked_list
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def get_internal_value(value: Value):
|
|
42
|
+
'''
|
|
43
|
+
Get the internal value stored in a generic Value object
|
|
44
|
+
'''
|
|
45
|
+
return getattr(value, value.WhichOneof('kind'))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .result_section_pb2 import *
|
|
@@ -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/rfem/result_objects/result_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/rfem/result_objects/result_section.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'\n3dlubal/api/rfem/result_objects/result_section.proto\x12\x1e\x64lubal.api.rfem.result_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xdd\x0e\n\rResultSection\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x44\n\x04type\x18\x02 \x01(\x0e\x32\x31.dlubal.api.rfem.result_objects.ResultSectionTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12%\n\x18\x61ssigned_to_all_surfaces\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x1c\n\x14\x61ssigned_to_surfaces\x18\x06 \x03(\x05\x12#\n\x16\x61ssigned_to_all_solids\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12\x1a\n\x12\x61ssigned_to_solids\x18\x08 \x03(\x05\x12k\n\x19show_results_in_direction\x18\t \x01(\x0e\x32\x43.dlubal.api.rfem.result_objects.ResultSectionShowResultsInDirectionH\x05\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\n \x01(\x05H\x06\x88\x01\x01\x12,\n\x1fshow_values_on_isolines_enabled\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12\r\n\x05lines\x18\x0c \x03(\x05\x12\x35\n\x0b\x66irst_point\x18\r \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x08\x88\x01\x01\x12%\n\x18\x66irst_point_coordinate_1\x18\x0e \x01(\x01H\t\x88\x01\x01\x12%\n\x18\x66irst_point_coordinate_2\x18\x0f \x01(\x01H\n\x88\x01\x01\x12%\n\x18\x66irst_point_coordinate_3\x18\x10 \x01(\x01H\x0b\x88\x01\x01\x12\x36\n\x0csecond_point\x18\x11 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0c\x88\x01\x01\x12&\n\x19second_point_coordinate_1\x18\x12 \x01(\x01H\r\x88\x01\x01\x12&\n\x19second_point_coordinate_2\x18\x13 \x01(\x01H\x0e\x88\x01\x01\x12&\n\x19second_point_coordinate_3\x18\x14 \x01(\x01H\x0f\x88\x01\x01\x12h\n\x17projection_in_direction\x18\x15 \x01(\x0e\x32\x42.dlubal.api.rfem.result_objects.ResultSectionProjectionInDirectionH\x10\x88\x01\x01\x12\x30\n\x06vector\x18\x16 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x11\x88\x01\x01\x12 \n\x13vector_coordinate_1\x18\x17 \x01(\x01H\x12\x88\x01\x01\x12 \n\x13vector_coordinate_2\x18\x18 \x01(\x01H\x13\x88\x01\x01\x12 \n\x13vector_coordinate_3\x18\x19 \x01(\x01H\x14\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1b \x01(\x08H\x16\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1c \x01(\tH\x17\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1d \x01(\tH\x18\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1e \x01(\tH\x19\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1b\n\x19_assigned_to_all_surfacesB\x19\n\x17_assigned_to_all_solidsB\x1c\n\x1a_show_results_in_directionB\x14\n\x12_coordinate_systemB\"\n _show_values_on_isolines_enabledB\x0e\n\x0c_first_pointB\x1b\n\x19_first_point_coordinate_1B\x1b\n\x19_first_point_coordinate_2B\x1b\n\x19_first_point_coordinate_3B\x0f\n\r_second_pointB\x1c\n\x1a_second_point_coordinate_1B\x1c\n\x1a_second_point_coordinate_2B\x1c\n\x1a_second_point_coordinate_3B\x1a\n\x18_projection_in_directionB\t\n\x07_vectorB\x16\n\x14_vector_coordinate_1B\x16\n\x14_vector_coordinate_2B\x16\n\x14_vector_coordinate_3B\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*\x7f\n\x11ResultSectionType\x12\x1f\n\x1bRESULT_SECTION_TYPE_UNKNOWN\x10\x00\x12+\n\'RESULT_SECTION_TYPE_2_POINTS_AND_VECTOR\x10\x01\x12\x1c\n\x18RESULT_SECTION_TYPE_LINE\x10\x02*\xc2\x04\n#ResultSectionShowResultsInDirection\x12\x39\n5RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Z\x10\x00\x12;\n7RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_X\x10\x05\x12;\n7RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Y\x10\x07\x12;\n7RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Z\x10\t\x12:\n6RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_X\x10\x04\x12:\n6RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Y\x10\x06\x12:\n6RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Z\x10\x08\x12:\n6RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_MINUS_Z\x10\x01\x12\x39\n5RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Y\x10\x02*\xa7\x03\n\"ResultSectionProjectionInDirection\x12\x33\n/RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_X\x10\x00\x12\x33\n/RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Y\x10\x01\x12\x33\n/RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Z\x10\x02\x12\x39\n5RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_U\x10\x03\x12\x39\n5RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_V\x10\x04\x12\x39\n5RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_W\x10\x05\x12\x31\n-RESULT_SECTION_PROJECTION_IN_DIRECTION_VECTOR\x10\x06\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.result_objects.result_section_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_RESULTSECTIONTYPE']._serialized_start=2007
|
|
36
|
+
_globals['_RESULTSECTIONTYPE']._serialized_end=2134
|
|
37
|
+
_globals['_RESULTSECTIONSHOWRESULTSINDIRECTION']._serialized_start=2137
|
|
38
|
+
_globals['_RESULTSECTIONSHOWRESULTSINDIRECTION']._serialized_end=2715
|
|
39
|
+
_globals['_RESULTSECTIONPROJECTIONINDIRECTION']._serialized_start=2718
|
|
40
|
+
_globals['_RESULTSECTIONPROJECTIONINDIRECTION']._serialized_end=3141
|
|
41
|
+
_globals['_RESULTSECTION']._serialized_start=120
|
|
42
|
+
_globals['_RESULTSECTION']._serialized_end=2005
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,119 @@
|
|
|
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 ResultSectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
RESULT_SECTION_TYPE_UNKNOWN: _ClassVar[ResultSectionType]
|
|
13
|
+
RESULT_SECTION_TYPE_2_POINTS_AND_VECTOR: _ClassVar[ResultSectionType]
|
|
14
|
+
RESULT_SECTION_TYPE_LINE: _ClassVar[ResultSectionType]
|
|
15
|
+
|
|
16
|
+
class ResultSectionShowResultsInDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Z: _ClassVar[ResultSectionShowResultsInDirection]
|
|
19
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_X: _ClassVar[ResultSectionShowResultsInDirection]
|
|
20
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Y: _ClassVar[ResultSectionShowResultsInDirection]
|
|
21
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Z: _ClassVar[ResultSectionShowResultsInDirection]
|
|
22
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_X: _ClassVar[ResultSectionShowResultsInDirection]
|
|
23
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Y: _ClassVar[ResultSectionShowResultsInDirection]
|
|
24
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Z: _ClassVar[ResultSectionShowResultsInDirection]
|
|
25
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_MINUS_Z: _ClassVar[ResultSectionShowResultsInDirection]
|
|
26
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Y: _ClassVar[ResultSectionShowResultsInDirection]
|
|
27
|
+
|
|
28
|
+
class ResultSectionProjectionInDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
29
|
+
__slots__ = ()
|
|
30
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_X: _ClassVar[ResultSectionProjectionInDirection]
|
|
31
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Y: _ClassVar[ResultSectionProjectionInDirection]
|
|
32
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Z: _ClassVar[ResultSectionProjectionInDirection]
|
|
33
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_U: _ClassVar[ResultSectionProjectionInDirection]
|
|
34
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_V: _ClassVar[ResultSectionProjectionInDirection]
|
|
35
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_W: _ClassVar[ResultSectionProjectionInDirection]
|
|
36
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_VECTOR: _ClassVar[ResultSectionProjectionInDirection]
|
|
37
|
+
RESULT_SECTION_TYPE_UNKNOWN: ResultSectionType
|
|
38
|
+
RESULT_SECTION_TYPE_2_POINTS_AND_VECTOR: ResultSectionType
|
|
39
|
+
RESULT_SECTION_TYPE_LINE: ResultSectionType
|
|
40
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Z: ResultSectionShowResultsInDirection
|
|
41
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_X: ResultSectionShowResultsInDirection
|
|
42
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Y: ResultSectionShowResultsInDirection
|
|
43
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_MINUS_Z: ResultSectionShowResultsInDirection
|
|
44
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_X: ResultSectionShowResultsInDirection
|
|
45
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Y: ResultSectionShowResultsInDirection
|
|
46
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_GLOBAL_PLUS_Z: ResultSectionShowResultsInDirection
|
|
47
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_MINUS_Z: ResultSectionShowResultsInDirection
|
|
48
|
+
RESULT_SECTION_SHOW_RESULTS_IN_DIRECTION_LOCAL_PLUS_Y: ResultSectionShowResultsInDirection
|
|
49
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_X: ResultSectionProjectionInDirection
|
|
50
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Y: ResultSectionProjectionInDirection
|
|
51
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_GLOBAL_Z: ResultSectionProjectionInDirection
|
|
52
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_U: ResultSectionProjectionInDirection
|
|
53
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_V: ResultSectionProjectionInDirection
|
|
54
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_USER_DEFINED_W: ResultSectionProjectionInDirection
|
|
55
|
+
RESULT_SECTION_PROJECTION_IN_DIRECTION_VECTOR: ResultSectionProjectionInDirection
|
|
56
|
+
|
|
57
|
+
class ResultSection(_message.Message):
|
|
58
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "assigned_to_all_surfaces", "assigned_to_surfaces", "assigned_to_all_solids", "assigned_to_solids", "show_results_in_direction", "coordinate_system", "show_values_on_isolines_enabled", "lines", "first_point", "first_point_coordinate_1", "first_point_coordinate_2", "first_point_coordinate_3", "second_point", "second_point_coordinate_1", "second_point_coordinate_2", "second_point_coordinate_3", "projection_in_direction", "vector", "vector_coordinate_1", "vector_coordinate_2", "vector_coordinate_3", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
59
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
ASSIGNED_TO_ALL_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
ASSIGNED_TO_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
ASSIGNED_TO_ALL_SOLIDS_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
ASSIGNED_TO_SOLIDS_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
SHOW_RESULTS_IN_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
SHOW_VALUES_ON_ISOLINES_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
FIRST_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
FIRST_POINT_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
FIRST_POINT_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
FIRST_POINT_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
SECOND_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
SECOND_POINT_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
SECOND_POINT_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
SECOND_POINT_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
PROJECTION_IN_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
VECTOR_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
VECTOR_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
VECTOR_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
VECTOR_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
no: int
|
|
90
|
+
type: ResultSectionType
|
|
91
|
+
user_defined_name_enabled: bool
|
|
92
|
+
name: str
|
|
93
|
+
assigned_to_all_surfaces: bool
|
|
94
|
+
assigned_to_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
95
|
+
assigned_to_all_solids: bool
|
|
96
|
+
assigned_to_solids: _containers.RepeatedScalarFieldContainer[int]
|
|
97
|
+
show_results_in_direction: ResultSectionShowResultsInDirection
|
|
98
|
+
coordinate_system: int
|
|
99
|
+
show_values_on_isolines_enabled: bool
|
|
100
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
101
|
+
first_point: _common_pb2.Vector3d
|
|
102
|
+
first_point_coordinate_1: float
|
|
103
|
+
first_point_coordinate_2: float
|
|
104
|
+
first_point_coordinate_3: float
|
|
105
|
+
second_point: _common_pb2.Vector3d
|
|
106
|
+
second_point_coordinate_1: float
|
|
107
|
+
second_point_coordinate_2: float
|
|
108
|
+
second_point_coordinate_3: float
|
|
109
|
+
projection_in_direction: ResultSectionProjectionInDirection
|
|
110
|
+
vector: _common_pb2.Vector3d
|
|
111
|
+
vector_coordinate_1: float
|
|
112
|
+
vector_coordinate_2: float
|
|
113
|
+
vector_coordinate_3: float
|
|
114
|
+
comment: str
|
|
115
|
+
is_generated: bool
|
|
116
|
+
generating_object_info: str
|
|
117
|
+
id_for_export_import: str
|
|
118
|
+
metadata_for_export_import: str
|
|
119
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[ResultSectionType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_surfaces: bool = ..., assigned_to_surfaces: _Optional[_Iterable[int]] = ..., assigned_to_all_solids: bool = ..., assigned_to_solids: _Optional[_Iterable[int]] = ..., show_results_in_direction: _Optional[_Union[ResultSectionShowResultsInDirection, str]] = ..., coordinate_system: _Optional[int] = ..., show_values_on_isolines_enabled: bool = ..., lines: _Optional[_Iterable[int]] = ..., first_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., first_point_coordinate_1: _Optional[float] = ..., first_point_coordinate_2: _Optional[float] = ..., first_point_coordinate_3: _Optional[float] = ..., second_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., second_point_coordinate_1: _Optional[float] = ..., second_point_coordinate_2: _Optional[float] = ..., second_point_coordinate_3: _Optional[float] = ..., projection_in_direction: _Optional[_Union[ResultSectionProjectionInDirection, str]] = ..., vector: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., vector_coordinate_1: _Optional[float] = ..., vector_coordinate_2: _Optional[float] = ..., vector_coordinate_3: _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,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/rfem/results/results_id.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/results/results_id.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/results/results_id.proto\x12\x17\x64lubal.api.rfem.results*q\n\tResultsId\x12\x16\n\x12RESULTS_ID_INVALID\x10\x00\x12\x35\n1RESULTS_ID_STATIC_ANALYSIS_MEMBER_INTERNAL_FORCES\x10\x01\x12\x15\n\x0fRESULTS_ID_TEST\x10\xbf\x84=b\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.results.results_id_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_RESULTSID']._serialized_start=69
|
|
35
|
+
_globals['_RESULTSID']._serialized_end=182
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|