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,84 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class FreeConcentratedLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[FreeConcentratedLoadLoadType]
|
|
12
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_FORCE: _ClassVar[FreeConcentratedLoadLoadType]
|
|
13
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_MOMENT: _ClassVar[FreeConcentratedLoadLoadType]
|
|
14
|
+
|
|
15
|
+
class FreeConcentratedLoadLoadProjection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XY_OR_UV: _ClassVar[FreeConcentratedLoadLoadProjection]
|
|
18
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XZ_OR_UW: _ClassVar[FreeConcentratedLoadLoadProjection]
|
|
19
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_YZ_OR_VW: _ClassVar[FreeConcentratedLoadLoadProjection]
|
|
20
|
+
|
|
21
|
+
class FreeConcentratedLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
24
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_X: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
25
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Y: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
26
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Z: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
27
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
28
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
29
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_U: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
30
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_V: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
31
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_W: _ClassVar[FreeConcentratedLoadLoadDirection]
|
|
32
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_UNKNOWN: FreeConcentratedLoadLoadType
|
|
33
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_FORCE: FreeConcentratedLoadLoadType
|
|
34
|
+
FREE_CONCENTRATED_LOAD_LOAD_TYPE_MOMENT: FreeConcentratedLoadLoadType
|
|
35
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XY_OR_UV: FreeConcentratedLoadLoadProjection
|
|
36
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XZ_OR_UW: FreeConcentratedLoadLoadProjection
|
|
37
|
+
FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_YZ_OR_VW: FreeConcentratedLoadLoadProjection
|
|
38
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_X: FreeConcentratedLoadLoadDirection
|
|
39
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_X: FreeConcentratedLoadLoadDirection
|
|
40
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Y: FreeConcentratedLoadLoadDirection
|
|
41
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Z: FreeConcentratedLoadLoadDirection
|
|
42
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Y: FreeConcentratedLoadLoadDirection
|
|
43
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Z: FreeConcentratedLoadLoadDirection
|
|
44
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_U: FreeConcentratedLoadLoadDirection
|
|
45
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_V: FreeConcentratedLoadLoadDirection
|
|
46
|
+
FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_W: FreeConcentratedLoadLoadDirection
|
|
47
|
+
|
|
48
|
+
class FreeConcentratedLoad(_message.Message):
|
|
49
|
+
__slots__ = ("no", "load_type", "surfaces", "load_case", "coordinate_system", "load_projection", "load_direction", "load_acting_region_from", "load_acting_region_to", "magnitude", "load_location_x", "load_location_y", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
50
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
LOAD_PROJECTION_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
LOAD_ACTING_REGION_FROM_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
LOAD_ACTING_REGION_TO_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
LOAD_LOCATION_X_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
LOAD_LOCATION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
no: int
|
|
68
|
+
load_type: FreeConcentratedLoadLoadType
|
|
69
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
70
|
+
load_case: int
|
|
71
|
+
coordinate_system: int
|
|
72
|
+
load_projection: FreeConcentratedLoadLoadProjection
|
|
73
|
+
load_direction: FreeConcentratedLoadLoadDirection
|
|
74
|
+
load_acting_region_from: float
|
|
75
|
+
load_acting_region_to: float
|
|
76
|
+
magnitude: float
|
|
77
|
+
load_location_x: float
|
|
78
|
+
load_location_y: float
|
|
79
|
+
comment: str
|
|
80
|
+
is_generated: bool
|
|
81
|
+
generating_object_info: str
|
|
82
|
+
id_for_export_import: str
|
|
83
|
+
metadata_for_export_import: str
|
|
84
|
+
def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[FreeConcentratedLoadLoadType, str]] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., load_projection: _Optional[_Union[FreeConcentratedLoadLoadProjection, str]] = ..., load_direction: _Optional[_Union[FreeConcentratedLoadLoadDirection, str]] = ..., load_acting_region_from: _Optional[float] = ..., load_acting_region_to: _Optional[float] = ..., magnitude: _Optional[float] = ..., load_location_x: _Optional[float] = ..., load_location_y: _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,42 @@
|
|
|
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/free_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/free_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/free_line_load.proto\x12\x15\x64lubal.api.rfem.loads\"\xe4\t\n\x0c\x46reeLineLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x10\n\x08surfaces\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12O\n\x0fload_projection\x18\x05 \x01(\x0e\x32\x31.dlubal.api.rfem.loads.FreeLineLoadLoadProjectionH\x02\x88\x01\x01\x12M\n\x0eload_direction\x18\x06 \x01(\x0e\x32\x30.dlubal.api.rfem.loads.FreeLineLoadLoadDirectionH\x03\x88\x01\x01\x12$\n\x17load_acting_region_from\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\"\n\x15load_acting_region_to\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12S\n\x11load_distribution\x18\t \x01(\x0e\x32\x33.dlubal.api.rfem.loads.FreeLineLoadLoadDistributionH\x06\x88\x01\x01\x12\x1e\n\x11magnitude_uniform\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0fmagnitude_first\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x1d\n\x10magnitude_second\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\"\n\x15load_location_first_x\x18\r \x01(\x01H\n\x88\x01\x01\x12\"\n\x15load_location_first_y\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12#\n\x16load_location_second_x\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12#\n\x16load_location_second_y\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12#\n\x16generating_object_info\x18\x13 \x01(\tH\x10\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x15 \x01(\tH\x12\x88\x01\x01\x42\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x12\n\x10_load_projectionB\x11\n\x0f_load_directionB\x1a\n\x18_load_acting_region_fromB\x18\n\x16_load_acting_region_toB\x14\n\x12_load_distributionB\x14\n\x12_magnitude_uniformB\x12\n\x10_magnitude_firstB\x13\n\x11_magnitude_secondB\x18\n\x16_load_location_first_xB\x18\n\x16_load_location_first_yB\x19\n\x17_load_location_second_xB\x19\n\x17_load_location_second_yB\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*\xa3\x01\n\x1a\x46reeLineLoadLoadProjection\x12+\n\'FREE_LINE_LOAD_LOAD_PROJECTION_XY_OR_UV\x10\x00\x12+\n\'FREE_LINE_LOAD_LOAD_PROJECTION_XZ_OR_UW\x10\x02\x12+\n\'FREE_LINE_LOAD_LOAD_PROJECTION_YZ_OR_VW\x10\x01*\xaa\x06\n\x19\x46reeLineLoadLoadDirection\x12)\n%FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x34\n0FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED\x10\x08\x12/\n+FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE\x10\x05\x12\x34\n0FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED\x10\t\x12/\n+FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE\x10\x06\x12\x34\n0FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED\x10\n\x12/\n+FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE\x10\x07\x12)\n%FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12)\n%FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12:\n6FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED\x10\x0e\x12\x35\n1FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE\x10\x0b\x12:\n6FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED\x10\x0f\x12\x35\n1FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE\x10\x0c\x12:\n6FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED\x10\x10\x12\x35\n1FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE\x10\r*\xa7\x01\n\x1c\x46reeLineLoadLoadDistribution\x12,\n(FREE_LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12+\n\'FREE_LINE_LOAD_LOAD_DISTRIBUTION_LINEAR\x10\x01\x12,\n(FREE_LINE_LOAD_LOAD_DISTRIBUTION_VARYING\x10\x07\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.free_line_load_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_FREELINELOADLOADPROJECTION']._serialized_start=1325
|
|
35
|
+
_globals['_FREELINELOADLOADPROJECTION']._serialized_end=1488
|
|
36
|
+
_globals['_FREELINELOADLOADDIRECTION']._serialized_start=1491
|
|
37
|
+
_globals['_FREELINELOADLOADDIRECTION']._serialized_end=2301
|
|
38
|
+
_globals['_FREELINELOADLOADDISTRIBUTION']._serialized_start=2304
|
|
39
|
+
_globals['_FREELINELOADLOADDISTRIBUTION']._serialized_end=2471
|
|
40
|
+
_globals['_FREELINELOAD']._serialized_start=70
|
|
41
|
+
_globals['_FREELINELOAD']._serialized_end=1322
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class FreeLineLoadLoadProjection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_XY_OR_UV: _ClassVar[FreeLineLoadLoadProjection]
|
|
12
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_XZ_OR_UW: _ClassVar[FreeLineLoadLoadProjection]
|
|
13
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_YZ_OR_VW: _ClassVar[FreeLineLoadLoadProjection]
|
|
14
|
+
|
|
15
|
+
class FreeLineLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[FreeLineLoadLoadDirection]
|
|
18
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
19
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
20
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
21
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
22
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
23
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
24
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[FreeLineLoadLoadDirection]
|
|
25
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[FreeLineLoadLoadDirection]
|
|
26
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
27
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
28
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
29
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
30
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: _ClassVar[FreeLineLoadLoadDirection]
|
|
31
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: _ClassVar[FreeLineLoadLoadDirection]
|
|
32
|
+
|
|
33
|
+
class FreeLineLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
34
|
+
__slots__ = ()
|
|
35
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[FreeLineLoadLoadDistribution]
|
|
36
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_LINEAR: _ClassVar[FreeLineLoadLoadDistribution]
|
|
37
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_VARYING: _ClassVar[FreeLineLoadLoadDistribution]
|
|
38
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_XY_OR_UV: FreeLineLoadLoadProjection
|
|
39
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_XZ_OR_UW: FreeLineLoadLoadProjection
|
|
40
|
+
FREE_LINE_LOAD_LOAD_PROJECTION_YZ_OR_VW: FreeLineLoadLoadProjection
|
|
41
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_X: FreeLineLoadLoadDirection
|
|
42
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: FreeLineLoadLoadDirection
|
|
43
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: FreeLineLoadLoadDirection
|
|
44
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: FreeLineLoadLoadDirection
|
|
45
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: FreeLineLoadLoadDirection
|
|
46
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: FreeLineLoadLoadDirection
|
|
47
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: FreeLineLoadLoadDirection
|
|
48
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Y: FreeLineLoadLoadDirection
|
|
49
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_LOCAL_Z: FreeLineLoadLoadDirection
|
|
50
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: FreeLineLoadLoadDirection
|
|
51
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: FreeLineLoadLoadDirection
|
|
52
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: FreeLineLoadLoadDirection
|
|
53
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: FreeLineLoadLoadDirection
|
|
54
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: FreeLineLoadLoadDirection
|
|
55
|
+
FREE_LINE_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: FreeLineLoadLoadDirection
|
|
56
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_UNIFORM: FreeLineLoadLoadDistribution
|
|
57
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_LINEAR: FreeLineLoadLoadDistribution
|
|
58
|
+
FREE_LINE_LOAD_LOAD_DISTRIBUTION_VARYING: FreeLineLoadLoadDistribution
|
|
59
|
+
|
|
60
|
+
class FreeLineLoad(_message.Message):
|
|
61
|
+
__slots__ = ("no", "surfaces", "load_case", "coordinate_system", "load_projection", "load_direction", "load_acting_region_from", "load_acting_region_to", "load_distribution", "magnitude_uniform", "magnitude_first", "magnitude_second", "load_location_first_x", "load_location_first_y", "load_location_second_x", "load_location_second_y", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
62
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
LOAD_PROJECTION_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
LOAD_ACTING_REGION_FROM_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
LOAD_ACTING_REGION_TO_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
MAGNITUDE_UNIFORM_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
MAGNITUDE_FIRST_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
MAGNITUDE_SECOND_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
LOAD_LOCATION_FIRST_X_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
LOAD_LOCATION_FIRST_Y_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
LOAD_LOCATION_SECOND_X_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
LOAD_LOCATION_SECOND_Y_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
no: int
|
|
84
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
85
|
+
load_case: int
|
|
86
|
+
coordinate_system: int
|
|
87
|
+
load_projection: FreeLineLoadLoadProjection
|
|
88
|
+
load_direction: FreeLineLoadLoadDirection
|
|
89
|
+
load_acting_region_from: float
|
|
90
|
+
load_acting_region_to: float
|
|
91
|
+
load_distribution: FreeLineLoadLoadDistribution
|
|
92
|
+
magnitude_uniform: float
|
|
93
|
+
magnitude_first: float
|
|
94
|
+
magnitude_second: float
|
|
95
|
+
load_location_first_x: float
|
|
96
|
+
load_location_first_y: float
|
|
97
|
+
load_location_second_x: float
|
|
98
|
+
load_location_second_y: float
|
|
99
|
+
comment: str
|
|
100
|
+
is_generated: bool
|
|
101
|
+
generating_object_info: str
|
|
102
|
+
id_for_export_import: str
|
|
103
|
+
metadata_for_export_import: str
|
|
104
|
+
def __init__(self, no: _Optional[int] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., load_projection: _Optional[_Union[FreeLineLoadLoadProjection, str]] = ..., load_direction: _Optional[_Union[FreeLineLoadLoadDirection, str]] = ..., load_acting_region_from: _Optional[float] = ..., load_acting_region_to: _Optional[float] = ..., load_distribution: _Optional[_Union[FreeLineLoadLoadDistribution, str]] = ..., magnitude_uniform: _Optional[float] = ..., magnitude_first: _Optional[float] = ..., magnitude_second: _Optional[float] = ..., load_location_first_x: _Optional[float] = ..., load_location_first_y: _Optional[float] = ..., load_location_second_x: _Optional[float] = ..., load_location_second_y: _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,44 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/loads/free_polygon_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/free_polygon_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/free_polygon_load.proto\x12\x15\x64lubal.api.rfem.loads\"\xfd\n\n\x0f\x46reePolygonLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x10\n\x08surfaces\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12R\n\x0fload_projection\x18\x05 \x01(\x0e\x32\x34.dlubal.api.rfem.loads.FreePolygonLoadLoadProjectionH\x02\x88\x01\x01\x12P\n\x0eload_direction\x18\x06 \x01(\x0e\x32\x33.dlubal.api.rfem.loads.FreePolygonLoadLoadDirectionH\x03\x88\x01\x01\x12$\n\x17load_acting_region_from\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\"\n\x15load_acting_region_to\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12V\n\x11load_distribution\x18\t \x01(\x0e\x32\x36.dlubal.api.rfem.loads.FreePolygonLoadLoadDistributionH\x06\x88\x01\x01\x12\x1e\n\x11magnitude_uniform\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1f\n\x12magnitude_linear_1\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x1f\n\x12magnitude_linear_2\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x1f\n\x12magnitude_linear_3\x18\r \x01(\x01H\n\x88\x01\x01\x12(\n\x1bmagnitude_linear_location_1\x18\x0e \x01(\x05H\x0b\x88\x01\x01\x12(\n\x1bmagnitude_linear_location_2\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12(\n\x1bmagnitude_linear_location_3\x18\x10 \x01(\x05H\r\x88\x01\x01\x12U\n\rload_location\x18\x11 \x01(\x0b\x32\x39.dlubal.api.rfem.loads.ArrayOfFreePolygonLoadLoadLocationH\x0e\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x13 \x01(\x08H\x10\x88\x01\x01\x12#\n\x16generating_object_info\x18\x14 \x01(\tH\x11\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x15 \x01(\tH\x12\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x16 \x01(\tH\x13\x88\x01\x01\x42\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x12\n\x10_load_projectionB\x11\n\x0f_load_directionB\x1a\n\x18_load_acting_region_fromB\x18\n\x16_load_acting_region_toB\x14\n\x12_load_distributionB\x14\n\x12_magnitude_uniformB\x15\n\x13_magnitude_linear_1B\x15\n\x13_magnitude_linear_2B\x15\n\x13_magnitude_linear_3B\x1e\n\x1c_magnitude_linear_location_1B\x1e\n\x1c_magnitude_linear_location_2B\x1e\n\x1c_magnitude_linear_location_3B\x10\n\x0e_load_locationB\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\"ArrayOfFreePolygonLoadLoadLocation*\xaf\x01\n\x1d\x46reePolygonLoadLoadProjection\x12.\n*FREE_POLYGON_LOAD_LOAD_PROJECTION_XY_OR_UV\x10\x00\x12.\n*FREE_POLYGON_LOAD_LOAD_PROJECTION_XZ_OR_UW\x10\x02\x12.\n*FREE_POLYGON_LOAD_LOAD_PROJECTION_YZ_OR_VW\x10\x01*\xda\x06\n\x1c\x46reePolygonLoadLoadDirection\x12,\n(FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x37\n3FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED\x10\x08\x12\x32\n.FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE\x10\x05\x12\x37\n3FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED\x10\t\x12\x32\n.FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE\x10\x06\x12\x37\n3FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED\x10\n\x12\x32\n.FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE\x10\x07\x12,\n(FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12,\n(FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12=\n9FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED\x10\x0e\x12\x38\n4FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE\x10\x0b\x12=\n9FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED\x10\x0f\x12\x38\n4FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE\x10\x0c\x12=\n9FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED\x10\x10\x12\x38\n4FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE\x10\r*\xef\x01\n\x1f\x46reePolygonLoadLoadDistribution\x12/\n+FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12.\n*FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR\x10\x01\x12\x34\n0FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST\x10\x02\x12\x35\n1FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND\x10\x03\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.free_polygon_load_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_FREEPOLYGONLOADLOADPROJECTION']._serialized_start=1519
|
|
35
|
+
_globals['_FREEPOLYGONLOADLOADPROJECTION']._serialized_end=1694
|
|
36
|
+
_globals['_FREEPOLYGONLOADLOADDIRECTION']._serialized_start=1697
|
|
37
|
+
_globals['_FREEPOLYGONLOADLOADDIRECTION']._serialized_end=2555
|
|
38
|
+
_globals['_FREEPOLYGONLOADLOADDISTRIBUTION']._serialized_start=2558
|
|
39
|
+
_globals['_FREEPOLYGONLOADLOADDISTRIBUTION']._serialized_end=2797
|
|
40
|
+
_globals['_FREEPOLYGONLOAD']._serialized_start=73
|
|
41
|
+
_globals['_FREEPOLYGONLOAD']._serialized_end=1478
|
|
42
|
+
_globals['_ARRAYOFFREEPOLYGONLOADLOADLOCATION']._serialized_start=1480
|
|
43
|
+
_globals['_ARRAYOFFREEPOLYGONLOADLOADLOCATION']._serialized_end=1516
|
|
44
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,112 @@
|
|
|
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 FreePolygonLoadLoadProjection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_XY_OR_UV: _ClassVar[FreePolygonLoadLoadProjection]
|
|
12
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_XZ_OR_UW: _ClassVar[FreePolygonLoadLoadProjection]
|
|
13
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_YZ_OR_VW: _ClassVar[FreePolygonLoadLoadProjection]
|
|
14
|
+
|
|
15
|
+
class FreePolygonLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[FreePolygonLoadLoadDirection]
|
|
18
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
19
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
20
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
21
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
22
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
23
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
24
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[FreePolygonLoadLoadDirection]
|
|
25
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[FreePolygonLoadLoadDirection]
|
|
26
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
27
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
28
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
29
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
30
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: _ClassVar[FreePolygonLoadLoadDirection]
|
|
31
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: _ClassVar[FreePolygonLoadLoadDirection]
|
|
32
|
+
|
|
33
|
+
class FreePolygonLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
34
|
+
__slots__ = ()
|
|
35
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[FreePolygonLoadLoadDistribution]
|
|
36
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR: _ClassVar[FreePolygonLoadLoadDistribution]
|
|
37
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST: _ClassVar[FreePolygonLoadLoadDistribution]
|
|
38
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND: _ClassVar[FreePolygonLoadLoadDistribution]
|
|
39
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_XY_OR_UV: FreePolygonLoadLoadProjection
|
|
40
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_XZ_OR_UW: FreePolygonLoadLoadProjection
|
|
41
|
+
FREE_POLYGON_LOAD_LOAD_PROJECTION_YZ_OR_VW: FreePolygonLoadLoadProjection
|
|
42
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_X: FreePolygonLoadLoadDirection
|
|
43
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: FreePolygonLoadLoadDirection
|
|
44
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: FreePolygonLoadLoadDirection
|
|
45
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: FreePolygonLoadLoadDirection
|
|
46
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: FreePolygonLoadLoadDirection
|
|
47
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: FreePolygonLoadLoadDirection
|
|
48
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: FreePolygonLoadLoadDirection
|
|
49
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Y: FreePolygonLoadLoadDirection
|
|
50
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_LOCAL_Z: FreePolygonLoadLoadDirection
|
|
51
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: FreePolygonLoadLoadDirection
|
|
52
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: FreePolygonLoadLoadDirection
|
|
53
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: FreePolygonLoadLoadDirection
|
|
54
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: FreePolygonLoadLoadDirection
|
|
55
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: FreePolygonLoadLoadDirection
|
|
56
|
+
FREE_POLYGON_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: FreePolygonLoadLoadDirection
|
|
57
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_UNIFORM: FreePolygonLoadLoadDistribution
|
|
58
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR: FreePolygonLoadLoadDistribution
|
|
59
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST: FreePolygonLoadLoadDistribution
|
|
60
|
+
FREE_POLYGON_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND: FreePolygonLoadLoadDistribution
|
|
61
|
+
|
|
62
|
+
class FreePolygonLoad(_message.Message):
|
|
63
|
+
__slots__ = ("no", "surfaces", "load_case", "coordinate_system", "load_projection", "load_direction", "load_acting_region_from", "load_acting_region_to", "load_distribution", "magnitude_uniform", "magnitude_linear_1", "magnitude_linear_2", "magnitude_linear_3", "magnitude_linear_location_1", "magnitude_linear_location_2", "magnitude_linear_location_3", "load_location", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
64
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
LOAD_PROJECTION_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
LOAD_ACTING_REGION_FROM_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
LOAD_ACTING_REGION_TO_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
MAGNITUDE_UNIFORM_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
MAGNITUDE_LINEAR_1_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
MAGNITUDE_LINEAR_2_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
MAGNITUDE_LINEAR_3_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
MAGNITUDE_LINEAR_LOCATION_1_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
MAGNITUDE_LINEAR_LOCATION_2_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
MAGNITUDE_LINEAR_LOCATION_3_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
LOAD_LOCATION_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
no: int
|
|
87
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
88
|
+
load_case: int
|
|
89
|
+
coordinate_system: int
|
|
90
|
+
load_projection: FreePolygonLoadLoadProjection
|
|
91
|
+
load_direction: FreePolygonLoadLoadDirection
|
|
92
|
+
load_acting_region_from: float
|
|
93
|
+
load_acting_region_to: float
|
|
94
|
+
load_distribution: FreePolygonLoadLoadDistribution
|
|
95
|
+
magnitude_uniform: float
|
|
96
|
+
magnitude_linear_1: float
|
|
97
|
+
magnitude_linear_2: float
|
|
98
|
+
magnitude_linear_3: float
|
|
99
|
+
magnitude_linear_location_1: int
|
|
100
|
+
magnitude_linear_location_2: int
|
|
101
|
+
magnitude_linear_location_3: int
|
|
102
|
+
load_location: ArrayOfFreePolygonLoadLoadLocation
|
|
103
|
+
comment: str
|
|
104
|
+
is_generated: bool
|
|
105
|
+
generating_object_info: str
|
|
106
|
+
id_for_export_import: str
|
|
107
|
+
metadata_for_export_import: str
|
|
108
|
+
def __init__(self, no: _Optional[int] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., load_projection: _Optional[_Union[FreePolygonLoadLoadProjection, str]] = ..., load_direction: _Optional[_Union[FreePolygonLoadLoadDirection, str]] = ..., load_acting_region_from: _Optional[float] = ..., load_acting_region_to: _Optional[float] = ..., load_distribution: _Optional[_Union[FreePolygonLoadLoadDistribution, str]] = ..., magnitude_uniform: _Optional[float] = ..., magnitude_linear_1: _Optional[float] = ..., magnitude_linear_2: _Optional[float] = ..., magnitude_linear_3: _Optional[float] = ..., magnitude_linear_location_1: _Optional[int] = ..., magnitude_linear_location_2: _Optional[int] = ..., magnitude_linear_location_3: _Optional[int] = ..., load_location: _Optional[_Union[ArrayOfFreePolygonLoadLoadLocation, _Mapping]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
109
|
+
|
|
110
|
+
class ArrayOfFreePolygonLoadLoadLocation(_message.Message):
|
|
111
|
+
__slots__ = ()
|
|
112
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,49 @@
|
|
|
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/free_rectangular_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/free_rectangular_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'\n1dlubal/api/rfem/loads/free_rectangular_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xaf\x17\n\x13\x46reeRectangularLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x10\n\x08surfaces\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12V\n\x0fload_projection\x18\x05 \x01(\x0e\x32\x38.dlubal.api.rfem.loads.FreeRectangularLoadLoadProjectionH\x02\x88\x01\x01\x12T\n\x0eload_direction\x18\x06 \x01(\x0e\x32\x37.dlubal.api.rfem.loads.FreeRectangularLoadLoadDirectionH\x03\x88\x01\x01\x12$\n\x17load_acting_region_from\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\"\n\x15load_acting_region_to\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12Z\n\x11load_distribution\x18\t \x01(\x0e\x32:.dlubal.api.rfem.loads.FreeRectangularLoadLoadDistributionH\x06\x88\x01\x01\x12\x1e\n\x11magnitude_uniform\x18\n \x01(\x01H\x07\x88\x01\x01\x12#\n\x16magnitude_linear_first\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12$\n\x17magnitude_linear_second\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\"\n\x15load_location_first_x\x18\r \x01(\x01H\n\x88\x01\x01\x12\"\n\x15load_location_first_y\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12#\n\x16load_location_second_x\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12#\n\x16load_location_second_y\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x65\n\x17load_location_rectangle\x18\x11 \x01(\x0e\x32?.dlubal.api.rfem.loads.FreeRectangularLoadLoadLocationRectangleH\x0e\x88\x01\x01\x12#\n\x16load_location_center_x\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12#\n\x16load_location_center_y\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12(\n\x1bload_location_center_side_a\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12(\n\x1bload_location_center_side_b\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12#\n\x16load_location_rotation\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12t\n\x1cload_varying_in_z_parameters\x18\x17 \x01(\x0b\x32I.dlubal.api.rfem.loads.ArrayOfFreeRectangularLoadLoadVaryingInZParametersH\x14\x88\x01\x01\x12\x8a\x01\n\'load_varying_along_perimeter_parameters\x18\x18 \x01(\x0b\x32T.dlubal.api.rfem.loads.ArrayOfFreeRectangularLoadLoadVaryingAlongPerimeterParametersH\x15\x88\x01\x01\x12\x30\n#load_varying_in_z_parameters_sorted\x18\x19 \x01(\x08H\x16\x88\x01\x01\x12;\n.load_varying_along_perimeter_parameters_sorted\x18\x1a \x01(\x08H\x17\x88\x01\x01\x12\x31\n$load_varying_along_perimeter_z_index\x18\x1b \x01(\x05H\x18\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\x1c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x19\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1d\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18! \x01(\x01H\x1e\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18\" \x01(\x01H\x1f\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18# \x01(\x01H \x88\x01\x01\x12\x1d\n\x10\x61xis_start_angle\x18$ \x01(\x01H!\x88\x01\x01\x12\x14\n\x07\x63omment\x18% \x01(\tH\"\x88\x01\x01\x12#\n\x16generating_object_info\x18& \x01(\tH#\x88\x01\x01\x12\x19\n\x0cis_generated\x18\' \x01(\x08H$\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_caseB\x14\n\x12_coordinate_systemB\x12\n\x10_load_projectionB\x11\n\x0f_load_directionB\x1a\n\x18_load_acting_region_fromB\x18\n\x16_load_acting_region_toB\x14\n\x12_load_distributionB\x14\n\x12_magnitude_uniformB\x19\n\x17_magnitude_linear_firstB\x1a\n\x18_magnitude_linear_secondB\x18\n\x16_load_location_first_xB\x18\n\x16_load_location_first_yB\x19\n\x17_load_location_second_xB\x19\n\x17_load_location_second_yB\x1a\n\x18_load_location_rectangleB\x19\n\x17_load_location_center_xB\x19\n\x17_load_location_center_yB\x1e\n\x1c_load_location_center_side_aB\x1e\n\x1c_load_location_center_side_bB\x19\n\x17_load_location_rotationB\x1f\n\x1d_load_varying_in_z_parametersB*\n(_load_varying_along_perimeter_parametersB&\n$_load_varying_in_z_parameters_sortedB1\n/_load_varying_along_perimeter_parameters_sortedB\'\n%_load_varying_along_perimeter_z_indexB\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\x13\n\x11_axis_start_angleB\n\n\x08_commentB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"4\n2ArrayOfFreeRectangularLoadLoadVaryingInZParameters\"?\n=ArrayOfFreeRectangularLoadLoadVaryingAlongPerimeterParameters*\xbf\x01\n!FreeRectangularLoadLoadProjection\x12\x32\n.FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XY_OR_UV\x10\x00\x12\x32\n.FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW\x10\x02\x12\x32\n.FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW\x10\x01*\x9a\x07\n FreeRectangularLoadLoadDirection\x12\x30\n,FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12;\n7FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED\x10\x08\x12\x36\n2FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE\x10\x05\x12;\n7FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED\x10\t\x12\x36\n2FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE\x10\x06\x12;\n7FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED\x10\n\x12\x36\n2FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE\x10\x07\x12\x30\n,FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12\x30\n,FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12\x41\n=FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED\x10\x0e\x12<\n8FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE\x10\x0b\x12\x41\n=FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED\x10\x0f\x12<\n8FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE\x10\x0c\x12\x41\n=FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED\x10\x10\x12<\n8FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE\x10\r*\x9c\x03\n#FreeRectangularLoadLoadDistribution\x12\x33\n/FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12\x38\n4FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST\x10\x02\x12\x39\n5FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND\x10\x03\x12\x43\n?FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_ALONG_PERIMETER\x10\x05\x12\x38\n4FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z\x10\x04\x12L\nHFREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z_AND_ALONG_PERIMETER\x10\x06*\xaf\x01\n(FreeRectangularLoadLoadLocationRectangle\x12?\n;FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CORNER_POINTS\x10\x00\x12\x42\n>FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CENTER_AND_SIDES\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.free_rectangular_load_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_FREERECTANGULARLOADLOADPROJECTION']._serialized_start=3222
|
|
36
|
+
_globals['_FREERECTANGULARLOADLOADPROJECTION']._serialized_end=3413
|
|
37
|
+
_globals['_FREERECTANGULARLOADLOADDIRECTION']._serialized_start=3416
|
|
38
|
+
_globals['_FREERECTANGULARLOADLOADDIRECTION']._serialized_end=4338
|
|
39
|
+
_globals['_FREERECTANGULARLOADLOADDISTRIBUTION']._serialized_start=4341
|
|
40
|
+
_globals['_FREERECTANGULARLOADLOADDISTRIBUTION']._serialized_end=4753
|
|
41
|
+
_globals['_FREERECTANGULARLOADLOADLOCATIONRECTANGLE']._serialized_start=4756
|
|
42
|
+
_globals['_FREERECTANGULARLOADLOADLOCATIONRECTANGLE']._serialized_end=4931
|
|
43
|
+
_globals['_FREERECTANGULARLOAD']._serialized_start=109
|
|
44
|
+
_globals['_FREERECTANGULARLOAD']._serialized_end=3100
|
|
45
|
+
_globals['_ARRAYOFFREERECTANGULARLOADLOADVARYINGINZPARAMETERS']._serialized_start=3102
|
|
46
|
+
_globals['_ARRAYOFFREERECTANGULARLOADLOADVARYINGINZPARAMETERS']._serialized_end=3154
|
|
47
|
+
_globals['_ARRAYOFFREERECTANGULARLOADLOADVARYINGALONGPERIMETERPARAMETERS']._serialized_start=3156
|
|
48
|
+
_globals['_ARRAYOFFREERECTANGULARLOADLOADVARYINGALONGPERIMETERPARAMETERS']._serialized_end=3219
|
|
49
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,166 @@
|
|
|
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 FreeRectangularLoadLoadProjection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XY_OR_UV: _ClassVar[FreeRectangularLoadLoadProjection]
|
|
13
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW: _ClassVar[FreeRectangularLoadLoadProjection]
|
|
14
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW: _ClassVar[FreeRectangularLoadLoadProjection]
|
|
15
|
+
|
|
16
|
+
class FreeRectangularLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
17
|
+
__slots__ = ()
|
|
18
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
19
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
20
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
21
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
22
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
23
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
24
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
25
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
26
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
27
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
28
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
29
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
30
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
31
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
32
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: _ClassVar[FreeRectangularLoadLoadDirection]
|
|
33
|
+
|
|
34
|
+
class FreeRectangularLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
37
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
38
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
39
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_ALONG_PERIMETER: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
40
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
41
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z_AND_ALONG_PERIMETER: _ClassVar[FreeRectangularLoadLoadDistribution]
|
|
42
|
+
|
|
43
|
+
class FreeRectangularLoadLoadLocationRectangle(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
44
|
+
__slots__ = ()
|
|
45
|
+
FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CORNER_POINTS: _ClassVar[FreeRectangularLoadLoadLocationRectangle]
|
|
46
|
+
FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CENTER_AND_SIDES: _ClassVar[FreeRectangularLoadLoadLocationRectangle]
|
|
47
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XY_OR_UV: FreeRectangularLoadLoadProjection
|
|
48
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW: FreeRectangularLoadLoadProjection
|
|
49
|
+
FREE_RECTANGULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW: FreeRectangularLoadLoadProjection
|
|
50
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_X: FreeRectangularLoadLoadDirection
|
|
51
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: FreeRectangularLoadLoadDirection
|
|
52
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: FreeRectangularLoadLoadDirection
|
|
53
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: FreeRectangularLoadLoadDirection
|
|
54
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: FreeRectangularLoadLoadDirection
|
|
55
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: FreeRectangularLoadLoadDirection
|
|
56
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: FreeRectangularLoadLoadDirection
|
|
57
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Y: FreeRectangularLoadLoadDirection
|
|
58
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_LOCAL_Z: FreeRectangularLoadLoadDirection
|
|
59
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: FreeRectangularLoadLoadDirection
|
|
60
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: FreeRectangularLoadLoadDirection
|
|
61
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: FreeRectangularLoadLoadDirection
|
|
62
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: FreeRectangularLoadLoadDirection
|
|
63
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: FreeRectangularLoadLoadDirection
|
|
64
|
+
FREE_RECTANGULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: FreeRectangularLoadLoadDirection
|
|
65
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM: FreeRectangularLoadLoadDistribution
|
|
66
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_FIRST: FreeRectangularLoadLoadDistribution
|
|
67
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_LINEAR_SECOND: FreeRectangularLoadLoadDistribution
|
|
68
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_ALONG_PERIMETER: FreeRectangularLoadLoadDistribution
|
|
69
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: FreeRectangularLoadLoadDistribution
|
|
70
|
+
FREE_RECTANGULAR_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z_AND_ALONG_PERIMETER: FreeRectangularLoadLoadDistribution
|
|
71
|
+
FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CORNER_POINTS: FreeRectangularLoadLoadLocationRectangle
|
|
72
|
+
FREE_RECTANGULAR_LOAD_LOAD_LOCATION_RECTANGLE_CENTER_AND_SIDES: FreeRectangularLoadLoadLocationRectangle
|
|
73
|
+
|
|
74
|
+
class FreeRectangularLoad(_message.Message):
|
|
75
|
+
__slots__ = ("no", "surfaces", "load_case", "coordinate_system", "load_projection", "load_direction", "load_acting_region_from", "load_acting_region_to", "load_distribution", "magnitude_uniform", "magnitude_linear_first", "magnitude_linear_second", "load_location_first_x", "load_location_first_y", "load_location_second_x", "load_location_second_y", "load_location_rectangle", "load_location_center_x", "load_location_center_y", "load_location_center_side_a", "load_location_center_side_b", "load_location_rotation", "load_varying_in_z_parameters", "load_varying_along_perimeter_parameters", "load_varying_in_z_parameters_sorted", "load_varying_along_perimeter_parameters_sorted", "load_varying_along_perimeter_z_index", "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_start_angle", "comment", "generating_object_info", "is_generated", "id_for_export_import", "metadata_for_export_import")
|
|
76
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
LOAD_PROJECTION_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
LOAD_ACTING_REGION_FROM_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
LOAD_ACTING_REGION_TO_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
MAGNITUDE_UNIFORM_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
MAGNITUDE_LINEAR_FIRST_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
MAGNITUDE_LINEAR_SECOND_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
LOAD_LOCATION_FIRST_X_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
LOAD_LOCATION_FIRST_Y_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
LOAD_LOCATION_SECOND_X_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
LOAD_LOCATION_SECOND_Y_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
LOAD_LOCATION_RECTANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
LOAD_LOCATION_CENTER_X_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
LOAD_LOCATION_CENTER_Y_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
LOAD_LOCATION_CENTER_SIDE_A_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
LOAD_LOCATION_CENTER_SIDE_B_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
LOAD_LOCATION_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
LOAD_VARYING_IN_Z_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
LOAD_VARYING_ALONG_PERIMETER_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
LOAD_VARYING_IN_Z_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
LOAD_VARYING_ALONG_PERIMETER_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
LOAD_VARYING_ALONG_PERIMETER_Z_INDEX_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
AXIS_START_ANGLE_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
no: int
|
|
118
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
119
|
+
load_case: int
|
|
120
|
+
coordinate_system: int
|
|
121
|
+
load_projection: FreeRectangularLoadLoadProjection
|
|
122
|
+
load_direction: FreeRectangularLoadLoadDirection
|
|
123
|
+
load_acting_region_from: float
|
|
124
|
+
load_acting_region_to: float
|
|
125
|
+
load_distribution: FreeRectangularLoadLoadDistribution
|
|
126
|
+
magnitude_uniform: float
|
|
127
|
+
magnitude_linear_first: float
|
|
128
|
+
magnitude_linear_second: float
|
|
129
|
+
load_location_first_x: float
|
|
130
|
+
load_location_first_y: float
|
|
131
|
+
load_location_second_x: float
|
|
132
|
+
load_location_second_y: float
|
|
133
|
+
load_location_rectangle: FreeRectangularLoadLoadLocationRectangle
|
|
134
|
+
load_location_center_x: float
|
|
135
|
+
load_location_center_y: float
|
|
136
|
+
load_location_center_side_a: float
|
|
137
|
+
load_location_center_side_b: float
|
|
138
|
+
load_location_rotation: float
|
|
139
|
+
load_varying_in_z_parameters: ArrayOfFreeRectangularLoadLoadVaryingInZParameters
|
|
140
|
+
load_varying_along_perimeter_parameters: ArrayOfFreeRectangularLoadLoadVaryingAlongPerimeterParameters
|
|
141
|
+
load_varying_in_z_parameters_sorted: bool
|
|
142
|
+
load_varying_along_perimeter_parameters_sorted: bool
|
|
143
|
+
load_varying_along_perimeter_z_index: int
|
|
144
|
+
axis_definition_p1: _common_pb2.Vector3d
|
|
145
|
+
axis_definition_p1_x: float
|
|
146
|
+
axis_definition_p1_y: float
|
|
147
|
+
axis_definition_p1_z: float
|
|
148
|
+
axis_definition_p2: _common_pb2.Vector3d
|
|
149
|
+
axis_definition_p2_x: float
|
|
150
|
+
axis_definition_p2_y: float
|
|
151
|
+
axis_definition_p2_z: float
|
|
152
|
+
axis_start_angle: float
|
|
153
|
+
comment: str
|
|
154
|
+
generating_object_info: str
|
|
155
|
+
is_generated: bool
|
|
156
|
+
id_for_export_import: str
|
|
157
|
+
metadata_for_export_import: str
|
|
158
|
+
def __init__(self, no: _Optional[int] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., load_projection: _Optional[_Union[FreeRectangularLoadLoadProjection, str]] = ..., load_direction: _Optional[_Union[FreeRectangularLoadLoadDirection, str]] = ..., load_acting_region_from: _Optional[float] = ..., load_acting_region_to: _Optional[float] = ..., load_distribution: _Optional[_Union[FreeRectangularLoadLoadDistribution, str]] = ..., magnitude_uniform: _Optional[float] = ..., magnitude_linear_first: _Optional[float] = ..., magnitude_linear_second: _Optional[float] = ..., load_location_first_x: _Optional[float] = ..., load_location_first_y: _Optional[float] = ..., load_location_second_x: _Optional[float] = ..., load_location_second_y: _Optional[float] = ..., load_location_rectangle: _Optional[_Union[FreeRectangularLoadLoadLocationRectangle, str]] = ..., load_location_center_x: _Optional[float] = ..., load_location_center_y: _Optional[float] = ..., load_location_center_side_a: _Optional[float] = ..., load_location_center_side_b: _Optional[float] = ..., load_location_rotation: _Optional[float] = ..., load_varying_in_z_parameters: _Optional[_Union[ArrayOfFreeRectangularLoadLoadVaryingInZParameters, _Mapping]] = ..., load_varying_along_perimeter_parameters: _Optional[_Union[ArrayOfFreeRectangularLoadLoadVaryingAlongPerimeterParameters, _Mapping]] = ..., load_varying_in_z_parameters_sorted: bool = ..., load_varying_along_perimeter_parameters_sorted: bool = ..., load_varying_along_perimeter_z_index: _Optional[int] = ..., 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_start_angle: _Optional[float] = ..., comment: _Optional[str] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
159
|
+
|
|
160
|
+
class ArrayOfFreeRectangularLoadLoadVaryingInZParameters(_message.Message):
|
|
161
|
+
__slots__ = ()
|
|
162
|
+
def __init__(self) -> None: ...
|
|
163
|
+
|
|
164
|
+
class ArrayOfFreeRectangularLoadLoadVaryingAlongPerimeterParameters(_message.Message):
|
|
165
|
+
__slots__ = ()
|
|
166
|
+
def __init__(self) -> None: ...
|