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,139 @@
|
|
|
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 MemberSpringDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
MEMBER_SPRING_DEFINITION_TYPE_UNKNOWN: _ClassVar[MemberSpringDefinitionType]
|
|
12
|
+
MEMBER_SPRING_DEFINITION_TYPE_DIAGRAM: _ClassVar[MemberSpringDefinitionType]
|
|
13
|
+
MEMBER_SPRING_DEFINITION_TYPE_PARTIAL_ACTIVITY: _ClassVar[MemberSpringDefinitionType]
|
|
14
|
+
|
|
15
|
+
class MemberSpringSelfWeightDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS: _ClassVar[MemberSpringSelfWeightDefinition]
|
|
18
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS_PER_LENGTH: _ClassVar[MemberSpringSelfWeightDefinition]
|
|
19
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_SPECIFIC_WEIGHT: _ClassVar[MemberSpringSelfWeightDefinition]
|
|
20
|
+
|
|
21
|
+
class MemberSpringPartialActivityAlongXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[MemberSpringPartialActivityAlongXNegativeType]
|
|
24
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[MemberSpringPartialActivityAlongXNegativeType]
|
|
25
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[MemberSpringPartialActivityAlongXNegativeType]
|
|
26
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[MemberSpringPartialActivityAlongXNegativeType]
|
|
27
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[MemberSpringPartialActivityAlongXNegativeType]
|
|
28
|
+
|
|
29
|
+
class MemberSpringPartialActivityAlongXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
30
|
+
__slots__ = ()
|
|
31
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[MemberSpringPartialActivityAlongXPositiveType]
|
|
32
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[MemberSpringPartialActivityAlongXPositiveType]
|
|
33
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[MemberSpringPartialActivityAlongXPositiveType]
|
|
34
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[MemberSpringPartialActivityAlongXPositiveType]
|
|
35
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[MemberSpringPartialActivityAlongXPositiveType]
|
|
36
|
+
|
|
37
|
+
class MemberSpringDiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
38
|
+
__slots__ = ()
|
|
39
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[MemberSpringDiagramAlongXStart]
|
|
40
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[MemberSpringDiagramAlongXStart]
|
|
41
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[MemberSpringDiagramAlongXStart]
|
|
42
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[MemberSpringDiagramAlongXStart]
|
|
43
|
+
|
|
44
|
+
class MemberSpringDiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
45
|
+
__slots__ = ()
|
|
46
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[MemberSpringDiagramAlongXEnd]
|
|
47
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[MemberSpringDiagramAlongXEnd]
|
|
48
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[MemberSpringDiagramAlongXEnd]
|
|
49
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[MemberSpringDiagramAlongXEnd]
|
|
50
|
+
MEMBER_SPRING_DEFINITION_TYPE_UNKNOWN: MemberSpringDefinitionType
|
|
51
|
+
MEMBER_SPRING_DEFINITION_TYPE_DIAGRAM: MemberSpringDefinitionType
|
|
52
|
+
MEMBER_SPRING_DEFINITION_TYPE_PARTIAL_ACTIVITY: MemberSpringDefinitionType
|
|
53
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS: MemberSpringSelfWeightDefinition
|
|
54
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS_PER_LENGTH: MemberSpringSelfWeightDefinition
|
|
55
|
+
MEMBER_SPRING_SELF_WEIGHT_DEFINITION_SPECIFIC_WEIGHT: MemberSpringSelfWeightDefinition
|
|
56
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: MemberSpringPartialActivityAlongXNegativeType
|
|
57
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: MemberSpringPartialActivityAlongXNegativeType
|
|
58
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: MemberSpringPartialActivityAlongXNegativeType
|
|
59
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: MemberSpringPartialActivityAlongXNegativeType
|
|
60
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: MemberSpringPartialActivityAlongXNegativeType
|
|
61
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: MemberSpringPartialActivityAlongXPositiveType
|
|
62
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: MemberSpringPartialActivityAlongXPositiveType
|
|
63
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: MemberSpringPartialActivityAlongXPositiveType
|
|
64
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: MemberSpringPartialActivityAlongXPositiveType
|
|
65
|
+
MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: MemberSpringPartialActivityAlongXPositiveType
|
|
66
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: MemberSpringDiagramAlongXStart
|
|
67
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: MemberSpringDiagramAlongXStart
|
|
68
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: MemberSpringDiagramAlongXStart
|
|
69
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: MemberSpringDiagramAlongXStart
|
|
70
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: MemberSpringDiagramAlongXEnd
|
|
71
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: MemberSpringDiagramAlongXEnd
|
|
72
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: MemberSpringDiagramAlongXEnd
|
|
73
|
+
MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: MemberSpringDiagramAlongXEnd
|
|
74
|
+
|
|
75
|
+
class MemberSpring(_message.Message):
|
|
76
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to", "definition_type", "axial_stiffness", "self_weight_definition", "mass", "mass_per_length", "specific_weight", "section_area", "partial_activity_along_x_negative_type", "partial_activity_along_x_negative_displacement", "partial_activity_along_x_negative_force", "partial_activity_along_x_negative_slippage", "partial_activity_along_x_positive_type", "partial_activity_along_x_positive_displacement", "partial_activity_along_x_positive_force", "partial_activity_along_x_positive_slippage", "diagram_along_x_symmetric", "diagram_along_x_is_sorted", "diagram_along_x_table", "diagram_along_x_start", "diagram_along_x_end", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
77
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
AXIAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
SELF_WEIGHT_DEFINITION_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
MASS_PER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
SPECIFIC_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
SECTION_AREA_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
DIAGRAM_ALONG_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
DIAGRAM_ALONG_X_START_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
DIAGRAM_ALONG_X_END_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
no: int
|
|
107
|
+
user_defined_name_enabled: bool
|
|
108
|
+
name: str
|
|
109
|
+
assigned_to: _containers.RepeatedScalarFieldContainer[int]
|
|
110
|
+
definition_type: MemberSpringDefinitionType
|
|
111
|
+
axial_stiffness: float
|
|
112
|
+
self_weight_definition: MemberSpringSelfWeightDefinition
|
|
113
|
+
mass: float
|
|
114
|
+
mass_per_length: float
|
|
115
|
+
specific_weight: float
|
|
116
|
+
section_area: float
|
|
117
|
+
partial_activity_along_x_negative_type: MemberSpringPartialActivityAlongXNegativeType
|
|
118
|
+
partial_activity_along_x_negative_displacement: float
|
|
119
|
+
partial_activity_along_x_negative_force: float
|
|
120
|
+
partial_activity_along_x_negative_slippage: float
|
|
121
|
+
partial_activity_along_x_positive_type: MemberSpringPartialActivityAlongXPositiveType
|
|
122
|
+
partial_activity_along_x_positive_displacement: float
|
|
123
|
+
partial_activity_along_x_positive_force: float
|
|
124
|
+
partial_activity_along_x_positive_slippage: float
|
|
125
|
+
diagram_along_x_symmetric: bool
|
|
126
|
+
diagram_along_x_is_sorted: bool
|
|
127
|
+
diagram_along_x_table: ArrayOfMemberSpringDiagramAlongXTable
|
|
128
|
+
diagram_along_x_start: MemberSpringDiagramAlongXStart
|
|
129
|
+
diagram_along_x_end: MemberSpringDiagramAlongXEnd
|
|
130
|
+
comment: str
|
|
131
|
+
is_generated: bool
|
|
132
|
+
generating_object_info: str
|
|
133
|
+
id_for_export_import: str
|
|
134
|
+
metadata_for_export_import: str
|
|
135
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to: _Optional[_Iterable[int]] = ..., definition_type: _Optional[_Union[MemberSpringDefinitionType, str]] = ..., axial_stiffness: _Optional[float] = ..., self_weight_definition: _Optional[_Union[MemberSpringSelfWeightDefinition, str]] = ..., mass: _Optional[float] = ..., mass_per_length: _Optional[float] = ..., specific_weight: _Optional[float] = ..., section_area: _Optional[float] = ..., partial_activity_along_x_negative_type: _Optional[_Union[MemberSpringPartialActivityAlongXNegativeType, str]] = ..., partial_activity_along_x_negative_displacement: _Optional[float] = ..., partial_activity_along_x_negative_force: _Optional[float] = ..., partial_activity_along_x_negative_slippage: _Optional[float] = ..., partial_activity_along_x_positive_type: _Optional[_Union[MemberSpringPartialActivityAlongXPositiveType, str]] = ..., partial_activity_along_x_positive_displacement: _Optional[float] = ..., partial_activity_along_x_positive_force: _Optional[float] = ..., partial_activity_along_x_positive_slippage: _Optional[float] = ..., diagram_along_x_symmetric: bool = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_x_table: _Optional[_Union[ArrayOfMemberSpringDiagramAlongXTable, _Mapping]] = ..., diagram_along_x_start: _Optional[_Union[MemberSpringDiagramAlongXStart, str]] = ..., diagram_along_x_end: _Optional[_Union[MemberSpringDiagramAlongXEnd, str]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
136
|
+
|
|
137
|
+
class ArrayOfMemberSpringDiagramAlongXTable(_message.Message):
|
|
138
|
+
__slots__ = ()
|
|
139
|
+
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/types_for_members/member_stiffness_modification.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/types_for_members/member_stiffness_modification.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'\nEdlubal/api/rfem/types_for_members/member_stiffness_modification.proto\x12!dlubal.api.rfem.types_for_members\"\xe6\x19\n\x1bMemberStiffnessModification\x12\n\n\x02no\x18\x01 \x01(\x05\x12U\n\x04type\x18\x02 \x01(\x0e\x32\x42.dlubal.api.rfem.types_for_members.MemberStiffnessModificationTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12&\n\x19\x66\x61\x63tor_of_axial_stiffness\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12*\n\x1d\x66\x61\x63tor_of_bending_y_stiffness\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12*\n\x1d\x66\x61\x63tor_of_bending_z_stiffness\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12:\n-partial_stiffness_factor_of_shear_y_stiffness\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12:\n-partial_stiffness_factor_of_shear_z_stiffness\x18\t \x01(\x01H\x07\x88\x01\x01\x12:\n-partial_stiffness_factor_of_torsion_stiffness\x18\n \x01(\x01H\x08\x88\x01\x01\x12/\n\"partial_stiffness_factor_of_weight\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x36\n)total_stiffness_factor_of_total_stiffness\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x46\n9steel_structure_csa_stiffness_factor_of_shear_y_stiffness\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x46\n9steel_structure_csa_stiffness_factor_of_shear_z_stiffness\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x46\n9steel_structure_csa_stiffness_factor_of_torsion_stiffness\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x41\n4steel_structure_csa_factor_of_axial_stiffness_enable\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12\x45\n8steel_structure_csa_factor_of_bending_y_stiffness_enable\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12\x45\n8steel_structure_csa_factor_of_bending_z_stiffness_enable\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12\x43\n6steel_structure_csa_factor_of_shear_y_stiffness_enable\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12\x43\n6steel_structure_csa_factor_of_shear_z_stiffness_enable\x18\x14 \x01(\x08H\x12\x88\x01\x01\x12M\n@steel_structure_csa_stiffness_factor_of_torsion_stiffness_enable\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12\x8e\x01\n#steel_structure_csa_determine_tau_b\x18\x16 \x01(\x0e\x32\\.dlubal.api.rfem.types_for_members.MemberStiffnessModificationSteelStructureCsaDetermineTauBH\x14\x88\x01\x01\x12\x35\n(steel_structure_gb_direct_method_enabled\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12\x87\x01\n\x1fsteel_structure_determine_tau_b\x18\x18 \x01(\x0e\x32Y.dlubal.api.rfem.types_for_members.MemberStiffnessModificationSteelStructureDetermineTauBH\x16\x88\x01\x01\x12\x84\x01\n\x1dsteel_structure_design_method\x18\x19 \x01(\x0e\x32X.dlubal.api.rfem.types_for_members.MemberStiffnessModificationSteelStructureDesignMethodH\x17\x88\x01\x01\x12\x8c\x01\n!concrete_structure_component_type\x18\x1a \x01(\x0e\x32\\.dlubal.api.rfem.types_for_members.MemberStiffnessModificationConcreteStructureComponentTypeH\x18\x88\x01\x01\x12*\n\"assigned_to_structure_modification\x18\x1b \x03(\x05\x12\x14\n\x07\x63omment\x18\x1c \x01(\tH\x19\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1d \x01(\x08H\x1a\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1e \x01(\tH\x1b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1f \x01(\tH\x1c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18 \x01(\tH\x1d\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_factor_of_axial_stiffnessB \n\x1e_factor_of_bending_y_stiffnessB \n\x1e_factor_of_bending_z_stiffnessB0\n._partial_stiffness_factor_of_shear_y_stiffnessB0\n._partial_stiffness_factor_of_shear_z_stiffnessB0\n._partial_stiffness_factor_of_torsion_stiffnessB%\n#_partial_stiffness_factor_of_weightB,\n*_total_stiffness_factor_of_total_stiffnessB<\n:_steel_structure_csa_stiffness_factor_of_shear_y_stiffnessB<\n:_steel_structure_csa_stiffness_factor_of_shear_z_stiffnessB<\n:_steel_structure_csa_stiffness_factor_of_torsion_stiffnessB7\n5_steel_structure_csa_factor_of_axial_stiffness_enableB;\n9_steel_structure_csa_factor_of_bending_y_stiffness_enableB;\n9_steel_structure_csa_factor_of_bending_z_stiffness_enableB9\n7_steel_structure_csa_factor_of_shear_y_stiffness_enableB9\n7_steel_structure_csa_factor_of_shear_z_stiffness_enableBC\nA_steel_structure_csa_stiffness_factor_of_torsion_stiffness_enableB&\n$_steel_structure_csa_determine_tau_bB+\n)_steel_structure_gb_direct_method_enabledB\"\n _steel_structure_determine_tau_bB \n\x1e_steel_structure_design_methodB$\n\"_concrete_structure_component_typeB\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*\xa6\x06\n\x1fMemberStiffnessModificationType\x12.\n*MEMBER_STIFFNESS_MODIFICATION_TYPE_UNKNOWN\x10\x00\x12\x43\n?MEMBER_STIFFNESS_MODIFICATION_TYPE_ALUMINUM_STRUCTURES_ADM_2020\x10\x0c\x12>\n:MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI\x10\x03\x12>\n:MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA\x10\x04\x12\x42\n>MEMBER_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS\x10\x02\x12>\n:MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_10\x10\n\x12>\n:MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_16\x10\x05\x12>\n:MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_22\x10\x06\x12\x43\n?MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S136_16\x10\x08\x12\x42\n>MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S16_19\x10\x07\x12?\n;MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_S100_16\x10\x0b\x12@\n<MEMBER_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESSES_FACTORS\x10\x01*\xdc\x01\n9MemberStiffnessModificationSteelStructureCsaDetermineTauB\x12O\nKMEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_ITERATIVE\x10\x00\x12N\nJMEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_SET_TO_1\x10\x01*\xd1\x01\n6MemberStiffnessModificationSteelStructureDetermineTauB\x12K\nGMEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_ITERATIVE\x10\x00\x12J\nFMEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_SET_TO_1\x10\x01*\xc2\x01\n5MemberStiffnessModificationSteelStructureDesignMethod\x12\x44\n@MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_LRFD\x10\x00\x12\x43\n?MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_ASD\x10\x01*\xd3\x01\n9MemberStiffnessModificationConcreteStructureComponentType\x12K\nGMEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_COLUMNS\x10\x00\x12I\nEMEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_BEAMS\x10\x03\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_stiffness_modification_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONTYPE']._serialized_start=3414
|
|
35
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONTYPE']._serialized_end=4220
|
|
36
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTURECSADETERMINETAUB']._serialized_start=4223
|
|
37
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTURECSADETERMINETAUB']._serialized_end=4443
|
|
38
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTUREDETERMINETAUB']._serialized_start=4446
|
|
39
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTUREDETERMINETAUB']._serialized_end=4655
|
|
40
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTUREDESIGNMETHOD']._serialized_start=4658
|
|
41
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONSTEELSTRUCTUREDESIGNMETHOD']._serialized_end=4852
|
|
42
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONCONCRETESTRUCTURECOMPONENTTYPE']._serialized_start=4855
|
|
43
|
+
_globals['_MEMBERSTIFFNESSMODIFICATIONCONCRETESTRUCTURECOMPONENTTYPE']._serialized_end=5066
|
|
44
|
+
_globals['_MEMBERSTIFFNESSMODIFICATION']._serialized_start=109
|
|
45
|
+
_globals['_MEMBERSTIFFNESSMODIFICATION']._serialized_end=3411
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,130 @@
|
|
|
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 MemberStiffnessModificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_UNKNOWN: _ClassVar[MemberStiffnessModificationType]
|
|
12
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_ALUMINUM_STRUCTURES_ADM_2020: _ClassVar[MemberStiffnessModificationType]
|
|
13
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI: _ClassVar[MemberStiffnessModificationType]
|
|
14
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA: _ClassVar[MemberStiffnessModificationType]
|
|
15
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS: _ClassVar[MemberStiffnessModificationType]
|
|
16
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_10: _ClassVar[MemberStiffnessModificationType]
|
|
17
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_16: _ClassVar[MemberStiffnessModificationType]
|
|
18
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_22: _ClassVar[MemberStiffnessModificationType]
|
|
19
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S136_16: _ClassVar[MemberStiffnessModificationType]
|
|
20
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S16_19: _ClassVar[MemberStiffnessModificationType]
|
|
21
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_S100_16: _ClassVar[MemberStiffnessModificationType]
|
|
22
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESSES_FACTORS: _ClassVar[MemberStiffnessModificationType]
|
|
23
|
+
|
|
24
|
+
class MemberStiffnessModificationSteelStructureCsaDetermineTauB(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
25
|
+
__slots__ = ()
|
|
26
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_ITERATIVE: _ClassVar[MemberStiffnessModificationSteelStructureCsaDetermineTauB]
|
|
27
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_SET_TO_1: _ClassVar[MemberStiffnessModificationSteelStructureCsaDetermineTauB]
|
|
28
|
+
|
|
29
|
+
class MemberStiffnessModificationSteelStructureDetermineTauB(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
30
|
+
__slots__ = ()
|
|
31
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_ITERATIVE: _ClassVar[MemberStiffnessModificationSteelStructureDetermineTauB]
|
|
32
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_SET_TO_1: _ClassVar[MemberStiffnessModificationSteelStructureDetermineTauB]
|
|
33
|
+
|
|
34
|
+
class MemberStiffnessModificationSteelStructureDesignMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_LRFD: _ClassVar[MemberStiffnessModificationSteelStructureDesignMethod]
|
|
37
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_ASD: _ClassVar[MemberStiffnessModificationSteelStructureDesignMethod]
|
|
38
|
+
|
|
39
|
+
class MemberStiffnessModificationConcreteStructureComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
40
|
+
__slots__ = ()
|
|
41
|
+
MEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_COLUMNS: _ClassVar[MemberStiffnessModificationConcreteStructureComponentType]
|
|
42
|
+
MEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_BEAMS: _ClassVar[MemberStiffnessModificationConcreteStructureComponentType]
|
|
43
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_UNKNOWN: MemberStiffnessModificationType
|
|
44
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_ALUMINUM_STRUCTURES_ADM_2020: MemberStiffnessModificationType
|
|
45
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI: MemberStiffnessModificationType
|
|
46
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA: MemberStiffnessModificationType
|
|
47
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS: MemberStiffnessModificationType
|
|
48
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_10: MemberStiffnessModificationType
|
|
49
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_16: MemberStiffnessModificationType
|
|
50
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_360_22: MemberStiffnessModificationType
|
|
51
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S136_16: MemberStiffnessModificationType
|
|
52
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_CSA_S16_19: MemberStiffnessModificationType
|
|
53
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_STEEL_STRUCTURES_S100_16: MemberStiffnessModificationType
|
|
54
|
+
MEMBER_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESSES_FACTORS: MemberStiffnessModificationType
|
|
55
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_ITERATIVE: MemberStiffnessModificationSteelStructureCsaDetermineTauB
|
|
56
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_SET_TO_1: MemberStiffnessModificationSteelStructureCsaDetermineTauB
|
|
57
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_ITERATIVE: MemberStiffnessModificationSteelStructureDetermineTauB
|
|
58
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DETERMINE_TAU_B_SET_TO_1: MemberStiffnessModificationSteelStructureDetermineTauB
|
|
59
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_LRFD: MemberStiffnessModificationSteelStructureDesignMethod
|
|
60
|
+
MEMBER_STIFFNESS_MODIFICATION_STEEL_STRUCTURE_DESIGN_METHOD_ASD: MemberStiffnessModificationSteelStructureDesignMethod
|
|
61
|
+
MEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_COLUMNS: MemberStiffnessModificationConcreteStructureComponentType
|
|
62
|
+
MEMBER_STIFFNESS_MODIFICATION_CONCRETE_STRUCTURE_COMPONENT_TYPE_BEAMS: MemberStiffnessModificationConcreteStructureComponentType
|
|
63
|
+
|
|
64
|
+
class MemberStiffnessModification(_message.Message):
|
|
65
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "factor_of_axial_stiffness", "factor_of_bending_y_stiffness", "factor_of_bending_z_stiffness", "partial_stiffness_factor_of_shear_y_stiffness", "partial_stiffness_factor_of_shear_z_stiffness", "partial_stiffness_factor_of_torsion_stiffness", "partial_stiffness_factor_of_weight", "total_stiffness_factor_of_total_stiffness", "steel_structure_csa_stiffness_factor_of_shear_y_stiffness", "steel_structure_csa_stiffness_factor_of_shear_z_stiffness", "steel_structure_csa_stiffness_factor_of_torsion_stiffness", "steel_structure_csa_factor_of_axial_stiffness_enable", "steel_structure_csa_factor_of_bending_y_stiffness_enable", "steel_structure_csa_factor_of_bending_z_stiffness_enable", "steel_structure_csa_factor_of_shear_y_stiffness_enable", "steel_structure_csa_factor_of_shear_z_stiffness_enable", "steel_structure_csa_stiffness_factor_of_torsion_stiffness_enable", "steel_structure_csa_determine_tau_b", "steel_structure_gb_direct_method_enabled", "steel_structure_determine_tau_b", "steel_structure_design_method", "concrete_structure_component_type", "assigned_to_structure_modification", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
66
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
FACTOR_OF_AXIAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
FACTOR_OF_BENDING_Y_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
FACTOR_OF_BENDING_Z_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
PARTIAL_STIFFNESS_FACTOR_OF_SHEAR_Y_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
PARTIAL_STIFFNESS_FACTOR_OF_SHEAR_Z_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
PARTIAL_STIFFNESS_FACTOR_OF_TORSION_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
PARTIAL_STIFFNESS_FACTOR_OF_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
TOTAL_STIFFNESS_FACTOR_OF_TOTAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
STEEL_STRUCTURE_CSA_STIFFNESS_FACTOR_OF_SHEAR_Y_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
STEEL_STRUCTURE_CSA_STIFFNESS_FACTOR_OF_SHEAR_Z_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
STEEL_STRUCTURE_CSA_STIFFNESS_FACTOR_OF_TORSION_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
STEEL_STRUCTURE_CSA_FACTOR_OF_AXIAL_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
STEEL_STRUCTURE_CSA_FACTOR_OF_BENDING_Y_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
STEEL_STRUCTURE_CSA_FACTOR_OF_BENDING_Z_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
STEEL_STRUCTURE_CSA_FACTOR_OF_SHEAR_Y_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
STEEL_STRUCTURE_CSA_FACTOR_OF_SHEAR_Z_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
STEEL_STRUCTURE_CSA_STIFFNESS_FACTOR_OF_TORSION_STIFFNESS_ENABLE_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
STEEL_STRUCTURE_CSA_DETERMINE_TAU_B_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
STEEL_STRUCTURE_GB_DIRECT_METHOD_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
STEEL_STRUCTURE_DETERMINE_TAU_B_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
STEEL_STRUCTURE_DESIGN_METHOD_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
CONCRETE_STRUCTURE_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
ASSIGNED_TO_STRUCTURE_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
no: int
|
|
99
|
+
type: MemberStiffnessModificationType
|
|
100
|
+
user_defined_name_enabled: bool
|
|
101
|
+
name: str
|
|
102
|
+
factor_of_axial_stiffness: float
|
|
103
|
+
factor_of_bending_y_stiffness: float
|
|
104
|
+
factor_of_bending_z_stiffness: float
|
|
105
|
+
partial_stiffness_factor_of_shear_y_stiffness: float
|
|
106
|
+
partial_stiffness_factor_of_shear_z_stiffness: float
|
|
107
|
+
partial_stiffness_factor_of_torsion_stiffness: float
|
|
108
|
+
partial_stiffness_factor_of_weight: float
|
|
109
|
+
total_stiffness_factor_of_total_stiffness: float
|
|
110
|
+
steel_structure_csa_stiffness_factor_of_shear_y_stiffness: float
|
|
111
|
+
steel_structure_csa_stiffness_factor_of_shear_z_stiffness: float
|
|
112
|
+
steel_structure_csa_stiffness_factor_of_torsion_stiffness: float
|
|
113
|
+
steel_structure_csa_factor_of_axial_stiffness_enable: bool
|
|
114
|
+
steel_structure_csa_factor_of_bending_y_stiffness_enable: bool
|
|
115
|
+
steel_structure_csa_factor_of_bending_z_stiffness_enable: bool
|
|
116
|
+
steel_structure_csa_factor_of_shear_y_stiffness_enable: bool
|
|
117
|
+
steel_structure_csa_factor_of_shear_z_stiffness_enable: bool
|
|
118
|
+
steel_structure_csa_stiffness_factor_of_torsion_stiffness_enable: bool
|
|
119
|
+
steel_structure_csa_determine_tau_b: MemberStiffnessModificationSteelStructureCsaDetermineTauB
|
|
120
|
+
steel_structure_gb_direct_method_enabled: bool
|
|
121
|
+
steel_structure_determine_tau_b: MemberStiffnessModificationSteelStructureDetermineTauB
|
|
122
|
+
steel_structure_design_method: MemberStiffnessModificationSteelStructureDesignMethod
|
|
123
|
+
concrete_structure_component_type: MemberStiffnessModificationConcreteStructureComponentType
|
|
124
|
+
assigned_to_structure_modification: _containers.RepeatedScalarFieldContainer[int]
|
|
125
|
+
comment: str
|
|
126
|
+
is_generated: bool
|
|
127
|
+
generating_object_info: str
|
|
128
|
+
id_for_export_import: str
|
|
129
|
+
metadata_for_export_import: str
|
|
130
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[MemberStiffnessModificationType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., factor_of_axial_stiffness: _Optional[float] = ..., factor_of_bending_y_stiffness: _Optional[float] = ..., factor_of_bending_z_stiffness: _Optional[float] = ..., partial_stiffness_factor_of_shear_y_stiffness: _Optional[float] = ..., partial_stiffness_factor_of_shear_z_stiffness: _Optional[float] = ..., partial_stiffness_factor_of_torsion_stiffness: _Optional[float] = ..., partial_stiffness_factor_of_weight: _Optional[float] = ..., total_stiffness_factor_of_total_stiffness: _Optional[float] = ..., steel_structure_csa_stiffness_factor_of_shear_y_stiffness: _Optional[float] = ..., steel_structure_csa_stiffness_factor_of_shear_z_stiffness: _Optional[float] = ..., steel_structure_csa_stiffness_factor_of_torsion_stiffness: _Optional[float] = ..., steel_structure_csa_factor_of_axial_stiffness_enable: bool = ..., steel_structure_csa_factor_of_bending_y_stiffness_enable: bool = ..., steel_structure_csa_factor_of_bending_z_stiffness_enable: bool = ..., steel_structure_csa_factor_of_shear_y_stiffness_enable: bool = ..., steel_structure_csa_factor_of_shear_z_stiffness_enable: bool = ..., steel_structure_csa_stiffness_factor_of_torsion_stiffness_enable: bool = ..., steel_structure_csa_determine_tau_b: _Optional[_Union[MemberStiffnessModificationSteelStructureCsaDetermineTauB, str]] = ..., steel_structure_gb_direct_method_enabled: bool = ..., steel_structure_determine_tau_b: _Optional[_Union[MemberStiffnessModificationSteelStructureDetermineTauB, str]] = ..., steel_structure_design_method: _Optional[_Union[MemberStiffnessModificationSteelStructureDesignMethod, str]] = ..., concrete_structure_component_type: _Optional[_Union[MemberStiffnessModificationConcreteStructureComponentType, str]] = ..., assigned_to_structure_modification: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,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/types_for_members/member_support.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/types_for_members/member_support.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'\n6dlubal/api/rfem/types_for_members/member_support.proto\x12!dlubal.api.rfem.types_for_members\x1a\x1e\x64lubal/api/common/common.proto\"\x85\x14\n\rMemberSupport\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x0f\n\x07members\x18\x04 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x05 \x03(\x05\x12<\n\x12spring_translation\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x02\x88\x01\x01\x12\x1c\n\x0fspring_rotation\x18\x07 \x01(\x01H\x03\x88\x01\x01\x12!\n\x14spring_translation_x\x18\x08 \x01(\x01H\x04\x88\x01\x01\x12!\n\x14spring_translation_y\x18\t \x01(\x01H\x05\x88\x01\x01\x12\x30\n(minimal_and_maximal_spring_translation_y\x18\n \x03(\x05\x12!\n\x14spring_translation_z\x18\x0b \x01(\x01H\x06\x88\x01\x01\x12\x36\n\x0cspring_shear\x18\x0c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12\x1b\n\x0espring_shear_x\x18\r \x01(\x01H\x08\x88\x01\x01\x12\x1b\n\x0espring_shear_y\x18\x0e \x01(\x01H\t\x88\x01\x01\x12\x1b\n\x0espring_shear_z\x18\x0f \x01(\x01H\n\x88\x01\x01\x12+\n#minimal_and_maximal_spring_rotation\x18\x10 \x03(\x05\x12u\n\x1cnonlinearity_translational_z\x18\x11 \x01(\x0e\x32J.dlubal.api.rfem.types_for_members.MemberSupportNonlinearityTranslationalZH\x0b\x88\x01\x01\x12\'\n\x1asupport_dimensions_enabled\x18\x12 \x01(\x08H\x0c\x88\x01\x01\x12!\n\x14\x65\x63\x63\x65ntricity_enabled\x18\x13 \x01(\x08H\r\x88\x01\x01\x12\x1c\n\x0fsupport_width_y\x18\x14 \x01(\x01H\x0e\x88\x01\x01\x12\x1c\n\x0fsupport_width_z\x18\x15 \x01(\x01H\x0f\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_offset_y\x18\x16 \x01(\x01H\x10\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_offset_z\x18\x17 \x01(\x01H\x11\x88\x01\x01\x12!\n\x14member_shear_panel_z\x18\x18 \x01(\x05H\x12\x88\x01\x01\x12o\n\x19nonlinearity_rotational_x\x18\x19 \x01(\x0e\x32G.dlubal.api.rfem.types_for_members.MemberSupportNonlinearityRotationalXH\x13\x88\x01\x01\x12(\n\x1bmember_rotational_restraint\x18\x1a \x01(\x05H\x14\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1b \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1c \x01(\x08H\x16\x88\x01\x01\x12\x64\n\x13\x65\x63\x63\x65ntricity_center\x18\x1d \x01(\x0e\x32\x42.dlubal.api.rfem.types_for_members.MemberSupportEccentricityCenterH\x17\x88\x01\x01\x12\x7f\n!eccentricity_horizontal_alignment\x18\x1e \x01(\x0e\x32O.dlubal.api.rfem.types_for_members.MemberSupportEccentricityHorizontalAlignmentH\x18\x88\x01\x01\x12{\n\x1f\x65\x63\x63\x65ntricity_vertical_alignment\x18\x1f \x01(\x0e\x32M.dlubal.api.rfem.types_for_members.MemberSupportEccentricityVerticalAlignmentH\x19\x88\x01\x01\x12!\n\x14member_shear_panel_y\x18 \x01(\x05H\x1a\x88\x01\x01\x12\x30\n(minimal_and_maximal_spring_translation_z\x18! \x03(\x05\x12u\n\x1cnonlinearity_translational_y\x18\" \x01(\x0e\x32J.dlubal.api.rfem.types_for_members.MemberSupportNonlinearityTranslationalYH\x1b\x88\x01\x01\x12#\n\x16generating_object_info\x18# \x01(\tH\x1c\x88\x01\x01\x12!\n\x14id_for_export_import\x18$ \x01(\tH\x1d\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18% \x01(\tH\x1e\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x15\n\x13_spring_translationB\x12\n\x10_spring_rotationB\x17\n\x15_spring_translation_xB\x17\n\x15_spring_translation_yB\x17\n\x15_spring_translation_zB\x0f\n\r_spring_shearB\x11\n\x0f_spring_shear_xB\x11\n\x0f_spring_shear_yB\x11\n\x0f_spring_shear_zB\x1f\n\x1d_nonlinearity_translational_zB\x1d\n\x1b_support_dimensions_enabledB\x17\n\x15_eccentricity_enabledB\x12\n\x10_support_width_yB\x12\n\x10_support_width_zB\x18\n\x16_eccentricity_offset_yB\x18\n\x16_eccentricity_offset_zB\x17\n\x15_member_shear_panel_zB\x1c\n\x1a_nonlinearity_rotational_xB\x1e\n\x1c_member_rotational_restraintB\n\n\x08_commentB\x0f\n\r_is_generatedB\x16\n\x14_eccentricity_centerB$\n\"_eccentricity_horizontal_alignmentB\"\n _eccentricity_vertical_alignmentB\x17\n\x15_member_shear_panel_yB\x1f\n\x1d_nonlinearity_translational_yB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xa9\x04\n\'MemberSupportNonlinearityTranslationalZ\x12\x41\n=MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_NONE\x10\x00\x12\x61\n]MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z\x10\x01\x12\x61\n]MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z\x10\x02\x12W\nSMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X\x10\x05\x12M\nIMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Y\x10\x03\x12M\nIMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Z\x10\x04*\x94\x04\n$MemberSupportNonlinearityRotationalX\x12>\n:MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_NONE\x10\x00\x12^\nZMEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z\x10\x01\x12^\nZMEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z\x10\x02\x12T\nPMEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X\x10\x05\x12J\nFMEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Y\x10\x03\x12J\nFMEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Z\x10\x04*\xa8\x01\n\x1fMemberSupportEccentricityCenter\x12\x31\n-MEMBER_SUPPORT_ECCENTRICITY_CENTER_OF_GRAVITY\x10\x00\x12$\n MEMBER_SUPPORT_ECCENTRICITY_NONE\x10\x02\x12,\n(MEMBER_SUPPORT_ECCENTRICITY_SHEAR_CENTER\x10\x01*\x9d\x02\n,MemberSupportEccentricityHorizontalAlignment\x12\x39\n5MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT\x10\x00\x12;\n7MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER\x10\x01\x12\x39\n5MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE\x10\x03\x12:\n6MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT\x10\x02*\x93\x02\n*MemberSupportEccentricityVerticalAlignment\x12\x36\n2MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP\x10\x00\x12\x39\n5MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM\x10\x02\x12\x39\n5MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER\x10\x01\x12\x37\n3MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE\x10\x03*\xa9\x04\n\'MemberSupportNonlinearityTranslationalY\x12\x41\n=MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_NONE\x10\x00\x12\x61\n]MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z\x10\x01\x12\x61\n]MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z\x10\x02\x12W\nSMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X\x10\x05\x12M\nIMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Y\x10\x03\x12M\nIMEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Z\x10\x04\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_support_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_MEMBERSUPPORTNONLINEARITYTRANSLATIONALZ']._serialized_start=2694
|
|
36
|
+
_globals['_MEMBERSUPPORTNONLINEARITYTRANSLATIONALZ']._serialized_end=3247
|
|
37
|
+
_globals['_MEMBERSUPPORTNONLINEARITYROTATIONALX']._serialized_start=3250
|
|
38
|
+
_globals['_MEMBERSUPPORTNONLINEARITYROTATIONALX']._serialized_end=3782
|
|
39
|
+
_globals['_MEMBERSUPPORTECCENTRICITYCENTER']._serialized_start=3785
|
|
40
|
+
_globals['_MEMBERSUPPORTECCENTRICITYCENTER']._serialized_end=3953
|
|
41
|
+
_globals['_MEMBERSUPPORTECCENTRICITYHORIZONTALALIGNMENT']._serialized_start=3956
|
|
42
|
+
_globals['_MEMBERSUPPORTECCENTRICITYHORIZONTALALIGNMENT']._serialized_end=4241
|
|
43
|
+
_globals['_MEMBERSUPPORTECCENTRICITYVERTICALALIGNMENT']._serialized_start=4244
|
|
44
|
+
_globals['_MEMBERSUPPORTECCENTRICITYVERTICALALIGNMENT']._serialized_end=4519
|
|
45
|
+
_globals['_MEMBERSUPPORTNONLINEARITYTRANSLATIONALY']._serialized_start=4522
|
|
46
|
+
_globals['_MEMBERSUPPORTNONLINEARITYTRANSLATIONALY']._serialized_end=5075
|
|
47
|
+
_globals['_MEMBERSUPPORT']._serialized_start=126
|
|
48
|
+
_globals['_MEMBERSUPPORT']._serialized_end=2691
|
|
49
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,162 @@
|
|
|
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 MemberSupportNonlinearityTranslationalZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_NONE: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
13
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
14
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
15
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
16
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Y: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
17
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Z: _ClassVar[MemberSupportNonlinearityTranslationalZ]
|
|
18
|
+
|
|
19
|
+
class MemberSupportNonlinearityRotationalX(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
20
|
+
__slots__ = ()
|
|
21
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_NONE: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
22
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
23
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
24
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
25
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Y: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
26
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Z: _ClassVar[MemberSupportNonlinearityRotationalX]
|
|
27
|
+
|
|
28
|
+
class MemberSupportEccentricityCenter(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
29
|
+
__slots__ = ()
|
|
30
|
+
MEMBER_SUPPORT_ECCENTRICITY_CENTER_OF_GRAVITY: _ClassVar[MemberSupportEccentricityCenter]
|
|
31
|
+
MEMBER_SUPPORT_ECCENTRICITY_NONE: _ClassVar[MemberSupportEccentricityCenter]
|
|
32
|
+
MEMBER_SUPPORT_ECCENTRICITY_SHEAR_CENTER: _ClassVar[MemberSupportEccentricityCenter]
|
|
33
|
+
|
|
34
|
+
class MemberSupportEccentricityHorizontalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: _ClassVar[MemberSupportEccentricityHorizontalAlignment]
|
|
37
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: _ClassVar[MemberSupportEccentricityHorizontalAlignment]
|
|
38
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: _ClassVar[MemberSupportEccentricityHorizontalAlignment]
|
|
39
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: _ClassVar[MemberSupportEccentricityHorizontalAlignment]
|
|
40
|
+
|
|
41
|
+
class MemberSupportEccentricityVerticalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
42
|
+
__slots__ = ()
|
|
43
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: _ClassVar[MemberSupportEccentricityVerticalAlignment]
|
|
44
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: _ClassVar[MemberSupportEccentricityVerticalAlignment]
|
|
45
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: _ClassVar[MemberSupportEccentricityVerticalAlignment]
|
|
46
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: _ClassVar[MemberSupportEccentricityVerticalAlignment]
|
|
47
|
+
|
|
48
|
+
class MemberSupportNonlinearityTranslationalY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
49
|
+
__slots__ = ()
|
|
50
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_NONE: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
51
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
52
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
53
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
54
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Y: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
55
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Z: _ClassVar[MemberSupportNonlinearityTranslationalY]
|
|
56
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_NONE: MemberSupportNonlinearityTranslationalZ
|
|
57
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityTranslationalZ
|
|
58
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityTranslationalZ
|
|
59
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: MemberSupportNonlinearityTranslationalZ
|
|
60
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Y: MemberSupportNonlinearityTranslationalZ
|
|
61
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Z_NONLINEARITY_SHEAR_PANEL_IN_Z: MemberSupportNonlinearityTranslationalZ
|
|
62
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_NONE: MemberSupportNonlinearityRotationalX
|
|
63
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityRotationalX
|
|
64
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityRotationalX
|
|
65
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: MemberSupportNonlinearityRotationalX
|
|
66
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Y: MemberSupportNonlinearityRotationalX
|
|
67
|
+
MEMBER_SUPPORT_NONLINEARITY_ROTATIONAL_X_NONLINEARITY_SHEAR_PANEL_IN_Z: MemberSupportNonlinearityRotationalX
|
|
68
|
+
MEMBER_SUPPORT_ECCENTRICITY_CENTER_OF_GRAVITY: MemberSupportEccentricityCenter
|
|
69
|
+
MEMBER_SUPPORT_ECCENTRICITY_NONE: MemberSupportEccentricityCenter
|
|
70
|
+
MEMBER_SUPPORT_ECCENTRICITY_SHEAR_CENTER: MemberSupportEccentricityCenter
|
|
71
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: MemberSupportEccentricityHorizontalAlignment
|
|
72
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: MemberSupportEccentricityHorizontalAlignment
|
|
73
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: MemberSupportEccentricityHorizontalAlignment
|
|
74
|
+
MEMBER_SUPPORT_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: MemberSupportEccentricityHorizontalAlignment
|
|
75
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: MemberSupportEccentricityVerticalAlignment
|
|
76
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: MemberSupportEccentricityVerticalAlignment
|
|
77
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: MemberSupportEccentricityVerticalAlignment
|
|
78
|
+
MEMBER_SUPPORT_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: MemberSupportEccentricityVerticalAlignment
|
|
79
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_NONE: MemberSupportNonlinearityTranslationalY
|
|
80
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityTranslationalY
|
|
81
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: MemberSupportNonlinearityTranslationalY
|
|
82
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_ROTATION_RESTRAINT_ABOUT_X: MemberSupportNonlinearityTranslationalY
|
|
83
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Y: MemberSupportNonlinearityTranslationalY
|
|
84
|
+
MEMBER_SUPPORT_NONLINEARITY_TRANSLATIONAL_Y_NONLINEARITY_SHEAR_PANEL_IN_Z: MemberSupportNonlinearityTranslationalY
|
|
85
|
+
|
|
86
|
+
class MemberSupport(_message.Message):
|
|
87
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "members", "member_sets", "spring_translation", "spring_rotation", "spring_translation_x", "spring_translation_y", "minimal_and_maximal_spring_translation_y", "spring_translation_z", "spring_shear", "spring_shear_x", "spring_shear_y", "spring_shear_z", "minimal_and_maximal_spring_rotation", "nonlinearity_translational_z", "support_dimensions_enabled", "eccentricity_enabled", "support_width_y", "support_width_z", "eccentricity_offset_y", "eccentricity_offset_z", "member_shear_panel_z", "nonlinearity_rotational_x", "member_rotational_restraint", "comment", "is_generated", "eccentricity_center", "eccentricity_horizontal_alignment", "eccentricity_vertical_alignment", "member_shear_panel_y", "minimal_and_maximal_spring_translation_z", "nonlinearity_translational_y", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
88
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
SPRING_TRANSLATION_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
SPRING_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
SPRING_TRANSLATION_X_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
SPRING_TRANSLATION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
MINIMAL_AND_MAXIMAL_SPRING_TRANSLATION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
SPRING_TRANSLATION_Z_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
SPRING_SHEAR_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
SPRING_SHEAR_X_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
SPRING_SHEAR_Y_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
SPRING_SHEAR_Z_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
MINIMAL_AND_MAXIMAL_SPRING_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
NONLINEARITY_TRANSLATIONAL_Z_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
SUPPORT_DIMENSIONS_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
ECCENTRICITY_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
SUPPORT_WIDTH_Y_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
SUPPORT_WIDTH_Z_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
ECCENTRICITY_OFFSET_Y_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
ECCENTRICITY_OFFSET_Z_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
MEMBER_SHEAR_PANEL_Z_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
NONLINEARITY_ROTATIONAL_X_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
MEMBER_ROTATIONAL_RESTRAINT_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
ECCENTRICITY_CENTER_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
ECCENTRICITY_HORIZONTAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
ECCENTRICITY_VERTICAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
MEMBER_SHEAR_PANEL_Y_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
MINIMAL_AND_MAXIMAL_SPRING_TRANSLATION_Z_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
NONLINEARITY_TRANSLATIONAL_Y_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
no: int
|
|
126
|
+
user_defined_name_enabled: bool
|
|
127
|
+
name: str
|
|
128
|
+
members: _containers.RepeatedScalarFieldContainer[int]
|
|
129
|
+
member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
130
|
+
spring_translation: _common_pb2.Vector3d
|
|
131
|
+
spring_rotation: float
|
|
132
|
+
spring_translation_x: float
|
|
133
|
+
spring_translation_y: float
|
|
134
|
+
minimal_and_maximal_spring_translation_y: _containers.RepeatedScalarFieldContainer[int]
|
|
135
|
+
spring_translation_z: float
|
|
136
|
+
spring_shear: _common_pb2.Vector3d
|
|
137
|
+
spring_shear_x: float
|
|
138
|
+
spring_shear_y: float
|
|
139
|
+
spring_shear_z: float
|
|
140
|
+
minimal_and_maximal_spring_rotation: _containers.RepeatedScalarFieldContainer[int]
|
|
141
|
+
nonlinearity_translational_z: MemberSupportNonlinearityTranslationalZ
|
|
142
|
+
support_dimensions_enabled: bool
|
|
143
|
+
eccentricity_enabled: bool
|
|
144
|
+
support_width_y: float
|
|
145
|
+
support_width_z: float
|
|
146
|
+
eccentricity_offset_y: float
|
|
147
|
+
eccentricity_offset_z: float
|
|
148
|
+
member_shear_panel_z: int
|
|
149
|
+
nonlinearity_rotational_x: MemberSupportNonlinearityRotationalX
|
|
150
|
+
member_rotational_restraint: int
|
|
151
|
+
comment: str
|
|
152
|
+
is_generated: bool
|
|
153
|
+
eccentricity_center: MemberSupportEccentricityCenter
|
|
154
|
+
eccentricity_horizontal_alignment: MemberSupportEccentricityHorizontalAlignment
|
|
155
|
+
eccentricity_vertical_alignment: MemberSupportEccentricityVerticalAlignment
|
|
156
|
+
member_shear_panel_y: int
|
|
157
|
+
minimal_and_maximal_spring_translation_z: _containers.RepeatedScalarFieldContainer[int]
|
|
158
|
+
nonlinearity_translational_y: MemberSupportNonlinearityTranslationalY
|
|
159
|
+
generating_object_info: str
|
|
160
|
+
id_for_export_import: str
|
|
161
|
+
metadata_for_export_import: str
|
|
162
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., member_sets: _Optional[_Iterable[int]] = ..., spring_translation: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., spring_rotation: _Optional[float] = ..., spring_translation_x: _Optional[float] = ..., spring_translation_y: _Optional[float] = ..., minimal_and_maximal_spring_translation_y: _Optional[_Iterable[int]] = ..., spring_translation_z: _Optional[float] = ..., spring_shear: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., spring_shear_x: _Optional[float] = ..., spring_shear_y: _Optional[float] = ..., spring_shear_z: _Optional[float] = ..., minimal_and_maximal_spring_rotation: _Optional[_Iterable[int]] = ..., nonlinearity_translational_z: _Optional[_Union[MemberSupportNonlinearityTranslationalZ, str]] = ..., support_dimensions_enabled: bool = ..., eccentricity_enabled: bool = ..., support_width_y: _Optional[float] = ..., support_width_z: _Optional[float] = ..., eccentricity_offset_y: _Optional[float] = ..., eccentricity_offset_z: _Optional[float] = ..., member_shear_panel_z: _Optional[int] = ..., nonlinearity_rotational_x: _Optional[_Union[MemberSupportNonlinearityRotationalX, str]] = ..., member_rotational_restraint: _Optional[int] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., eccentricity_center: _Optional[_Union[MemberSupportEccentricityCenter, str]] = ..., eccentricity_horizontal_alignment: _Optional[_Union[MemberSupportEccentricityHorizontalAlignment, str]] = ..., eccentricity_vertical_alignment: _Optional[_Union[MemberSupportEccentricityVerticalAlignment, str]] = ..., member_shear_panel_y: _Optional[int] = ..., minimal_and_maximal_spring_translation_z: _Optional[_Iterable[int]] = ..., nonlinearity_translational_y: _Optional[_Union[MemberSupportNonlinearityTranslationalY, str]] = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,38 @@
|
|
|
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/types_for_members/member_transverse_stiffener.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/types_for_members/member_transverse_stiffener.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'\nCdlubal/api/rfem/types_for_members/member_transverse_stiffener.proto\x12!dlubal.api.rfem.types_for_members\"\xb8\x04\n\x19MemberTransverseStiffener\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x0f\n\x07members\x18\x04 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x05 \x03(\x05\x12\x66\n\ncomponents\x18\x06 \x01(\x0b\x32M.dlubal.api.rfem.types_for_members.ArrayOfMemberTransverseStiffenerComponentsH\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x08 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\t \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0b \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_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*ArrayOfMemberTransverseStiffenerComponentsb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_transverse_stiffener_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_MEMBERTRANSVERSESTIFFENER']._serialized_start=107
|
|
35
|
+
_globals['_MEMBERTRANSVERSESTIFFENER']._serialized_end=675
|
|
36
|
+
_globals['_ARRAYOFMEMBERTRANSVERSESTIFFENERCOMPONENTS']._serialized_start=677
|
|
37
|
+
_globals['_ARRAYOFMEMBERTRANSVERSESTIFFENERCOMPONENTS']._serialized_end=721
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|