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,69 @@
|
|
|
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_special_objects/surface_release_type.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_special_objects/surface_release_type.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'\nDdlubal/api/rfem/types_for_special_objects/surface_release_type.proto\x12)dlubal.api.rfem.types_for_special_objects\x1a\x1e\x64lubal/api/common/common.proto\"\x94,\n\x12SurfaceReleaseType\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\x18\n\x10surface_releases\x18\x04 \x03(\x05\x12&\n\x19translational_release_u_x\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12&\n\x19translational_release_u_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12&\n\x19translational_release_u_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\x19\n\x0cis_generated\x18\t \x01(\x08H\x06\x88\x01\x01\x12#\n\x16generating_object_info\x18\n \x01(\tH\x07\x88\x01\x01\x12u\n\x16local_axis_system_type\x18\x0b \x01(\x0e\x32P.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeLocalAxisSystemTypeH\x08\x88\x01\x01\x12\x94\x01\n&translational_release_u_x_nonlinearity\x18\x0c \x01(\x0e\x32_.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeTranslationalReleaseUXNonlinearityH\t\x88\x01\x01\x12\x94\x01\n&translational_release_u_y_nonlinearity\x18\r \x01(\x0e\x32_.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeTranslationalReleaseUYNonlinearityH\n\x88\x01\x01\x12\x94\x01\n&translational_release_u_z_nonlinearity\x18\x0e \x01(\x0e\x32_.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeTranslationalReleaseUZNonlinearityH\x0b\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18\x10 \x01(\x08H\r\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18\x11 \x01(\x08H\x0e\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18\x13 \x01(\x08H\x10\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12z\n\x15\x64iagram_along_x_table\x18\x15 \x01(\x0b\x32V.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongXTableH\x12\x88\x01\x01\x12z\n\x15\x64iagram_along_y_table\x18\x16 \x01(\x0b\x32V.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongYTableH\x13\x88\x01\x01\x12z\n\x15\x64iagram_along_z_table\x18\x17 \x01(\x0b\x32V.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongZTableH\x14\x88\x01\x01\x12s\n\x15\x64iagram_along_x_start\x18\x18 \x01(\x0e\x32O.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongXStartH\x15\x88\x01\x01\x12s\n\x15\x64iagram_along_y_start\x18\x19 \x01(\x0e\x32O.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongYStartH\x16\x88\x01\x01\x12s\n\x15\x64iagram_along_z_start\x18\x1a \x01(\x0e\x32O.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongZStartH\x17\x88\x01\x01\x12o\n\x13\x64iagram_along_x_end\x18\x1b \x01(\x0e\x32M.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongXEndH\x18\x88\x01\x01\x12o\n\x13\x64iagram_along_y_end\x18\x1c \x01(\x0e\x32M.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongYEndH\x19\x88\x01\x01\x12o\n\x13\x64iagram_along_z_end\x18\x1d \x01(\x0e\x32M.dlubal.api.rfem.types_for_special_objects.SurfaceReleaseTypeDiagramAlongZEndH\x1a\x88\x01\x01\x12+\n\x1e\x64iagram_along_x_ac_yield_minus\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12+\n\x1e\x64iagram_along_y_ac_yield_minus\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12+\n\x1e\x64iagram_along_z_ac_yield_minus\x18 \x01(\x01H\x1d\x88\x01\x01\x12*\n\x1d\x64iagram_along_x_ac_yield_plus\x18! \x01(\x01H\x1e\x88\x01\x01\x12*\n\x1d\x64iagram_along_y_ac_yield_plus\x18\" \x01(\x01H\x1f\x88\x01\x01\x12*\n\x1d\x64iagram_along_z_ac_yield_plus\x18# \x01(\x01H \x88\x01\x01\x12\x37\n*diagram_along_x_acceptance_criteria_active\x18$ \x01(\x08H!\x88\x01\x01\x12\x37\n*diagram_along_y_acceptance_criteria_active\x18% \x01(\x08H\"\x88\x01\x01\x12\x37\n*diagram_along_z_acceptance_criteria_active\x18& \x01(\x08H#\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_one\x18\' \x01(\x0b\x32\x18.dlubal.api.common.ColorH$\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_one\x18( \x01(\x0b\x32\x18.dlubal.api.common.ColorH%\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_one\x18) \x01(\x0b\x32\x18.dlubal.api.common.ColorH&\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_two\x18* \x01(\x0b\x32\x18.dlubal.api.common.ColorH\'\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_two\x18+ \x01(\x0b\x32\x18.dlubal.api.common.ColorH(\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_two\x18, \x01(\x0b\x32\x18.dlubal.api.common.ColorH)\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_one\x18- \x01(\x0b\x32\x18.dlubal.api.common.ColorH*\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_one\x18. \x01(\x0b\x32\x18.dlubal.api.common.ColorH+\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_one\x18/ \x01(\x0b\x32\x18.dlubal.api.common.ColorH,\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_two\x18\x30 \x01(\x0b\x32\x18.dlubal.api.common.ColorH-\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_two\x18\x31 \x01(\x0b\x32\x18.dlubal.api.common.ColorH.\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_two\x18\x32 \x01(\x0b\x32\x18.dlubal.api.common.ColorH/\x88\x01\x01\x12\x85\x01\n\x1b\x64iagram_along_x_color_table\x18\x33 \x01(\x0b\x32[.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongXColorTableH0\x88\x01\x01\x12\x85\x01\n\x1b\x64iagram_along_y_color_table\x18\x34 \x01(\x0b\x32[.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongYColorTableH1\x88\x01\x01\x12\x85\x01\n\x1b\x64iagram_along_z_color_table\x18\x35 \x01(\x0b\x32[.dlubal.api.rfem.types_for_special_objects.ArrayOfSurfaceReleaseTypeDiagramAlongZColorTableH2\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x36 \x01(\tH3\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x37 \x01(\tH4\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_translational_release_u_xB\x1c\n\x1a_translational_release_u_yB\x1c\n\x1a_translational_release_u_zB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x19\n\x17_local_axis_system_typeB)\n\'_translational_release_u_x_nonlinearityB)\n\'_translational_release_u_y_nonlinearityB)\n\'_translational_release_u_z_nonlinearityB\x1c\n\x1a_diagram_along_x_symmetricB\x1c\n\x1a_diagram_along_y_symmetricB\x1c\n\x1a_diagram_along_z_symmetricB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_z_is_sortedB\x18\n\x16_diagram_along_x_tableB\x18\n\x16_diagram_along_y_tableB\x18\n\x16_diagram_along_z_tableB\x18\n\x16_diagram_along_x_startB\x18\n\x16_diagram_along_y_startB\x18\n\x16_diagram_along_z_startB\x16\n\x14_diagram_along_x_endB\x16\n\x14_diagram_along_y_endB\x16\n\x14_diagram_along_z_endB!\n\x1f_diagram_along_x_ac_yield_minusB!\n\x1f_diagram_along_y_ac_yield_minusB!\n\x1f_diagram_along_z_ac_yield_minusB \n\x1e_diagram_along_x_ac_yield_plusB \n\x1e_diagram_along_y_ac_yield_plusB \n\x1e_diagram_along_z_ac_yield_plusB-\n+_diagram_along_x_acceptance_criteria_activeB-\n+_diagram_along_y_acceptance_criteria_activeB-\n+_diagram_along_z_acceptance_criteria_activeB\"\n _diagram_along_x_minus_color_oneB\"\n _diagram_along_y_minus_color_oneB\"\n _diagram_along_z_minus_color_oneB\"\n _diagram_along_x_minus_color_twoB\"\n _diagram_along_y_minus_color_twoB\"\n _diagram_along_z_minus_color_twoB!\n\x1f_diagram_along_x_plus_color_oneB!\n\x1f_diagram_along_y_plus_color_oneB!\n\x1f_diagram_along_z_plus_color_oneB!\n\x1f_diagram_along_x_plus_color_twoB!\n\x1f_diagram_along_y_plus_color_twoB!\n\x1f_diagram_along_z_plus_color_twoB\x1e\n\x1c_diagram_along_x_color_tableB\x1e\n\x1c_diagram_along_y_color_tableB\x1e\n\x1c_diagram_along_z_color_tableB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"-\n+ArrayOfSurfaceReleaseTypeDiagramAlongXTable\"-\n+ArrayOfSurfaceReleaseTypeDiagramAlongYTable\"-\n+ArrayOfSurfaceReleaseTypeDiagramAlongZTable\"2\n0ArrayOfSurfaceReleaseTypeDiagramAlongXColorTable\"2\n0ArrayOfSurfaceReleaseTypeDiagramAlongYColorTable\"2\n0ArrayOfSurfaceReleaseTypeDiagramAlongZColorTable*\xbf\x01\n%SurfaceReleaseTypeLocalAxisSystemType\x12H\nDSURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_SAME_AS_ORIGINAL_SURFACE\x10\x00\x12L\nHSURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_REVERSED_TO_ORIGINAL_SURFACE\x10\x01*\xbe\t\n4SurfaceReleaseTypeTranslationalReleaseUXNonlinearity\x12I\nESURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_NONE\x10\x00\x12L\nHSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12[\nWSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12`\n\\SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12U\nQSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12V\nRSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xbe\t\n4SurfaceReleaseTypeTranslationalReleaseUYNonlinearity\x12I\nESURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12L\nHSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12[\nWSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12`\n\\SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12U\nQSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12V\nRSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xbe\t\n4SurfaceReleaseTypeTranslationalReleaseUZNonlinearity\x12I\nESURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12L\nHSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\\\nXSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12X\nTSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12[\nWSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12`\n\\SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12Y\nUSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12U\nQSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12V\nRSURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xd7\x02\n$SurfaceReleaseTypeDiagramAlongXStart\x12J\nFSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12M\nISURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12G\nCSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xd7\x02\n$SurfaceReleaseTypeDiagramAlongYStart\x12J\nFSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12M\nISURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12G\nCSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xd7\x02\n$SurfaceReleaseTypeDiagramAlongZStart\x12J\nFSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12M\nISURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12G\nCSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xcd\x02\n\"SurfaceReleaseTypeDiagramAlongXEnd\x12H\nDSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x45\nASURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12I\nESURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xcd\x02\n\"SurfaceReleaseTypeDiagramAlongYEnd\x12H\nDSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x45\nASURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12I\nESURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xcd\x02\n\"SurfaceReleaseTypeDiagramAlongZEnd\x12H\nDSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12K\nGSURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x45\nASURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12I\nESURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_special_objects.surface_release_type_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SURFACERELEASETYPELOCALAXISSYSTEMTYPE']._serialized_start=6100
|
|
36
|
+
_globals['_SURFACERELEASETYPELOCALAXISSYSTEMTYPE']._serialized_end=6291
|
|
37
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_start=6294
|
|
38
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_end=7508
|
|
39
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_start=7511
|
|
40
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_end=8725
|
|
41
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_start=8728
|
|
42
|
+
_globals['_SURFACERELEASETYPETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_end=9942
|
|
43
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGXSTART']._serialized_start=9945
|
|
44
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGXSTART']._serialized_end=10288
|
|
45
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGYSTART']._serialized_start=10291
|
|
46
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGYSTART']._serialized_end=10634
|
|
47
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGZSTART']._serialized_start=10637
|
|
48
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGZSTART']._serialized_end=10980
|
|
49
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGXEND']._serialized_start=10983
|
|
50
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGXEND']._serialized_end=11316
|
|
51
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGYEND']._serialized_start=11319
|
|
52
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGYEND']._serialized_end=11652
|
|
53
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGZEND']._serialized_start=11655
|
|
54
|
+
_globals['_SURFACERELEASETYPEDIAGRAMALONGZEND']._serialized_end=11988
|
|
55
|
+
_globals['_SURFACERELEASETYPE']._serialized_start=148
|
|
56
|
+
_globals['_SURFACERELEASETYPE']._serialized_end=5800
|
|
57
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGXTABLE']._serialized_start=5802
|
|
58
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGXTABLE']._serialized_end=5847
|
|
59
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGYTABLE']._serialized_start=5849
|
|
60
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGYTABLE']._serialized_end=5894
|
|
61
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGZTABLE']._serialized_start=5896
|
|
62
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGZTABLE']._serialized_end=5941
|
|
63
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGXCOLORTABLE']._serialized_start=5943
|
|
64
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGXCOLORTABLE']._serialized_end=5993
|
|
65
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGYCOLORTABLE']._serialized_start=5995
|
|
66
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGYCOLORTABLE']._serialized_end=6045
|
|
67
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGZCOLORTABLE']._serialized_start=6047
|
|
68
|
+
_globals['_ARRAYOFSURFACERELEASETYPEDIAGRAMALONGZCOLORTABLE']._serialized_end=6097
|
|
69
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,306 @@
|
|
|
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 SurfaceReleaseTypeLocalAxisSystemType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_SAME_AS_ORIGINAL_SURFACE: _ClassVar[SurfaceReleaseTypeLocalAxisSystemType]
|
|
13
|
+
SURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_REVERSED_TO_ORIGINAL_SURFACE: _ClassVar[SurfaceReleaseTypeLocalAxisSystemType]
|
|
14
|
+
|
|
15
|
+
class SurfaceReleaseTypeTranslationalReleaseUXNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_NONE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
18
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
19
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
20
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
21
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
22
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
23
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
24
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
25
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
26
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
27
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
28
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
29
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity]
|
|
30
|
+
|
|
31
|
+
class SurfaceReleaseTypeTranslationalReleaseUYNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
32
|
+
__slots__ = ()
|
|
33
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_NONE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
34
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
35
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
36
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
37
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
38
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
39
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
40
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
41
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
42
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
43
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
44
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
45
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity]
|
|
46
|
+
|
|
47
|
+
class SurfaceReleaseTypeTranslationalReleaseUZNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
48
|
+
__slots__ = ()
|
|
49
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_NONE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
50
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
51
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
52
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
53
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
54
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
55
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
56
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
57
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
58
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
59
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
60
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
61
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity]
|
|
62
|
+
|
|
63
|
+
class SurfaceReleaseTypeDiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
64
|
+
__slots__ = ()
|
|
65
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongXStart]
|
|
66
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongXStart]
|
|
67
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongXStart]
|
|
68
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongXStart]
|
|
69
|
+
|
|
70
|
+
class SurfaceReleaseTypeDiagramAlongYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
71
|
+
__slots__ = ()
|
|
72
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongYStart]
|
|
73
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongYStart]
|
|
74
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongYStart]
|
|
75
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongYStart]
|
|
76
|
+
|
|
77
|
+
class SurfaceReleaseTypeDiagramAlongZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
78
|
+
__slots__ = ()
|
|
79
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongZStart]
|
|
80
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongZStart]
|
|
81
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongZStart]
|
|
82
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongZStart]
|
|
83
|
+
|
|
84
|
+
class SurfaceReleaseTypeDiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
85
|
+
__slots__ = ()
|
|
86
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongXEnd]
|
|
87
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongXEnd]
|
|
88
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongXEnd]
|
|
89
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongXEnd]
|
|
90
|
+
|
|
91
|
+
class SurfaceReleaseTypeDiagramAlongYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
92
|
+
__slots__ = ()
|
|
93
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongYEnd]
|
|
94
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongYEnd]
|
|
95
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongYEnd]
|
|
96
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongYEnd]
|
|
97
|
+
|
|
98
|
+
class SurfaceReleaseTypeDiagramAlongZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
99
|
+
__slots__ = ()
|
|
100
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[SurfaceReleaseTypeDiagramAlongZEnd]
|
|
101
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[SurfaceReleaseTypeDiagramAlongZEnd]
|
|
102
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[SurfaceReleaseTypeDiagramAlongZEnd]
|
|
103
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[SurfaceReleaseTypeDiagramAlongZEnd]
|
|
104
|
+
SURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_SAME_AS_ORIGINAL_SURFACE: SurfaceReleaseTypeLocalAxisSystemType
|
|
105
|
+
SURFACE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_TYPE_REVERSED_TO_ORIGINAL_SURFACE: SurfaceReleaseTypeLocalAxisSystemType
|
|
106
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_NONE: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
107
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
108
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
109
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
110
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
111
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
112
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
113
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
114
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
115
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
116
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
117
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
118
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
119
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_NONE: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
120
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
121
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
122
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
123
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
124
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
125
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
126
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
127
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
128
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
129
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
130
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
131
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
132
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_NONE: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
133
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
134
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
135
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
136
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
137
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
138
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
139
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
140
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
141
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
142
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
143
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
144
|
+
SURFACE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
145
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongXStart
|
|
146
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongXStart
|
|
147
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongXStart
|
|
148
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongXStart
|
|
149
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongYStart
|
|
150
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongYStart
|
|
151
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongYStart
|
|
152
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongYStart
|
|
153
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongZStart
|
|
154
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongZStart
|
|
155
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongZStart
|
|
156
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongZStart
|
|
157
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongXEnd
|
|
158
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongXEnd
|
|
159
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongXEnd
|
|
160
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongXEnd
|
|
161
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongYEnd
|
|
162
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongYEnd
|
|
163
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongYEnd
|
|
164
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongYEnd
|
|
165
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: SurfaceReleaseTypeDiagramAlongZEnd
|
|
166
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: SurfaceReleaseTypeDiagramAlongZEnd
|
|
167
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: SurfaceReleaseTypeDiagramAlongZEnd
|
|
168
|
+
SURFACE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: SurfaceReleaseTypeDiagramAlongZEnd
|
|
169
|
+
|
|
170
|
+
class SurfaceReleaseType(_message.Message):
|
|
171
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "surface_releases", "translational_release_u_x", "translational_release_u_y", "translational_release_u_z", "comment", "is_generated", "generating_object_info", "local_axis_system_type", "translational_release_u_x_nonlinearity", "translational_release_u_y_nonlinearity", "translational_release_u_z_nonlinearity", "diagram_along_x_symmetric", "diagram_along_y_symmetric", "diagram_along_z_symmetric", "diagram_along_x_is_sorted", "diagram_along_y_is_sorted", "diagram_along_z_is_sorted", "diagram_along_x_table", "diagram_along_y_table", "diagram_along_z_table", "diagram_along_x_start", "diagram_along_y_start", "diagram_along_z_start", "diagram_along_x_end", "diagram_along_y_end", "diagram_along_z_end", "diagram_along_x_ac_yield_minus", "diagram_along_y_ac_yield_minus", "diagram_along_z_ac_yield_minus", "diagram_along_x_ac_yield_plus", "diagram_along_y_ac_yield_plus", "diagram_along_z_ac_yield_plus", "diagram_along_x_acceptance_criteria_active", "diagram_along_y_acceptance_criteria_active", "diagram_along_z_acceptance_criteria_active", "diagram_along_x_minus_color_one", "diagram_along_y_minus_color_one", "diagram_along_z_minus_color_one", "diagram_along_x_minus_color_two", "diagram_along_y_minus_color_two", "diagram_along_z_minus_color_two", "diagram_along_x_plus_color_one", "diagram_along_y_plus_color_one", "diagram_along_z_plus_color_one", "diagram_along_x_plus_color_two", "diagram_along_y_plus_color_two", "diagram_along_z_plus_color_two", "diagram_along_x_color_table", "diagram_along_y_color_table", "diagram_along_z_color_table", "id_for_export_import", "metadata_for_export_import")
|
|
172
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
SURFACE_RELEASES_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
TRANSLATIONAL_RELEASE_U_X_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
+
TRANSLATIONAL_RELEASE_U_Y_FIELD_NUMBER: _ClassVar[int]
|
|
178
|
+
TRANSLATIONAL_RELEASE_U_Z_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
LOCAL_AXIS_SYSTEM_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
186
|
+
DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
187
|
+
DIAGRAM_ALONG_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
188
|
+
DIAGRAM_ALONG_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
189
|
+
DIAGRAM_ALONG_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
190
|
+
DIAGRAM_ALONG_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
191
|
+
DIAGRAM_ALONG_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
195
|
+
DIAGRAM_ALONG_X_START_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
+
DIAGRAM_ALONG_Y_START_FIELD_NUMBER: _ClassVar[int]
|
|
197
|
+
DIAGRAM_ALONG_Z_START_FIELD_NUMBER: _ClassVar[int]
|
|
198
|
+
DIAGRAM_ALONG_X_END_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
DIAGRAM_ALONG_Y_END_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
DIAGRAM_ALONG_Z_END_FIELD_NUMBER: _ClassVar[int]
|
|
201
|
+
DIAGRAM_ALONG_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
DIAGRAM_ALONG_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
+
DIAGRAM_ALONG_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
204
|
+
DIAGRAM_ALONG_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
205
|
+
DIAGRAM_ALONG_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
DIAGRAM_ALONG_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
DIAGRAM_ALONG_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
DIAGRAM_ALONG_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
DIAGRAM_ALONG_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
210
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
211
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
212
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
213
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
214
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
215
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
216
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
217
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
218
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
220
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
221
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
222
|
+
DIAGRAM_ALONG_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
223
|
+
DIAGRAM_ALONG_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
224
|
+
DIAGRAM_ALONG_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
225
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
226
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
227
|
+
no: int
|
|
228
|
+
user_defined_name_enabled: bool
|
|
229
|
+
name: str
|
|
230
|
+
surface_releases: _containers.RepeatedScalarFieldContainer[int]
|
|
231
|
+
translational_release_u_x: float
|
|
232
|
+
translational_release_u_y: float
|
|
233
|
+
translational_release_u_z: float
|
|
234
|
+
comment: str
|
|
235
|
+
is_generated: bool
|
|
236
|
+
generating_object_info: str
|
|
237
|
+
local_axis_system_type: SurfaceReleaseTypeLocalAxisSystemType
|
|
238
|
+
translational_release_u_x_nonlinearity: SurfaceReleaseTypeTranslationalReleaseUXNonlinearity
|
|
239
|
+
translational_release_u_y_nonlinearity: SurfaceReleaseTypeTranslationalReleaseUYNonlinearity
|
|
240
|
+
translational_release_u_z_nonlinearity: SurfaceReleaseTypeTranslationalReleaseUZNonlinearity
|
|
241
|
+
diagram_along_x_symmetric: bool
|
|
242
|
+
diagram_along_y_symmetric: bool
|
|
243
|
+
diagram_along_z_symmetric: bool
|
|
244
|
+
diagram_along_x_is_sorted: bool
|
|
245
|
+
diagram_along_y_is_sorted: bool
|
|
246
|
+
diagram_along_z_is_sorted: bool
|
|
247
|
+
diagram_along_x_table: ArrayOfSurfaceReleaseTypeDiagramAlongXTable
|
|
248
|
+
diagram_along_y_table: ArrayOfSurfaceReleaseTypeDiagramAlongYTable
|
|
249
|
+
diagram_along_z_table: ArrayOfSurfaceReleaseTypeDiagramAlongZTable
|
|
250
|
+
diagram_along_x_start: SurfaceReleaseTypeDiagramAlongXStart
|
|
251
|
+
diagram_along_y_start: SurfaceReleaseTypeDiagramAlongYStart
|
|
252
|
+
diagram_along_z_start: SurfaceReleaseTypeDiagramAlongZStart
|
|
253
|
+
diagram_along_x_end: SurfaceReleaseTypeDiagramAlongXEnd
|
|
254
|
+
diagram_along_y_end: SurfaceReleaseTypeDiagramAlongYEnd
|
|
255
|
+
diagram_along_z_end: SurfaceReleaseTypeDiagramAlongZEnd
|
|
256
|
+
diagram_along_x_ac_yield_minus: float
|
|
257
|
+
diagram_along_y_ac_yield_minus: float
|
|
258
|
+
diagram_along_z_ac_yield_minus: float
|
|
259
|
+
diagram_along_x_ac_yield_plus: float
|
|
260
|
+
diagram_along_y_ac_yield_plus: float
|
|
261
|
+
diagram_along_z_ac_yield_plus: float
|
|
262
|
+
diagram_along_x_acceptance_criteria_active: bool
|
|
263
|
+
diagram_along_y_acceptance_criteria_active: bool
|
|
264
|
+
diagram_along_z_acceptance_criteria_active: bool
|
|
265
|
+
diagram_along_x_minus_color_one: _common_pb2.Color
|
|
266
|
+
diagram_along_y_minus_color_one: _common_pb2.Color
|
|
267
|
+
diagram_along_z_minus_color_one: _common_pb2.Color
|
|
268
|
+
diagram_along_x_minus_color_two: _common_pb2.Color
|
|
269
|
+
diagram_along_y_minus_color_two: _common_pb2.Color
|
|
270
|
+
diagram_along_z_minus_color_two: _common_pb2.Color
|
|
271
|
+
diagram_along_x_plus_color_one: _common_pb2.Color
|
|
272
|
+
diagram_along_y_plus_color_one: _common_pb2.Color
|
|
273
|
+
diagram_along_z_plus_color_one: _common_pb2.Color
|
|
274
|
+
diagram_along_x_plus_color_two: _common_pb2.Color
|
|
275
|
+
diagram_along_y_plus_color_two: _common_pb2.Color
|
|
276
|
+
diagram_along_z_plus_color_two: _common_pb2.Color
|
|
277
|
+
diagram_along_x_color_table: ArrayOfSurfaceReleaseTypeDiagramAlongXColorTable
|
|
278
|
+
diagram_along_y_color_table: ArrayOfSurfaceReleaseTypeDiagramAlongYColorTable
|
|
279
|
+
diagram_along_z_color_table: ArrayOfSurfaceReleaseTypeDiagramAlongZColorTable
|
|
280
|
+
id_for_export_import: str
|
|
281
|
+
metadata_for_export_import: str
|
|
282
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., surface_releases: _Optional[_Iterable[int]] = ..., translational_release_u_x: _Optional[float] = ..., translational_release_u_y: _Optional[float] = ..., translational_release_u_z: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., local_axis_system_type: _Optional[_Union[SurfaceReleaseTypeLocalAxisSystemType, str]] = ..., translational_release_u_x_nonlinearity: _Optional[_Union[SurfaceReleaseTypeTranslationalReleaseUXNonlinearity, str]] = ..., translational_release_u_y_nonlinearity: _Optional[_Union[SurfaceReleaseTypeTranslationalReleaseUYNonlinearity, str]] = ..., translational_release_u_z_nonlinearity: _Optional[_Union[SurfaceReleaseTypeTranslationalReleaseUZNonlinearity, str]] = ..., diagram_along_x_symmetric: bool = ..., diagram_along_y_symmetric: bool = ..., diagram_along_z_symmetric: bool = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_y_is_sorted: bool = ..., diagram_along_z_is_sorted: bool = ..., diagram_along_x_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongXTable, _Mapping]] = ..., diagram_along_y_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongYTable, _Mapping]] = ..., diagram_along_z_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongZTable, _Mapping]] = ..., diagram_along_x_start: _Optional[_Union[SurfaceReleaseTypeDiagramAlongXStart, str]] = ..., diagram_along_y_start: _Optional[_Union[SurfaceReleaseTypeDiagramAlongYStart, str]] = ..., diagram_along_z_start: _Optional[_Union[SurfaceReleaseTypeDiagramAlongZStart, str]] = ..., diagram_along_x_end: _Optional[_Union[SurfaceReleaseTypeDiagramAlongXEnd, str]] = ..., diagram_along_y_end: _Optional[_Union[SurfaceReleaseTypeDiagramAlongYEnd, str]] = ..., diagram_along_z_end: _Optional[_Union[SurfaceReleaseTypeDiagramAlongZEnd, str]] = ..., diagram_along_x_ac_yield_minus: _Optional[float] = ..., diagram_along_y_ac_yield_minus: _Optional[float] = ..., diagram_along_z_ac_yield_minus: _Optional[float] = ..., diagram_along_x_ac_yield_plus: _Optional[float] = ..., diagram_along_y_ac_yield_plus: _Optional[float] = ..., diagram_along_z_ac_yield_plus: _Optional[float] = ..., diagram_along_x_acceptance_criteria_active: bool = ..., diagram_along_y_acceptance_criteria_active: bool = ..., diagram_along_z_acceptance_criteria_active: bool = ..., diagram_along_x_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_color_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongXColorTable, _Mapping]] = ..., diagram_along_y_color_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongYColorTable, _Mapping]] = ..., diagram_along_z_color_table: _Optional[_Union[ArrayOfSurfaceReleaseTypeDiagramAlongZColorTable, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
283
|
+
|
|
284
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongXTable(_message.Message):
|
|
285
|
+
__slots__ = ()
|
|
286
|
+
def __init__(self) -> None: ...
|
|
287
|
+
|
|
288
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongYTable(_message.Message):
|
|
289
|
+
__slots__ = ()
|
|
290
|
+
def __init__(self) -> None: ...
|
|
291
|
+
|
|
292
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongZTable(_message.Message):
|
|
293
|
+
__slots__ = ()
|
|
294
|
+
def __init__(self) -> None: ...
|
|
295
|
+
|
|
296
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongXColorTable(_message.Message):
|
|
297
|
+
__slots__ = ()
|
|
298
|
+
def __init__(self) -> None: ...
|
|
299
|
+
|
|
300
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongYColorTable(_message.Message):
|
|
301
|
+
__slots__ = ()
|
|
302
|
+
def __init__(self) -> None: ...
|
|
303
|
+
|
|
304
|
+
class ArrayOfSurfaceReleaseTypeDiagramAlongZColorTable(_message.Message):
|
|
305
|
+
__slots__ = ()
|
|
306
|
+
def __init__(self) -> 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/types_for_special_objects/surfaces_contact_type.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_special_objects/surfaces_contact_type.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_special_objects/surfaces_contact_type.proto\x12)dlubal.api.rfem.types_for_special_objects\"\xd9\n\n\x13SurfacesContactType\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\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x19\n\x11surfaces_contacts\x18\x05 \x03(\x05\x12{\n\x18perpendicular_to_surface\x18\x06 \x01(\x0e\x32T.dlubal.api.rfem.types_for_special_objects.SurfacesContactTypePerpendicularToSurfaceH\x03\x88\x01\x01\x12q\n\x13parallel_to_surface\x18\x07 \x01(\x0e\x32O.dlubal.api.rfem.types_for_special_objects.SurfacesContactTypeParallelToSurfaceH\x04\x88\x01\x01\x12q\n\x13rigid_friction_type\x18\x08 \x01(\x0e\x32O.dlubal.api.rfem.types_for_special_objects.SurfacesContactTypeRigidFrictionTypeH\x05\x88\x01\x01\x12\'\n\x1arigid_friction_coefficient\x18\t \x01(\x01H\x06\x88\x01\x01\x12(\n\x1brigid_friction_limit_stress\x18\n \x01(\x01H\x07\x88\x01\x01\x12-\n elastic_behavior_shear_stiffness\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12u\n\x15\x65lastic_friction_type\x18\x0c \x01(\x0e\x32Q.dlubal.api.rfem.types_for_special_objects.SurfacesContactTypeElasticFrictionTypeH\t\x88\x01\x01\x12)\n\x1c\x65lastic_friction_coefficient\x18\r \x01(\x01H\n\x88\x01\x01\x12*\n\x1d\x65lastic_friction_limit_stress\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12-\n elastic_friction_shear_stiffness\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\x0e\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x1b\n\x19_perpendicular_to_surfaceB\x16\n\x14_parallel_to_surfaceB\x16\n\x14_rigid_friction_typeB\x1d\n\x1b_rigid_friction_coefficientB\x1e\n\x1c_rigid_friction_limit_stressB#\n!_elastic_behavior_shear_stiffnessB\x18\n\x16_elastic_friction_typeB\x1f\n\x1d_elastic_friction_coefficientB \n\x1e_elastic_friction_limit_stressB#\n!_elastic_friction_shear_stiffnessB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\x8f\x02\n)SurfacesContactTypePerpendicularToSurface\x12J\nFSURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION\x10\x00\x12L\nHSURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION\x10\x01\x12H\nDSURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION\x10\x02*\x8e\x03\n$SurfacesContactTypeParallelToSurface\x12\x61\n]SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED\x10\x00\x12>\n:SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_BEHAVIOR\x10\x04\x12>\n:SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_FRICTION\x10\x03\x12\x45\nASURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION\x10\x01\x12<\n8SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_RIGID_FRICTION\x10\x02*\x9d\x01\n$SurfacesContactTypeRigidFrictionType\x12\x39\n5SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_COEFFICIENT\x10\x00\x12:\n6SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_LIMIT_STRESS\x10\x01*\xa3\x01\n&SurfacesContactTypeElasticFrictionType\x12;\n7SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_COEFFICIENT\x10\x00\x12<\n8SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_LIMIT_STRESS\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_special_objects.surfaces_contact_type_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_SURFACESCONTACTTYPEPERPENDICULARTOSURFACE']._serialized_start=1489
|
|
35
|
+
_globals['_SURFACESCONTACTTYPEPERPENDICULARTOSURFACE']._serialized_end=1760
|
|
36
|
+
_globals['_SURFACESCONTACTTYPEPARALLELTOSURFACE']._serialized_start=1763
|
|
37
|
+
_globals['_SURFACESCONTACTTYPEPARALLELTOSURFACE']._serialized_end=2161
|
|
38
|
+
_globals['_SURFACESCONTACTTYPERIGIDFRICTIONTYPE']._serialized_start=2164
|
|
39
|
+
_globals['_SURFACESCONTACTTYPERIGIDFRICTIONTYPE']._serialized_end=2321
|
|
40
|
+
_globals['_SURFACESCONTACTTYPEELASTICFRICTIONTYPE']._serialized_start=2324
|
|
41
|
+
_globals['_SURFACESCONTACTTYPEELASTICFRICTIONTYPE']._serialized_end=2487
|
|
42
|
+
_globals['_SURFACESCONTACTTYPE']._serialized_start=117
|
|
43
|
+
_globals['_SURFACESCONTACTTYPE']._serialized_end=1486
|
|
44
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,81 @@
|
|
|
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 SurfacesContactTypePerpendicularToSurface(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION: _ClassVar[SurfacesContactTypePerpendicularToSurface]
|
|
12
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION: _ClassVar[SurfacesContactTypePerpendicularToSurface]
|
|
13
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION: _ClassVar[SurfacesContactTypePerpendicularToSurface]
|
|
14
|
+
|
|
15
|
+
class SurfacesContactTypeParallelToSurface(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED: _ClassVar[SurfacesContactTypeParallelToSurface]
|
|
18
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_BEHAVIOR: _ClassVar[SurfacesContactTypeParallelToSurface]
|
|
19
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_FRICTION: _ClassVar[SurfacesContactTypeParallelToSurface]
|
|
20
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION: _ClassVar[SurfacesContactTypeParallelToSurface]
|
|
21
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_RIGID_FRICTION: _ClassVar[SurfacesContactTypeParallelToSurface]
|
|
22
|
+
|
|
23
|
+
class SurfacesContactTypeRigidFrictionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
24
|
+
__slots__ = ()
|
|
25
|
+
SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_COEFFICIENT: _ClassVar[SurfacesContactTypeRigidFrictionType]
|
|
26
|
+
SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_LIMIT_STRESS: _ClassVar[SurfacesContactTypeRigidFrictionType]
|
|
27
|
+
|
|
28
|
+
class SurfacesContactTypeElasticFrictionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
29
|
+
__slots__ = ()
|
|
30
|
+
SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_COEFFICIENT: _ClassVar[SurfacesContactTypeElasticFrictionType]
|
|
31
|
+
SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_LIMIT_STRESS: _ClassVar[SurfacesContactTypeElasticFrictionType]
|
|
32
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION: SurfacesContactTypePerpendicularToSurface
|
|
33
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION: SurfacesContactTypePerpendicularToSurface
|
|
34
|
+
SURFACES_CONTACT_TYPE_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION: SurfacesContactTypePerpendicularToSurface
|
|
35
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED: SurfacesContactTypeParallelToSurface
|
|
36
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_BEHAVIOR: SurfacesContactTypeParallelToSurface
|
|
37
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_ELASTIC_FRICTION: SurfacesContactTypeParallelToSurface
|
|
38
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION: SurfacesContactTypeParallelToSurface
|
|
39
|
+
SURFACES_CONTACT_TYPE_PARALLEL_TO_SURFACE_RIGID_FRICTION: SurfacesContactTypeParallelToSurface
|
|
40
|
+
SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_COEFFICIENT: SurfacesContactTypeRigidFrictionType
|
|
41
|
+
SURFACES_CONTACT_TYPE_RIGID_FRICTION_TYPE_LIMIT_STRESS: SurfacesContactTypeRigidFrictionType
|
|
42
|
+
SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_COEFFICIENT: SurfacesContactTypeElasticFrictionType
|
|
43
|
+
SURFACES_CONTACT_TYPE_ELASTIC_FRICTION_TYPE_LIMIT_STRESS: SurfacesContactTypeElasticFrictionType
|
|
44
|
+
|
|
45
|
+
class SurfacesContactType(_message.Message):
|
|
46
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "comment", "surfaces_contacts", "perpendicular_to_surface", "parallel_to_surface", "rigid_friction_type", "rigid_friction_coefficient", "rigid_friction_limit_stress", "elastic_behavior_shear_stiffness", "elastic_friction_type", "elastic_friction_coefficient", "elastic_friction_limit_stress", "elastic_friction_shear_stiffness", "id_for_export_import", "metadata_for_export_import")
|
|
47
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
SURFACES_CONTACTS_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
PERPENDICULAR_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
PARALLEL_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
RIGID_FRICTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
RIGID_FRICTION_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
RIGID_FRICTION_LIMIT_STRESS_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
ELASTIC_BEHAVIOR_SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
ELASTIC_FRICTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
ELASTIC_FRICTION_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
ELASTIC_FRICTION_LIMIT_STRESS_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
ELASTIC_FRICTION_SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
no: int
|
|
65
|
+
user_defined_name_enabled: bool
|
|
66
|
+
name: str
|
|
67
|
+
comment: str
|
|
68
|
+
surfaces_contacts: _containers.RepeatedScalarFieldContainer[int]
|
|
69
|
+
perpendicular_to_surface: SurfacesContactTypePerpendicularToSurface
|
|
70
|
+
parallel_to_surface: SurfacesContactTypeParallelToSurface
|
|
71
|
+
rigid_friction_type: SurfacesContactTypeRigidFrictionType
|
|
72
|
+
rigid_friction_coefficient: float
|
|
73
|
+
rigid_friction_limit_stress: float
|
|
74
|
+
elastic_behavior_shear_stiffness: float
|
|
75
|
+
elastic_friction_type: SurfacesContactTypeElasticFrictionType
|
|
76
|
+
elastic_friction_coefficient: float
|
|
77
|
+
elastic_friction_limit_stress: float
|
|
78
|
+
elastic_friction_shear_stiffness: float
|
|
79
|
+
id_for_export_import: str
|
|
80
|
+
metadata_for_export_import: str
|
|
81
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., surfaces_contacts: _Optional[_Iterable[int]] = ..., perpendicular_to_surface: _Optional[_Union[SurfacesContactTypePerpendicularToSurface, str]] = ..., parallel_to_surface: _Optional[_Union[SurfacesContactTypeParallelToSurface, str]] = ..., rigid_friction_type: _Optional[_Union[SurfacesContactTypeRigidFrictionType, str]] = ..., rigid_friction_coefficient: _Optional[float] = ..., rigid_friction_limit_stress: _Optional[float] = ..., elastic_behavior_shear_stiffness: _Optional[float] = ..., elastic_friction_type: _Optional[_Union[SurfacesContactTypeElasticFrictionType, str]] = ..., elastic_friction_coefficient: _Optional[float] = ..., elastic_friction_limit_stress: _Optional[float] = ..., elastic_friction_shear_stiffness: _Optional[float] = ..., 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/types_for_steel_design/steel_boundary_conditions.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_steel_design/steel_boundary_conditions.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'\nFdlubal/api/rfem/types_for_steel_design/steel_boundary_conditions.proto\x12&dlubal.api.rfem.types_for_steel_design\"\xcd\x08\n\x17SteelBoundaryConditions\x12\n\n\x02no\x18\x01 \x01(\x05\x12k\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32M.dlubal.api.rfem.types_for_steel_design.SteelBoundaryConditionsDefinitionTypeH\x00\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x03 \x01(\tH\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x0f\n\x07members\x18\x07 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x08 \x03(\x05\x12\x1f\n\x12intermediate_nodes\x18\t \x01(\x08H\x05\x88\x01\x01\x12p\n\x0enodal_supports\x18\n \x01(\x0b\x32S.dlubal.api.rfem.types_for_steel_design.ArrayOfSteelBoundaryConditionsNodalSupportsH\x06\x88\x01\x01\x12n\n\rmember_hinges\x18\x0b \x01(\x0b\x32R.dlubal.api.rfem.types_for_steel_design.ArrayOfSteelBoundaryConditionsMemberHingesH\x07\x88\x01\x01\x12*\n\x1d\x64ifferent_properties_supports\x18\x0c \x01(\x08H\x08\x88\x01\x01\x12(\n\x1b\x64ifferent_properties_hinges\x18\r \x01(\x08H\t\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0e \x01(\x08H\n\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0f \x01(\tH\x0b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\x0c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\r\x88\x01\x01\x42\x12\n\x10_definition_typeB\x14\n\x12_coordinate_systemB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x15\n\x13_intermediate_nodesB\x11\n\x0f_nodal_supportsB\x10\n\x0e_member_hingesB \n\x1e_different_properties_supportsB\x1e\n\x1c_different_properties_hingesB\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+ArrayOfSteelBoundaryConditionsNodalSupports\",\n*ArrayOfSteelBoundaryConditionsMemberHinges*\x90\x01\n%SteelBoundaryConditionsDefinitionType\x12\x35\n1STEEL_BOUNDARY_CONDITIONS_DEFINITION_TYPE_UNKNOWN\x10\x00\x12\x30\n,STEEL_BOUNDARY_CONDITIONS_DEFINITION_TYPE_2D\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_steel_design.steel_boundary_conditions_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STEELBOUNDARYCONDITIONSDEFINITIONTYPE']._serialized_start=1312
|
|
35
|
+
_globals['_STEELBOUNDARYCONDITIONSDEFINITIONTYPE']._serialized_end=1456
|
|
36
|
+
_globals['_STEELBOUNDARYCONDITIONS']._serialized_start=115
|
|
37
|
+
_globals['_STEELBOUNDARYCONDITIONS']._serialized_end=1216
|
|
38
|
+
_globals['_ARRAYOFSTEELBOUNDARYCONDITIONSNODALSUPPORTS']._serialized_start=1218
|
|
39
|
+
_globals['_ARRAYOFSTEELBOUNDARYCONDITIONSNODALSUPPORTS']._serialized_end=1263
|
|
40
|
+
_globals['_ARRAYOFSTEELBOUNDARYCONDITIONSMEMBERHINGES']._serialized_start=1265
|
|
41
|
+
_globals['_ARRAYOFSTEELBOUNDARYCONDITIONSMEMBERHINGES']._serialized_end=1309
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|