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,37 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/loads/imposed_line_deformation.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/imposed_line_deformation.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'\n4dlubal/api/rfem/loads/imposed_line_deformation.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xcd\t\n\x16ImposedLineDeformation\x12\n\n\x02no\x18\x01 \x01(\x05\x12\r\n\x05lines\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12I\n\x1fimposed_displacement_line_start\x18\x04 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x01\x88\x01\x01\x12.\n!imposed_displacement_line_start_x\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12.\n!imposed_displacement_line_start_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12.\n!imposed_displacement_line_start_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12G\n\x1dimposed_displacement_line_end\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12,\n\x1fimposed_displacement_line_end_x\x18\t \x01(\x01H\x06\x88\x01\x01\x12,\n\x1fimposed_displacement_line_end_y\x18\n \x01(\x01H\x07\x88\x01\x01\x12,\n\x1fimposed_displacement_line_end_z\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12(\n\x1bimposed_rotation_line_start\x18\x0c \x01(\x01H\t\x88\x01\x01\x12&\n\x19imposed_rotation_line_end\x18\r \x01(\x01H\n\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12#\n\x16generating_object_info\x18\x10 \x01(\tH\r\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x0f\x88\x01\x01\x42\x0c\n\n_load_caseB\"\n _imposed_displacement_line_startB$\n\"_imposed_displacement_line_start_xB$\n\"_imposed_displacement_line_start_yB$\n\"_imposed_displacement_line_start_zB \n\x1e_imposed_displacement_line_endB\"\n _imposed_displacement_line_end_xB\"\n _imposed_displacement_line_end_yB\"\n _imposed_displacement_line_end_zB\x1e\n\x1c_imposed_rotation_line_startB\x1c\n\x1a_imposed_rotation_line_endB\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_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.imposed_line_deformation_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_IMPOSEDLINEDEFORMATION']._serialized_start=112
|
|
36
|
+
_globals['_IMPOSEDLINEDEFORMATION']._serialized_end=1341
|
|
37
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class ImposedLineDeformation(_message.Message):
|
|
10
|
+
__slots__ = ("no", "lines", "load_case", "imposed_displacement_line_start", "imposed_displacement_line_start_x", "imposed_displacement_line_start_y", "imposed_displacement_line_start_z", "imposed_displacement_line_end", "imposed_displacement_line_end_x", "imposed_displacement_line_end_y", "imposed_displacement_line_end_z", "imposed_rotation_line_start", "imposed_rotation_line_end", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
11
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
IMPOSED_DISPLACEMENT_LINE_START_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
IMPOSED_DISPLACEMENT_LINE_START_X_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
IMPOSED_DISPLACEMENT_LINE_START_Y_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
IMPOSED_DISPLACEMENT_LINE_START_Z_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
IMPOSED_DISPLACEMENT_LINE_END_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
IMPOSED_DISPLACEMENT_LINE_END_X_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
IMPOSED_DISPLACEMENT_LINE_END_Y_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
IMPOSED_DISPLACEMENT_LINE_END_Z_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
IMPOSED_ROTATION_LINE_START_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
IMPOSED_ROTATION_LINE_END_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
no: int
|
|
30
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
31
|
+
load_case: int
|
|
32
|
+
imposed_displacement_line_start: _common_pb2.Vector3d
|
|
33
|
+
imposed_displacement_line_start_x: float
|
|
34
|
+
imposed_displacement_line_start_y: float
|
|
35
|
+
imposed_displacement_line_start_z: float
|
|
36
|
+
imposed_displacement_line_end: _common_pb2.Vector3d
|
|
37
|
+
imposed_displacement_line_end_x: float
|
|
38
|
+
imposed_displacement_line_end_y: float
|
|
39
|
+
imposed_displacement_line_end_z: float
|
|
40
|
+
imposed_rotation_line_start: float
|
|
41
|
+
imposed_rotation_line_end: float
|
|
42
|
+
comment: str
|
|
43
|
+
is_generated: bool
|
|
44
|
+
generating_object_info: str
|
|
45
|
+
id_for_export_import: str
|
|
46
|
+
metadata_for_export_import: str
|
|
47
|
+
def __init__(self, no: _Optional[int] = ..., lines: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., imposed_displacement_line_start: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., imposed_displacement_line_start_x: _Optional[float] = ..., imposed_displacement_line_start_y: _Optional[float] = ..., imposed_displacement_line_start_z: _Optional[float] = ..., imposed_displacement_line_end: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., imposed_displacement_line_end_x: _Optional[float] = ..., imposed_displacement_line_end_y: _Optional[float] = ..., imposed_displacement_line_end_z: _Optional[float] = ..., imposed_rotation_line_start: _Optional[float] = ..., imposed_rotation_line_end: _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,37 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/loads/imposed_nodal_deformation.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/imposed_nodal_deformation.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'\n5dlubal/api/rfem/loads/imposed_nodal_deformation.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xfe\x06\n\x17ImposedNodalDeformation\x12\n\n\x02no\x18\x01 \x01(\x05\x12\r\n\x05nodes\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12>\n\x14imposed_displacement\x18\x04 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x01\x88\x01\x01\x12#\n\x16imposed_displacement_x\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12#\n\x16imposed_displacement_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12#\n\x16imposed_displacement_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12:\n\x10imposed_rotation\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12\x1f\n\x12imposed_rotation_x\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x1f\n\x12imposed_rotation_y\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1f\n\x12imposed_rotation_z\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\t\x88\x01\x01\x12\x19\n\x0cis_generated\x18\r \x01(\x08H\n\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x10 \x01(\tH\r\x88\x01\x01\x42\x0c\n\n_load_caseB\x17\n\x15_imposed_displacementB\x19\n\x17_imposed_displacement_xB\x19\n\x17_imposed_displacement_yB\x19\n\x17_imposed_displacement_zB\x13\n\x11_imposed_rotationB\x15\n\x13_imposed_rotation_xB\x15\n\x13_imposed_rotation_yB\x15\n\x13_imposed_rotation_zB\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_importb\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.imposed_nodal_deformation_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_IMPOSEDNODALDEFORMATION']._serialized_start=113
|
|
36
|
+
_globals['_IMPOSEDNODALDEFORMATION']._serialized_end=1007
|
|
37
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class ImposedNodalDeformation(_message.Message):
|
|
10
|
+
__slots__ = ("no", "nodes", "load_case", "imposed_displacement", "imposed_displacement_x", "imposed_displacement_y", "imposed_displacement_z", "imposed_rotation", "imposed_rotation_x", "imposed_rotation_y", "imposed_rotation_z", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
11
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NODES_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
IMPOSED_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
IMPOSED_DISPLACEMENT_X_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
IMPOSED_DISPLACEMENT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
IMPOSED_DISPLACEMENT_Z_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
IMPOSED_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
IMPOSED_ROTATION_X_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
IMPOSED_ROTATION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
IMPOSED_ROTATION_Z_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
no: int
|
|
28
|
+
nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
29
|
+
load_case: int
|
|
30
|
+
imposed_displacement: _common_pb2.Vector3d
|
|
31
|
+
imposed_displacement_x: float
|
|
32
|
+
imposed_displacement_y: float
|
|
33
|
+
imposed_displacement_z: float
|
|
34
|
+
imposed_rotation: _common_pb2.Vector3d
|
|
35
|
+
imposed_rotation_x: float
|
|
36
|
+
imposed_rotation_y: float
|
|
37
|
+
imposed_rotation_z: float
|
|
38
|
+
comment: str
|
|
39
|
+
is_generated: bool
|
|
40
|
+
generating_object_info: str
|
|
41
|
+
id_for_export_import: str
|
|
42
|
+
metadata_for_export_import: str
|
|
43
|
+
def __init__(self, no: _Optional[int] = ..., nodes: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., imposed_displacement: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., imposed_displacement_x: _Optional[float] = ..., imposed_displacement_y: _Optional[float] = ..., imposed_displacement_z: _Optional[float] = ..., imposed_rotation: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., imposed_rotation_x: _Optional[float] = ..., imposed_rotation_y: _Optional[float] = ..., imposed_rotation_z: _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,46 @@
|
|
|
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/line_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/line_load.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/loads/line_load.proto\x12\x15\x64lubal.api.rfem.loads\"\xad\x12\n\x08LineLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12?\n\tload_type\x18\x02 \x01(\x0e\x32\'.dlubal.api.rfem.loads.LineLoadLoadTypeH\x00\x88\x01\x01\x12\r\n\x05lines\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\x12O\n\x11load_distribution\x18\x06 \x01(\x0e\x32/.dlubal.api.rfem.loads.LineLoadLoadDistributionH\x03\x88\x01\x01\x12I\n\x0eload_direction\x18\x07 \x01(\x0e\x32,.dlubal.api.rfem.loads.LineLoadLoadDirectionH\x04\x88\x01\x01\x12`\n\x1aload_direction_orientation\x18\x08 \x01(\x0e\x32\x37.dlubal.api.rfem.loads.LineLoadLoadDirectionOrientationH\x05\x88\x01\x01\x12\x16\n\tmagnitude\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\x1aindividual_mass_components\x18\r \x01(\x08H\n\x88\x01\x01\x12\x18\n\x0bmass_global\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x13\n\x06mass_x\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x13\n\x06mass_y\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06mass_z\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12.\n!distance_c_is_defined_as_relative\x18\x18 \x01(\x08H\x15\x88\x01\x01\x12 \n\x13\x64istance_c_absolute\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12 \n\x13\x64istance_c_relative\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x14\n\x07\x63ount_n\x18\x1b \x01(\x05H\x18\x88\x01\x01\x12<\n/varying_load_parameters_are_defined_as_relative\x18\x1c \x01(\x08H\x19\x88\x01\x01\x12\x61\n\x17varying_load_parameters\x18\x1d \x01(\x0b\x32;.dlubal.api.rfem.loads.ArrayOfLineLoadVaryingLoadParametersH\x1a\x88\x01\x01\x12+\n\x1evarying_load_parameters_sorted\x18\x1e \x01(\x08H\x1b\x88\x01\x01\x12\'\n\x1areference_to_list_of_lines\x18\x1f \x01(\x08H\x1c\x88\x01\x01\x12#\n\x16\x64istance_from_line_end\x18 \x01(\x08H\x1d\x88\x01\x01\x12&\n\x19load_is_over_total_length\x18! \x01(\x08H\x1e\x88\x01\x01\x12\x14\n\x07\x63omment\x18\" \x01(\tH\x1f\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_coordinate_systemB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x0c\n\n_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\x1d\n\x1b_individual_mass_componentsB\x0e\n\x0c_mass_globalB\t\n\x07_mass_xB\t\n\x07_mass_yB\t\n\x07_mass_zB$\n\"_distance_a_is_defined_as_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_a_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_b_absoluteB\x16\n\x14_distance_b_relativeB$\n\"_distance_c_is_defined_as_relativeB\x16\n\x14_distance_c_absoluteB\x16\n\x14_distance_c_relativeB\n\n\x08_count_nB2\n0_varying_load_parameters_are_defined_as_relativeB\x1a\n\x18_varying_load_parametersB!\n\x1f_varying_load_parameters_sortedB\x1d\n\x1b_reference_to_list_of_linesB\x19\n\x17_distance_from_line_endB\x1c\n\x1a_load_is_over_total_lengthB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"&\n$ArrayOfLineLoadVaryingLoadParameters*\xab\x01\n\x10LineLoadLoadType\x12\x1f\n\x1bLINE_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12#\n\x1fLINE_LOAD_LOAD_TYPE_E_TYPE_MASS\x10\x03\x12\'\n#LINE_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE\x10\x01\x12(\n$LINE_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT\x10\x02*\x94\x04\n\x18LineLoadLoadDistribution\x12\'\n#LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12.\n*LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1\x10\x02\x12.\n*LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2\x10\x05\x12\x30\n,LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2\x10\x04\x12.\n*LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N\x10\x03\x12\x34\n0LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING\x10\x06\x12)\n%LINE_LOAD_LOAD_DISTRIBUTION_PARABOLIC\x10\t\x12\'\n#LINE_LOAD_LOAD_DISTRIBUTION_TAPERED\x10\x08\x12+\n\'LINE_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL\x10\x07\x12-\n)LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL\x10\x01\x12\'\n#LINE_LOAD_LOAD_DISTRIBUTION_VARYING\x10\n*\x8c\x04\n\x15LineLoadLoadDirection\x12$\n LINE_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x41\n=LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12<\n8LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x41\n=LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12<\n8LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x41\n=LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12<\n8LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12$\n LINE_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12$\n LINE_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\xa5\x01\n LineLoadLoadDirectionOrientation\x12?\n;LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12@\n<LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.line_load_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_LINELOADLOADTYPE']._serialized_start=2457
|
|
35
|
+
_globals['_LINELOADLOADTYPE']._serialized_end=2628
|
|
36
|
+
_globals['_LINELOADLOADDISTRIBUTION']._serialized_start=2631
|
|
37
|
+
_globals['_LINELOADLOADDISTRIBUTION']._serialized_end=3163
|
|
38
|
+
_globals['_LINELOADLOADDIRECTION']._serialized_start=3166
|
|
39
|
+
_globals['_LINELOADLOADDIRECTION']._serialized_end=3690
|
|
40
|
+
_globals['_LINELOADLOADDIRECTIONORIENTATION']._serialized_start=3693
|
|
41
|
+
_globals['_LINELOADLOADDIRECTIONORIENTATION']._serialized_end=3858
|
|
42
|
+
_globals['_LINELOAD']._serialized_start=65
|
|
43
|
+
_globals['_LINELOAD']._serialized_end=2414
|
|
44
|
+
_globals['_ARRAYOFLINELOADVARYINGLOADPARAMETERS']._serialized_start=2416
|
|
45
|
+
_globals['_ARRAYOFLINELOADVARYINGLOADPARAMETERS']._serialized_end=2454
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class LineLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
LINE_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[LineLoadLoadType]
|
|
12
|
+
LINE_LOAD_LOAD_TYPE_E_TYPE_MASS: _ClassVar[LineLoadLoadType]
|
|
13
|
+
LINE_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: _ClassVar[LineLoadLoadType]
|
|
14
|
+
LINE_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: _ClassVar[LineLoadLoadType]
|
|
15
|
+
|
|
16
|
+
class LineLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[LineLoadLoadDistribution]
|
|
19
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: _ClassVar[LineLoadLoadDistribution]
|
|
20
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: _ClassVar[LineLoadLoadDistribution]
|
|
21
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: _ClassVar[LineLoadLoadDistribution]
|
|
22
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: _ClassVar[LineLoadLoadDistribution]
|
|
23
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: _ClassVar[LineLoadLoadDistribution]
|
|
24
|
+
LINE_LOAD_LOAD_DISTRIBUTION_PARABOLIC: _ClassVar[LineLoadLoadDistribution]
|
|
25
|
+
LINE_LOAD_LOAD_DISTRIBUTION_TAPERED: _ClassVar[LineLoadLoadDistribution]
|
|
26
|
+
LINE_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: _ClassVar[LineLoadLoadDistribution]
|
|
27
|
+
LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: _ClassVar[LineLoadLoadDistribution]
|
|
28
|
+
LINE_LOAD_LOAD_DISTRIBUTION_VARYING: _ClassVar[LineLoadLoadDistribution]
|
|
29
|
+
|
|
30
|
+
class LineLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = ()
|
|
32
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[LineLoadLoadDirection]
|
|
33
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[LineLoadLoadDirection]
|
|
34
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[LineLoadLoadDirection]
|
|
35
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[LineLoadLoadDirection]
|
|
36
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[LineLoadLoadDirection]
|
|
37
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[LineLoadLoadDirection]
|
|
38
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[LineLoadLoadDirection]
|
|
39
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[LineLoadLoadDirection]
|
|
40
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[LineLoadLoadDirection]
|
|
41
|
+
|
|
42
|
+
class LineLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
43
|
+
__slots__ = ()
|
|
44
|
+
LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[LineLoadLoadDirectionOrientation]
|
|
45
|
+
LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[LineLoadLoadDirectionOrientation]
|
|
46
|
+
LINE_LOAD_LOAD_TYPE_UNKNOWN: LineLoadLoadType
|
|
47
|
+
LINE_LOAD_LOAD_TYPE_E_TYPE_MASS: LineLoadLoadType
|
|
48
|
+
LINE_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: LineLoadLoadType
|
|
49
|
+
LINE_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: LineLoadLoadType
|
|
50
|
+
LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM: LineLoadLoadDistribution
|
|
51
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: LineLoadLoadDistribution
|
|
52
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: LineLoadLoadDistribution
|
|
53
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: LineLoadLoadDistribution
|
|
54
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: LineLoadLoadDistribution
|
|
55
|
+
LINE_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: LineLoadLoadDistribution
|
|
56
|
+
LINE_LOAD_LOAD_DISTRIBUTION_PARABOLIC: LineLoadLoadDistribution
|
|
57
|
+
LINE_LOAD_LOAD_DISTRIBUTION_TAPERED: LineLoadLoadDistribution
|
|
58
|
+
LINE_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: LineLoadLoadDistribution
|
|
59
|
+
LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: LineLoadLoadDistribution
|
|
60
|
+
LINE_LOAD_LOAD_DISTRIBUTION_VARYING: LineLoadLoadDistribution
|
|
61
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_X: LineLoadLoadDirection
|
|
62
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: LineLoadLoadDirection
|
|
63
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: LineLoadLoadDirection
|
|
64
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: LineLoadLoadDirection
|
|
65
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: LineLoadLoadDirection
|
|
66
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: LineLoadLoadDirection
|
|
67
|
+
LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: LineLoadLoadDirection
|
|
68
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_Y: LineLoadLoadDirection
|
|
69
|
+
LINE_LOAD_LOAD_DIRECTION_LOCAL_Z: LineLoadLoadDirection
|
|
70
|
+
LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: LineLoadLoadDirectionOrientation
|
|
71
|
+
LINE_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: LineLoadLoadDirectionOrientation
|
|
72
|
+
|
|
73
|
+
class LineLoad(_message.Message):
|
|
74
|
+
__slots__ = ("no", "load_type", "lines", "load_case", "coordinate_system", "load_distribution", "load_direction", "load_direction_orientation", "magnitude", "magnitude_1", "magnitude_2", "magnitude_3", "individual_mass_components", "mass_global", "mass_x", "mass_y", "mass_z", "distance_a_is_defined_as_relative", "distance_a_absolute", "distance_a_relative", "distance_b_is_defined_as_relative", "distance_b_absolute", "distance_b_relative", "distance_c_is_defined_as_relative", "distance_c_absolute", "distance_c_relative", "count_n", "varying_load_parameters_are_defined_as_relative", "varying_load_parameters", "varying_load_parameters_sorted", "reference_to_list_of_lines", "distance_from_line_end", "load_is_over_total_length", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
75
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
MASS_X_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
MASS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
MASS_Z_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
DISTANCE_C_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
DISTANCE_C_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
DISTANCE_C_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
COUNT_N_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
VARYING_LOAD_PARAMETERS_ARE_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
REFERENCE_TO_LIST_OF_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
DISTANCE_FROM_LINE_END_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
LOAD_IS_OVER_TOTAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
no: int
|
|
114
|
+
load_type: LineLoadLoadType
|
|
115
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
116
|
+
load_case: int
|
|
117
|
+
coordinate_system: str
|
|
118
|
+
load_distribution: LineLoadLoadDistribution
|
|
119
|
+
load_direction: LineLoadLoadDirection
|
|
120
|
+
load_direction_orientation: LineLoadLoadDirectionOrientation
|
|
121
|
+
magnitude: float
|
|
122
|
+
magnitude_1: float
|
|
123
|
+
magnitude_2: float
|
|
124
|
+
magnitude_3: float
|
|
125
|
+
individual_mass_components: bool
|
|
126
|
+
mass_global: float
|
|
127
|
+
mass_x: float
|
|
128
|
+
mass_y: float
|
|
129
|
+
mass_z: float
|
|
130
|
+
distance_a_is_defined_as_relative: bool
|
|
131
|
+
distance_a_absolute: float
|
|
132
|
+
distance_a_relative: float
|
|
133
|
+
distance_b_is_defined_as_relative: bool
|
|
134
|
+
distance_b_absolute: float
|
|
135
|
+
distance_b_relative: float
|
|
136
|
+
distance_c_is_defined_as_relative: bool
|
|
137
|
+
distance_c_absolute: float
|
|
138
|
+
distance_c_relative: float
|
|
139
|
+
count_n: int
|
|
140
|
+
varying_load_parameters_are_defined_as_relative: bool
|
|
141
|
+
varying_load_parameters: ArrayOfLineLoadVaryingLoadParameters
|
|
142
|
+
varying_load_parameters_sorted: bool
|
|
143
|
+
reference_to_list_of_lines: bool
|
|
144
|
+
distance_from_line_end: bool
|
|
145
|
+
load_is_over_total_length: bool
|
|
146
|
+
comment: str
|
|
147
|
+
is_generated: bool
|
|
148
|
+
generating_object_info: str
|
|
149
|
+
id_for_export_import: str
|
|
150
|
+
metadata_for_export_import: str
|
|
151
|
+
def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[LineLoadLoadType, str]] = ..., lines: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_distribution: _Optional[_Union[LineLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[LineLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[LineLoadLoadDirectionOrientation, str]] = ..., magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., magnitude_3: _Optional[float] = ..., individual_mass_components: bool = ..., mass_global: _Optional[float] = ..., mass_x: _Optional[float] = ..., mass_y: _Optional[float] = ..., mass_z: _Optional[float] = ..., distance_a_is_defined_as_relative: bool = ..., distance_a_absolute: _Optional[float] = ..., distance_a_relative: _Optional[float] = ..., distance_b_is_defined_as_relative: bool = ..., distance_b_absolute: _Optional[float] = ..., distance_b_relative: _Optional[float] = ..., distance_c_is_defined_as_relative: bool = ..., distance_c_absolute: _Optional[float] = ..., distance_c_relative: _Optional[float] = ..., count_n: _Optional[int] = ..., varying_load_parameters_are_defined_as_relative: bool = ..., varying_load_parameters: _Optional[_Union[ArrayOfLineLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., reference_to_list_of_lines: bool = ..., distance_from_line_end: bool = ..., load_is_over_total_length: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
152
|
+
|
|
153
|
+
class ArrayOfLineLoadVaryingLoadParameters(_message.Message):
|
|
154
|
+
__slots__ = ()
|
|
155
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,46 @@
|
|
|
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/line_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/line_set_load.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/loads/line_set_load.proto\x12\x15\x64lubal.api.rfem.loads\"\xd3\x12\n\x0bLineSetLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x42\n\tload_type\x18\x02 \x01(\x0e\x32*.dlubal.api.rfem.loads.LineSetLoadLoadTypeH\x00\x88\x01\x01\x12\x11\n\tline_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\x12R\n\x11load_distribution\x18\x06 \x01(\x0e\x32\x32.dlubal.api.rfem.loads.LineSetLoadLoadDistributionH\x03\x88\x01\x01\x12L\n\x0eload_direction\x18\x07 \x01(\x0e\x32/.dlubal.api.rfem.loads.LineSetLoadLoadDirectionH\x04\x88\x01\x01\x12\x63\n\x1aload_direction_orientation\x18\x08 \x01(\x0e\x32:.dlubal.api.rfem.loads.LineSetLoadLoadDirectionOrientationH\x05\x88\x01\x01\x12\x16\n\tmagnitude\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\x18\n\x0bmass_global\x18\r \x01(\x01H\n\x88\x01\x01\x12\x13\n\x06mass_x\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x13\n\x06mass_y\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x13\n\x06mass_z\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x14\n\x07\x63ount_n\x18\x11 \x01(\x05H\x0e\x88\x01\x01\x12<\n/varying_load_parameters_are_defined_as_relative\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12\x64\n\x17varying_load_parameters\x18\x13 \x01(\x0b\x32>.dlubal.api.rfem.loads.ArrayOfLineSetLoadVaryingLoadParametersH\x10\x88\x01\x01\x12+\n\x1evarying_load_parameters_sorted\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18\x18 \x01(\x08H\x15\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12.\n!distance_c_is_defined_as_relative\x18\x1b \x01(\x08H\x18\x88\x01\x01\x12 \n\x13\x64istance_c_absolute\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12 \n\x13\x64istance_c_relative\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12+\n\x1ereference_to_list_of_line_sets\x18\x1e \x01(\x08H\x1b\x88\x01\x01\x12\'\n\x1a\x64istance_from_line_set_end\x18\x1f \x01(\x08H\x1c\x88\x01\x01\x12&\n\x19load_is_over_total_length\x18 \x01(\x08H\x1d\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18! \x01(\x08H\x1e\x88\x01\x01\x12\x14\n\x07\x63omment\x18\" \x01(\tH\x1f\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_coordinate_systemB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x0c\n\n_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\x0e\n\x0c_mass_globalB\t\n\x07_mass_xB\t\n\x07_mass_yB\t\n\x07_mass_zB\n\n\x08_count_nB2\n0_varying_load_parameters_are_defined_as_relativeB\x1a\n\x18_varying_load_parametersB!\n\x1f_varying_load_parameters_sortedB$\n\"_distance_a_is_defined_as_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_a_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_b_absoluteB\x16\n\x14_distance_b_relativeB$\n\"_distance_c_is_defined_as_relativeB\x16\n\x14_distance_c_absoluteB\x16\n\x14_distance_c_relativeB!\n\x1f_reference_to_list_of_line_setsB\x1d\n\x1b_distance_from_line_set_endB\x1c\n\x1a_load_is_over_total_lengthB\x1d\n\x1b_individual_mass_componentsB\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\")\n\'ArrayOfLineSetLoadVaryingLoadParameters*\xbe\x01\n\x13LineSetLoadLoadType\x12#\n\x1fLINE_SET_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12\'\n#LINE_SET_LOAD_LOAD_TYPE_E_TYPE_MASS\x10\x03\x12+\n\'LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE\x10\x01\x12,\n(LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT\x10\x02*\xc3\x04\n\x1bLineSetLoadLoadDistribution\x12+\n\'LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12\x32\n.LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1\x10\x02\x12\x32\n.LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2\x10\x05\x12\x34\n0LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2\x10\x04\x12\x32\n.LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N\x10\x03\x12\x38\n4LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING\x10\x06\x12-\n)LINE_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC\x10\t\x12+\n\'LINE_SET_LOAD_LOAD_DISTRIBUTION_TAPERED\x10\x08\x12/\n+LINE_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL\x10\x07\x12\x31\n-LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL\x10\x01\x12+\n\'LINE_SET_LOAD_LOAD_DISTRIBUTION_VARYING\x10\n*\xb3\x04\n\x18LineSetLoadLoadDirection\x12(\n$LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x45\nALINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12@\n<LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x45\nALINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12@\n<LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x45\nALINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12@\n<LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12(\n$LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12(\n$LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\xb0\x01\n#LineSetLoadLoadDirectionOrientation\x12\x43\n?LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12\x44\n@LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.line_set_load_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_LINESETLOADLOADTYPE']._serialized_start=2502
|
|
35
|
+
_globals['_LINESETLOADLOADTYPE']._serialized_end=2692
|
|
36
|
+
_globals['_LINESETLOADLOADDISTRIBUTION']._serialized_start=2695
|
|
37
|
+
_globals['_LINESETLOADLOADDISTRIBUTION']._serialized_end=3274
|
|
38
|
+
_globals['_LINESETLOADLOADDIRECTION']._serialized_start=3277
|
|
39
|
+
_globals['_LINESETLOADLOADDIRECTION']._serialized_end=3840
|
|
40
|
+
_globals['_LINESETLOADLOADDIRECTIONORIENTATION']._serialized_start=3843
|
|
41
|
+
_globals['_LINESETLOADLOADDIRECTIONORIENTATION']._serialized_end=4019
|
|
42
|
+
_globals['_LINESETLOAD']._serialized_start=69
|
|
43
|
+
_globals['_LINESETLOAD']._serialized_end=2456
|
|
44
|
+
_globals['_ARRAYOFLINESETLOADVARYINGLOADPARAMETERS']._serialized_start=2458
|
|
45
|
+
_globals['_ARRAYOFLINESETLOADVARYINGLOADPARAMETERS']._serialized_end=2499
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class LineSetLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
LINE_SET_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[LineSetLoadLoadType]
|
|
12
|
+
LINE_SET_LOAD_LOAD_TYPE_E_TYPE_MASS: _ClassVar[LineSetLoadLoadType]
|
|
13
|
+
LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: _ClassVar[LineSetLoadLoadType]
|
|
14
|
+
LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: _ClassVar[LineSetLoadLoadType]
|
|
15
|
+
|
|
16
|
+
class LineSetLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[LineSetLoadLoadDistribution]
|
|
19
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: _ClassVar[LineSetLoadLoadDistribution]
|
|
20
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: _ClassVar[LineSetLoadLoadDistribution]
|
|
21
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: _ClassVar[LineSetLoadLoadDistribution]
|
|
22
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: _ClassVar[LineSetLoadLoadDistribution]
|
|
23
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: _ClassVar[LineSetLoadLoadDistribution]
|
|
24
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC: _ClassVar[LineSetLoadLoadDistribution]
|
|
25
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_TAPERED: _ClassVar[LineSetLoadLoadDistribution]
|
|
26
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: _ClassVar[LineSetLoadLoadDistribution]
|
|
27
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: _ClassVar[LineSetLoadLoadDistribution]
|
|
28
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_VARYING: _ClassVar[LineSetLoadLoadDistribution]
|
|
29
|
+
|
|
30
|
+
class LineSetLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = ()
|
|
32
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[LineSetLoadLoadDirection]
|
|
33
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[LineSetLoadLoadDirection]
|
|
34
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[LineSetLoadLoadDirection]
|
|
35
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[LineSetLoadLoadDirection]
|
|
36
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[LineSetLoadLoadDirection]
|
|
37
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[LineSetLoadLoadDirection]
|
|
38
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[LineSetLoadLoadDirection]
|
|
39
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[LineSetLoadLoadDirection]
|
|
40
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[LineSetLoadLoadDirection]
|
|
41
|
+
|
|
42
|
+
class LineSetLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
43
|
+
__slots__ = ()
|
|
44
|
+
LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[LineSetLoadLoadDirectionOrientation]
|
|
45
|
+
LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[LineSetLoadLoadDirectionOrientation]
|
|
46
|
+
LINE_SET_LOAD_LOAD_TYPE_UNKNOWN: LineSetLoadLoadType
|
|
47
|
+
LINE_SET_LOAD_LOAD_TYPE_E_TYPE_MASS: LineSetLoadLoadType
|
|
48
|
+
LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: LineSetLoadLoadType
|
|
49
|
+
LINE_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: LineSetLoadLoadType
|
|
50
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: LineSetLoadLoadDistribution
|
|
51
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: LineSetLoadLoadDistribution
|
|
52
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: LineSetLoadLoadDistribution
|
|
53
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: LineSetLoadLoadDistribution
|
|
54
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: LineSetLoadLoadDistribution
|
|
55
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: LineSetLoadLoadDistribution
|
|
56
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC: LineSetLoadLoadDistribution
|
|
57
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_TAPERED: LineSetLoadLoadDistribution
|
|
58
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: LineSetLoadLoadDistribution
|
|
59
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: LineSetLoadLoadDistribution
|
|
60
|
+
LINE_SET_LOAD_LOAD_DISTRIBUTION_VARYING: LineSetLoadLoadDistribution
|
|
61
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_X: LineSetLoadLoadDirection
|
|
62
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: LineSetLoadLoadDirection
|
|
63
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: LineSetLoadLoadDirection
|
|
64
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: LineSetLoadLoadDirection
|
|
65
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: LineSetLoadLoadDirection
|
|
66
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: LineSetLoadLoadDirection
|
|
67
|
+
LINE_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: LineSetLoadLoadDirection
|
|
68
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: LineSetLoadLoadDirection
|
|
69
|
+
LINE_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: LineSetLoadLoadDirection
|
|
70
|
+
LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: LineSetLoadLoadDirectionOrientation
|
|
71
|
+
LINE_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: LineSetLoadLoadDirectionOrientation
|
|
72
|
+
|
|
73
|
+
class LineSetLoad(_message.Message):
|
|
74
|
+
__slots__ = ("no", "load_type", "line_sets", "load_case", "coordinate_system", "load_distribution", "load_direction", "load_direction_orientation", "magnitude", "magnitude_1", "magnitude_2", "magnitude_3", "mass_global", "mass_x", "mass_y", "mass_z", "count_n", "varying_load_parameters_are_defined_as_relative", "varying_load_parameters", "varying_load_parameters_sorted", "distance_a_is_defined_as_relative", "distance_a_absolute", "distance_a_relative", "distance_b_is_defined_as_relative", "distance_b_absolute", "distance_b_relative", "distance_c_is_defined_as_relative", "distance_c_absolute", "distance_c_relative", "reference_to_list_of_line_sets", "distance_from_line_set_end", "load_is_over_total_length", "individual_mass_components", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
75
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
LINE_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
MASS_X_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
MASS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
MASS_Z_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
COUNT_N_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
VARYING_LOAD_PARAMETERS_ARE_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
DISTANCE_C_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
DISTANCE_C_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
DISTANCE_C_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
REFERENCE_TO_LIST_OF_LINE_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
DISTANCE_FROM_LINE_SET_END_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
LOAD_IS_OVER_TOTAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
no: int
|
|
114
|
+
load_type: LineSetLoadLoadType
|
|
115
|
+
line_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
116
|
+
load_case: int
|
|
117
|
+
coordinate_system: str
|
|
118
|
+
load_distribution: LineSetLoadLoadDistribution
|
|
119
|
+
load_direction: LineSetLoadLoadDirection
|
|
120
|
+
load_direction_orientation: LineSetLoadLoadDirectionOrientation
|
|
121
|
+
magnitude: float
|
|
122
|
+
magnitude_1: float
|
|
123
|
+
magnitude_2: float
|
|
124
|
+
magnitude_3: float
|
|
125
|
+
mass_global: float
|
|
126
|
+
mass_x: float
|
|
127
|
+
mass_y: float
|
|
128
|
+
mass_z: float
|
|
129
|
+
count_n: int
|
|
130
|
+
varying_load_parameters_are_defined_as_relative: bool
|
|
131
|
+
varying_load_parameters: ArrayOfLineSetLoadVaryingLoadParameters
|
|
132
|
+
varying_load_parameters_sorted: bool
|
|
133
|
+
distance_a_is_defined_as_relative: bool
|
|
134
|
+
distance_a_absolute: float
|
|
135
|
+
distance_a_relative: float
|
|
136
|
+
distance_b_is_defined_as_relative: bool
|
|
137
|
+
distance_b_absolute: float
|
|
138
|
+
distance_b_relative: float
|
|
139
|
+
distance_c_is_defined_as_relative: bool
|
|
140
|
+
distance_c_absolute: float
|
|
141
|
+
distance_c_relative: float
|
|
142
|
+
reference_to_list_of_line_sets: bool
|
|
143
|
+
distance_from_line_set_end: bool
|
|
144
|
+
load_is_over_total_length: bool
|
|
145
|
+
individual_mass_components: bool
|
|
146
|
+
comment: str
|
|
147
|
+
is_generated: bool
|
|
148
|
+
generating_object_info: str
|
|
149
|
+
id_for_export_import: str
|
|
150
|
+
metadata_for_export_import: str
|
|
151
|
+
def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[LineSetLoadLoadType, str]] = ..., line_sets: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_distribution: _Optional[_Union[LineSetLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[LineSetLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[LineSetLoadLoadDirectionOrientation, str]] = ..., magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., magnitude_3: _Optional[float] = ..., mass_global: _Optional[float] = ..., mass_x: _Optional[float] = ..., mass_y: _Optional[float] = ..., mass_z: _Optional[float] = ..., count_n: _Optional[int] = ..., varying_load_parameters_are_defined_as_relative: bool = ..., varying_load_parameters: _Optional[_Union[ArrayOfLineSetLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., distance_a_is_defined_as_relative: bool = ..., distance_a_absolute: _Optional[float] = ..., distance_a_relative: _Optional[float] = ..., distance_b_is_defined_as_relative: bool = ..., distance_b_absolute: _Optional[float] = ..., distance_b_relative: _Optional[float] = ..., distance_c_is_defined_as_relative: bool = ..., distance_c_absolute: _Optional[float] = ..., distance_c_relative: _Optional[float] = ..., reference_to_list_of_line_sets: bool = ..., distance_from_line_set_end: bool = ..., load_is_over_total_length: bool = ..., individual_mass_components: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
152
|
+
|
|
153
|
+
class ArrayOfLineSetLoadVaryingLoadParameters(_message.Message):
|
|
154
|
+
__slots__ = ()
|
|
155
|
+
def __init__(self) -> None: ...
|