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,53 @@
|
|
|
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/solid_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/solid_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/solid_set_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xbe\x16\n\x0cSolidSetLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x43\n\tload_type\x18\x02 \x01(\x0e\x32+.dlubal.api.rfem.loads.SolidSetLoadLoadTypeH\x00\x88\x01\x01\x12\x12\n\nsolid_sets\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12S\n\x11load_distribution\x18\x05 \x01(\x0e\x32\x33.dlubal.api.rfem.loads.SolidSetLoadLoadDistributionH\x02\x88\x01\x01\x12M\n\x0eload_direction\x18\x06 \x01(\x0e\x32\x30.dlubal.api.rfem.loads.SolidSetLoadLoadDirectionH\x03\x88\x01\x01\x12\x64\n\x1aload_direction_orientation\x18\x07 \x01(\x0e\x32;.dlubal.api.rfem.loads.SolidSetLoadLoadDirectionOrientationH\x04\x88\x01\x01\x12\x1e\n\x11uniform_magnitude\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\n \x01(\x01H\x07\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_x\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_y\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_z\x18\r \x01(\x01H\n\x88\x01\x01\x12 \n\x13strain_magnitude_x1\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12 \n\x13strain_magnitude_y1\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12 \n\x13strain_magnitude_z1\x18\x10 \x01(\x01H\r\x88\x01\x01\x12 \n\x13strain_magnitude_x2\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13strain_magnitude_y2\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13strain_magnitude_z2\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12\x13\n\x06node_1\x18\x14 \x01(\x05H\x11\x88\x01\x01\x12\x13\n\x06node_2\x18\x15 \x01(\x05H\x12\x88\x01\x01\x12+\n\x1eis_density_defined_by_altitude\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12\x15\n\x08\x61ltitude\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12X\n\x14\x61xis_definition_type\x18\x1a \x01(\x0e\x32\x35.dlubal.api.rfem.loads.SolidSetLoadAxisDefinitionTypeH\x17\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\x1b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x18\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18\x1f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1c\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18 \x01(\x01H\x1d\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18! \x01(\x01H\x1e\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18\" \x01(\x01H\x1f\x88\x01\x01\x12X\n\x14\x61xis_definition_axis\x18# \x01(\x0e\x32\x35.dlubal.api.rfem.loads.SolidSetLoadAxisDefinitionAxisH \x88\x01\x01\x12o\n axis_definition_axis_orientation\x18$ \x01(\x0e\x32@.dlubal.api.rfem.loads.SolidSetLoadAxisDefinitionAxisOrientationH!\x88\x01\x01\x12\x1a\n\rgas_magnitude\x18% \x01(\x01H\"\x88\x01\x01\x12K\n\rgas_behaviour\x18& \x01(\x0e\x32/.dlubal.api.rfem.loads.SolidSetLoadGasBehaviourH#\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\' \x01(\x05H$\x88\x01\x01\x12\x14\n\x07\x63omment\x18( \x01(\tH%\x88\x01\x01\x12\x19\n\x0cis_generated\x18) \x01(\x08H&\x88\x01\x01\x12#\n\x16generating_object_info\x18* \x01(\tH\'\x88\x01\x01\x12!\n\x14id_for_export_import\x18+ \x01(\tH(\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18, \x01(\tH)\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x14\n\x12_uniform_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x1d\n\x1b_strain_uniform_magnitude_xB\x1d\n\x1b_strain_uniform_magnitude_yB\x1d\n\x1b_strain_uniform_magnitude_zB\x16\n\x14_strain_magnitude_x1B\x16\n\x14_strain_magnitude_y1B\x16\n\x14_strain_magnitude_z1B\x16\n\x14_strain_magnitude_x2B\x16\n\x14_strain_magnitude_y2B\x16\n\x14_strain_magnitude_z2B\t\n\x07_node_1B\t\n\x07_node_2B!\n\x1f_is_density_defined_by_altitudeB\x0b\n\t_altitudeB\x17\n\x15_angular_accelerationB\x13\n\x11_angular_velocityB\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\x10\n\x0e_gas_magnitudeB\x10\n\x0e_gas_behaviourB\x14\n\x12_coordinate_systemB\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*\xa4\x02\n\x14SolidSetLoadLoadType\x12$\n SOLID_SET_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12%\n!SOLID_SET_LOAD_LOAD_TYPE_BUOYANCY\x10\x04\x12\"\n\x1eSOLID_SET_LOAD_LOAD_TYPE_FORCE\x10\x01\x12 \n\x1cSOLID_SET_LOAD_LOAD_TYPE_GAS\x10\x06\x12*\n&SOLID_SET_LOAD_LOAD_TYPE_ROTARY_MOTION\x10\x05\x12#\n\x1fSOLID_SET_LOAD_LOAD_TYPE_STRAIN\x10\x03\x12(\n$SOLID_SET_LOAD_LOAD_TYPE_TEMPERATURE\x10\x02*\xe2\x01\n\x1cSolidSetLoadLoadDistribution\x12,\n(SOLID_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12\x30\n,SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X\x10\x01\x12\x30\n,SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y\x10\x02\x12\x30\n,SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z\x10\x03*\x8f\x02\n\x19SolidSetLoadLoadDirection\x12)\n%SOLID_SET_LOAD_LOAD_DIRECTION_UNKNOWN\x10\x00\x12\x41\n=SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x41\n=SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x41\n=SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r*\xb3\x01\n$SolidSetLoadLoadDirectionOrientation\x12\x44\n@SOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12\x45\nASOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01*\x8c\x01\n\x1eSolidSetLoadAxisDefinitionType\x12\x32\n.SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x36\n2SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\xa1\x01\n\x1eSolidSetLoadAxisDefinitionAxis\x12)\n%SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12)\n%SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12)\n%SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\xa7\x01\n)SolidSetLoadAxisDefinitionAxisOrientation\x12<\n8SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12<\n8SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\xf2\x01\n\x18SolidSetLoadGasBehaviour\x12\x37\n3SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE\x10\x00\x12\x37\n3SOLID_SET_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT\x10\x01\x12\x31\n-SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME\x10\x02\x12\x31\n-SOLID_SET_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT\x10\x03\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.solid_set_load_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SOLIDSETLOADLOADTYPE']._serialized_start=2983
|
|
36
|
+
_globals['_SOLIDSETLOADLOADTYPE']._serialized_end=3275
|
|
37
|
+
_globals['_SOLIDSETLOADLOADDISTRIBUTION']._serialized_start=3278
|
|
38
|
+
_globals['_SOLIDSETLOADLOADDISTRIBUTION']._serialized_end=3504
|
|
39
|
+
_globals['_SOLIDSETLOADLOADDIRECTION']._serialized_start=3507
|
|
40
|
+
_globals['_SOLIDSETLOADLOADDIRECTION']._serialized_end=3778
|
|
41
|
+
_globals['_SOLIDSETLOADLOADDIRECTIONORIENTATION']._serialized_start=3781
|
|
42
|
+
_globals['_SOLIDSETLOADLOADDIRECTIONORIENTATION']._serialized_end=3960
|
|
43
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONTYPE']._serialized_start=3963
|
|
44
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONTYPE']._serialized_end=4103
|
|
45
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONAXIS']._serialized_start=4106
|
|
46
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONAXIS']._serialized_end=4267
|
|
47
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONAXISORIENTATION']._serialized_start=4270
|
|
48
|
+
_globals['_SOLIDSETLOADAXISDEFINITIONAXISORIENTATION']._serialized_end=4437
|
|
49
|
+
_globals['_SOLIDSETLOADGASBEHAVIOUR']._serialized_start=4440
|
|
50
|
+
_globals['_SOLIDSETLOADGASBEHAVIOUR']._serialized_end=4682
|
|
51
|
+
_globals['_SOLIDSETLOAD']._serialized_start=102
|
|
52
|
+
_globals['_SOLIDSETLOAD']._serialized_end=2980
|
|
53
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,180 @@
|
|
|
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 SolidSetLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SOLID_SET_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[SolidSetLoadLoadType]
|
|
13
|
+
SOLID_SET_LOAD_LOAD_TYPE_BUOYANCY: _ClassVar[SolidSetLoadLoadType]
|
|
14
|
+
SOLID_SET_LOAD_LOAD_TYPE_FORCE: _ClassVar[SolidSetLoadLoadType]
|
|
15
|
+
SOLID_SET_LOAD_LOAD_TYPE_GAS: _ClassVar[SolidSetLoadLoadType]
|
|
16
|
+
SOLID_SET_LOAD_LOAD_TYPE_ROTARY_MOTION: _ClassVar[SolidSetLoadLoadType]
|
|
17
|
+
SOLID_SET_LOAD_LOAD_TYPE_STRAIN: _ClassVar[SolidSetLoadLoadType]
|
|
18
|
+
SOLID_SET_LOAD_LOAD_TYPE_TEMPERATURE: _ClassVar[SolidSetLoadLoadType]
|
|
19
|
+
|
|
20
|
+
class SolidSetLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
21
|
+
__slots__ = ()
|
|
22
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SolidSetLoadLoadDistribution]
|
|
23
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: _ClassVar[SolidSetLoadLoadDistribution]
|
|
24
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: _ClassVar[SolidSetLoadLoadDistribution]
|
|
25
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: _ClassVar[SolidSetLoadLoadDistribution]
|
|
26
|
+
|
|
27
|
+
class SolidSetLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
28
|
+
__slots__ = ()
|
|
29
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_UNKNOWN: _ClassVar[SolidSetLoadLoadDirection]
|
|
30
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[SolidSetLoadLoadDirection]
|
|
31
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[SolidSetLoadLoadDirection]
|
|
32
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[SolidSetLoadLoadDirection]
|
|
33
|
+
|
|
34
|
+
class SolidSetLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[SolidSetLoadLoadDirectionOrientation]
|
|
37
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[SolidSetLoadLoadDirectionOrientation]
|
|
38
|
+
|
|
39
|
+
class SolidSetLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
40
|
+
__slots__ = ()
|
|
41
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[SolidSetLoadAxisDefinitionType]
|
|
42
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[SolidSetLoadAxisDefinitionType]
|
|
43
|
+
|
|
44
|
+
class SolidSetLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
45
|
+
__slots__ = ()
|
|
46
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[SolidSetLoadAxisDefinitionAxis]
|
|
47
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[SolidSetLoadAxisDefinitionAxis]
|
|
48
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[SolidSetLoadAxisDefinitionAxis]
|
|
49
|
+
|
|
50
|
+
class SolidSetLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
51
|
+
__slots__ = ()
|
|
52
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[SolidSetLoadAxisDefinitionAxisOrientation]
|
|
53
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[SolidSetLoadAxisDefinitionAxisOrientation]
|
|
54
|
+
|
|
55
|
+
class SolidSetLoadGasBehaviour(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
56
|
+
__slots__ = ()
|
|
57
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE: _ClassVar[SolidSetLoadGasBehaviour]
|
|
58
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT: _ClassVar[SolidSetLoadGasBehaviour]
|
|
59
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME: _ClassVar[SolidSetLoadGasBehaviour]
|
|
60
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT: _ClassVar[SolidSetLoadGasBehaviour]
|
|
61
|
+
SOLID_SET_LOAD_LOAD_TYPE_UNKNOWN: SolidSetLoadLoadType
|
|
62
|
+
SOLID_SET_LOAD_LOAD_TYPE_BUOYANCY: SolidSetLoadLoadType
|
|
63
|
+
SOLID_SET_LOAD_LOAD_TYPE_FORCE: SolidSetLoadLoadType
|
|
64
|
+
SOLID_SET_LOAD_LOAD_TYPE_GAS: SolidSetLoadLoadType
|
|
65
|
+
SOLID_SET_LOAD_LOAD_TYPE_ROTARY_MOTION: SolidSetLoadLoadType
|
|
66
|
+
SOLID_SET_LOAD_LOAD_TYPE_STRAIN: SolidSetLoadLoadType
|
|
67
|
+
SOLID_SET_LOAD_LOAD_TYPE_TEMPERATURE: SolidSetLoadLoadType
|
|
68
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: SolidSetLoadLoadDistribution
|
|
69
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: SolidSetLoadLoadDistribution
|
|
70
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: SolidSetLoadLoadDistribution
|
|
71
|
+
SOLID_SET_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: SolidSetLoadLoadDistribution
|
|
72
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_UNKNOWN: SolidSetLoadLoadDirection
|
|
73
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: SolidSetLoadLoadDirection
|
|
74
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: SolidSetLoadLoadDirection
|
|
75
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: SolidSetLoadLoadDirection
|
|
76
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: SolidSetLoadLoadDirectionOrientation
|
|
77
|
+
SOLID_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: SolidSetLoadLoadDirectionOrientation
|
|
78
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: SolidSetLoadAxisDefinitionType
|
|
79
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: SolidSetLoadAxisDefinitionType
|
|
80
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_X: SolidSetLoadAxisDefinitionAxis
|
|
81
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Y: SolidSetLoadAxisDefinitionAxis
|
|
82
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_Z: SolidSetLoadAxisDefinitionAxis
|
|
83
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: SolidSetLoadAxisDefinitionAxisOrientation
|
|
84
|
+
SOLID_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: SolidSetLoadAxisDefinitionAxisOrientation
|
|
85
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE: SolidSetLoadGasBehaviour
|
|
86
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT: SolidSetLoadGasBehaviour
|
|
87
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME: SolidSetLoadGasBehaviour
|
|
88
|
+
SOLID_SET_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT: SolidSetLoadGasBehaviour
|
|
89
|
+
|
|
90
|
+
class SolidSetLoad(_message.Message):
|
|
91
|
+
__slots__ = ("no", "load_type", "solid_sets", "load_case", "load_distribution", "load_direction", "load_direction_orientation", "uniform_magnitude", "magnitude_1", "magnitude_2", "strain_uniform_magnitude_x", "strain_uniform_magnitude_y", "strain_uniform_magnitude_z", "strain_magnitude_x1", "strain_magnitude_y1", "strain_magnitude_z1", "strain_magnitude_x2", "strain_magnitude_y2", "strain_magnitude_z2", "node_1", "node_2", "is_density_defined_by_altitude", "altitude", "angular_acceleration", "angular_velocity", "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", "gas_magnitude", "gas_behaviour", "coordinate_system", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
92
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
SOLID_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
UNIFORM_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
STRAIN_UNIFORM_MAGNITUDE_X_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
STRAIN_UNIFORM_MAGNITUDE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
STRAIN_UNIFORM_MAGNITUDE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
STRAIN_MAGNITUDE_X1_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
STRAIN_MAGNITUDE_Y1_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
STRAIN_MAGNITUDE_Z1_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
STRAIN_MAGNITUDE_X2_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
STRAIN_MAGNITUDE_Y2_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
STRAIN_MAGNITUDE_Z2_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
IS_DENSITY_DEFINED_BY_ALTITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
ALTITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
GAS_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
GAS_BEHAVIOUR_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
no: int
|
|
137
|
+
load_type: SolidSetLoadLoadType
|
|
138
|
+
solid_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
139
|
+
load_case: int
|
|
140
|
+
load_distribution: SolidSetLoadLoadDistribution
|
|
141
|
+
load_direction: SolidSetLoadLoadDirection
|
|
142
|
+
load_direction_orientation: SolidSetLoadLoadDirectionOrientation
|
|
143
|
+
uniform_magnitude: float
|
|
144
|
+
magnitude_1: float
|
|
145
|
+
magnitude_2: float
|
|
146
|
+
strain_uniform_magnitude_x: float
|
|
147
|
+
strain_uniform_magnitude_y: float
|
|
148
|
+
strain_uniform_magnitude_z: float
|
|
149
|
+
strain_magnitude_x1: float
|
|
150
|
+
strain_magnitude_y1: float
|
|
151
|
+
strain_magnitude_z1: float
|
|
152
|
+
strain_magnitude_x2: float
|
|
153
|
+
strain_magnitude_y2: float
|
|
154
|
+
strain_magnitude_z2: float
|
|
155
|
+
node_1: int
|
|
156
|
+
node_2: int
|
|
157
|
+
is_density_defined_by_altitude: bool
|
|
158
|
+
altitude: float
|
|
159
|
+
angular_acceleration: float
|
|
160
|
+
angular_velocity: float
|
|
161
|
+
axis_definition_type: SolidSetLoadAxisDefinitionType
|
|
162
|
+
axis_definition_p1: _common_pb2.Vector3d
|
|
163
|
+
axis_definition_p1_x: float
|
|
164
|
+
axis_definition_p1_y: float
|
|
165
|
+
axis_definition_p1_z: float
|
|
166
|
+
axis_definition_p2: _common_pb2.Vector3d
|
|
167
|
+
axis_definition_p2_x: float
|
|
168
|
+
axis_definition_p2_y: float
|
|
169
|
+
axis_definition_p2_z: float
|
|
170
|
+
axis_definition_axis: SolidSetLoadAxisDefinitionAxis
|
|
171
|
+
axis_definition_axis_orientation: SolidSetLoadAxisDefinitionAxisOrientation
|
|
172
|
+
gas_magnitude: float
|
|
173
|
+
gas_behaviour: SolidSetLoadGasBehaviour
|
|
174
|
+
coordinate_system: int
|
|
175
|
+
comment: str
|
|
176
|
+
is_generated: bool
|
|
177
|
+
generating_object_info: str
|
|
178
|
+
id_for_export_import: str
|
|
179
|
+
metadata_for_export_import: str
|
|
180
|
+
def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[SolidSetLoadLoadType, str]] = ..., solid_sets: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., load_distribution: _Optional[_Union[SolidSetLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[SolidSetLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[SolidSetLoadLoadDirectionOrientation, str]] = ..., uniform_magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., strain_uniform_magnitude_x: _Optional[float] = ..., strain_uniform_magnitude_y: _Optional[float] = ..., strain_uniform_magnitude_z: _Optional[float] = ..., strain_magnitude_x1: _Optional[float] = ..., strain_magnitude_y1: _Optional[float] = ..., strain_magnitude_z1: _Optional[float] = ..., strain_magnitude_x2: _Optional[float] = ..., strain_magnitude_y2: _Optional[float] = ..., strain_magnitude_z2: _Optional[float] = ..., node_1: _Optional[int] = ..., node_2: _Optional[int] = ..., is_density_defined_by_altitude: bool = ..., altitude: _Optional[float] = ..., angular_acceleration: _Optional[float] = ..., angular_velocity: _Optional[float] = ..., axis_definition_type: _Optional[_Union[SolidSetLoadAxisDefinitionType, 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[SolidSetLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[SolidSetLoadAxisDefinitionAxisOrientation, str]] = ..., gas_magnitude: _Optional[float] = ..., gas_behaviour: _Optional[_Union[SolidSetLoadGasBehaviour, str]] = ..., coordinate_system: _Optional[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,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_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_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_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xe9*\n\x0bSurfaceLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x42\n\tload_type\x18\x02 \x01(\x0e\x32*.dlubal.api.rfem.loads.SurfaceLoadLoadTypeH\x00\x88\x01\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12R\n\x11load_distribution\x18\x05 \x01(\x0e\x32\x32.dlubal.api.rfem.loads.SurfaceLoadLoadDistributionH\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\tH\x03\x88\x01\x01\x12L\n\x0eload_direction\x18\x07 \x01(\x0e\x32/.dlubal.api.rfem.loads.SurfaceLoadLoadDirectionH\x04\x88\x01\x01\x12\x1e\n\x11uniform_magnitude\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x18\n\x0bmagnitude_3\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\"\n\x15uniform_magnitude_t_c\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_1\x18\r \x01(\x01H\n\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_2\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_3\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12&\n\x19uniform_magnitude_delta_t\x18\x10 \x01(\x01H\r\x88\x01\x01\x12 \n\x13magnitude_delta_t_1\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13magnitude_delta_t_2\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13magnitude_delta_t_3\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12%\n\x18magnitude_axial_strain_x\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12%\n\x18magnitude_axial_strain_y\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12&\n\x19magnitude_axial_strain_1x\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12&\n\x19magnitude_axial_strain_1y\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12&\n\x19magnitude_axial_strain_2x\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12&\n\x19magnitude_axial_strain_2y\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12&\n\x19magnitude_axial_strain_3x\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12&\n\x19magnitude_axial_strain_3y\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12\x13\n\x06node_1\x18\x1e \x01(\x05H\x1b\x88\x01\x01\x12\x13\n\x06node_2\x18\x1f \x01(\x05H\x1c\x88\x01\x01\x12\x13\n\x06node_3\x18 \x01(\x05H\x1d\x88\x01\x01\x12W\n\x14\x61xis_definition_type\x18! \x01(\x0e\x32\x34.dlubal.api.rfem.loads.SurfaceLoadAxisDefinitionTypeH\x1e\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\" \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1f\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\x12W\n\x14\x61xis_definition_axis\x18* \x01(\x0e\x32\x34.dlubal.api.rfem.loads.SurfaceLoadAxisDefinitionAxisH\'\x88\x01\x01\x12n\n axis_definition_axis_orientation\x18+ \x01(\x0e\x32?.dlubal.api.rfem.loads.SurfaceLoadAxisDefinitionAxisOrientationH(\x88\x01\x01\x12\x64\n\x17varying_load_parameters\x18, \x01(\x0b\x32>.dlubal.api.rfem.loads.ArrayOfSurfaceLoadVaryingLoadParametersH)\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\x37.dlubal.api.rfem.loads.SurfaceLoadFormFindingDefinitionH+\x88\x01\x01\x12\x1e\n\x11magnitude_force_u\x18/ \x01(\x01H,\x88\x01\x01\x12\x1e\n\x11magnitude_force_v\x18\x30 \x01(\x01H-\x88\x01\x01\x12\x1e\n\x11magnitude_force_r\x18\x31 \x01(\x01H.\x88\x01\x01\x12\x1e\n\x11magnitude_force_t\x18\x32 \x01(\x01H/\x88\x01\x01\x12\x1f\n\x12magnitude_stress_u\x18\x33 \x01(\x01H0\x88\x01\x01\x12\x1f\n\x12magnitude_stress_v\x18\x34 \x01(\x01H1\x88\x01\x01\x12\x1f\n\x12magnitude_stress_r\x18\x35 \x01(\x01H2\x88\x01\x01\x12\x1f\n\x12magnitude_stress_t\x18\x36 \x01(\x01H3\x88\x01\x01\x12\x1a\n\rmagnitude_sag\x18\x37 \x01(\x01H4\x88\x01\x01\x12$\n\x17magnitude_force_scale_x\x18\x38 \x01(\x01H5\x88\x01\x01\x12$\n\x17magnitude_force_scale_y\x18\x39 \x01(\x01H6\x88\x01\x01\x12l\n\x1f\x66orm_finding_calculation_method\x18: \x01(\x0e\x32>.dlubal.api.rfem.loads.SurfaceLoadFormFindingCalculationMethodH7\x88\x01\x01\x12p\n\"form_finding_sag_related_to_object\x18; \x01(\x0e\x32?.dlubal.api.rfem.loads.SurfaceLoadFormFindingSagRelatedToObjectH8\x88\x01\x01\x12\x30\n#form_finding_sag_related_to_surface\x18< \x01(\x05H9\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18= \x01(\x08H:\x88\x01\x01\x12\"\n\x15magnitude_mass_global\x18> \x01(\x01H;\x88\x01\x01\x12\x1d\n\x10magnitude_mass_y\x18? \x01(\x01H<\x88\x01\x01\x12\x1d\n\x10magnitude_mass_z\x18@ \x01(\x01H=\x88\x01\x01\x12\x1d\n\x10magnitude_mass_x\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_load_distributionB\x14\n\x12_coordinate_systemB\x11\n\x0f_load_directionB\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\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\x1d\n\x1b_individual_mass_componentsB\x18\n\x16_magnitude_mass_globalB\x13\n\x11_magnitude_mass_yB\x13\n\x11_magnitude_mass_zB\x13\n\x11_magnitude_mass_xB$\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\'ArrayOfSurfaceLoadVaryingLoadParameters*\xea\x02\n\x13SurfaceLoadLoadType\x12\"\n\x1eSURFACE_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12\'\n#SURFACE_LOAD_LOAD_TYPE_AXIAL_STRAIN\x10\x03\x12 \n\x1cSURFACE_LOAD_LOAD_TYPE_FORCE\x10\x01\x12\'\n#SURFACE_LOAD_LOAD_TYPE_FORM_FINDING\x10\x06\x12\x1f\n\x1bSURFACE_LOAD_LOAD_TYPE_MASS\x10\x07\x12\"\n\x1eSURFACE_LOAD_LOAD_TYPE_PONDING\x10\x08\x12$\n SURFACE_LOAD_LOAD_TYPE_PRECAMBER\x10\x04\x12(\n$SURFACE_LOAD_LOAD_TYPE_ROTARY_MOTION\x10\x05\x12&\n\"SURFACE_LOAD_LOAD_TYPE_TEMPERATURE\x10\x02*\xe0\x02\n\x1bSurfaceLoadLoadDistribution\x12*\n&SURFACE_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12)\n%SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR\x10\x01\x12.\n*SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X\x10\x02\x12.\n*SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y\x10\x03\x12.\n*SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z\x10\x04\x12)\n%SURFACE_LOAD_LOAD_DISTRIBUTION_RADIAL\x10\x05\x12/\n+SURFACE_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z\x10\x08*\xaa\x04\n\x18SurfaceLoadLoadDirection\x12\'\n#SURFACE_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x44\n@SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12?\n;SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x44\n@SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12?\n;SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x44\n@SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12?\n;SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12\'\n#SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12\'\n#SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\x87\x01\n\x1dSurfaceLoadAxisDefinitionType\x12\x30\n,SURFACE_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x34\n0SURFACE_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\x9a\x01\n\x1dSurfaceLoadAxisDefinitionAxis\x12\'\n#SURFACE_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12\'\n#SURFACE_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12\'\n#SURFACE_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\xa2\x01\n(SurfaceLoadAxisDefinitionAxisOrientation\x12:\n6SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12:\n6SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\xb1\x01\n SurfaceLoadFormFindingDefinition\x12.\n*SURFACE_LOAD_FORM_FINDING_DEFINITION_FORCE\x10\x00\x12,\n(SURFACE_LOAD_FORM_FINDING_DEFINITION_SAG\x10\x02\x12/\n+SURFACE_LOAD_FORM_FINDING_DEFINITION_STRESS\x10\x01*\xa1\x01\n\'SurfaceLoadFormFindingCalculationMethod\x12\x39\n5SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD\x10\x00\x12;\n7SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION\x10\x01*\xd9\x01\n(SurfaceLoadFormFindingSagRelatedToObject\x12\x38\n4SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE\x10\x00\x12\x36\n2SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS\x10\x01\x12;\n7SURFACE_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_load_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SURFACELOADLOADTYPE']._serialized_start=5627
|
|
36
|
+
_globals['_SURFACELOADLOADTYPE']._serialized_end=5989
|
|
37
|
+
_globals['_SURFACELOADLOADDISTRIBUTION']._serialized_start=5992
|
|
38
|
+
_globals['_SURFACELOADLOADDISTRIBUTION']._serialized_end=6344
|
|
39
|
+
_globals['_SURFACELOADLOADDIRECTION']._serialized_start=6347
|
|
40
|
+
_globals['_SURFACELOADLOADDIRECTION']._serialized_end=6901
|
|
41
|
+
_globals['_SURFACELOADAXISDEFINITIONTYPE']._serialized_start=6904
|
|
42
|
+
_globals['_SURFACELOADAXISDEFINITIONTYPE']._serialized_end=7039
|
|
43
|
+
_globals['_SURFACELOADAXISDEFINITIONAXIS']._serialized_start=7042
|
|
44
|
+
_globals['_SURFACELOADAXISDEFINITIONAXIS']._serialized_end=7196
|
|
45
|
+
_globals['_SURFACELOADAXISDEFINITIONAXISORIENTATION']._serialized_start=7199
|
|
46
|
+
_globals['_SURFACELOADAXISDEFINITIONAXISORIENTATION']._serialized_end=7361
|
|
47
|
+
_globals['_SURFACELOADFORMFINDINGDEFINITION']._serialized_start=7364
|
|
48
|
+
_globals['_SURFACELOADFORMFINDINGDEFINITION']._serialized_end=7541
|
|
49
|
+
_globals['_SURFACELOADFORMFINDINGCALCULATIONMETHOD']._serialized_start=7544
|
|
50
|
+
_globals['_SURFACELOADFORMFINDINGCALCULATIONMETHOD']._serialized_end=7705
|
|
51
|
+
_globals['_SURFACELOADFORMFINDINGSAGRELATEDTOOBJECT']._serialized_start=7708
|
|
52
|
+
_globals['_SURFACELOADFORMFINDINGSAGRELATEDTOOBJECT']._serialized_end=7925
|
|
53
|
+
_globals['_SURFACELOAD']._serialized_start=100
|
|
54
|
+
_globals['_SURFACELOAD']._serialized_end=5581
|
|
55
|
+
_globals['_ARRAYOFSURFACELOADVARYINGLOADPARAMETERS']._serialized_start=5583
|
|
56
|
+
_globals['_ARRAYOFSURFACELOADVARYINGLOADPARAMETERS']._serialized_end=5624
|
|
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 SurfaceLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SURFACE_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[SurfaceLoadLoadType]
|
|
13
|
+
SURFACE_LOAD_LOAD_TYPE_AXIAL_STRAIN: _ClassVar[SurfaceLoadLoadType]
|
|
14
|
+
SURFACE_LOAD_LOAD_TYPE_FORCE: _ClassVar[SurfaceLoadLoadType]
|
|
15
|
+
SURFACE_LOAD_LOAD_TYPE_FORM_FINDING: _ClassVar[SurfaceLoadLoadType]
|
|
16
|
+
SURFACE_LOAD_LOAD_TYPE_MASS: _ClassVar[SurfaceLoadLoadType]
|
|
17
|
+
SURFACE_LOAD_LOAD_TYPE_PONDING: _ClassVar[SurfaceLoadLoadType]
|
|
18
|
+
SURFACE_LOAD_LOAD_TYPE_PRECAMBER: _ClassVar[SurfaceLoadLoadType]
|
|
19
|
+
SURFACE_LOAD_LOAD_TYPE_ROTARY_MOTION: _ClassVar[SurfaceLoadLoadType]
|
|
20
|
+
SURFACE_LOAD_LOAD_TYPE_TEMPERATURE: _ClassVar[SurfaceLoadLoadType]
|
|
21
|
+
|
|
22
|
+
class SurfaceLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
23
|
+
__slots__ = ()
|
|
24
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SurfaceLoadLoadDistribution]
|
|
25
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR: _ClassVar[SurfaceLoadLoadDistribution]
|
|
26
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: _ClassVar[SurfaceLoadLoadDistribution]
|
|
27
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: _ClassVar[SurfaceLoadLoadDistribution]
|
|
28
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: _ClassVar[SurfaceLoadLoadDistribution]
|
|
29
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_RADIAL: _ClassVar[SurfaceLoadLoadDistribution]
|
|
30
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: _ClassVar[SurfaceLoadLoadDistribution]
|
|
31
|
+
|
|
32
|
+
class SurfaceLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
33
|
+
__slots__ = ()
|
|
34
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[SurfaceLoadLoadDirection]
|
|
35
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[SurfaceLoadLoadDirection]
|
|
36
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[SurfaceLoadLoadDirection]
|
|
37
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[SurfaceLoadLoadDirection]
|
|
38
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[SurfaceLoadLoadDirection]
|
|
39
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[SurfaceLoadLoadDirection]
|
|
40
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[SurfaceLoadLoadDirection]
|
|
41
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[SurfaceLoadLoadDirection]
|
|
42
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[SurfaceLoadLoadDirection]
|
|
43
|
+
|
|
44
|
+
class SurfaceLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
45
|
+
__slots__ = ()
|
|
46
|
+
SURFACE_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[SurfaceLoadAxisDefinitionType]
|
|
47
|
+
SURFACE_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[SurfaceLoadAxisDefinitionType]
|
|
48
|
+
|
|
49
|
+
class SurfaceLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
50
|
+
__slots__ = ()
|
|
51
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[SurfaceLoadAxisDefinitionAxis]
|
|
52
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[SurfaceLoadAxisDefinitionAxis]
|
|
53
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[SurfaceLoadAxisDefinitionAxis]
|
|
54
|
+
|
|
55
|
+
class SurfaceLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
56
|
+
__slots__ = ()
|
|
57
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[SurfaceLoadAxisDefinitionAxisOrientation]
|
|
58
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[SurfaceLoadAxisDefinitionAxisOrientation]
|
|
59
|
+
|
|
60
|
+
class SurfaceLoadFormFindingDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
61
|
+
__slots__ = ()
|
|
62
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_FORCE: _ClassVar[SurfaceLoadFormFindingDefinition]
|
|
63
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_SAG: _ClassVar[SurfaceLoadFormFindingDefinition]
|
|
64
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_STRESS: _ClassVar[SurfaceLoadFormFindingDefinition]
|
|
65
|
+
|
|
66
|
+
class SurfaceLoadFormFindingCalculationMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
67
|
+
__slots__ = ()
|
|
68
|
+
SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD: _ClassVar[SurfaceLoadFormFindingCalculationMethod]
|
|
69
|
+
SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION: _ClassVar[SurfaceLoadFormFindingCalculationMethod]
|
|
70
|
+
|
|
71
|
+
class SurfaceLoadFormFindingSagRelatedToObject(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
72
|
+
__slots__ = ()
|
|
73
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE: _ClassVar[SurfaceLoadFormFindingSagRelatedToObject]
|
|
74
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS: _ClassVar[SurfaceLoadFormFindingSagRelatedToObject]
|
|
75
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_SURFACE: _ClassVar[SurfaceLoadFormFindingSagRelatedToObject]
|
|
76
|
+
SURFACE_LOAD_LOAD_TYPE_UNKNOWN: SurfaceLoadLoadType
|
|
77
|
+
SURFACE_LOAD_LOAD_TYPE_AXIAL_STRAIN: SurfaceLoadLoadType
|
|
78
|
+
SURFACE_LOAD_LOAD_TYPE_FORCE: SurfaceLoadLoadType
|
|
79
|
+
SURFACE_LOAD_LOAD_TYPE_FORM_FINDING: SurfaceLoadLoadType
|
|
80
|
+
SURFACE_LOAD_LOAD_TYPE_MASS: SurfaceLoadLoadType
|
|
81
|
+
SURFACE_LOAD_LOAD_TYPE_PONDING: SurfaceLoadLoadType
|
|
82
|
+
SURFACE_LOAD_LOAD_TYPE_PRECAMBER: SurfaceLoadLoadType
|
|
83
|
+
SURFACE_LOAD_LOAD_TYPE_ROTARY_MOTION: SurfaceLoadLoadType
|
|
84
|
+
SURFACE_LOAD_LOAD_TYPE_TEMPERATURE: SurfaceLoadLoadType
|
|
85
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_UNIFORM: SurfaceLoadLoadDistribution
|
|
86
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR: SurfaceLoadLoadDistribution
|
|
87
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: SurfaceLoadLoadDistribution
|
|
88
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: SurfaceLoadLoadDistribution
|
|
89
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: SurfaceLoadLoadDistribution
|
|
90
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_RADIAL: SurfaceLoadLoadDistribution
|
|
91
|
+
SURFACE_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: SurfaceLoadLoadDistribution
|
|
92
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_X: SurfaceLoadLoadDirection
|
|
93
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: SurfaceLoadLoadDirection
|
|
94
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: SurfaceLoadLoadDirection
|
|
95
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: SurfaceLoadLoadDirection
|
|
96
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: SurfaceLoadLoadDirection
|
|
97
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: SurfaceLoadLoadDirection
|
|
98
|
+
SURFACE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: SurfaceLoadLoadDirection
|
|
99
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Y: SurfaceLoadLoadDirection
|
|
100
|
+
SURFACE_LOAD_LOAD_DIRECTION_LOCAL_Z: SurfaceLoadLoadDirection
|
|
101
|
+
SURFACE_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: SurfaceLoadAxisDefinitionType
|
|
102
|
+
SURFACE_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: SurfaceLoadAxisDefinitionType
|
|
103
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_X: SurfaceLoadAxisDefinitionAxis
|
|
104
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_Y: SurfaceLoadAxisDefinitionAxis
|
|
105
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_Z: SurfaceLoadAxisDefinitionAxis
|
|
106
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: SurfaceLoadAxisDefinitionAxisOrientation
|
|
107
|
+
SURFACE_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: SurfaceLoadAxisDefinitionAxisOrientation
|
|
108
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_FORCE: SurfaceLoadFormFindingDefinition
|
|
109
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_SAG: SurfaceLoadFormFindingDefinition
|
|
110
|
+
SURFACE_LOAD_FORM_FINDING_DEFINITION_STRESS: SurfaceLoadFormFindingDefinition
|
|
111
|
+
SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_STANDARD: SurfaceLoadFormFindingCalculationMethod
|
|
112
|
+
SURFACE_LOAD_FORM_FINDING_CALCULATION_METHOD_PROJECTION: SurfaceLoadFormFindingCalculationMethod
|
|
113
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_BASE: SurfaceLoadFormFindingSagRelatedToObject
|
|
114
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_CS: SurfaceLoadFormFindingSagRelatedToObject
|
|
115
|
+
SURFACE_LOAD_FORM_FINDING_SAG_RELATED_TO_OBJECT_SURFACE: SurfaceLoadFormFindingSagRelatedToObject
|
|
116
|
+
|
|
117
|
+
class SurfaceLoad(_message.Message):
|
|
118
|
+
__slots__ = ("no", "load_type", "surfaces", "load_case", "load_distribution", "coordinate_system", "load_direction", "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_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", "individual_mass_components", "magnitude_mass_global", "magnitude_mass_y", "magnitude_mass_z", "magnitude_mass_x", "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
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
UNIFORM_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
UNIFORM_MAGNITUDE_T_C_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
MAGNITUDE_T_C_1_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
MAGNITUDE_T_C_2_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
MAGNITUDE_T_C_3_FIELD_NUMBER: _ClassVar[int]
|
|
134
|
+
UNIFORM_MAGNITUDE_DELTA_T_FIELD_NUMBER: _ClassVar[int]
|
|
135
|
+
MAGNITUDE_DELTA_T_1_FIELD_NUMBER: _ClassVar[int]
|
|
136
|
+
MAGNITUDE_DELTA_T_2_FIELD_NUMBER: _ClassVar[int]
|
|
137
|
+
MAGNITUDE_DELTA_T_3_FIELD_NUMBER: _ClassVar[int]
|
|
138
|
+
MAGNITUDE_AXIAL_STRAIN_X_FIELD_NUMBER: _ClassVar[int]
|
|
139
|
+
MAGNITUDE_AXIAL_STRAIN_Y_FIELD_NUMBER: _ClassVar[int]
|
|
140
|
+
MAGNITUDE_AXIAL_STRAIN_1X_FIELD_NUMBER: _ClassVar[int]
|
|
141
|
+
MAGNITUDE_AXIAL_STRAIN_1Y_FIELD_NUMBER: _ClassVar[int]
|
|
142
|
+
MAGNITUDE_AXIAL_STRAIN_2X_FIELD_NUMBER: _ClassVar[int]
|
|
143
|
+
MAGNITUDE_AXIAL_STRAIN_2Y_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
MAGNITUDE_AXIAL_STRAIN_3X_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
MAGNITUDE_AXIAL_STRAIN_3Y_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
NODE_3_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
FORM_FINDING_DEFINITION_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
MAGNITUDE_FORCE_U_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
MAGNITUDE_FORCE_V_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
MAGNITUDE_FORCE_R_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
MAGNITUDE_FORCE_T_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
MAGNITUDE_STRESS_U_FIELD_NUMBER: _ClassVar[int]
|
|
170
|
+
MAGNITUDE_STRESS_V_FIELD_NUMBER: _ClassVar[int]
|
|
171
|
+
MAGNITUDE_STRESS_R_FIELD_NUMBER: _ClassVar[int]
|
|
172
|
+
MAGNITUDE_STRESS_T_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
MAGNITUDE_SAG_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
MAGNITUDE_FORCE_SCALE_X_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
MAGNITUDE_FORCE_SCALE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
FORM_FINDING_CALCULATION_METHOD_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
+
FORM_FINDING_SAG_RELATED_TO_OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
178
|
+
FORM_FINDING_SAG_RELATED_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
MAGNITUDE_MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
MAGNITUDE_MASS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
MAGNITUDE_MASS_Z_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
MAGNITUDE_MASS_X_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: SurfaceLoadLoadType
|
|
202
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
203
|
+
load_case: int
|
|
204
|
+
load_distribution: SurfaceLoadLoadDistribution
|
|
205
|
+
coordinate_system: str
|
|
206
|
+
load_direction: SurfaceLoadLoadDirection
|
|
207
|
+
uniform_magnitude: float
|
|
208
|
+
magnitude_1: float
|
|
209
|
+
magnitude_2: float
|
|
210
|
+
magnitude_3: float
|
|
211
|
+
uniform_magnitude_t_c: float
|
|
212
|
+
magnitude_t_c_1: float
|
|
213
|
+
magnitude_t_c_2: float
|
|
214
|
+
magnitude_t_c_3: float
|
|
215
|
+
uniform_magnitude_delta_t: float
|
|
216
|
+
magnitude_delta_t_1: float
|
|
217
|
+
magnitude_delta_t_2: float
|
|
218
|
+
magnitude_delta_t_3: float
|
|
219
|
+
magnitude_axial_strain_x: float
|
|
220
|
+
magnitude_axial_strain_y: float
|
|
221
|
+
magnitude_axial_strain_1x: float
|
|
222
|
+
magnitude_axial_strain_1y: float
|
|
223
|
+
magnitude_axial_strain_2x: float
|
|
224
|
+
magnitude_axial_strain_2y: float
|
|
225
|
+
magnitude_axial_strain_3x: float
|
|
226
|
+
magnitude_axial_strain_3y: float
|
|
227
|
+
angular_velocity: float
|
|
228
|
+
angular_acceleration: float
|
|
229
|
+
node_1: int
|
|
230
|
+
node_2: int
|
|
231
|
+
node_3: int
|
|
232
|
+
axis_definition_type: SurfaceLoadAxisDefinitionType
|
|
233
|
+
axis_definition_p1: _common_pb2.Vector3d
|
|
234
|
+
axis_definition_p1_x: float
|
|
235
|
+
axis_definition_p1_y: float
|
|
236
|
+
axis_definition_p1_z: float
|
|
237
|
+
axis_definition_p2: _common_pb2.Vector3d
|
|
238
|
+
axis_definition_p2_x: float
|
|
239
|
+
axis_definition_p2_y: float
|
|
240
|
+
axis_definition_p2_z: float
|
|
241
|
+
axis_definition_axis: SurfaceLoadAxisDefinitionAxis
|
|
242
|
+
axis_definition_axis_orientation: SurfaceLoadAxisDefinitionAxisOrientation
|
|
243
|
+
varying_load_parameters: ArrayOfSurfaceLoadVaryingLoadParameters
|
|
244
|
+
varying_load_parameters_sorted: bool
|
|
245
|
+
form_finding_definition: SurfaceLoadFormFindingDefinition
|
|
246
|
+
magnitude_force_u: float
|
|
247
|
+
magnitude_force_v: float
|
|
248
|
+
magnitude_force_r: float
|
|
249
|
+
magnitude_force_t: float
|
|
250
|
+
magnitude_stress_u: float
|
|
251
|
+
magnitude_stress_v: float
|
|
252
|
+
magnitude_stress_r: float
|
|
253
|
+
magnitude_stress_t: float
|
|
254
|
+
magnitude_sag: float
|
|
255
|
+
magnitude_force_scale_x: float
|
|
256
|
+
magnitude_force_scale_y: float
|
|
257
|
+
form_finding_calculation_method: SurfaceLoadFormFindingCalculationMethod
|
|
258
|
+
form_finding_sag_related_to_object: SurfaceLoadFormFindingSagRelatedToObject
|
|
259
|
+
form_finding_sag_related_to_surface: int
|
|
260
|
+
individual_mass_components: bool
|
|
261
|
+
magnitude_mass_global: float
|
|
262
|
+
magnitude_mass_y: float
|
|
263
|
+
magnitude_mass_z: float
|
|
264
|
+
magnitude_mass_x: 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[SurfaceLoadLoadType, str]] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., load_distribution: _Optional[_Union[SurfaceLoadLoadDistribution, str]] = ..., coordinate_system: _Optional[str] = ..., load_direction: _Optional[_Union[SurfaceLoadLoadDirection, str]] = ..., 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[SurfaceLoadAxisDefinitionType, 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[SurfaceLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[SurfaceLoadAxisDefinitionAxisOrientation, str]] = ..., varying_load_parameters: _Optional[_Union[ArrayOfSurfaceLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., form_finding_definition: _Optional[_Union[SurfaceLoadFormFindingDefinition, str]] = ..., magnitude_force_u: _Optional[float] = ..., magnitude_force_v: _Optional[float] = ..., magnitude_force_r: _Optional[float] = ..., magnitude_force_t: _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[SurfaceLoadFormFindingCalculationMethod, str]] = ..., form_finding_sag_related_to_object: _Optional[_Union[SurfaceLoadFormFindingSagRelatedToObject, str]] = ..., form_finding_sag_related_to_surface: _Optional[int] = ..., individual_mass_components: bool = ..., magnitude_mass_global: _Optional[float] = ..., magnitude_mass_y: _Optional[float] = ..., magnitude_mass_z: _Optional[float] = ..., magnitude_mass_x: _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 ArrayOfSurfaceLoadVaryingLoadParameters(_message.Message):
|
|
284
|
+
__slots__ = ()
|
|
285
|
+
def __init__(self) -> None: ...
|