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,36 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class MemberTransverseStiffener(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "members", "member_sets", "components", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
no: int
|
|
22
|
+
user_defined_name_enabled: bool
|
|
23
|
+
name: str
|
|
24
|
+
members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
26
|
+
components: ArrayOfMemberTransverseStiffenerComponents
|
|
27
|
+
comment: str
|
|
28
|
+
is_generated: bool
|
|
29
|
+
generating_object_info: str
|
|
30
|
+
id_for_export_import: str
|
|
31
|
+
metadata_for_export_import: str
|
|
32
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., member_sets: _Optional[_Iterable[int]] = ..., components: _Optional[_Union[ArrayOfMemberTransverseStiffenerComponents, _Mapping]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
33
|
+
|
|
34
|
+
class ArrayOfMemberTransverseStiffenerComponents(_message.Message):
|
|
35
|
+
__slots__ = ()
|
|
36
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,40 @@
|
|
|
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_nodes/nodal_mesh_refinement.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_nodes/nodal_mesh_refinement.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n;dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement.proto\x12\x1f\x64lubal.api.rfem.types_for_nodes\"\xd0\x08\n\x13NodalMeshRefinement\x12\n\n\x02no\x18\x01 \x01(\x05\x12K\n\x04type\x18\x02 \x01(\x0e\x32\x38.dlubal.api.rfem.types_for_nodes.NodalMeshRefinementTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\r\n\x05nodes\x18\x06 \x03(\x05\x12\x1c\n\x0f\x63ircular_radius\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12)\n\x1c\x63ircular_target_inner_length\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12)\n\x1c\x63ircular_target_outer_length\x18\t \x01(\x01H\x06\x88\x01\x01\x12w\n\x1b\x63ircular_length_arrangement\x18\n \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalMeshRefinementCircularLengthArrangementH\x07\x88\x01\x01\x12\x1d\n\x10rectangular_side\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12,\n\x1frectangular_target_inner_length\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x19\n\x0cis_generated\x18\r \x01(\x08H\n\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12,\n\x1f\x61pply_only_on_selected_surfaces\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12\x19\n\x11selected_surfaces\x18\x10 \x03(\x05\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x0e\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x12\n\x10_circular_radiusB\x1f\n\x1d_circular_target_inner_lengthB\x1f\n\x1d_circular_target_outer_lengthB\x1e\n\x1c_circular_length_arrangementB\x13\n\x11_rectangular_sideB\"\n _rectangular_target_inner_lengthB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\"\n _apply_only_on_selected_surfacesB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\x96\x01\n\x17NodalMeshRefinementType\x12&\n\"NODAL_MESH_REFINEMENT_TYPE_UNKNOWN\x10\x00\x12\'\n#NODAL_MESH_REFINEMENT_TYPE_CIRCULAR\x10\x01\x12*\n&NODAL_MESH_REFINEMENT_TYPE_RECTANGULAR\x10\x02*\xed\x01\n,NodalMeshRefinementCircularLengthArrangement\x12<\n8NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_RADIAL\x10\x00\x12>\n:NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_COMBINED\x10\x02\x12?\n;NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_GRADUALLY\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_nodes.nodal_mesh_refinement_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_NODALMESHREFINEMENTTYPE']._serialized_start=1204
|
|
35
|
+
_globals['_NODALMESHREFINEMENTTYPE']._serialized_end=1354
|
|
36
|
+
_globals['_NODALMESHREFINEMENTCIRCULARLENGTHARRANGEMENT']._serialized_start=1357
|
|
37
|
+
_globals['_NODALMESHREFINEMENTCIRCULARLENGTHARRANGEMENT']._serialized_end=1594
|
|
38
|
+
_globals['_NODALMESHREFINEMENT']._serialized_start=97
|
|
39
|
+
_globals['_NODALMESHREFINEMENT']._serialized_end=1201
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,65 @@
|
|
|
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 NodalMeshRefinementType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
NODAL_MESH_REFINEMENT_TYPE_UNKNOWN: _ClassVar[NodalMeshRefinementType]
|
|
12
|
+
NODAL_MESH_REFINEMENT_TYPE_CIRCULAR: _ClassVar[NodalMeshRefinementType]
|
|
13
|
+
NODAL_MESH_REFINEMENT_TYPE_RECTANGULAR: _ClassVar[NodalMeshRefinementType]
|
|
14
|
+
|
|
15
|
+
class NodalMeshRefinementCircularLengthArrangement(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_RADIAL: _ClassVar[NodalMeshRefinementCircularLengthArrangement]
|
|
18
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_COMBINED: _ClassVar[NodalMeshRefinementCircularLengthArrangement]
|
|
19
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_GRADUALLY: _ClassVar[NodalMeshRefinementCircularLengthArrangement]
|
|
20
|
+
NODAL_MESH_REFINEMENT_TYPE_UNKNOWN: NodalMeshRefinementType
|
|
21
|
+
NODAL_MESH_REFINEMENT_TYPE_CIRCULAR: NodalMeshRefinementType
|
|
22
|
+
NODAL_MESH_REFINEMENT_TYPE_RECTANGULAR: NodalMeshRefinementType
|
|
23
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_RADIAL: NodalMeshRefinementCircularLengthArrangement
|
|
24
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_COMBINED: NodalMeshRefinementCircularLengthArrangement
|
|
25
|
+
NODAL_MESH_REFINEMENT_CIRCULAR_LENGTH_ARRANGEMENT_GRADUALLY: NodalMeshRefinementCircularLengthArrangement
|
|
26
|
+
|
|
27
|
+
class NodalMeshRefinement(_message.Message):
|
|
28
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "comment", "nodes", "circular_radius", "circular_target_inner_length", "circular_target_outer_length", "circular_length_arrangement", "rectangular_side", "rectangular_target_inner_length", "is_generated", "generating_object_info", "apply_only_on_selected_surfaces", "selected_surfaces", "id_for_export_import", "metadata_for_export_import")
|
|
29
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
NODES_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
CIRCULAR_RADIUS_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
CIRCULAR_TARGET_INNER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
CIRCULAR_TARGET_OUTER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
CIRCULAR_LENGTH_ARRANGEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
RECTANGULAR_SIDE_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
RECTANGULAR_TARGET_INNER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
APPLY_ONLY_ON_SELECTED_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
SELECTED_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
no: int
|
|
48
|
+
type: NodalMeshRefinementType
|
|
49
|
+
user_defined_name_enabled: bool
|
|
50
|
+
name: str
|
|
51
|
+
comment: str
|
|
52
|
+
nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
53
|
+
circular_radius: float
|
|
54
|
+
circular_target_inner_length: float
|
|
55
|
+
circular_target_outer_length: float
|
|
56
|
+
circular_length_arrangement: NodalMeshRefinementCircularLengthArrangement
|
|
57
|
+
rectangular_side: float
|
|
58
|
+
rectangular_target_inner_length: float
|
|
59
|
+
is_generated: bool
|
|
60
|
+
generating_object_info: str
|
|
61
|
+
apply_only_on_selected_surfaces: bool
|
|
62
|
+
selected_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
63
|
+
id_for_export_import: str
|
|
64
|
+
metadata_for_export_import: str
|
|
65
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[NodalMeshRefinementType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., nodes: _Optional[_Iterable[int]] = ..., circular_radius: _Optional[float] = ..., circular_target_inner_length: _Optional[float] = ..., circular_target_outer_length: _Optional[float] = ..., circular_length_arrangement: _Optional[_Union[NodalMeshRefinementCircularLengthArrangement, str]] = ..., rectangular_side: _Optional[float] = ..., rectangular_target_inner_length: _Optional[float] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., apply_only_on_selected_surfaces: bool = ..., selected_surfaces: _Optional[_Iterable[int]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,171 @@
|
|
|
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_nodes/nodal_support.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/types_for_nodes/nodal_support.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3dlubal/api/rfem/types_for_nodes/nodal_support.proto\x12\x1f\x64lubal.api.rfem.types_for_nodes\x1a\x1e\x64lubal/api/common/common.proto\"\xce\xb8\x01\n\x0cNodalSupport\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&\n\x19\x66ictitious_column_enabled\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\'\n\x1aspecific_direction_enabled\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12h\n\x17specific_direction_type\x18\x06 \x01(\x0e\x32\x42.dlubal.api.rfem.types_for_nodes.NodalSupportSpecificDirectionTypeH\x04\x88\x01\x01\x12\r\n\x05nodes\x18\x07 \x03(\x05\x12\x30\n\x06spring\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12\x15\n\x08spring_x\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08spring_y\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x15\n\x08spring_z\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12>\n\x14rotational_restraint\x18\x0c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12#\n\x16rotational_restraint_x\x18\r \x01(\x01H\n\x88\x01\x01\x12#\n\x16rotational_restraint_y\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12#\n\x16rotational_restraint_z\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x64\n\x15spring_x_nonlinearity\x18\x10 \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportSpringXNonlinearityH\r\x88\x01\x01\x12\x64\n\x15spring_y_nonlinearity\x18\x11 \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportSpringYNonlinearityH\x0e\x88\x01\x01\x12\x64\n\x15spring_z_nonlinearity\x18\x12 \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportSpringZNonlinearityH\x0f\x88\x01\x01\x12\x7f\n#rotational_restraint_x_nonlinearity\x18\x13 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportRotationalRestraintXNonlinearityH\x10\x88\x01\x01\x12\x7f\n#rotational_restraint_y_nonlinearity\x18\x14 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportRotationalRestraintYNonlinearityH\x11\x88\x01\x01\x12\x7f\n#rotational_restraint_z_nonlinearity\x18\x15 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportRotationalRestraintZNonlinearityH\x12\x88\x01\x01\x12U\n\raxes_sequence\x18\x16 \x01(\x0e\x32\x39.dlubal.api.rfem.types_for_nodes.NodalSupportAxesSequenceH\x13\x88\x01\x01\x12#\n\x16\x63olumn_base_semi_rigid\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12i\n\x18\x63olumn_base_support_type\x18\x18 \x01(\x0e\x32\x42.dlubal.api.rfem.types_for_nodes.NodalSupportColumnBaseSupportTypeH\x15\x88\x01\x01\x12i\n\x18\x63olumn_head_support_type\x18\x19 \x01(\x0e\x32\x42.dlubal.api.rfem.types_for_nodes.NodalSupportColumnHeadSupportTypeH\x16\x88\x01\x01\x12Z\n\x10\x63olumn_head_type\x18\x1a \x01(\x0e\x32;.dlubal.api.rfem.types_for_nodes.NodalSupportColumnHeadTypeH\x17\x88\x01\x01\x12\x1a\n\rcolumn_height\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12(\n\x1b\x63olumn_section_same_as_head\x18\x1c \x01(\x08H\x19\x88\x01\x01\x12\x1c\n\x0f\x63olumn_material\x18\x1d \x01(\x05H\x1a\x88\x01\x01\x12\x1c\n\x0f\x63olumn_rotation\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12*\n\x1d\x63olumn_rotational_restraint_x\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12*\n\x1d\x63olumn_rotational_restraint_y\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x1b\n\x0e\x63olumn_section\x18! \x01(\x05H\x1e\x88\x01\x01\x12#\n\x16\x63olumn_shear_stiffness\x18\" \x01(\x08H\x1f\x88\x01\x01\x12\x1c\n\x0f\x63olumn_spring_x\x18# \x01(\x01H \x88\x01\x01\x12\x1c\n\x0f\x63olumn_spring_y\x18$ \x01(\x01H!\x88\x01\x01\x12\x1c\n\x0f\x63olumn_spring_z\x18% \x01(\x01H\"\x88\x01\x01\x12`\n\x13\x63olumn_support_type\x18& \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupportColumnSupportTypeH#\x88\x01\x01\x12\x1b\n\x0e\x63olumn_width_x\x18\' \x01(\x01H$\x88\x01\x01\x12\x1b\n\x0e\x63olumn_width_y\x18( \x01(\x01H%\x88\x01\x01\x12\x14\n\x07\x63omment\x18) \x01(\tH&\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18* \x01(\x05H\'\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18+ \x01(\x08H(\x88\x01\x01\x12\x63\n\x15\x64iagram_along_x_start\x18, \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongXStartH)\x88\x01\x01\x12_\n\x13\x64iagram_along_x_end\x18- \x01(\x0e\x32=.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongXEndH*\x88\x01\x01\x12j\n\x15\x64iagram_along_x_table\x18. \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongXTableH+\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18/ \x01(\x08H,\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18\x30 \x01(\x08H-\x88\x01\x01\x12\x63\n\x15\x64iagram_along_y_start\x18\x31 \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongYStartH.\x88\x01\x01\x12_\n\x13\x64iagram_along_y_end\x18\x32 \x01(\x0e\x32=.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongYEndH/\x88\x01\x01\x12j\n\x15\x64iagram_along_y_table\x18\x33 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongYTableH0\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18\x34 \x01(\x08H1\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18\x35 \x01(\x08H2\x88\x01\x01\x12\x63\n\x15\x64iagram_along_z_start\x18\x36 \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongZStartH3\x88\x01\x01\x12_\n\x13\x64iagram_along_z_end\x18\x37 \x01(\x0e\x32=.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAlongZEndH4\x88\x01\x01\x12j\n\x15\x64iagram_along_z_table\x18\x38 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongZTableH5\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18\x39 \x01(\x08H6\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_symmetric\x18: \x01(\x08H7\x88\x01\x01\x12\x65\n\x16\x64iagram_around_x_start\x18; \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundXStartH8\x88\x01\x01\x12\x61\n\x14\x64iagram_around_x_end\x18< \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundXEndH9\x88\x01\x01\x12l\n\x16\x64iagram_around_x_table\x18= \x01(\x0b\x32G.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundXTableH:\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_is_sorted\x18> \x01(\x08H;\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_symmetric\x18? \x01(\x08H<\x88\x01\x01\x12\x65\n\x16\x64iagram_around_y_start\x18@ \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundYStartH=\x88\x01\x01\x12\x61\n\x14\x64iagram_around_y_end\x18\x41 \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundYEndH>\x88\x01\x01\x12l\n\x16\x64iagram_around_y_table\x18\x42 \x01(\x0b\x32G.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundYTableH?\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_is_sorted\x18\x43 \x01(\x08H@\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_symmetric\x18\x44 \x01(\x08HA\x88\x01\x01\x12\x65\n\x16\x64iagram_around_z_start\x18\x45 \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundZStartHB\x88\x01\x01\x12\x61\n\x14\x64iagram_around_z_end\x18\x46 \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupportDiagramAroundZEndHC\x88\x01\x01\x12l\n\x16\x64iagram_around_z_table\x18G \x01(\x0b\x32G.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundZTableHD\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_is_sorted\x18H \x01(\x08HE\x88\x01\x01\x12,\n\x1f\x64irected_to_node_direction_node\x18I \x01(\x05HF\x88\x01\x01\x12n\n\x1b\x64irected_to_node_first_axis\x18J \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupportDirectedToNodeFirstAxisHG\x88\x01\x01\x12(\n\x1b\x64irected_to_node_plane_node\x18K \x01(\x05HH\x88\x01\x01\x12p\n\x1c\x64irected_to_node_second_axis\x18L \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupportDirectedToNodeSecondAxisHI\x88\x01\x01\x12#\n\x16\x66riction_coefficient_x\x18M \x01(\x01HJ\x88\x01\x01\x12$\n\x17\x66riction_coefficient_xy\x18N \x01(\x01HK\x88\x01\x01\x12$\n\x17\x66riction_coefficient_xz\x18O \x01(\x01HL\x88\x01\x01\x12#\n\x16\x66riction_coefficient_y\x18P \x01(\x01HM\x88\x01\x01\x12$\n\x17\x66riction_coefficient_yx\x18Q \x01(\x01HN\x88\x01\x01\x12$\n\x17\x66riction_coefficient_yz\x18R \x01(\x01HO\x88\x01\x01\x12#\n\x16\x66riction_coefficient_z\x18S \x01(\x01HP\x88\x01\x01\x12$\n\x17\x66riction_coefficient_zx\x18T \x01(\x01HQ\x88\x01\x01\x12$\n\x17\x66riction_coefficient_zy\x18U \x01(\x01HR\x88\x01\x01\x12\x1d\n\x10parallel_to_line\x18V \x01(\x05HS\x88\x01\x01\x12\x1f\n\x12parallel_to_member\x18W \x01(\x05HT\x88\x01\x01\x12w\n parallel_to_two_nodes_first_axis\x18X \x01(\x0e\x32H.dlubal.api.rfem.types_for_nodes.NodalSupportParallelToTwoNodesFirstAxisHU\x88\x01\x01\x12-\n parallel_to_two_nodes_first_node\x18Y \x01(\x05HV\x88\x01\x01\x12-\n parallel_to_two_nodes_plane_node\x18Z \x01(\x05HW\x88\x01\x01\x12y\n!parallel_to_two_nodes_second_axis\x18[ \x01(\x0e\x32I.dlubal.api.rfem.types_for_nodes.NodalSupportParallelToTwoNodesSecondAxisHX\x88\x01\x01\x12.\n!parallel_to_two_nodes_second_node\x18\\ \x01(\x05HY\x88\x01\x01\x12\x83\x01\n&partial_activity_along_x_negative_type\x18] \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongXNegativeTypeHZ\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18^ \x01(\x01H[\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18_ \x01(\x01H\\\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18` \x01(\x01H]\x88\x01\x01\x12\x83\x01\n&partial_activity_along_x_positive_type\x18\x61 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongXPositiveTypeH^\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18\x62 \x01(\x01H_\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18\x63 \x01(\x01H`\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18\x64 \x01(\x01Ha\x88\x01\x01\x12\x83\x01\n&partial_activity_along_y_negative_type\x18\x65 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongYNegativeTypeHb\x88\x01\x01\x12;\n.partial_activity_along_y_negative_displacement\x18\x66 \x01(\x01Hc\x88\x01\x01\x12\x34\n\'partial_activity_along_y_negative_force\x18g \x01(\x01Hd\x88\x01\x01\x12\x37\n*partial_activity_along_y_negative_slippage\x18h \x01(\x01He\x88\x01\x01\x12\x83\x01\n&partial_activity_along_y_positive_type\x18i \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongYPositiveTypeHf\x88\x01\x01\x12;\n.partial_activity_along_y_positive_displacement\x18j \x01(\x01Hg\x88\x01\x01\x12\x34\n\'partial_activity_along_y_positive_force\x18k \x01(\x01Hh\x88\x01\x01\x12\x37\n*partial_activity_along_y_positive_slippage\x18l \x01(\x01Hi\x88\x01\x01\x12\x83\x01\n&partial_activity_along_z_negative_type\x18m \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongZNegativeTypeHj\x88\x01\x01\x12;\n.partial_activity_along_z_negative_displacement\x18n \x01(\x01Hk\x88\x01\x01\x12\x34\n\'partial_activity_along_z_negative_force\x18o \x01(\x01Hl\x88\x01\x01\x12\x37\n*partial_activity_along_z_negative_slippage\x18p \x01(\x01Hm\x88\x01\x01\x12\x83\x01\n&partial_activity_along_z_positive_type\x18q \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAlongZPositiveTypeHn\x88\x01\x01\x12;\n.partial_activity_along_z_positive_displacement\x18r \x01(\x01Ho\x88\x01\x01\x12\x34\n\'partial_activity_along_z_positive_force\x18s \x01(\x01Hp\x88\x01\x01\x12\x37\n*partial_activity_along_z_positive_slippage\x18t \x01(\x01Hq\x88\x01\x01\x12\x85\x01\n\'partial_activity_around_x_negative_type\x18u \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundXNegativeTypeHr\x88\x01\x01\x12\x36\n)partial_activity_around_x_negative_moment\x18v \x01(\x01Hs\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_rotation\x18w \x01(\x01Ht\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_slippage\x18x \x01(\x01Hu\x88\x01\x01\x12\x85\x01\n\'partial_activity_around_x_positive_type\x18y \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundXPositiveTypeHv\x88\x01\x01\x12\x36\n)partial_activity_around_x_positive_moment\x18z \x01(\x01Hw\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_rotation\x18{ \x01(\x01Hx\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_slippage\x18| \x01(\x01Hy\x88\x01\x01\x12\x85\x01\n\'partial_activity_around_y_negative_type\x18} \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundYNegativeTypeHz\x88\x01\x01\x12\x36\n)partial_activity_around_y_negative_moment\x18~ \x01(\x01H{\x88\x01\x01\x12\x38\n+partial_activity_around_y_negative_rotation\x18\x7f \x01(\x01H|\x88\x01\x01\x12\x39\n+partial_activity_around_y_negative_slippage\x18\x80\x01 \x01(\x01H}\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_y_positive_type\x18\x81\x01 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundYPositiveTypeH~\x88\x01\x01\x12\x37\n)partial_activity_around_y_positive_moment\x18\x82\x01 \x01(\x01H\x7f\x88\x01\x01\x12:\n+partial_activity_around_y_positive_rotation\x18\x83\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12:\n+partial_activity_around_y_positive_slippage\x18\x84\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12\x87\x01\n\'partial_activity_around_z_negative_type\x18\x85\x01 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundZNegativeTypeH\x82\x01\x88\x01\x01\x12\x38\n)partial_activity_around_z_negative_moment\x18\x86\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12:\n+partial_activity_around_z_negative_rotation\x18\x87\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12:\n+partial_activity_around_z_negative_slippage\x18\x88\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12\x87\x01\n\'partial_activity_around_z_positive_type\x18\x89\x01 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupportPartialActivityAroundZPositiveTypeH\x86\x01\x88\x01\x01\x12\x38\n)partial_activity_around_z_positive_moment\x18\x8a\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12:\n+partial_activity_around_z_positive_rotation\x18\x8b\x01 \x01(\x01H\x88\x01\x88\x01\x01\x12:\n+partial_activity_around_z_positive_slippage\x18\x8c\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_1\x18\x8d\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_2\x18\x8e\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_3\x18\x8f\x01 \x01(\x01H\x8c\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_x\x18\x90\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_y\x18\x91\x01 \x01(\x01H\x8e\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_z\x18\x92\x01 \x01(\x01H\x8f\x01\x88\x01\x01\x12\x83\x01\n%stiffness_diagram_around_x_depends_on\x18\x93\x01 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundXDependsOnH\x90\x01\x88\x01\x01\x12v\n\x1estiffness_diagram_around_x_end\x18\x94\x01 \x01(\x0e\x32G.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundXEndH\x91\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_x_is_sorted\x18\x95\x01 \x01(\x08H\x92\x01\x88\x01\x01\x12z\n stiffness_diagram_around_x_start\x18\x96\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundXStartH\x93\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_x_symmetric\x18\x97\x01 \x01(\x08H\x94\x01\x88\x01\x01\x12\x81\x01\n stiffness_diagram_around_x_table\x18\x98\x01 \x01(\x0b\x32P.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportStiffnessDiagramAroundXTableH\x95\x01\x88\x01\x01\x12\x83\x01\n%stiffness_diagram_around_y_depends_on\x18\x99\x01 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundYDependsOnH\x96\x01\x88\x01\x01\x12v\n\x1estiffness_diagram_around_y_end\x18\x9a\x01 \x01(\x0e\x32G.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundYEndH\x97\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_y_is_sorted\x18\x9b\x01 \x01(\x08H\x98\x01\x88\x01\x01\x12z\n stiffness_diagram_around_y_start\x18\x9c\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundYStartH\x99\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_y_symmetric\x18\x9d\x01 \x01(\x08H\x9a\x01\x88\x01\x01\x12\x81\x01\n stiffness_diagram_around_y_table\x18\x9e\x01 \x01(\x0b\x32P.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportStiffnessDiagramAroundYTableH\x9b\x01\x88\x01\x01\x12\x83\x01\n%stiffness_diagram_around_z_depends_on\x18\x9f\x01 \x01(\x0e\x32M.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundZDependsOnH\x9c\x01\x88\x01\x01\x12v\n\x1estiffness_diagram_around_z_end\x18\xa0\x01 \x01(\x0e\x32G.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundZEndH\x9d\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_z_is_sorted\x18\xa1\x01 \x01(\x08H\x9e\x01\x88\x01\x01\x12z\n stiffness_diagram_around_z_start\x18\xa2\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_nodes.NodalSupportStiffnessDiagramAroundZStartH\x9f\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_z_symmetric\x18\xa3\x01 \x01(\x08H\xa0\x01\x88\x01\x01\x12\x81\x01\n stiffness_diagram_around_z_table\x18\xa4\x01 \x01(\x0b\x32P.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportStiffnessDiagramAroundZTableH\xa1\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_x\x18\xa5\x01 \x01(\x01H\xa2\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_y\x18\xa6\x01 \x01(\x01H\xa3\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_z\x18\xa7\x01 \x01(\x01H\xa4\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_x\x18\xa8\x01 \x01(\x01H\xa5\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_y\x18\xa9\x01 \x01(\x01H\xa6\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_z\x18\xaa\x01 \x01(\x01H\xa7\x01\x88\x01\x01\x12p\n\x1bsupport_dimension_type_on_x\x18\xab\x01 \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupportSupportDimensionTypeOnXH\xa8\x01\x88\x01\x01\x12p\n\x1bsupport_dimension_type_on_y\x18\xac\x01 \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupportSupportDimensionTypeOnYH\xa9\x01\x88\x01\x01\x12p\n\x1bsupport_dimension_type_on_z\x18\xad\x01 \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupportSupportDimensionTypeOnZH\xaa\x01\x88\x01\x01\x12(\n\x19support_dimension_width_x\x18\xae\x01 \x01(\x01H\xab\x01\x88\x01\x01\x12(\n\x19support_dimension_width_y\x18\xaf\x01 \x01(\x01H\xac\x01\x88\x01\x01\x12(\n\x19support_dimension_width_z\x18\xb0\x01 \x01(\x01H\xad\x01\x88\x01\x01\x12)\n\x1asupport_dimensions_enabled\x18\xb1\x01 \x01(\x08H\xae\x01\x88\x01\x01\x12-\n\x1e\x64iagram_along_x_ac_yield_minus\x18\xb2\x01 \x01(\x01H\xaf\x01\x88\x01\x01\x12-\n\x1e\x64iagram_along_y_ac_yield_minus\x18\xb3\x01 \x01(\x01H\xb0\x01\x88\x01\x01\x12-\n\x1e\x64iagram_along_z_ac_yield_minus\x18\xb4\x01 \x01(\x01H\xb1\x01\x88\x01\x01\x12.\n\x1f\x64iagram_around_x_ac_yield_minus\x18\xb5\x01 \x01(\x01H\xb2\x01\x88\x01\x01\x12.\n\x1f\x64iagram_around_y_ac_yield_minus\x18\xb6\x01 \x01(\x01H\xb3\x01\x88\x01\x01\x12.\n\x1f\x64iagram_around_z_ac_yield_minus\x18\xb7\x01 \x01(\x01H\xb4\x01\x88\x01\x01\x12,\n\x1d\x64iagram_along_x_ac_yield_plus\x18\xb8\x01 \x01(\x01H\xb5\x01\x88\x01\x01\x12,\n\x1d\x64iagram_along_y_ac_yield_plus\x18\xb9\x01 \x01(\x01H\xb6\x01\x88\x01\x01\x12,\n\x1d\x64iagram_along_z_ac_yield_plus\x18\xba\x01 \x01(\x01H\xb7\x01\x88\x01\x01\x12-\n\x1e\x64iagram_around_x_ac_yield_plus\x18\xbb\x01 \x01(\x01H\xb8\x01\x88\x01\x01\x12-\n\x1e\x64iagram_around_y_ac_yield_plus\x18\xbc\x01 \x01(\x01H\xb9\x01\x88\x01\x01\x12-\n\x1e\x64iagram_around_z_ac_yield_plus\x18\xbd\x01 \x01(\x01H\xba\x01\x88\x01\x01\x12\x39\n*diagram_along_x_acceptance_criteria_active\x18\xbe\x01 \x01(\x08H\xbb\x01\x88\x01\x01\x12\x39\n*diagram_along_y_acceptance_criteria_active\x18\xbf\x01 \x01(\x08H\xbc\x01\x88\x01\x01\x12\x39\n*diagram_along_z_acceptance_criteria_active\x18\xc0\x01 \x01(\x08H\xbd\x01\x88\x01\x01\x12:\n+diagram_around_x_acceptance_criteria_active\x18\xc1\x01 \x01(\x08H\xbe\x01\x88\x01\x01\x12:\n+diagram_around_y_acceptance_criteria_active\x18\xc2\x01 \x01(\x08H\xbf\x01\x88\x01\x01\x12:\n+diagram_around_z_acceptance_criteria_active\x18\xc3\x01 \x01(\x08H\xc0\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_x_minus_color_one\x18\xc4\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc1\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_y_minus_color_one\x18\xc5\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc2\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_z_minus_color_one\x18\xc6\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc3\x01\x88\x01\x01\x12I\n diagram_around_x_minus_color_one\x18\xc7\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc4\x01\x88\x01\x01\x12I\n diagram_around_y_minus_color_one\x18\xc8\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc5\x01\x88\x01\x01\x12I\n diagram_around_z_minus_color_one\x18\xc9\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc6\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_x_minus_color_two\x18\xca\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc7\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_y_minus_color_two\x18\xcb\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc8\x01\x88\x01\x01\x12H\n\x1f\x64iagram_along_z_minus_color_two\x18\xcc\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xc9\x01\x88\x01\x01\x12I\n diagram_around_x_minus_color_two\x18\xcd\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xca\x01\x88\x01\x01\x12I\n diagram_around_y_minus_color_two\x18\xce\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xcb\x01\x88\x01\x01\x12I\n diagram_around_z_minus_color_two\x18\xcf\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xcc\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_x_plus_color_one\x18\xd0\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xcd\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_y_plus_color_one\x18\xd1\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xce\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_z_plus_color_one\x18\xd2\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xcf\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_x_plus_color_one\x18\xd3\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd0\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_y_plus_color_one\x18\xd4\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd1\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_z_plus_color_one\x18\xd5\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd2\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_x_plus_color_two\x18\xd6\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd3\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_y_plus_color_two\x18\xd7\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd4\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_z_plus_color_two\x18\xd8\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd5\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_x_plus_color_two\x18\xd9\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd6\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_y_plus_color_two\x18\xda\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd7\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_z_plus_color_two\x18\xdb\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\xd8\x01\x88\x01\x01\x12w\n\x1b\x64iagram_along_x_color_table\x18\xdc\x01 \x01(\x0b\x32K.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongXColorTableH\xd9\x01\x88\x01\x01\x12w\n\x1b\x64iagram_along_y_color_table\x18\xdd\x01 \x01(\x0b\x32K.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongYColorTableH\xda\x01\x88\x01\x01\x12w\n\x1b\x64iagram_along_z_color_table\x18\xde\x01 \x01(\x0b\x32K.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAlongZColorTableH\xdb\x01\x88\x01\x01\x12y\n\x1c\x64iagram_around_x_color_table\x18\xdf\x01 \x01(\x0b\x32L.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundXColorTableH\xdc\x01\x88\x01\x01\x12y\n\x1c\x64iagram_around_y_color_table\x18\xe0\x01 \x01(\x0b\x32L.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundYColorTableH\xdd\x01\x88\x01\x01\x12y\n\x1c\x64iagram_around_z_color_table\x18\xe1\x01 \x01(\x0b\x32L.dlubal.api.rfem.types_for_nodes.ArrayOfNodalSupportDiagramAroundZColorTableH\xde\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\xe2\x01 \x01(\tH\xdf\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\xe3\x01 \x01(\x08H\xe0\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xe4\x01 \x01(\tH\xe1\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xe5\x01 \x01(\tH\xe2\x01\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_fictitious_column_enabledB\x1d\n\x1b_specific_direction_enabledB\x1a\n\x18_specific_direction_typeB\t\n\x07_springB\x0b\n\t_spring_xB\x0b\n\t_spring_yB\x0b\n\t_spring_zB\x17\n\x15_rotational_restraintB\x19\n\x17_rotational_restraint_xB\x19\n\x17_rotational_restraint_yB\x19\n\x17_rotational_restraint_zB\x18\n\x16_spring_x_nonlinearityB\x18\n\x16_spring_y_nonlinearityB\x18\n\x16_spring_z_nonlinearityB&\n$_rotational_restraint_x_nonlinearityB&\n$_rotational_restraint_y_nonlinearityB&\n$_rotational_restraint_z_nonlinearityB\x10\n\x0e_axes_sequenceB\x19\n\x17_column_base_semi_rigidB\x1b\n\x19_column_base_support_typeB\x1b\n\x19_column_head_support_typeB\x13\n\x11_column_head_typeB\x10\n\x0e_column_heightB\x1e\n\x1c_column_section_same_as_headB\x12\n\x10_column_materialB\x12\n\x10_column_rotationB \n\x1e_column_rotational_restraint_xB \n\x1e_column_rotational_restraint_yB\x11\n\x0f_column_sectionB\x19\n\x17_column_shear_stiffnessB\x12\n\x10_column_spring_xB\x12\n\x10_column_spring_yB\x12\n\x10_column_spring_zB\x16\n\x14_column_support_typeB\x11\n\x0f_column_width_xB\x11\n\x0f_column_width_yB\n\n\x08_commentB\x14\n\x12_coordinate_systemB\x1c\n\x1a_diagram_along_x_symmetricB\x18\n\x16_diagram_along_x_startB\x16\n\x14_diagram_along_x_endB\x18\n\x16_diagram_along_x_tableB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_y_symmetricB\x18\n\x16_diagram_along_y_startB\x16\n\x14_diagram_along_y_endB\x18\n\x16_diagram_along_y_tableB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_z_symmetricB\x18\n\x16_diagram_along_z_startB\x16\n\x14_diagram_along_z_endB\x18\n\x16_diagram_along_z_tableB\x1c\n\x1a_diagram_along_z_is_sortedB\x1d\n\x1b_diagram_around_x_symmetricB\x19\n\x17_diagram_around_x_startB\x17\n\x15_diagram_around_x_endB\x19\n\x17_diagram_around_x_tableB\x1d\n\x1b_diagram_around_x_is_sortedB\x1d\n\x1b_diagram_around_y_symmetricB\x19\n\x17_diagram_around_y_startB\x17\n\x15_diagram_around_y_endB\x19\n\x17_diagram_around_y_tableB\x1d\n\x1b_diagram_around_y_is_sortedB\x1d\n\x1b_diagram_around_z_symmetricB\x19\n\x17_diagram_around_z_startB\x17\n\x15_diagram_around_z_endB\x19\n\x17_diagram_around_z_tableB\x1d\n\x1b_diagram_around_z_is_sortedB\"\n _directed_to_node_direction_nodeB\x1e\n\x1c_directed_to_node_first_axisB\x1e\n\x1c_directed_to_node_plane_nodeB\x1f\n\x1d_directed_to_node_second_axisB\x19\n\x17_friction_coefficient_xB\x1a\n\x18_friction_coefficient_xyB\x1a\n\x18_friction_coefficient_xzB\x19\n\x17_friction_coefficient_yB\x1a\n\x18_friction_coefficient_yxB\x1a\n\x18_friction_coefficient_yzB\x19\n\x17_friction_coefficient_zB\x1a\n\x18_friction_coefficient_zxB\x1a\n\x18_friction_coefficient_zyB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB#\n!_parallel_to_two_nodes_first_axisB#\n!_parallel_to_two_nodes_first_nodeB#\n!_parallel_to_two_nodes_plane_nodeB$\n\"_parallel_to_two_nodes_second_axisB$\n\"_parallel_to_two_nodes_second_nodeB)\n\'_partial_activity_along_x_negative_typeB1\n/_partial_activity_along_x_negative_displacementB*\n(_partial_activity_along_x_negative_forceB-\n+_partial_activity_along_x_negative_slippageB)\n\'_partial_activity_along_x_positive_typeB1\n/_partial_activity_along_x_positive_displacementB*\n(_partial_activity_along_x_positive_forceB-\n+_partial_activity_along_x_positive_slippageB)\n\'_partial_activity_along_y_negative_typeB1\n/_partial_activity_along_y_negative_displacementB*\n(_partial_activity_along_y_negative_forceB-\n+_partial_activity_along_y_negative_slippageB)\n\'_partial_activity_along_y_positive_typeB1\n/_partial_activity_along_y_positive_displacementB*\n(_partial_activity_along_y_positive_forceB-\n+_partial_activity_along_y_positive_slippageB)\n\'_partial_activity_along_z_negative_typeB1\n/_partial_activity_along_z_negative_displacementB*\n(_partial_activity_along_z_negative_forceB-\n+_partial_activity_along_z_negative_slippageB)\n\'_partial_activity_along_z_positive_typeB1\n/_partial_activity_along_z_positive_displacementB*\n(_partial_activity_along_z_positive_forceB-\n+_partial_activity_along_z_positive_slippageB*\n(_partial_activity_around_x_negative_typeB,\n*_partial_activity_around_x_negative_momentB.\n,_partial_activity_around_x_negative_rotationB.\n,_partial_activity_around_x_negative_slippageB*\n(_partial_activity_around_x_positive_typeB,\n*_partial_activity_around_x_positive_momentB.\n,_partial_activity_around_x_positive_rotationB.\n,_partial_activity_around_x_positive_slippageB*\n(_partial_activity_around_y_negative_typeB,\n*_partial_activity_around_y_negative_momentB.\n,_partial_activity_around_y_negative_rotationB.\n,_partial_activity_around_y_negative_slippageB*\n(_partial_activity_around_y_positive_typeB,\n*_partial_activity_around_y_positive_momentB.\n,_partial_activity_around_y_positive_rotationB.\n,_partial_activity_around_y_positive_slippageB*\n(_partial_activity_around_z_negative_typeB,\n*_partial_activity_around_z_negative_momentB.\n,_partial_activity_around_z_negative_rotationB.\n,_partial_activity_around_z_negative_slippageB*\n(_partial_activity_around_z_positive_typeB,\n*_partial_activity_around_z_positive_momentB.\n,_partial_activity_around_z_positive_rotationB.\n,_partial_activity_around_z_positive_slippageB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB(\n&_stiffness_diagram_around_x_depends_onB!\n\x1f_stiffness_diagram_around_x_endB\'\n%_stiffness_diagram_around_x_is_sortedB#\n!_stiffness_diagram_around_x_startB\'\n%_stiffness_diagram_around_x_symmetricB#\n!_stiffness_diagram_around_x_tableB(\n&_stiffness_diagram_around_y_depends_onB!\n\x1f_stiffness_diagram_around_y_endB\'\n%_stiffness_diagram_around_y_is_sortedB#\n!_stiffness_diagram_around_y_startB\'\n%_stiffness_diagram_around_y_symmetricB#\n!_stiffness_diagram_around_y_tableB(\n&_stiffness_diagram_around_z_depends_onB!\n\x1f_stiffness_diagram_around_z_endB\'\n%_stiffness_diagram_around_z_is_sortedB#\n!_stiffness_diagram_around_z_startB\'\n%_stiffness_diagram_around_z_symmetricB#\n!_stiffness_diagram_around_z_tableB\x1f\n\x1d_support_dimension_diameter_xB\x1f\n\x1d_support_dimension_diameter_yB\x1f\n\x1d_support_dimension_diameter_zB\x1d\n\x1b_support_dimension_height_xB\x1d\n\x1b_support_dimension_height_yB\x1d\n\x1b_support_dimension_height_zB\x1e\n\x1c_support_dimension_type_on_xB\x1e\n\x1c_support_dimension_type_on_yB\x1e\n\x1c_support_dimension_type_on_zB\x1c\n\x1a_support_dimension_width_xB\x1c\n\x1a_support_dimension_width_yB\x1c\n\x1a_support_dimension_width_zB\x1d\n\x1b_support_dimensions_enabledB!\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 _diagram_around_x_ac_yield_minusB\"\n _diagram_around_y_ac_yield_minusB\"\n _diagram_around_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\x1f_diagram_around_x_ac_yield_plusB!\n\x1f_diagram_around_y_ac_yield_plusB!\n\x1f_diagram_around_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_around_x_acceptance_criteria_activeB.\n,_diagram_around_y_acceptance_criteria_activeB.\n,_diagram_around_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_around_x_minus_color_oneB#\n!_diagram_around_y_minus_color_oneB#\n!_diagram_around_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!_diagram_around_x_minus_color_twoB#\n!_diagram_around_y_minus_color_twoB#\n!_diagram_around_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 _diagram_around_x_plus_color_oneB\"\n _diagram_around_y_plus_color_oneB\"\n _diagram_around_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\"\n _diagram_around_x_plus_color_twoB\"\n _diagram_around_y_plus_color_twoB\"\n _diagram_around_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\x1f\n\x1d_diagram_around_x_color_tableB\x1f\n\x1d_diagram_around_y_color_tableB\x1f\n\x1d_diagram_around_z_color_tableB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\'\n%ArrayOfNodalSupportDiagramAlongXTable\"\'\n%ArrayOfNodalSupportDiagramAlongYTable\"\'\n%ArrayOfNodalSupportDiagramAlongZTable\"(\n&ArrayOfNodalSupportDiagramAroundXTable\"(\n&ArrayOfNodalSupportDiagramAroundYTable\"(\n&ArrayOfNodalSupportDiagramAroundZTable\"1\n/ArrayOfNodalSupportStiffnessDiagramAroundXTable\"1\n/ArrayOfNodalSupportStiffnessDiagramAroundYTable\"1\n/ArrayOfNodalSupportStiffnessDiagramAroundZTable\",\n*ArrayOfNodalSupportDiagramAlongXColorTable\",\n*ArrayOfNodalSupportDiagramAlongYColorTable\",\n*ArrayOfNodalSupportDiagramAlongZColorTable\"-\n+ArrayOfNodalSupportDiagramAroundXColorTable\"-\n+ArrayOfNodalSupportDiagramAroundYColorTable\"-\n+ArrayOfNodalSupportDiagramAroundZColorTable*\xe6\x02\n!NodalSupportSpecificDirectionType\x12>\n:NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12:\n6NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12@\n<NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12\x42\n>NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12?\n;NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02*\xf1\x06\n\x1fNodalSupportSpringXNonlinearity\x12\x31\n-NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x34\n0NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x44\n@NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x44\n@NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12@\n<NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12@\n<NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12\x41\n=NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12\x41\n=NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x43\n?NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12H\nDNODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12\x41\n=NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12=\n9NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12>\n:NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf1\x06\n\x1fNodalSupportSpringYNonlinearity\x12\x31\n-NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x34\n0NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x44\n@NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x44\n@NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12@\n<NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12@\n<NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12\x41\n=NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12\x41\n=NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x43\n?NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12H\nDNODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12\x41\n=NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12=\n9NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12>\n:NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf1\x06\n\x1fNodalSupportSpringZNonlinearity\x12\x31\n-NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x34\n0NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x44\n@NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x44\n@NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12@\n<NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12@\n<NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12\x41\n=NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12\x41\n=NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x43\n?NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12H\nDNODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12\x41\n=NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12=\n9NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12>\n:NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xb4\x08\n,NodalSupportRotationalRestraintXNonlinearity\x12?\n;NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHNODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xb4\x08\n,NodalSupportRotationalRestraintYNonlinearity\x12?\n;NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xb4\x08\n,NodalSupportRotationalRestraintZNonlinearity\x12?\n;NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHNODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf8\x01\n\x18NodalSupportAxesSequence\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_XYZ\x10\x00\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_XZY\x10\x01\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_YXZ\x10\x02\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_YZX\x10\x03\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_ZXY\x10\x04\x12#\n\x1fNODAL_SUPPORT_AXES_SEQUENCE_ZYX\x10\x05*\xbf\x01\n!NodalSupportColumnBaseSupportType\x12\x31\n-NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_HINGED\x10\x00\x12\x30\n,NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_RIGID\x10\x02\x12\x35\n1NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_SEMI_RIGID\x10\x01*\x88\x01\n!NodalSupportColumnHeadSupportType\x12\x31\n-NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_HINGED\x10\x00\x12\x30\n,NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_RIGID\x10\x01*y\n\x1aNodalSupportColumnHeadType\x12.\n*NODAL_SUPPORT_COLUMN_HEAD_TYPE_RECTANGULAR\x10\x00\x12+\n\'NODAL_SUPPORT_COLUMN_HEAD_TYPE_CIRCULAR\x10\x01*\xdb\x01\n\x1dNodalSupportColumnSupportType\x12\x41\n=NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_SURFACE_FOUNDATIONS\x10\x00\x12;\n7NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_NODAL_SUPPORT\x10\x01\x12:\n6NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_WITH_ADAPTED_FE_MESH\x10\x02*\xb5\x02\n\x1eNodalSupportDiagramAlongXStart\x12\x43\n?NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBNODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cNodalSupportDiagramAlongXEnd\x12\x41\n=NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb5\x02\n\x1eNodalSupportDiagramAlongYStart\x12\x43\n?NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBNODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cNodalSupportDiagramAlongYEnd\x12\x41\n=NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb5\x02\n\x1eNodalSupportDiagramAlongZStart\x12\x43\n?NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBNODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cNodalSupportDiagramAlongZEnd\x12\x41\n=NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xba\x02\n\x1fNodalSupportDiagramAroundXStart\x12\x44\n@NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12G\nCNODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x41\n=NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dNodalSupportDiagramAroundXEnd\x12\x42\n>NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xba\x02\n\x1fNodalSupportDiagramAroundYStart\x12\x44\n@NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12G\nCNODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x41\n=NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dNodalSupportDiagramAroundYEnd\x12\x42\n>NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xba\x02\n\x1fNodalSupportDiagramAroundZStart\x12\x44\n@NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12G\nCNODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x41\n=NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dNodalSupportDiagramAroundZEnd\x12\x42\n>NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nANODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb8\x01\n#NodalSupportDirectedToNodeFirstAxis\x12/\n+NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_X\x10\x00\x12/\n+NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Y\x10\x01\x12/\n+NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Z\x10\x02*\xbc\x01\n$NodalSupportDirectedToNodeSecondAxis\x12\x30\n,NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_X\x10\x00\x12\x30\n,NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Y\x10\x01\x12\x30\n,NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Z\x10\x02*\xcb\x01\n\'NodalSupportParallelToTwoNodesFirstAxis\x12\x34\n0NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X\x10\x00\x12\x34\n0NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y\x10\x01\x12\x34\n0NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z\x10\x02*\xcf\x01\n(NodalSupportParallelToTwoNodesSecondAxis\x12\x35\n1NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X\x10\x00\x12\x35\n1NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y\x10\x01\x12\x35\n1NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z\x10\x02*\xfd\x03\n-NodalSupportPartialActivityAlongXNegativeType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfd\x03\n-NodalSupportPartialActivityAlongXPositiveType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfd\x03\n-NodalSupportPartialActivityAlongYNegativeType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfd\x03\n-NodalSupportPartialActivityAlongYPositiveType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfd\x03\n-NodalSupportPartialActivityAlongZNegativeType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfd\x03\n-NodalSupportPartialActivityAlongZPositiveType\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x61\n]NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPNODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundXNegativeType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundXPositiveType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundYNegativeType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundYPositiveType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundZNegativeType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x85\x04\n.NodalSupportPartialActivityAroundZPositiveType\x12X\nTNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12W\nSNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x63\n_NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12U\nQNODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x64\n`NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x91\x03\n,NodalSupportStiffnessDiagramAroundXDependsOn\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX\x10\x00\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P\x10\x03\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY\x10\x01\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ\x10\x02*\xb4\x02\n&NodalSupportStiffnessDiagramAroundXEnd\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbc\x02\n(NodalSupportStiffnessDiagramAroundXStart\x12X\nTNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12[\nWNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\x91\x03\n,NodalSupportStiffnessDiagramAroundYDependsOn\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX\x10\x00\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P\x10\x03\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY\x10\x01\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ\x10\x02*\xb4\x02\n&NodalSupportStiffnessDiagramAroundYEnd\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbc\x02\n(NodalSupportStiffnessDiagramAroundYStart\x12X\nTNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12[\nWNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\x91\x03\n,NodalSupportStiffnessDiagramAroundZDependsOn\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX\x10\x00\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P\x10\x03\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY\x10\x01\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ\x10\x02*\xb4\x02\n&NodalSupportStiffnessDiagramAroundZEnd\x12V\nRNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12W\nSNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbc\x02\n(NodalSupportStiffnessDiagramAroundZStart\x12X\nTNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12[\nWNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12Y\nUNODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xcc\x01\n#NodalSupportSupportDimensionTypeOnX\x12\x39\n5NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_RECTANGULAR\x10\x00\x12\x36\n2NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_CIRCULAR\x10\x01\x12\x32\n.NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_NONE\x10\x02*\xcc\x01\n#NodalSupportSupportDimensionTypeOnY\x12\x39\n5NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_RECTANGULAR\x10\x00\x12\x36\n2NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_CIRCULAR\x10\x01\x12\x32\n.NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_NONE\x10\x02*\xcc\x01\n#NodalSupportSupportDimensionTypeOnZ\x12\x39\n5NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_RECTANGULAR\x10\x00\x12\x36\n2NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_CIRCULAR\x10\x01\x12\x32\n.NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_NONE\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_nodes.nodal_support_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_NODALSUPPORTSPECIFICDIRECTIONTYPE']._serialized_start=24436
|
|
36
|
+
_globals['_NODALSUPPORTSPECIFICDIRECTIONTYPE']._serialized_end=24794
|
|
37
|
+
_globals['_NODALSUPPORTSPRINGXNONLINEARITY']._serialized_start=24797
|
|
38
|
+
_globals['_NODALSUPPORTSPRINGXNONLINEARITY']._serialized_end=25678
|
|
39
|
+
_globals['_NODALSUPPORTSPRINGYNONLINEARITY']._serialized_start=25681
|
|
40
|
+
_globals['_NODALSUPPORTSPRINGYNONLINEARITY']._serialized_end=26562
|
|
41
|
+
_globals['_NODALSUPPORTSPRINGZNONLINEARITY']._serialized_start=26565
|
|
42
|
+
_globals['_NODALSUPPORTSPRINGZNONLINEARITY']._serialized_end=27446
|
|
43
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTXNONLINEARITY']._serialized_start=27449
|
|
44
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTXNONLINEARITY']._serialized_end=28525
|
|
45
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTYNONLINEARITY']._serialized_start=28528
|
|
46
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTYNONLINEARITY']._serialized_end=29604
|
|
47
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTZNONLINEARITY']._serialized_start=29607
|
|
48
|
+
_globals['_NODALSUPPORTROTATIONALRESTRAINTZNONLINEARITY']._serialized_end=30683
|
|
49
|
+
_globals['_NODALSUPPORTAXESSEQUENCE']._serialized_start=30686
|
|
50
|
+
_globals['_NODALSUPPORTAXESSEQUENCE']._serialized_end=30934
|
|
51
|
+
_globals['_NODALSUPPORTCOLUMNBASESUPPORTTYPE']._serialized_start=30937
|
|
52
|
+
_globals['_NODALSUPPORTCOLUMNBASESUPPORTTYPE']._serialized_end=31128
|
|
53
|
+
_globals['_NODALSUPPORTCOLUMNHEADSUPPORTTYPE']._serialized_start=31131
|
|
54
|
+
_globals['_NODALSUPPORTCOLUMNHEADSUPPORTTYPE']._serialized_end=31267
|
|
55
|
+
_globals['_NODALSUPPORTCOLUMNHEADTYPE']._serialized_start=31269
|
|
56
|
+
_globals['_NODALSUPPORTCOLUMNHEADTYPE']._serialized_end=31390
|
|
57
|
+
_globals['_NODALSUPPORTCOLUMNSUPPORTTYPE']._serialized_start=31393
|
|
58
|
+
_globals['_NODALSUPPORTCOLUMNSUPPORTTYPE']._serialized_end=31612
|
|
59
|
+
_globals['_NODALSUPPORTDIAGRAMALONGXSTART']._serialized_start=31615
|
|
60
|
+
_globals['_NODALSUPPORTDIAGRAMALONGXSTART']._serialized_end=31924
|
|
61
|
+
_globals['_NODALSUPPORTDIAGRAMALONGXEND']._serialized_start=31927
|
|
62
|
+
_globals['_NODALSUPPORTDIAGRAMALONGXEND']._serialized_end=32226
|
|
63
|
+
_globals['_NODALSUPPORTDIAGRAMALONGYSTART']._serialized_start=32229
|
|
64
|
+
_globals['_NODALSUPPORTDIAGRAMALONGYSTART']._serialized_end=32538
|
|
65
|
+
_globals['_NODALSUPPORTDIAGRAMALONGYEND']._serialized_start=32541
|
|
66
|
+
_globals['_NODALSUPPORTDIAGRAMALONGYEND']._serialized_end=32840
|
|
67
|
+
_globals['_NODALSUPPORTDIAGRAMALONGZSTART']._serialized_start=32843
|
|
68
|
+
_globals['_NODALSUPPORTDIAGRAMALONGZSTART']._serialized_end=33152
|
|
69
|
+
_globals['_NODALSUPPORTDIAGRAMALONGZEND']._serialized_start=33155
|
|
70
|
+
_globals['_NODALSUPPORTDIAGRAMALONGZEND']._serialized_end=33454
|
|
71
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDXSTART']._serialized_start=33457
|
|
72
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDXSTART']._serialized_end=33771
|
|
73
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDXEND']._serialized_start=33774
|
|
74
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDXEND']._serialized_end=34078
|
|
75
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDYSTART']._serialized_start=34081
|
|
76
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDYSTART']._serialized_end=34395
|
|
77
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDYEND']._serialized_start=34398
|
|
78
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDYEND']._serialized_end=34702
|
|
79
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDZSTART']._serialized_start=34705
|
|
80
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDZSTART']._serialized_end=35019
|
|
81
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDZEND']._serialized_start=35022
|
|
82
|
+
_globals['_NODALSUPPORTDIAGRAMAROUNDZEND']._serialized_end=35326
|
|
83
|
+
_globals['_NODALSUPPORTDIRECTEDTONODEFIRSTAXIS']._serialized_start=35329
|
|
84
|
+
_globals['_NODALSUPPORTDIRECTEDTONODEFIRSTAXIS']._serialized_end=35513
|
|
85
|
+
_globals['_NODALSUPPORTDIRECTEDTONODESECONDAXIS']._serialized_start=35516
|
|
86
|
+
_globals['_NODALSUPPORTDIRECTEDTONODESECONDAXIS']._serialized_end=35704
|
|
87
|
+
_globals['_NODALSUPPORTPARALLELTOTWONODESFIRSTAXIS']._serialized_start=35707
|
|
88
|
+
_globals['_NODALSUPPORTPARALLELTOTWONODESFIRSTAXIS']._serialized_end=35910
|
|
89
|
+
_globals['_NODALSUPPORTPARALLELTOTWONODESSECONDAXIS']._serialized_start=35913
|
|
90
|
+
_globals['_NODALSUPPORTPARALLELTOTWONODESSECONDAXIS']._serialized_end=36120
|
|
91
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=36123
|
|
92
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=36632
|
|
93
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=36635
|
|
94
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=37144
|
|
95
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_start=37147
|
|
96
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_end=37656
|
|
97
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_start=37659
|
|
98
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_end=38168
|
|
99
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_start=38171
|
|
100
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_end=38680
|
|
101
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_start=38683
|
|
102
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_end=39192
|
|
103
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_start=39195
|
|
104
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_end=39712
|
|
105
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_start=39715
|
|
106
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_end=40232
|
|
107
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_start=40235
|
|
108
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_end=40752
|
|
109
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_start=40755
|
|
110
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_end=41272
|
|
111
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_start=41275
|
|
112
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_end=41792
|
|
113
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_start=41795
|
|
114
|
+
_globals['_NODALSUPPORTPARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_end=42312
|
|
115
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXDEPENDSON']._serialized_start=42315
|
|
116
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXDEPENDSON']._serialized_end=42716
|
|
117
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXEND']._serialized_start=42719
|
|
118
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXEND']._serialized_end=43027
|
|
119
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXSTART']._serialized_start=43030
|
|
120
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDXSTART']._serialized_end=43346
|
|
121
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYDEPENDSON']._serialized_start=43349
|
|
122
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYDEPENDSON']._serialized_end=43750
|
|
123
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYEND']._serialized_start=43753
|
|
124
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYEND']._serialized_end=44061
|
|
125
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYSTART']._serialized_start=44064
|
|
126
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDYSTART']._serialized_end=44380
|
|
127
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZDEPENDSON']._serialized_start=44383
|
|
128
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZDEPENDSON']._serialized_end=44784
|
|
129
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZEND']._serialized_start=44787
|
|
130
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZEND']._serialized_end=45095
|
|
131
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZSTART']._serialized_start=45098
|
|
132
|
+
_globals['_NODALSUPPORTSTIFFNESSDIAGRAMAROUNDZSTART']._serialized_end=45414
|
|
133
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONX']._serialized_start=45417
|
|
134
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONX']._serialized_end=45621
|
|
135
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONY']._serialized_start=45624
|
|
136
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONY']._serialized_end=45828
|
|
137
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONZ']._serialized_start=45831
|
|
138
|
+
_globals['_NODALSUPPORTSUPPORTDIMENSIONTYPEONZ']._serialized_end=46035
|
|
139
|
+
_globals['_NODALSUPPORT']._serialized_start=122
|
|
140
|
+
_globals['_NODALSUPPORT']._serialized_end=23752
|
|
141
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGXTABLE']._serialized_start=23754
|
|
142
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGXTABLE']._serialized_end=23793
|
|
143
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGYTABLE']._serialized_start=23795
|
|
144
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGYTABLE']._serialized_end=23834
|
|
145
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGZTABLE']._serialized_start=23836
|
|
146
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGZTABLE']._serialized_end=23875
|
|
147
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDXTABLE']._serialized_start=23877
|
|
148
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDXTABLE']._serialized_end=23917
|
|
149
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDYTABLE']._serialized_start=23919
|
|
150
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDYTABLE']._serialized_end=23959
|
|
151
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDZTABLE']._serialized_start=23961
|
|
152
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDZTABLE']._serialized_end=24001
|
|
153
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDXTABLE']._serialized_start=24003
|
|
154
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDXTABLE']._serialized_end=24052
|
|
155
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDYTABLE']._serialized_start=24054
|
|
156
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDYTABLE']._serialized_end=24103
|
|
157
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDZTABLE']._serialized_start=24105
|
|
158
|
+
_globals['_ARRAYOFNODALSUPPORTSTIFFNESSDIAGRAMAROUNDZTABLE']._serialized_end=24154
|
|
159
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGXCOLORTABLE']._serialized_start=24156
|
|
160
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGXCOLORTABLE']._serialized_end=24200
|
|
161
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGYCOLORTABLE']._serialized_start=24202
|
|
162
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGYCOLORTABLE']._serialized_end=24246
|
|
163
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGZCOLORTABLE']._serialized_start=24248
|
|
164
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMALONGZCOLORTABLE']._serialized_end=24292
|
|
165
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDXCOLORTABLE']._serialized_start=24294
|
|
166
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDXCOLORTABLE']._serialized_end=24339
|
|
167
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDYCOLORTABLE']._serialized_start=24341
|
|
168
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDYCOLORTABLE']._serialized_end=24386
|
|
169
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDZCOLORTABLE']._serialized_start=24388
|
|
170
|
+
_globals['_ARRAYOFNODALSUPPORTDIAGRAMAROUNDZCOLORTABLE']._serialized_end=24433
|
|
171
|
+
# @@protoc_insertion_point(module_scope)
|