dlubal.api 0.1.293714a1__py3-none-any.whl → 2.12.2__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/api/common/__init__.py +8 -3
- dlubal/api/common/common_messages_pb2.py +78 -0
- dlubal/api/common/common_messages_pb2.pyi +230 -0
- dlubal/api/common/common_pb2.py +7 -3
- dlubal/api/common/common_pb2.pyi +16 -0
- dlubal/api/common/connection.py +243 -251
- dlubal/api/common/exceptions.py +11 -11
- dlubal/api/common/import_export/__init__.py +2 -0
- dlubal/api/common/import_export/export_attributes_pb2.py +46 -0
- dlubal/api/common/import_export/export_attributes_pb2.pyi +77 -0
- dlubal/api/common/import_export/import_attributes_pb2.py +40 -0
- dlubal/api/common/import_export/import_attributes_pb2.pyi +17 -0
- dlubal/api/common/model_id_pb2.py +4 -4
- dlubal/api/common/model_id_pb2.pyi +8 -8
- dlubal/api/{rfem/results/results_id_pb2.py → common/options_pb2.py} +5 -6
- dlubal/api/common/options_pb2.pyi +7 -0
- dlubal/api/common/packing.py +144 -0
- dlubal/api/common/table.py +36 -34
- dlubal/api/common/utility.py +131 -0
- dlubal/api/rfem/__init__.py +53 -32
- dlubal/api/rfem/all_pb2.py +36 -0
- dlubal/api/rfem/all_pb2.pyi +9 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -2
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/application.py +807 -290
- dlubal/api/rfem/application_pb2.py +37 -30
- dlubal/api/rfem/application_pb2.pyi +107 -102
- dlubal/api/rfem/application_pb2_grpc.py +1046 -61
- dlubal/api/rfem/{base_data → base_data_objects}/__init__.py +1 -1
- dlubal/api/rfem/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rfem/base_data_pb2.py +108 -0
- dlubal/api/rfem/base_data_pb2.pyi +2627 -0
- dlubal/api/rfem/beam_panels/__init__.py +4 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +39 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +53 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.pyi +59 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +44 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +93 -0
- dlubal/api/rfem/building_model/__init__.py +4 -4
- dlubal/api/rfem/building_model/building_story_pb2.py +24 -20
- dlubal/api/rfem/building_model/building_story_pb2.pyi +133 -95
- dlubal/api/rfem/building_model/deep_beam_pb2.py +225 -7
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +3505 -42
- dlubal/api/rfem/building_model/floor_set_pb2.py +4 -4
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +8 -9
- dlubal/api/rfem/building_model/shear_wall_pb2.py +123 -7
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +1843 -20
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -1
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +28 -17
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1729 -1661
- dlubal/api/rfem/component_design_objects/__init__.py +2 -0
- dlubal/api/rfem/component_design_objects/component_pb2.py +55 -0
- dlubal/api/rfem/component_design_objects/component_pb2.pyi +164 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.py +38 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.pyi +54 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +4 -2
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +28 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +150 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +76 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +414 -3
- dlubal/api/rfem/construction_stages/__init__.py +1 -1
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +52 -12
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +390 -31
- dlubal/api/rfem/design_addons_pb2.py +36 -0
- dlubal/api/rfem/design_addons_pb2.pyi +28 -0
- dlubal/api/rfem/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rfem/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +3 -2
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +8 -6
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +33 -17
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +10 -8
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +49 -30
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rfem/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +3 -2
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +8 -6
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +31 -15
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.py +42 -0
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.pyi +71 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +20 -12
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +107 -50
- dlubal/api/rfem/glass_design_objects/__init__.py +2 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -1
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +6 -6
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +254 -244
- dlubal/api/rfem/guide_objects/__init__.py +15 -10
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +18 -18
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +120 -128
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +10 -10
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +57 -52
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +31 -33
- dlubal/api/rfem/guide_objects/dimension_pb2.py +40 -26
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +266 -129
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +54 -52
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rfem/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +12 -10
- dlubal/api/rfem/guide_objects/note_pb2.pyi +90 -60
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +4 -4
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +27 -26
- dlubal/api/rfem/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +8 -8
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +68 -62
- dlubal/api/rfem/ifc_objects/__init__.py +2 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rfem/imperfections/__init__.py +3 -5
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +26 -16
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +155 -98
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +128 -128
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +130 -130
- dlubal/api/rfem/layout_and_drawing/__init__.py +2 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +69 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +410 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.py +39 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.pyi +37 -0
- dlubal/api/rfem/load_wizards/__init__.py +7 -2
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +91 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +14 -10
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +748 -698
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +22 -13
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +107 -43
- dlubal/api/rfem/loading/__init__.py +16 -15
- dlubal/api/rfem/loading/action_combination_pb2.py +14 -6
- dlubal/api/rfem/loading/action_combination_pb2.pyi +118 -21
- dlubal/api/rfem/loading/action_pb2.py +21 -9
- dlubal/api/rfem/loading/action_pb2.pyi +676 -37
- dlubal/api/rfem/loading/combination_wizard_pb2.py +14 -7
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +61 -20
- dlubal/api/rfem/loading/design_situation_pb2.py +14 -5
- dlubal/api/rfem/loading/design_situation_pb2.pyi +1164 -9
- dlubal/api/rfem/loading/load_case_pb2.py +70 -43
- dlubal/api/rfem/loading/load_case_pb2.pyi +1151 -255
- dlubal/api/rfem/loading/load_combination_pb2.py +32 -15
- dlubal/api/rfem/loading/load_combination_pb2.pyi +312 -72
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +133 -93
- dlubal/api/rfem/loading/optimization_settings_pb2.py +12 -8
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +81 -42
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +4 -4
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +8 -9
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +10 -6
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +44 -14
- dlubal/api/rfem/loading/result_combination_pb2.py +26 -9
- dlubal/api/rfem/loading/result_combination_pb2.pyi +266 -36
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +12 -12
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +45 -56
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +10 -10
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +53 -57
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +14 -12
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +65 -52
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +167 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +116 -90
- dlubal/api/rfem/loads/__init__.py +19 -17
- dlubal/api/rfem/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.py +40 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.pyi +49 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +8 -8
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +57 -60
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +10 -8
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +70 -51
- dlubal/api/rfem/loads/free_line_load_pb2.py +14 -8
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +108 -63
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +12 -10
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +80 -69
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +18 -14
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +114 -86
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/line_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_load_pb2.pyi +189 -78
- dlubal/api/rfem/loads/line_set_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +196 -85
- dlubal/api/rfem/loads/member_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_load_pb2.pyi +334 -232
- dlubal/api/rfem/loads/member_set_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +336 -234
- dlubal/api/rfem/loads/nodal_load_pb2.py +14 -12
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +101 -80
- dlubal/api/rfem/loads/opening_load_pb2.py +10 -9
- dlubal/api/rfem/loads/opening_load_pb2.pyi +39 -41
- dlubal/api/rfem/loads/solid_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_load_pb2.pyi +81 -89
- dlubal/api/rfem/loads/solid_set_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +84 -92
- dlubal/api/rfem/loads/surface_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_load_pb2.pyi +203 -148
- dlubal/api/rfem/loads/surface_set_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +210 -155
- dlubal/api/rfem/mesh/__init__.py +1 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.py +51 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +218 -0
- dlubal/api/rfem/object_id_pb2.py +39 -0
- dlubal/api/rfem/object_id_pb2.pyi +25 -0
- dlubal/api/rfem/object_type_pb2.py +36 -0
- dlubal/api/rfem/object_type_pb2.pyi +406 -0
- dlubal/api/rfem/result_objects/__init__.py +2 -1
- dlubal/api/rfem/result_objects/result_point_pb2.py +41 -0
- dlubal/api/rfem/result_objects/result_point_pb2.pyi +75 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +8 -8
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +48 -51
- dlubal/api/rfem/results/__init__.py +4 -2
- dlubal/api/rfem/results/result_table_pb2.py +36 -0
- dlubal/api/rfem/results/result_table_pb2.pyi +1176 -0
- dlubal/api/rfem/results/results_query_pb2.py +7 -6
- dlubal/api/rfem/results/results_query_pb2.pyi +10 -5
- dlubal/api/rfem/results/results_type_pb2.py +36 -0
- dlubal/api/rfem/results/results_type_pb2.pyi +678 -0
- dlubal/api/rfem/results/settings/__init__.py +1 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rfem/rsection_stresses/__init__.py +1 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -4
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +24 -3
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +124 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +20 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +102 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +2 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/stress_analysis_objects/__init__.py +3 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +41 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/__init__.py +13 -9
- dlubal/api/rfem/structure_advanced/block_pb2.py +20 -16
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +99 -83
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.py +61 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +460 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +53 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +158 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +2 -2
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +8 -8
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +8 -6
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +25 -14
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +6 -6
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +24 -24
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +60 -22
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +345 -53
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +74 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +26 -20
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +113 -88
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +4 -2
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +20 -5
- dlubal/api/rfem/structure_core/__init__.py +15 -15
- dlubal/api/rfem/structure_core/line_pb2.py +53 -19
- dlubal/api/rfem/structure_core/line_pb2.pyi +401 -109
- dlubal/api/rfem/structure_core/line_set_pb2.py +4 -4
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +19 -10
- dlubal/api/rfem/structure_core/material_pb2.py +111 -67
- dlubal/api/rfem/structure_core/material_pb2.pyi +1235 -689
- dlubal/api/rfem/structure_core/member_pb2.py +192 -45
- dlubal/api/rfem/structure_core/member_pb2.pyi +2434 -317
- dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -49
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +4011 -302
- dlubal/api/rfem/structure_core/member_set_pb2.py +122 -19
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +1739 -79
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -65
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +5761 -393
- dlubal/api/rfem/structure_core/node_pb2.py +14 -8
- dlubal/api/rfem/structure_core/node_pb2.pyi +93 -53
- dlubal/api/rfem/structure_core/opening_pb2.py +2 -2
- dlubal/api/rfem/structure_core/opening_pb2.pyi +12 -8
- dlubal/api/rfem/structure_core/section_pb2.py +42 -32
- dlubal/api/rfem/structure_core/section_pb2.pyi +1582 -1386
- dlubal/api/rfem/structure_core/solid_pb2.py +28 -18
- dlubal/api/rfem/structure_core/solid_pb2.pyi +202 -128
- dlubal/api/rfem/structure_core/solid_set_pb2.py +10 -4
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +49 -12
- dlubal/api/rfem/structure_core/surface_pb2.py +63 -33
- dlubal/api/rfem/structure_core/surface_pb2.pyi +346 -168
- dlubal/api/rfem/structure_core/surface_set_pb2.py +14 -12
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +67 -49
- dlubal/api/rfem/structure_core/thickness_pb2.py +42 -30
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +356 -280
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +132 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +726 -3
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +192 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +58 -23
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +315 -83
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +14 -4
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +76 -7
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -5
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +34 -34
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +164 -176
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +74 -33
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +423 -113
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +24 -18
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +217 -128
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +4 -4
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +13 -14
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +47 -39
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +546 -381
- dlubal/api/rfem/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_foundations/__init__.py +1 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +336 -0
- dlubal/api/rfem/types_for_glass_design/__init__.py +1 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +91 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +456 -0
- dlubal/api/rfem/types_for_lines/__init__.py +6 -4
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +121 -69
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +826 -428
- dlubal/api/rfem/types_for_lines/line_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_lines/line_link_pb2.pyi +66 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +4 -4
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +25 -26
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +124 -92
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +884 -699
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +10 -8
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +63 -56
- dlubal/api/rfem/types_for_members/__init__.py +14 -13
- dlubal/api/rfem/types_for_members/design_support_pb2.py +28 -16
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +206 -119
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +103 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +2 -2
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +59 -63
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +214 -116
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1286 -742
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +4 -4
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +40 -41
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +12 -4
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +68 -7
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +6 -4
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +18 -6
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +16 -14
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +66 -50
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +6 -6
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +32 -34
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +18 -16
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +90 -80
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +14 -12
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +77 -68
- dlubal/api/rfem/types_for_members/member_support_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +90 -96
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +14 -4
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +120 -9
- dlubal/api/rfem/types_for_nodes/__init__.py +3 -2
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +6 -6
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +19 -21
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +176 -136
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1293 -1039
- dlubal/api/rfem/types_for_solids/__init__.py +3 -3
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +6 -6
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +27 -29
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +8 -8
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -4
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +122 -71
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +796 -442
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +165 -77
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +1215 -564
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +46 -34
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +277 -209
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +10 -10
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +42 -46
- dlubal/api/rfem/types_for_steel_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +18 -9
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +154 -22
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +84 -57
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +423 -236
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +105 -0
- dlubal/api/rfem/types_for_steel_joints/__init__.py +1 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +51 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +160 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +28 -31
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +6 -6
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +36 -30
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +37 -38
- dlubal/api/rfem/types_for_timber_design/__init__.py +6 -5
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +72 -23
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +404 -65
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +14 -4
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +96 -7
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +8 -8
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +61 -56
- dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
- dlubal/api/rsection/__init__.py +14 -0
- dlubal/api/rsection/all_pb2.py +36 -0
- dlubal/api/rsection/all_pb2.pyi +9 -0
- dlubal/api/rsection/application.py +508 -0
- dlubal/api/rsection/application_pb2.py +48 -0
- dlubal/api/rsection/application_pb2.pyi +39 -0
- dlubal/api/rsection/application_pb2_grpc.py +1293 -0
- dlubal/api/rsection/base_data_pb2.py +58 -0
- dlubal/api/rsection/base_data_pb2.pyi +158 -0
- dlubal/api/rsection/global_parameters/__init__.py +1 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.pyi +150 -0
- dlubal/api/rsection/guide_objects/__init__.py +4 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.py +71 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.pyi +312 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.py +43 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.pyi +125 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rsection/internal_forces/__init__.py +1 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.py +38 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.pyi +58 -0
- dlubal/api/rsection/loading/__init__.py +2 -0
- dlubal/api/rsection/loading/load_case_pb2.py +38 -0
- dlubal/api/rsection/loading/load_case_pb2.pyi +616 -0
- dlubal/api/rsection/loading/load_combination_pb2.py +42 -0
- dlubal/api/rsection/loading/load_combination_pb2.pyi +113 -0
- dlubal/api/rsection/object_id_pb2.py +39 -0
- dlubal/api/rsection/object_id_pb2.pyi +25 -0
- dlubal/api/rsection/object_type_pb2.py +36 -0
- dlubal/api/rsection/object_type_pb2.pyi +60 -0
- dlubal/api/rsection/results/__init__.py +4 -0
- dlubal/api/rsection/results/result_table_pb2.py +36 -0
- dlubal/api/rsection/results/result_table_pb2.pyi +10 -0
- dlubal/api/rsection/results/results_query_pb2.py +41 -0
- dlubal/api/rsection/results/results_query_pb2.pyi +31 -0
- dlubal/api/rsection/results/results_type_pb2.py +36 -0
- dlubal/api/rsection/results/results_type_pb2.pyi +10 -0
- dlubal/api/rsection/results/settings/__init__.py +1 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rsection/rsection_stresses/__init__.py +1 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rsection/structure_advanced/__init__.py +1 -0
- dlubal/api/rsection/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rsection/structure_advanced/block_pb2.pyi +190 -0
- dlubal/api/rsection/structure_core/__init__.py +15 -0
- dlubal/api/rsection/structure_core/bar_pb2.py +40 -0
- dlubal/api/rsection/structure_core/bar_pb2.pyi +102 -0
- dlubal/api/rsection/structure_core/element_pb2.py +53 -0
- dlubal/api/rsection/structure_core/element_pb2.pyi +204 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.py +36 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.pyi +22 -0
- dlubal/api/rsection/structure_core/layer_pb2.py +38 -0
- dlubal/api/rsection/structure_core/layer_pb2.pyi +44 -0
- dlubal/api/rsection/structure_core/line_pb2.py +59 -0
- dlubal/api/rsection/structure_core/line_pb2.pyi +222 -0
- dlubal/api/rsection/structure_core/material_pb2.py +110 -0
- dlubal/api/rsection/structure_core/material_pb2.pyi +1037 -0
- dlubal/api/rsection/structure_core/opening_pb2.py +37 -0
- dlubal/api/rsection/structure_core/opening_pb2.pyi +39 -0
- dlubal/api/rsection/structure_core/part_pb2.py +39 -0
- dlubal/api/rsection/structure_core/part_pb2.pyi +58 -0
- dlubal/api/rsection/structure_core/point_pb2.py +43 -0
- dlubal/api/rsection/structure_core/point_pb2.pyi +109 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.py +36 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.pyi +23 -0
- dlubal/api/rsection/structure_core/section_pb2.py +50 -0
- dlubal/api/rsection/structure_core/section_pb2.pyi +1723 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.py +36 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.pyi +42 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.py +45 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.pyi +101 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.py +38 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.pyi +49 -0
- dlubal/api/rsection/structure_core/weld_pb2.py +38 -0
- dlubal/api/rsection/structure_core/weld_pb2.pyi +46 -0
- dlubal/api/rstab/__init__.py +37 -0
- dlubal/api/rstab/all_pb2.py +36 -0
- dlubal/api/rstab/all_pb2.pyi +9 -0
- dlubal/api/rstab/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/application.py +740 -0
- dlubal/api/rstab/application_pb2.py +69 -0
- dlubal/api/rstab/application_pb2.pyi +121 -0
- dlubal/api/rstab/application_pb2_grpc.py +1736 -0
- dlubal/api/rstab/base_data_objects/__init__.py +1 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rstab/base_data_pb2.py +92 -0
- dlubal/api/rstab/base_data_pb2.pyi +2361 -0
- dlubal/api/rstab/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +61 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +1762 -0
- dlubal/api/rstab/concrete_design_objects/__init__.py +4 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +61 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +181 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +109 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +445 -0
- dlubal/api/rstab/design_addons_pb2.py +36 -0
- dlubal/api/rstab/design_addons_pb2.pyi +22 -0
- dlubal/api/rstab/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rstab/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rstab/dynamic_loads/__init__.py +3 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +42 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +67 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +44 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +91 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rstab/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/global_parameters/__init__.py +1 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +278 -0
- dlubal/api/rstab/guide_objects/__init__.py +15 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +207 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +91 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.py +69 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.pyi +280 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rstab/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rstab/guide_objects/note_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/note_pb2.pyi +117 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rstab/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +135 -0
- dlubal/api/rstab/ifc_objects/__init__.py +2 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rstab/imperfections/__init__.py +3 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.py +60 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +215 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rstab/load_wizards/__init__.py +7 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +89 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.py +48 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.pyi +777 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.py +55 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.pyi +148 -0
- dlubal/api/rstab/loading/__init__.py +16 -0
- dlubal/api/rstab/loading/action_combination_pb2.py +48 -0
- dlubal/api/rstab/loading/action_combination_pb2.pyi +153 -0
- dlubal/api/rstab/loading/action_pb2.py +54 -0
- dlubal/api/rstab/loading/action_pb2.pyi +719 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.py +47 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.pyi +106 -0
- dlubal/api/rstab/loading/design_situation_pb2.py +47 -0
- dlubal/api/rstab/loading/design_situation_pb2.pyi +1196 -0
- dlubal/api/rstab/loading/load_case_pb2.py +102 -0
- dlubal/api/rstab/loading/load_case_pb2.pyi +1365 -0
- dlubal/api/rstab/loading/load_combination_pb2.py +65 -0
- dlubal/api/rstab/loading/load_combination_pb2.pyi +384 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +147 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.pyi +111 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.pyi +50 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +44 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +66 -0
- dlubal/api/rstab/loading/result_combination_pb2.py +59 -0
- dlubal/api/rstab/loading/result_combination_pb2.pyi +300 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +80 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +114 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.py +42 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +110 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.pyi +176 -0
- dlubal/api/rstab/loads/__init__.py +5 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rstab/loads/member_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_load_pb2.pyi +492 -0
- dlubal/api/rstab/loads/member_set_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_set_load_pb2.pyi +490 -0
- dlubal/api/rstab/loads/nodal_load_pb2.py +49 -0
- dlubal/api/rstab/loads/nodal_load_pb2.pyi +224 -0
- dlubal/api/rstab/object_id_pb2.py +39 -0
- dlubal/api/rstab/object_id_pb2.pyi +25 -0
- dlubal/api/rstab/object_type_pb2.py +36 -0
- dlubal/api/rstab/object_type_pb2.pyi +248 -0
- dlubal/api/rstab/results/__init__.py +4 -0
- dlubal/api/rstab/results/result_table_pb2.py +36 -0
- dlubal/api/rstab/results/result_table_pb2.pyi +480 -0
- dlubal/api/rstab/results/results_query_pb2.py +41 -0
- dlubal/api/rstab/results/results_query_pb2.pyi +31 -0
- dlubal/api/rstab/results/results_type_pb2.py +36 -0
- dlubal/api/rstab/results/results_type_pb2.pyi +338 -0
- dlubal/api/rstab/results/settings/__init__.py +1 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rstab/rsection_stresses/__init__.py +1 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rstab/steel_design_objects/__init__.py +4 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +57 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +143 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +53 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +121 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/structure_advanced/__init__.py +4 -0
- dlubal/api/rstab/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rstab/structure_advanced/block_pb2.pyi +192 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +42 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +61 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +66 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +255 -0
- dlubal/api/rstab/structure_core/__init__.py +7 -0
- dlubal/api/rstab/structure_core/material_pb2.py +112 -0
- dlubal/api/rstab/structure_core/material_pb2.pyi +1047 -0
- dlubal/api/rstab/structure_core/member_pb2.py +214 -0
- dlubal/api/rstab/structure_core/member_pb2.pyi +2525 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.py +310 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.pyi +4141 -0
- dlubal/api/rstab/structure_core/member_set_pb2.py +156 -0
- dlubal/api/rstab/structure_core/member_set_pb2.pyi +1885 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.py +430 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +6065 -0
- dlubal/api/rstab/structure_core/node_pb2.py +49 -0
- dlubal/api/rstab/structure_core/node_pb2.pyi +174 -0
- dlubal/api/rstab/structure_core/section_pb2.py +76 -0
- dlubal/api/rstab/structure_core/section_pb2.pyi +2135 -0
- dlubal/api/rstab/timber_design_objects/__init__.py +3 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +165 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +745 -0
- dlubal/api/rstab/types_for_aluminum_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +382 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_concrete_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +251 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +107 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +496 -0
- dlubal/api/rstab/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rstab/types_for_foundations/__init__.py +1 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +334 -0
- dlubal/api/rstab/types_for_members/__init__.py +13 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.py +62 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.pyi +249 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +99 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.py +249 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +1770 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +61 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +50 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +127 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +80 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.py +52 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +149 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +139 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.pyi +156 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +143 -0
- dlubal/api/rstab/types_for_nodes/__init__.py +2 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +211 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +1444 -0
- dlubal/api/rstab/types_for_special_objects/__init__.py +1 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +198 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +1381 -0
- dlubal/api/rstab/types_for_steel_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +117 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +524 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_timber_design/__init__.py +6 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +105 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +478 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +121 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
- dlubal_api-2.12.2.dist-info/METADATA +76 -0
- dlubal_api-2.12.2.dist-info/RECORD +927 -0
- {dlubal.api-0.1.293714a1.dist-info → dlubal_api-2.12.2.dist-info}/WHEEL +1 -1
- dlubal_api-2.12.2.dist-info/top_level.txt +3 -0
- examples/rfem/base_data.py +26 -0
- examples/rfem/block.py +29 -0
- examples/rfem/bus_station.py +395 -0
- examples/rfem/cantilever.py +172 -0
- examples/rfem/column.py +185 -0
- examples/rfem/component_design.py +161 -0
- examples/rfem/demo_limits.py +373 -0
- examples/rfem/design_configuration.py +71 -0
- examples/rfem/design_settings.py +37 -0
- examples/rfem/excel.py +86 -0
- examples/rfem/export_model_to.py +159 -0
- examples/rfem/frame.py +285 -0
- examples/rfem/import_from_ifc.py +60 -0
- examples/rfem/import_from_rsection.py +107 -0
- examples/rfem/import_from_xml.py +29 -0
- examples/rfem/material_user_defined.py +25 -0
- examples/rfem/mesh_settings.py +25 -0
- examples/rfem/multiple_models.py +1608 -0
- examples/rfem/nested_tables.py +81 -0
- examples/rfem/pydantic_streamlit.py +101 -0
- examples/rfem/results_access.py +38 -0
- examples/rfem/results_axes_system.py +53 -0
- examples/rfem/results_design_addons.py +58 -0
- examples/rfem/results_filtering.py +43 -0
- examples/rfem/results_in_location.py +39 -0
- examples/rfem/results_multiple_models.py +45 -0
- examples/rfem/sectioned_roof.py +449 -0
- examples/rfem/select_objects.py +39 -0
- examples/rfem/silo.py +750 -0
- examples/rfem/steel_design_configuration.py +27 -0
- examples/rfem/steel_hall.py +670 -0
- examples/rfem/steel_station.py +890 -0
- examples/rfem/tank_wind_load.py +180 -0
- examples/rsection/base_data.py +20 -0
- examples/rsection/steel_section.py +114 -0
- examples/rstab/base_data.py +25 -0
- examples/rstab/cantilever.py +166 -0
- examples/rstab/column.py +184 -0
- examples/rstab/dataframe.py +20 -0
- examples/rstab/design_settings.py +37 -0
- examples/rstab/excel.py +86 -0
- examples/rstab/export_model_to.py +154 -0
- examples/rstab/frame.py +285 -0
- examples/rstab/import_from_ifc.py +46 -0
- examples/rstab/import_from_rsection.py +107 -0
- examples/rstab/import_from_xml.py +29 -0
- examples/rstab/multiple_models.py +1358 -0
- examples/rstab/nested_tables.py +29 -0
- examples/rstab/pydantic_streamlit.py +101 -0
- examples/rstab/results_access.py +38 -0
- examples/rstab/results_axes_system.py +53 -0
- examples/rstab/results_in_location.py +39 -0
- examples/rstab/results_multiple_models.py +40 -0
- examples/rstab/select_objects.py +39 -0
- google/protobuf/any_pb2.py +37 -0
- google/protobuf/any_pb2.pyi +14 -0
- google/protobuf/descriptor_pb2.py +3363 -0
- google/protobuf/descriptor_pb2.pyi +723 -0
- google/protobuf/empty_pb2.py +37 -0
- google/protobuf/empty_pb2.pyi +9 -0
- google/protobuf/wrappers_pb2.py +53 -0
- google/protobuf/wrappers_pb2.pyi +59 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +0 -40
- dlubal/api/rfem/base_data/terrain_pb2.pyi +0 -53
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/packing.py +0 -45
- dlubal/api/rfem/results/results_id_pb2.pyi +0 -14
- dlubal.api-0.1.293714a1.dist-info/METADATA +0 -40
- dlubal.api-0.1.293714a1.dist-info/RECORD +0 -342
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +0 -1
|
@@ -25,147 +25,187 @@ _sym_db = _symbol_database.Default()
|
|
|
25
25
|
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
26
|
|
|
27
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')
|
|
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\"\xaa\xe8\x02\n\x0cNodalSupport\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\r\n\x05nodes\x18\x04 \x03(\x05\x12\x30\n\x06spring\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x03\x88\x01\x01\x12>\n\x14rotational_restraint\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12\x35\n(adopt_spring_constants_from_soil_massive\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\x15\n\x08spring_x\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08spring_y\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x15\n\x08spring_z\x18\n \x01(\x01H\x08\x88\x01\x01\x12#\n\x16rotational_restraint_x\x18\x0b \x01(\x01H\t\x88\x01\x01\x12#\n\x16rotational_restraint_y\x18\x0c \x01(\x01H\n\x88\x01\x01\x12#\n\x16rotational_restraint_z\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x65\n\x15spring_x_nonlinearity\x18\x0e \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.SpringXNonlinearityH\x0c\x88\x01\x01\x12\x65\n\x15spring_y_nonlinearity\x18\x0f \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.SpringYNonlinearityH\r\x88\x01\x01\x12\x65\n\x15spring_z_nonlinearity\x18\x10 \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.SpringZNonlinearityH\x0e\x88\x01\x01\x12\x80\x01\n#rotational_restraint_x_nonlinearity\x18\x11 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.RotationalRestraintXNonlinearityH\x0f\x88\x01\x01\x12\x80\x01\n#rotational_restraint_y_nonlinearity\x18\x12 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.RotationalRestraintYNonlinearityH\x10\x88\x01\x01\x12\x80\x01\n#rotational_restraint_z_nonlinearity\x18\x13 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.RotationalRestraintZNonlinearityH\x11\x88\x01\x01\x12\x84\x01\n&partial_activity_along_x_negative_type\x18\x14 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongXNegativeTypeH\x12\x88\x01\x01\x12\x84\x01\n&partial_activity_along_x_positive_type\x18\x15 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongXPositiveTypeH\x13\x88\x01\x01\x12\x84\x01\n&partial_activity_along_y_negative_type\x18\x16 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongYNegativeTypeH\x14\x88\x01\x01\x12\x84\x01\n&partial_activity_along_y_positive_type\x18\x17 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongYPositiveTypeH\x15\x88\x01\x01\x12\x84\x01\n&partial_activity_along_z_negative_type\x18\x18 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongZNegativeTypeH\x16\x88\x01\x01\x12\x84\x01\n&partial_activity_along_z_positive_type\x18\x19 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAlongZPositiveTypeH\x17\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_x_negative_type\x18\x1a \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundXNegativeTypeH\x18\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_x_positive_type\x18\x1b \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundXPositiveTypeH\x19\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_y_negative_type\x18\x1c \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundYNegativeTypeH\x1a\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_y_positive_type\x18\x1d \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundYPositiveTypeH\x1b\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_z_negative_type\x18\x1e \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundZNegativeTypeH\x1c\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_z_positive_type\x18\x1f \x01(\x0e\x32P.dlubal.api.rfem.types_for_nodes.NodalSupport.PartialActivityAroundZPositiveTypeH\x1d\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18 \x01(\x01H\x1e\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18! \x01(\x01H\x1f\x88\x01\x01\x12;\n.partial_activity_along_y_negative_displacement\x18\" \x01(\x01H \x88\x01\x01\x12;\n.partial_activity_along_y_positive_displacement\x18# \x01(\x01H!\x88\x01\x01\x12;\n.partial_activity_along_z_negative_displacement\x18$ \x01(\x01H\"\x88\x01\x01\x12;\n.partial_activity_along_z_positive_displacement\x18% \x01(\x01H#\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_rotation\x18& \x01(\x01H$\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_rotation\x18\' \x01(\x01H%\x88\x01\x01\x12\x38\n+partial_activity_around_y_negative_rotation\x18( \x01(\x01H&\x88\x01\x01\x12\x38\n+partial_activity_around_y_positive_rotation\x18) \x01(\x01H\'\x88\x01\x01\x12\x38\n+partial_activity_around_z_negative_rotation\x18* \x01(\x01H(\x88\x01\x01\x12\x38\n+partial_activity_around_z_positive_rotation\x18+ \x01(\x01H)\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18, \x01(\x01H*\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18- \x01(\x01H+\x88\x01\x01\x12\x34\n\'partial_activity_along_y_negative_force\x18. \x01(\x01H,\x88\x01\x01\x12\x34\n\'partial_activity_along_y_positive_force\x18/ \x01(\x01H-\x88\x01\x01\x12\x34\n\'partial_activity_along_z_negative_force\x18\x30 \x01(\x01H.\x88\x01\x01\x12\x34\n\'partial_activity_along_z_positive_force\x18\x31 \x01(\x01H/\x88\x01\x01\x12\x36\n)partial_activity_around_x_negative_moment\x18\x32 \x01(\x01H0\x88\x01\x01\x12\x36\n)partial_activity_around_x_positive_moment\x18\x33 \x01(\x01H1\x88\x01\x01\x12\x36\n)partial_activity_around_y_negative_moment\x18\x34 \x01(\x01H2\x88\x01\x01\x12\x36\n)partial_activity_around_y_positive_moment\x18\x35 \x01(\x01H3\x88\x01\x01\x12\x36\n)partial_activity_around_z_negative_moment\x18\x36 \x01(\x01H4\x88\x01\x01\x12\x36\n)partial_activity_around_z_positive_moment\x18\x37 \x01(\x01H5\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18\x38 \x01(\x01H6\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18\x39 \x01(\x01H7\x88\x01\x01\x12\x37\n*partial_activity_along_y_negative_slippage\x18: \x01(\x01H8\x88\x01\x01\x12\x37\n*partial_activity_along_y_positive_slippage\x18; \x01(\x01H9\x88\x01\x01\x12\x37\n*partial_activity_along_z_negative_slippage\x18< \x01(\x01H:\x88\x01\x01\x12\x37\n*partial_activity_along_z_positive_slippage\x18= \x01(\x01H;\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_slippage\x18> \x01(\x01H<\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_slippage\x18? \x01(\x01H=\x88\x01\x01\x12\x38\n+partial_activity_around_y_negative_slippage\x18@ \x01(\x01H>\x88\x01\x01\x12\x38\n+partial_activity_around_y_positive_slippage\x18\x41 \x01(\x01H?\x88\x01\x01\x12\x38\n+partial_activity_around_z_negative_slippage\x18\x42 \x01(\x01H@\x88\x01\x01\x12\x38\n+partial_activity_around_z_positive_slippage\x18\x43 \x01(\x01HA\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18\x44 \x01(\x08HB\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18\x45 \x01(\x08HC\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18\x46 \x01(\x08HD\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_symmetric\x18G \x01(\x08HE\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_symmetric\x18H \x01(\x08HF\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_symmetric\x18I \x01(\x08HG\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18J \x01(\x08HH\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18K \x01(\x08HI\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18L \x01(\x08HJ\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_is_sorted\x18M \x01(\x08HK\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_is_sorted\x18N \x01(\x08HL\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_is_sorted\x18O \x01(\x08HM\x88\x01\x01\x12\x64\n\x15\x64iagram_along_x_table\x18P \x01(\x0b\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXTableHN\x88\x01\x01\x12\x64\n\x15\x64iagram_along_y_table\x18Q \x01(\x0b\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYTableHO\x88\x01\x01\x12\x64\n\x15\x64iagram_along_z_table\x18R \x01(\x0b\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZTableHP\x88\x01\x01\x12\x66\n\x16\x64iagram_around_x_table\x18S \x01(\x0b\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXTableHQ\x88\x01\x01\x12\x66\n\x16\x64iagram_around_y_table\x18T \x01(\x0b\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYTableHR\x88\x01\x01\x12\x66\n\x16\x64iagram_around_z_table\x18U \x01(\x0b\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZTableHS\x88\x01\x01\x12\x64\n\x15\x64iagram_along_x_start\x18V \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXStartHT\x88\x01\x01\x12\x64\n\x15\x64iagram_along_y_start\x18W \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYStartHU\x88\x01\x01\x12\x64\n\x15\x64iagram_along_z_start\x18X \x01(\x0e\x32@.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZStartHV\x88\x01\x01\x12\x66\n\x16\x64iagram_around_x_start\x18Y \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXStartHW\x88\x01\x01\x12\x66\n\x16\x64iagram_around_y_start\x18Z \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYStartHX\x88\x01\x01\x12\x66\n\x16\x64iagram_around_z_start\x18[ \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZStartHY\x88\x01\x01\x12`\n\x13\x64iagram_along_x_end\x18\\ \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXEndHZ\x88\x01\x01\x12`\n\x13\x64iagram_along_y_end\x18] \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYEndH[\x88\x01\x01\x12`\n\x13\x64iagram_along_z_end\x18^ \x01(\x0e\x32>.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZEndH\\\x88\x01\x01\x12\x62\n\x14\x64iagram_around_x_end\x18_ \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXEndH]\x88\x01\x01\x12\x62\n\x14\x64iagram_around_y_end\x18` \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYEndH^\x88\x01\x01\x12\x62\n\x14\x64iagram_around_z_end\x18\x61 \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZEndH_\x88\x01\x01\x12+\n\x1e\x64iagram_along_x_ac_yield_minus\x18\x62 \x01(\x01H`\x88\x01\x01\x12+\n\x1e\x64iagram_along_y_ac_yield_minus\x18\x63 \x01(\x01Ha\x88\x01\x01\x12+\n\x1e\x64iagram_along_z_ac_yield_minus\x18\x64 \x01(\x01Hb\x88\x01\x01\x12,\n\x1f\x64iagram_around_x_ac_yield_minus\x18\x65 \x01(\x01Hc\x88\x01\x01\x12,\n\x1f\x64iagram_around_y_ac_yield_minus\x18\x66 \x01(\x01Hd\x88\x01\x01\x12,\n\x1f\x64iagram_around_z_ac_yield_minus\x18g \x01(\x01He\x88\x01\x01\x12*\n\x1d\x64iagram_along_x_ac_yield_plus\x18h \x01(\x01Hf\x88\x01\x01\x12*\n\x1d\x64iagram_along_y_ac_yield_plus\x18i \x01(\x01Hg\x88\x01\x01\x12*\n\x1d\x64iagram_along_z_ac_yield_plus\x18j \x01(\x01Hh\x88\x01\x01\x12+\n\x1e\x64iagram_around_x_ac_yield_plus\x18k \x01(\x01Hi\x88\x01\x01\x12+\n\x1e\x64iagram_around_y_ac_yield_plus\x18l \x01(\x01Hj\x88\x01\x01\x12+\n\x1e\x64iagram_around_z_ac_yield_plus\x18m \x01(\x01Hk\x88\x01\x01\x12\x37\n*diagram_along_x_acceptance_criteria_active\x18n \x01(\x08Hl\x88\x01\x01\x12\x37\n*diagram_along_y_acceptance_criteria_active\x18o \x01(\x08Hm\x88\x01\x01\x12\x37\n*diagram_along_z_acceptance_criteria_active\x18p \x01(\x08Hn\x88\x01\x01\x12\x38\n+diagram_around_x_acceptance_criteria_active\x18q \x01(\x08Ho\x88\x01\x01\x12\x38\n+diagram_around_y_acceptance_criteria_active\x18r \x01(\x08Hp\x88\x01\x01\x12\x38\n+diagram_around_z_acceptance_criteria_active\x18s \x01(\x08Hq\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_one\x18t \x01(\x0b\x32\x18.dlubal.api.common.ColorHr\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_one\x18u \x01(\x0b\x32\x18.dlubal.api.common.ColorHs\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_one\x18v \x01(\x0b\x32\x18.dlubal.api.common.ColorHt\x88\x01\x01\x12G\n diagram_around_x_minus_color_one\x18w \x01(\x0b\x32\x18.dlubal.api.common.ColorHu\x88\x01\x01\x12G\n diagram_around_y_minus_color_one\x18x \x01(\x0b\x32\x18.dlubal.api.common.ColorHv\x88\x01\x01\x12G\n diagram_around_z_minus_color_one\x18y \x01(\x0b\x32\x18.dlubal.api.common.ColorHw\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_two\x18z \x01(\x0b\x32\x18.dlubal.api.common.ColorHx\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_two\x18{ \x01(\x0b\x32\x18.dlubal.api.common.ColorHy\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_two\x18| \x01(\x0b\x32\x18.dlubal.api.common.ColorHz\x88\x01\x01\x12G\n diagram_around_x_minus_color_two\x18} \x01(\x0b\x32\x18.dlubal.api.common.ColorH{\x88\x01\x01\x12G\n diagram_around_y_minus_color_two\x18~ \x01(\x0b\x32\x18.dlubal.api.common.ColorH|\x88\x01\x01\x12G\n diagram_around_z_minus_color_two\x18\x7f \x01(\x0b\x32\x18.dlubal.api.common.ColorH}\x88\x01\x01\x12\x46\n\x1e\x64iagram_along_x_plus_color_one\x18\x80\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH~\x88\x01\x01\x12\x46\n\x1e\x64iagram_along_y_plus_color_one\x18\x81\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x7f\x88\x01\x01\x12G\n\x1e\x64iagram_along_z_plus_color_one\x18\x82\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x80\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_x_plus_color_one\x18\x83\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x81\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_y_plus_color_one\x18\x84\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x82\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_z_plus_color_one\x18\x85\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x83\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_x_plus_color_two\x18\x86\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x84\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_y_plus_color_two\x18\x87\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x85\x01\x88\x01\x01\x12G\n\x1e\x64iagram_along_z_plus_color_two\x18\x88\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x86\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_x_plus_color_two\x18\x89\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x87\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_y_plus_color_two\x18\x8a\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x88\x01\x88\x01\x01\x12H\n\x1f\x64iagram_around_z_plus_color_two\x18\x8b\x01 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x89\x01\x88\x01\x01\x12q\n\x1b\x64iagram_along_x_color_table\x18\x8c\x01 \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXColorTableH\x8a\x01\x88\x01\x01\x12q\n\x1b\x64iagram_along_y_color_table\x18\x8d\x01 \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYColorTableH\x8b\x01\x88\x01\x01\x12q\n\x1b\x64iagram_along_z_color_table\x18\x8e\x01 \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZColorTableH\x8c\x01\x88\x01\x01\x12s\n\x1c\x64iagram_around_x_color_table\x18\x8f\x01 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXColorTableH\x8d\x01\x88\x01\x01\x12s\n\x1c\x64iagram_around_y_color_table\x18\x90\x01 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYColorTableH\x8e\x01\x88\x01\x01\x12s\n\x1c\x64iagram_around_z_color_table\x18\x91\x01 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZColorTableH\x8f\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_x_symmetric\x18\x92\x01 \x01(\x08H\x90\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_y_symmetric\x18\x93\x01 \x01(\x08H\x91\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_z_symmetric\x18\x94\x01 \x01(\x08H\x92\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_x_is_sorted\x18\x95\x01 \x01(\x08H\x93\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_y_is_sorted\x18\x96\x01 \x01(\x08H\x94\x01\x88\x01\x01\x12\x33\n$stiffness_diagram_around_z_is_sorted\x18\x97\x01 \x01(\x08H\x95\x01\x88\x01\x01\x12{\n stiffness_diagram_around_x_start\x18\x98\x01 \x01(\x0e\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundXStartH\x96\x01\x88\x01\x01\x12{\n stiffness_diagram_around_y_start\x18\x99\x01 \x01(\x0e\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundYStartH\x97\x01\x88\x01\x01\x12{\n stiffness_diagram_around_z_start\x18\x9a\x01 \x01(\x0e\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundZStartH\x98\x01\x88\x01\x01\x12w\n\x1estiffness_diagram_around_x_end\x18\x9b\x01 \x01(\x0e\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundXEndH\x99\x01\x88\x01\x01\x12w\n\x1estiffness_diagram_around_y_end\x18\x9c\x01 \x01(\x0e\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundYEndH\x9a\x01\x88\x01\x01\x12w\n\x1estiffness_diagram_around_z_end\x18\x9d\x01 \x01(\x0e\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundZEndH\x9b\x01\x88\x01\x01\x12\x84\x01\n%stiffness_diagram_around_x_depends_on\x18\x9e\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundXDependsOnH\x9c\x01\x88\x01\x01\x12\x84\x01\n%stiffness_diagram_around_y_depends_on\x18\x9f\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundYDependsOnH\x9d\x01\x88\x01\x01\x12\x84\x01\n%stiffness_diagram_around_z_depends_on\x18\xa0\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundZDependsOnH\x9e\x01\x88\x01\x01\x12{\n stiffness_diagram_around_x_table\x18\xa1\x01 \x01(\x0b\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundXTableH\x9f\x01\x88\x01\x01\x12{\n stiffness_diagram_around_y_table\x18\xa2\x01 \x01(\x0b\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundYTableH\xa0\x01\x88\x01\x01\x12{\n stiffness_diagram_around_z_table\x18\xa3\x01 \x01(\x0b\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundZTableH\xa1\x01\x88\x01\x01\x12%\n\x16\x66riction_coefficient_x\x18\xa4\x01 \x01(\x01H\xa2\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_xy\x18\xa5\x01 \x01(\x01H\xa3\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_xz\x18\xa6\x01 \x01(\x01H\xa4\x01\x88\x01\x01\x12%\n\x16\x66riction_coefficient_y\x18\xa7\x01 \x01(\x01H\xa5\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_yx\x18\xa8\x01 \x01(\x01H\xa6\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_yz\x18\xa9\x01 \x01(\x01H\xa7\x01\x88\x01\x01\x12%\n\x16\x66riction_coefficient_z\x18\xaa\x01 \x01(\x01H\xa8\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_zx\x18\xab\x01 \x01(\x01H\xa9\x01\x88\x01\x01\x12&\n\x17\x66riction_coefficient_zy\x18\xac\x01 \x01(\x01H\xaa\x01\x88\x01\x01\x12)\n\x1asupport_dimensions_enabled\x18\xad\x01 \x01(\x08H\xab\x01\x88\x01\x01\x12q\n\x1bsupport_dimension_type_on_x\x18\xae\x01 \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.SupportDimensionTypeOnXH\xac\x01\x88\x01\x01\x12q\n\x1bsupport_dimension_type_on_y\x18\xaf\x01 \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.SupportDimensionTypeOnYH\xad\x01\x88\x01\x01\x12q\n\x1bsupport_dimension_type_on_z\x18\xb0\x01 \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.SupportDimensionTypeOnZH\xae\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_x\x18\xb1\x01 \x01(\x01H\xaf\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_y\x18\xb2\x01 \x01(\x01H\xb0\x01\x88\x01\x01\x12)\n\x1asupport_dimension_height_z\x18\xb3\x01 \x01(\x01H\xb1\x01\x88\x01\x01\x12(\n\x19support_dimension_width_x\x18\xb4\x01 \x01(\x01H\xb2\x01\x88\x01\x01\x12(\n\x19support_dimension_width_y\x18\xb5\x01 \x01(\x01H\xb3\x01\x88\x01\x01\x12(\n\x19support_dimension_width_z\x18\xb6\x01 \x01(\x01H\xb4\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_x\x18\xb7\x01 \x01(\x01H\xb5\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_y\x18\xb8\x01 \x01(\x01H\xb6\x01\x88\x01\x01\x12+\n\x1csupport_dimension_diameter_z\x18\xb9\x01 \x01(\x01H\xb7\x01\x88\x01\x01\x12 \n\x11\x63oordinate_system\x18\xba\x01 \x01(\x05H\xb8\x01\x88\x01\x01\x12k\n\x17specific_direction_type\x18\xbb\x01 \x01(\x0e\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.SpecificDirectionTypeH\xb9\x01\x88\x01\x01\x12X\n\raxes_sequence\x18\xbc\x01 \x01(\x0e\x32:.dlubal.api.rfem.types_for_nodes.NodalSupport.AxesSequenceH\xba\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_x\x18\xbd\x01 \x01(\x01H\xbb\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_y\x18\xbe\x01 \x01(\x01H\xbc\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_z\x18\xbf\x01 \x01(\x01H\xbd\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_1\x18\xc0\x01 \x01(\x01H\xbe\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_2\x18\xc1\x01 \x01(\x01H\xbf\x01\x88\x01\x01\x12$\n\x15rotated_about_angle_3\x18\xc2\x01 \x01(\x01H\xc0\x01\x88\x01\x01\x12.\n\x1f\x64irected_to_node_direction_node\x18\xc3\x01 \x01(\x05H\xc1\x01\x88\x01\x01\x12*\n\x1b\x64irected_to_node_plane_node\x18\xc4\x01 \x01(\x05H\xc2\x01\x88\x01\x01\x12q\n\x1b\x64irected_to_node_first_axis\x18\xc5\x01 \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_nodes.NodalSupport.DirectedToNodeFirstAxisH\xc3\x01\x88\x01\x01\x12s\n\x1c\x64irected_to_node_second_axis\x18\xc6\x01 \x01(\x0e\x32\x46.dlubal.api.rfem.types_for_nodes.NodalSupport.DirectedToNodeSecondAxisH\xc4\x01\x88\x01\x01\x12/\n parallel_to_two_nodes_first_node\x18\xc7\x01 \x01(\x05H\xc5\x01\x88\x01\x01\x12\x30\n!parallel_to_two_nodes_second_node\x18\xc8\x01 \x01(\x05H\xc6\x01\x88\x01\x01\x12/\n parallel_to_two_nodes_plane_node\x18\xc9\x01 \x01(\x05H\xc7\x01\x88\x01\x01\x12z\n parallel_to_two_nodes_first_axis\x18\xca\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_nodes.NodalSupport.ParallelToTwoNodesFirstAxisH\xc8\x01\x88\x01\x01\x12|\n!parallel_to_two_nodes_second_axis\x18\xcb\x01 \x01(\x0e\x32J.dlubal.api.rfem.types_for_nodes.NodalSupport.ParallelToTwoNodesSecondAxisH\xc9\x01\x88\x01\x01\x12\x1f\n\x10parallel_to_line\x18\xcc\x01 \x01(\x05H\xca\x01\x88\x01\x01\x12!\n\x12parallel_to_member\x18\xcd\x01 \x01(\x05H\xcb\x01\x88\x01\x01\x12)\n\x1aspecific_direction_enabled\x18\xce\x01 \x01(\x08H\xcc\x01\x88\x01\x01\x12(\n\x19\x66ictitious_column_enabled\x18\xcf\x01 \x01(\x08H\xcd\x01\x88\x01\x01\x12%\n\x16\x65\x63\x63\x65ntricities_enabled\x18\xd0\x01 \x01(\x08H\xce\x01\x88\x01\x01\x12 \n\x11single_foundation\x18\xd1\x01 \x01(\x05H\xcf\x01\x88\x01\x01\x12\x63\n\x13\x63olumn_support_type\x18\xd2\x01 \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupport.ColumnSupportTypeH\xd0\x01\x88\x01\x01\x12]\n\x10\x63olumn_head_type\x18\xd3\x01 \x01(\x0e\x32<.dlubal.api.rfem.types_for_nodes.NodalSupport.ColumnHeadTypeH\xd1\x01\x88\x01\x01\x12\x1d\n\x0e\x63olumn_width_x\x18\xd4\x01 \x01(\x01H\xd2\x01\x88\x01\x01\x12\x1d\n\x0e\x63olumn_width_y\x18\xd5\x01 \x01(\x01H\xd3\x01\x88\x01\x01\x12\x1e\n\x0f\x63olumn_rotation\x18\xd6\x01 \x01(\x01H\xd4\x01\x88\x01\x01\x12\x1c\n\rcolumn_height\x18\xd7\x01 \x01(\x01H\xd5\x01\x88\x01\x01\x12l\n\x18\x63olumn_head_support_type\x18\xd8\x01 \x01(\x0e\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.ColumnHeadSupportTypeH\xd6\x01\x88\x01\x01\x12l\n\x18\x63olumn_base_support_type\x18\xd9\x01 \x01(\x0e\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.ColumnBaseSupportTypeH\xd7\x01\x88\x01\x01\x12%\n\x16\x63olumn_base_semi_rigid\x18\xda\x01 \x01(\x01H\xd8\x01\x88\x01\x01\x12%\n\x16\x63olumn_shear_stiffness\x18\xdb\x01 \x01(\x08H\xd9\x01\x88\x01\x01\x12\x1d\n\x0e\x63olumn_section\x18\xdc\x01 \x01(\x05H\xda\x01\x88\x01\x01\x12\x1e\n\x0f\x63olumn_material\x18\xdd\x01 \x01(\x05H\xdb\x01\x88\x01\x01\x12*\n\x1b\x63olumn_section_same_as_head\x18\xde\x01 \x01(\x08H\xdc\x01\x88\x01\x01\x12\x1e\n\x0f\x63olumn_spring_x\x18\xdf\x01 \x01(\x01H\xdd\x01\x88\x01\x01\x12\x1e\n\x0f\x63olumn_spring_y\x18\xe0\x01 \x01(\x01H\xde\x01\x88\x01\x01\x12\x1e\n\x0f\x63olumn_spring_z\x18\xe1\x01 \x01(\x01H\xdf\x01\x88\x01\x01\x12,\n\x1d\x63olumn_rotational_restraint_x\x18\xe2\x01 \x01(\x01H\xe0\x01\x88\x01\x01\x12,\n\x1d\x63olumn_rotational_restraint_y\x18\xe3\x01 \x01(\x01H\xe1\x01\x88\x01\x01\x12\x62\n\x12specification_type\x18\xe4\x01 \x01(\x0e\x32?.dlubal.api.rfem.types_for_nodes.NodalSupport.SpecificationTypeH\xe2\x01\x88\x01\x01\x12\x62\n eccentricities_coordinate_system\x18\xe5\x01 \x01(\x0b\x32\x31.dlubal.api.common.CoordinateSystemRepresentationH\xe3\x01\x88\x01\x01\x12\x32\n\x06offset\x18\xe6\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\xe4\x01\x88\x01\x01\x12\x17\n\x08offset_x\x18\xe7\x01 \x01(\x01H\xe5\x01\x88\x01\x01\x12\x17\n\x08offset_y\x18\xe8\x01 \x01(\x01H\xe6\x01\x88\x01\x01\x12\x17\n\x08offset_z\x18\xe9\x01 \x01(\x01H\xe7\x01\x88\x01\x01\x12\'\n\x18transverse_offset_active\x18\xea\x01 \x01(\x08H\xe8\x01\x88\x01\x01\x12|\n transverse_offset_reference_type\x18\xeb\x01 \x01(\x0e\x32K.dlubal.api.rfem.types_for_nodes.NodalSupport.TransverseOffsetReferenceTypeH\xe9\x01\x88\x01\x01\x12\x31\n\"transverse_offset_reference_member\x18\xec\x01 \x01(\x05H\xea\x01\x88\x01\x01\x12\x32\n#transverse_offset_reference_surface\x18\xed\x01 \x01(\x05H\xeb\x01\x88\x01\x01\x12\x36\n\'transverse_offset_member_reference_node\x18\xee\x01 \x01(\x05H\xec\x01\x88\x01\x01\x12\x37\n(transverse_offset_surface_reference_node\x18\xef\x01 \x01(\x05H\xed\x01\x88\x01\x01\x12\x84\x01\n$transverse_offset_vertical_alignment\x18\xf0\x01 \x01(\x0e\x32O.dlubal.api.rfem.types_for_nodes.NodalSupport.TransverseOffsetVerticalAlignmentH\xee\x01\x88\x01\x01\x12\x88\x01\n&transverse_offset_horizontal_alignment\x18\xf1\x01 \x01(\x0e\x32Q.dlubal.api.rfem.types_for_nodes.NodalSupport.TransverseOffsetHorizontalAlignmentH\xef\x01\x88\x01\x01\x12(\n\x19scaffolding_hinge_enabled\x18\xf2\x01 \x01(\x08H\xf0\x01\x88\x01\x01\x12%\n\x16scaffolding_hinge_slip\x18\xf3\x01 \x01(\x01H\xf1\x01\x88\x01\x01\x12*\n\x1bscaffolding_hinge_stiffness\x18\xf4\x01 \x01(\x01H\xf2\x01\x88\x01\x01\x12~\n!scaffolding_hinge_definition_type\x18\xf5\x01 \x01(\x0e\x32L.dlubal.api.rfem.types_for_nodes.NodalSupport.ScaffoldingHingeDefinitionTypeH\xf3\x01\x88\x01\x01\x12\x32\n#scaffolding_hinge_slip_eccentricity\x18\xf6\x01 \x01(\x01H\xf4\x01\x88\x01\x01\x12\x35\n&scaffolding_hinge_maximum_eccentricity\x18\xf7\x01 \x01(\x01H\xf5\x01\x88\x01\x01\x12\x39\n*scaffolding_hinge_slip_eccentricity_factor\x18\xf8\x01 \x01(\x01H\xf6\x01\x88\x01\x01\x12(\n\x19scaffolding_hinge_calc_e0\x18\xf9\x01 \x01(\x01H\xf7\x01\x88\x01\x01\x12<\n-scaffolding_hinge_maximum_eccentricity_factor\x18\xfa\x01 \x01(\x01H\xf8\x01\x88\x01\x01\x12*\n\x1bscaffolding_hinge_calc_emax\x18\xfb\x01 \x01(\x01H\xf9\x01\x88\x01\x01\x12(\n\x19scaffolding_hinge_section\x18\xfc\x01 \x01(\x05H\xfa\x01\x88\x01\x01\x12\'\n\x18scaffolding_hinge_calc_d\x18\xfd\x01 \x01(\x01H\xfb\x01\x88\x01\x01\x12\x34\n%scaffolding_hinge_end_plate_thickness\x18\xfe\x01 \x01(\x01H\xfc\x01\x88\x01\x01\x12#\n\x14scaffolding_hinge_d1\x18\xff\x01 \x01(\x01H\xfd\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\x80\x02 \x01(\x08H\xfe\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\x81\x02 \x01(\tH\xff\x01\x88\x01\x01\x12\x16\n\x07\x63omment\x18\x82\x02 \x01(\tH\x80\x02\x88\x01\x01\x12#\n\x14id_for_export_import\x18\x83\x02 \x01(\tH\x81\x02\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\x84\x02 \x01(\tH\x82\x02\x88\x01\x01\x1ag\n\x12\x44iagramAlongXTable\x12Q\n\x04rows\x18\x01 \x03(\x0b\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXTableRow\x1a\xdf\x01\n\x15\x44iagramAlongXTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64isplacement\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_displacementB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\x1ag\n\x12\x44iagramAlongYTable\x12Q\n\x04rows\x18\x01 \x03(\x0b\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYTableRow\x1a\xdf\x01\n\x15\x44iagramAlongYTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64isplacement\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_displacementB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\x1ag\n\x12\x44iagramAlongZTable\x12Q\n\x04rows\x18\x01 \x03(\x0b\x32\x43.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZTableRow\x1a\xdf\x01\n\x15\x44iagramAlongZTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x64isplacement\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_displacementB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\x1ai\n\x13\x44iagramAroundXTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXTableRow\x1a\xda\x01\n\x16\x44iagramAroundXTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08rotation\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06moment\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_rotationB\t\n\x07_momentB\t\n\x07_springB\x07\n\x05_note\x1ai\n\x13\x44iagramAroundYTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYTableRow\x1a\xda\x01\n\x16\x44iagramAroundYTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08rotation\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06moment\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_rotationB\t\n\x07_momentB\t\n\x07_springB\x07\n\x05_note\x1ai\n\x13\x44iagramAroundZTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZTableRow\x1a\xda\x01\n\x16\x44iagramAroundZTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08rotation\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06moment\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06spring\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_rotationB\t\n\x07_momentB\t\n\x07_springB\x07\n\x05_note\x1aq\n\x17\x44iagramAlongXColorTable\x12V\n\x04rows\x18\x01 \x03(\x0b\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongXColorTableRow\x1a\x96\x01\n\x1a\x44iagramAlongXColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1aq\n\x17\x44iagramAlongYColorTable\x12V\n\x04rows\x18\x01 \x03(\x0b\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongYColorTableRow\x1a\x96\x01\n\x1a\x44iagramAlongYColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1aq\n\x17\x44iagramAlongZColorTable\x12V\n\x04rows\x18\x01 \x03(\x0b\x32H.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAlongZColorTableRow\x1a\x96\x01\n\x1a\x44iagramAlongZColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1as\n\x18\x44iagramAroundXColorTable\x12W\n\x04rows\x18\x01 \x03(\x0b\x32I.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundXColorTableRow\x1a\x97\x01\n\x1b\x44iagramAroundXColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1as\n\x18\x44iagramAroundYColorTable\x12W\n\x04rows\x18\x01 \x03(\x0b\x32I.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundYColorTableRow\x1a\x97\x01\n\x1b\x44iagramAroundYColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1as\n\x18\x44iagramAroundZColorTable\x12W\n\x04rows\x18\x01 \x03(\x0b\x32I.dlubal.api.rfem.types_for_nodes.NodalSupport.DiagramAroundZColorTableRow\x1a\x97\x01\n\x1b\x44iagramAroundZColorTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12,\n\x05\x63olor\x18\x03 \x01(\x0b\x32\x18.dlubal.api.common.ColorH\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_color\x1a{\n\x1cStiffnessDiagramAroundXTable\x12[\n\x04rows\x18\x01 \x03(\x0b\x32M.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundXTableRow\x1a\xbd\x01\n\x1fStiffnessDiagramAroundXTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06spring\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x11\n\x04note\x18\x05 \x01(\tH\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\x1a{\n\x1cStiffnessDiagramAroundYTable\x12[\n\x04rows\x18\x01 \x03(\x0b\x32M.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundYTableRow\x1a\xbd\x01\n\x1fStiffnessDiagramAroundYTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06spring\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x11\n\x04note\x18\x05 \x01(\tH\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\x1a{\n\x1cStiffnessDiagramAroundZTable\x12[\n\x04rows\x18\x01 \x03(\x0b\x32M.dlubal.api.rfem.types_for_nodes.NodalSupport.StiffnessDiagramAroundZTableRow\x1a\xbd\x01\n\x1fStiffnessDiagramAroundZTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x13\n\x06spring\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x11\n\x04note\x18\x05 \x01(\tH\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x08\n\x06_forceB\t\n\x07_springB\x07\n\x05_note\"\x9b\x05\n\x13SpringXNonlinearity\x12\x1e\n\x1aSPRING_X_NONLINEARITY_NONE\x10\x00\x12!\n\x1dSPRING_X_NONLINEARITY_DIAGRAM\x10\x06\x12\x31\n-SPRING_X_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x31\n-SPRING_X_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12-\n)SPRING_X_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12-\n)SPRING_X_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12.\n*SPRING_X_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12.\n*SPRING_X_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12\x30\n,SPRING_X_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x35\n1SPRING_X_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12.\n*SPRING_X_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12*\n&SPRING_X_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12+\n\'SPRING_X_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12+\n\'SPRING_X_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\x9b\x05\n\x13SpringYNonlinearity\x12\x1e\n\x1aSPRING_Y_NONLINEARITY_NONE\x10\x00\x12!\n\x1dSPRING_Y_NONLINEARITY_DIAGRAM\x10\x06\x12\x31\n-SPRING_Y_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x31\n-SPRING_Y_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12-\n)SPRING_Y_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12-\n)SPRING_Y_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12.\n*SPRING_Y_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12.\n*SPRING_Y_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12\x30\n,SPRING_Y_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x35\n1SPRING_Y_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12.\n*SPRING_Y_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12*\n&SPRING_Y_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12+\n\'SPRING_Y_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12+\n\'SPRING_Y_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\x9b\x05\n\x13SpringZNonlinearity\x12\x1e\n\x1aSPRING_Z_NONLINEARITY_NONE\x10\x00\x12!\n\x1dSPRING_Z_NONLINEARITY_DIAGRAM\x10\x06\x12\x31\n-SPRING_Z_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x31\n-SPRING_Z_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12-\n)SPRING_Z_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12-\n)SPRING_Z_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12.\n*SPRING_Z_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12.\n*SPRING_Z_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12\x30\n,SPRING_Z_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x35\n1SPRING_Z_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12.\n*SPRING_Z_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12*\n&SPRING_Z_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12+\n\'SPRING_Z_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12+\n\'SPRING_Z_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\xec\x06\n RotationalRestraintXNonlinearity\x12,\n(ROTATIONAL_RESTRAINT_X_NONLINEARITY_NONE\x10\x00\x12/\n+ROTATIONAL_RESTRAINT_X_NONLINEARITY_DIAGRAM\x10\x06\x12?\n;ROTATIONAL_RESTRAINT_X_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12?\n;ROTATIONAL_RESTRAINT_X_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12;\n7ROTATIONAL_RESTRAINT_X_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12;\n7ROTATIONAL_RESTRAINT_X_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12<\n8ROTATIONAL_RESTRAINT_X_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12<\n8ROTATIONAL_RESTRAINT_X_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12>\n:ROTATIONAL_RESTRAINT_X_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x43\n?ROTATIONAL_RESTRAINT_X_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12<\n8ROTATIONAL_RESTRAINT_X_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12\x38\n4ROTATIONAL_RESTRAINT_X_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12\x39\n5ROTATIONAL_RESTRAINT_X_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12\x39\n5ROTATIONAL_RESTRAINT_X_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\xec\x06\n RotationalRestraintYNonlinearity\x12,\n(ROTATIONAL_RESTRAINT_Y_NONLINEARITY_NONE\x10\x00\x12/\n+ROTATIONAL_RESTRAINT_Y_NONLINEARITY_DIAGRAM\x10\x06\x12?\n;ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12?\n;ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12;\n7ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12;\n7ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12<\n8ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12<\n8ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12>\n:ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x43\n?ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12<\n8ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12\x38\n4ROTATIONAL_RESTRAINT_Y_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12\x39\n5ROTATIONAL_RESTRAINT_Y_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12\x39\n5ROTATIONAL_RESTRAINT_Y_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\xec\x06\n RotationalRestraintZNonlinearity\x12,\n(ROTATIONAL_RESTRAINT_Z_NONLINEARITY_NONE\x10\x00\x12/\n+ROTATIONAL_RESTRAINT_Z_NONLINEARITY_DIAGRAM\x10\x06\x12?\n;ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12?\n;ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FAILURE_ALL_IF_POSITIVE\x10\x04\x12;\n7ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FAILURE_IF_NEGATIVE\x10\x01\x12;\n7ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FAILURE_IF_POSITIVE\x10\x02\x12<\n8ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FORCE_MOMENT_DIAGRAM\x10\x0c\x12<\n8ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FRICTION_DIRECTION_1\x10\x08\x12>\n:ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FRICTION_DIRECTION_1_2\x10\n\x12\x43\n?ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12<\n8ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FRICTION_DIRECTION_2\x10\t\x12\x38\n4ROTATIONAL_RESTRAINT_Z_NONLINEARITY_PARTIAL_ACTIVITY\x10\x05\x12\x39\n5ROTATIONAL_RESTRAINT_Z_NONLINEARITY_SCAFFOLDING_HINGE\x10\x1e\x12\x39\n5ROTATIONAL_RESTRAINT_Z_NONLINEARITY_STIFFNESS_DIAGRAM\x10\x07\"\xd1\x02\n!PartialActivityAlongXNegativeType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd1\x02\n!PartialActivityAlongXPositiveType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd1\x02\n!PartialActivityAlongYNegativeType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd1\x02\n!PartialActivityAlongYPositiveType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd1\x02\n!PartialActivityAlongZNegativeType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd1\x02\n!PartialActivityAlongZPositiveType\x12\x33\n/PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x32\n.PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE\x10\x04\x12G\nCPARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x30\n,PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FIXED\x10\x01\x12H\nDPARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundXNegativeType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundXPositiveType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundYNegativeType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundYPositiveType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundZNegativeType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xd7\x02\n\"PartialActivityAroundZPositiveType\x12\x34\n0PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_COMPLETE\x10\x00\x12\x33\n/PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE\x10\x04\x12H\nDPARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT\x10\x02\x12\x31\n-PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FIXED\x10\x01\x12I\nEPARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT\x10\x03\"\xa1\x01\n\x12\x44iagramAlongXStart\x12!\n\x1d\x44IAGRAM_ALONG_X_START_FAILURE\x10\x00\x12$\n DIAGRAM_ALONG_X_START_CONTINUOUS\x10\x02\x12\x1e\n\x1a\x44IAGRAM_ALONG_X_START_STOP\x10\x03\x12\"\n\x1e\x44IAGRAM_ALONG_X_START_YIELDING\x10\x01\"\xa1\x01\n\x12\x44iagramAlongYStart\x12!\n\x1d\x44IAGRAM_ALONG_Y_START_FAILURE\x10\x00\x12$\n DIAGRAM_ALONG_Y_START_CONTINUOUS\x10\x02\x12\x1e\n\x1a\x44IAGRAM_ALONG_Y_START_STOP\x10\x03\x12\"\n\x1e\x44IAGRAM_ALONG_Y_START_YIELDING\x10\x01\"\xa1\x01\n\x12\x44iagramAlongZStart\x12!\n\x1d\x44IAGRAM_ALONG_Z_START_FAILURE\x10\x00\x12$\n DIAGRAM_ALONG_Z_START_CONTINUOUS\x10\x02\x12\x1e\n\x1a\x44IAGRAM_ALONG_Z_START_STOP\x10\x03\x12\"\n\x1e\x44IAGRAM_ALONG_Z_START_YIELDING\x10\x01\"\xa6\x01\n\x13\x44iagramAroundXStart\x12\"\n\x1e\x44IAGRAM_AROUND_X_START_FAILURE\x10\x00\x12%\n!DIAGRAM_AROUND_X_START_CONTINUOUS\x10\x02\x12\x1f\n\x1b\x44IAGRAM_AROUND_X_START_STOP\x10\x03\x12#\n\x1f\x44IAGRAM_AROUND_X_START_YIELDING\x10\x01\"\xa6\x01\n\x13\x44iagramAroundYStart\x12\"\n\x1e\x44IAGRAM_AROUND_Y_START_FAILURE\x10\x00\x12%\n!DIAGRAM_AROUND_Y_START_CONTINUOUS\x10\x02\x12\x1f\n\x1b\x44IAGRAM_AROUND_Y_START_STOP\x10\x03\x12#\n\x1f\x44IAGRAM_AROUND_Y_START_YIELDING\x10\x01\"\xa6\x01\n\x13\x44iagramAroundZStart\x12\"\n\x1e\x44IAGRAM_AROUND_Z_START_FAILURE\x10\x00\x12%\n!DIAGRAM_AROUND_Z_START_CONTINUOUS\x10\x02\x12\x1f\n\x1b\x44IAGRAM_AROUND_Z_START_STOP\x10\x03\x12#\n\x1f\x44IAGRAM_AROUND_Z_START_YIELDING\x10\x01\"\x97\x01\n\x10\x44iagramAlongXEnd\x12\x1f\n\x1b\x44IAGRAM_ALONG_X_END_FAILURE\x10\x00\x12\"\n\x1e\x44IAGRAM_ALONG_X_END_CONTINUOUS\x10\x02\x12\x1c\n\x18\x44IAGRAM_ALONG_X_END_STOP\x10\x03\x12 \n\x1c\x44IAGRAM_ALONG_X_END_YIELDING\x10\x01\"\x97\x01\n\x10\x44iagramAlongYEnd\x12\x1f\n\x1b\x44IAGRAM_ALONG_Y_END_FAILURE\x10\x00\x12\"\n\x1e\x44IAGRAM_ALONG_Y_END_CONTINUOUS\x10\x02\x12\x1c\n\x18\x44IAGRAM_ALONG_Y_END_STOP\x10\x03\x12 \n\x1c\x44IAGRAM_ALONG_Y_END_YIELDING\x10\x01\"\x97\x01\n\x10\x44iagramAlongZEnd\x12\x1f\n\x1b\x44IAGRAM_ALONG_Z_END_FAILURE\x10\x00\x12\"\n\x1e\x44IAGRAM_ALONG_Z_END_CONTINUOUS\x10\x02\x12\x1c\n\x18\x44IAGRAM_ALONG_Z_END_STOP\x10\x03\x12 \n\x1c\x44IAGRAM_ALONG_Z_END_YIELDING\x10\x01\"\x9c\x01\n\x11\x44iagramAroundXEnd\x12 \n\x1c\x44IAGRAM_AROUND_X_END_FAILURE\x10\x00\x12#\n\x1f\x44IAGRAM_AROUND_X_END_CONTINUOUS\x10\x02\x12\x1d\n\x19\x44IAGRAM_AROUND_X_END_STOP\x10\x03\x12!\n\x1d\x44IAGRAM_AROUND_X_END_YIELDING\x10\x01\"\x9c\x01\n\x11\x44iagramAroundYEnd\x12 \n\x1c\x44IAGRAM_AROUND_Y_END_FAILURE\x10\x00\x12#\n\x1f\x44IAGRAM_AROUND_Y_END_CONTINUOUS\x10\x02\x12\x1d\n\x19\x44IAGRAM_AROUND_Y_END_STOP\x10\x03\x12!\n\x1d\x44IAGRAM_AROUND_Y_END_YIELDING\x10\x01\"\x9c\x01\n\x11\x44iagramAroundZEnd\x12 \n\x1c\x44IAGRAM_AROUND_Z_END_FAILURE\x10\x00\x12#\n\x1f\x44IAGRAM_AROUND_Z_END_CONTINUOUS\x10\x02\x12\x1d\n\x19\x44IAGRAM_AROUND_Z_END_STOP\x10\x03\x12!\n\x1d\x44IAGRAM_AROUND_Z_END_YIELDING\x10\x01\"\xac\x01\n\x1cStiffnessDiagramAroundXStart\x12,\n(STIFFNESS_DIAGRAM_AROUND_X_START_FAILURE\x10\x00\x12/\n+STIFFNESS_DIAGRAM_AROUND_X_START_CONTINUOUS\x10\x02\x12-\n)STIFFNESS_DIAGRAM_AROUND_X_START_YIELDING\x10\x01\"\xac\x01\n\x1cStiffnessDiagramAroundYStart\x12,\n(STIFFNESS_DIAGRAM_AROUND_Y_START_FAILURE\x10\x00\x12/\n+STIFFNESS_DIAGRAM_AROUND_Y_START_CONTINUOUS\x10\x02\x12-\n)STIFFNESS_DIAGRAM_AROUND_Y_START_YIELDING\x10\x01\"\xac\x01\n\x1cStiffnessDiagramAroundZStart\x12,\n(STIFFNESS_DIAGRAM_AROUND_Z_START_FAILURE\x10\x00\x12/\n+STIFFNESS_DIAGRAM_AROUND_Z_START_CONTINUOUS\x10\x02\x12-\n)STIFFNESS_DIAGRAM_AROUND_Z_START_YIELDING\x10\x01\"\xa4\x01\n\x1aStiffnessDiagramAroundXEnd\x12*\n&STIFFNESS_DIAGRAM_AROUND_X_END_FAILURE\x10\x00\x12-\n)STIFFNESS_DIAGRAM_AROUND_X_END_CONTINUOUS\x10\x02\x12+\n\'STIFFNESS_DIAGRAM_AROUND_X_END_YIELDING\x10\x01\"\xa4\x01\n\x1aStiffnessDiagramAroundYEnd\x12*\n&STIFFNESS_DIAGRAM_AROUND_Y_END_FAILURE\x10\x00\x12-\n)STIFFNESS_DIAGRAM_AROUND_Y_END_CONTINUOUS\x10\x02\x12+\n\'STIFFNESS_DIAGRAM_AROUND_Y_END_YIELDING\x10\x01\"\xa4\x01\n\x1aStiffnessDiagramAroundZEnd\x12*\n&STIFFNESS_DIAGRAM_AROUND_Z_END_FAILURE\x10\x00\x12-\n)STIFFNESS_DIAGRAM_AROUND_Z_END_CONTINUOUS\x10\x02\x12+\n\'STIFFNESS_DIAGRAM_AROUND_Z_END_YIELDING\x10\x01\"\xd9\x01\n StiffnessDiagramAroundXDependsOn\x12,\n(STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_PX\x10\x00\x12+\n\'STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_P\x10\x03\x12,\n(STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_PY\x10\x01\x12,\n(STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_PZ\x10\x02\"\xd9\x01\n StiffnessDiagramAroundYDependsOn\x12,\n(STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_PX\x10\x00\x12+\n\'STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_P\x10\x03\x12,\n(STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_PY\x10\x01\x12,\n(STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_PZ\x10\x02\"\xd9\x01\n StiffnessDiagramAroundZDependsOn\x12,\n(STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_PX\x10\x00\x12+\n\'STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_P\x10\x03\x12,\n(STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_PY\x10\x01\x12,\n(STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_PZ\x10\x02\"\x96\x01\n\x17SupportDimensionTypeOnX\x12+\n\'SUPPORT_DIMENSION_TYPE_ON_X_RECTANGULAR\x10\x00\x12(\n$SUPPORT_DIMENSION_TYPE_ON_X_CIRCULAR\x10\x01\x12$\n SUPPORT_DIMENSION_TYPE_ON_X_NONE\x10\x02\"\x96\x01\n\x17SupportDimensionTypeOnY\x12+\n\'SUPPORT_DIMENSION_TYPE_ON_Y_RECTANGULAR\x10\x00\x12(\n$SUPPORT_DIMENSION_TYPE_ON_Y_CIRCULAR\x10\x01\x12$\n SUPPORT_DIMENSION_TYPE_ON_Y_NONE\x10\x02\"\x96\x01\n\x17SupportDimensionTypeOnZ\x12+\n\'SUPPORT_DIMENSION_TYPE_ON_Z_RECTANGULAR\x10\x00\x12(\n$SUPPORT_DIMENSION_TYPE_ON_Z_CIRCULAR\x10\x01\x12$\n SUPPORT_DIMENSION_TYPE_ON_Z_NONE\x10\x02\"\x94\x02\n\x15SpecificDirectionType\x12\x30\n,SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12,\n(SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12\x32\n.SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12\x34\n0SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12\x31\n-SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02\"\x98\x01\n\x0c\x41xesSequence\x12\x15\n\x11\x41XES_SEQUENCE_XYZ\x10\x00\x12\x15\n\x11\x41XES_SEQUENCE_XZY\x10\x01\x12\x15\n\x11\x41XES_SEQUENCE_YXZ\x10\x02\x12\x15\n\x11\x41XES_SEQUENCE_YZX\x10\x03\x12\x15\n\x11\x41XES_SEQUENCE_ZXY\x10\x04\x12\x15\n\x11\x41XES_SEQUENCE_ZYX\x10\x05\"\x82\x01\n\x17\x44irectedToNodeFirstAxis\x12!\n\x1d\x44IRECTED_TO_NODE_FIRST_AXIS_X\x10\x00\x12!\n\x1d\x44IRECTED_TO_NODE_FIRST_AXIS_Y\x10\x01\x12!\n\x1d\x44IRECTED_TO_NODE_FIRST_AXIS_Z\x10\x02\"\x86\x01\n\x18\x44irectedToNodeSecondAxis\x12\"\n\x1e\x44IRECTED_TO_NODE_SECOND_AXIS_X\x10\x00\x12\"\n\x1e\x44IRECTED_TO_NODE_SECOND_AXIS_Y\x10\x01\x12\"\n\x1e\x44IRECTED_TO_NODE_SECOND_AXIS_Z\x10\x02\"\x95\x01\n\x1bParallelToTwoNodesFirstAxis\x12&\n\"PARALLEL_TO_TWO_NODES_FIRST_AXIS_X\x10\x00\x12&\n\"PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y\x10\x01\x12&\n\"PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z\x10\x02\"\x99\x01\n\x1cParallelToTwoNodesSecondAxis\x12\'\n#PARALLEL_TO_TWO_NODES_SECOND_AXIS_X\x10\x00\x12\'\n#PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y\x10\x01\x12\'\n#PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z\x10\x02\"\xa5\x01\n\x11\x43olumnSupportType\x12\x33\n/COLUMN_SUPPORT_TYPE_ELASTIC_SURFACE_FOUNDATIONS\x10\x00\x12-\n)COLUMN_SUPPORT_TYPE_ELASTIC_NODAL_SUPPORT\x10\x01\x12,\n(COLUMN_SUPPORT_TYPE_WITH_ADAPTED_FE_MESH\x10\x02\"Q\n\x0e\x43olumnHeadType\x12 \n\x1c\x43OLUMN_HEAD_TYPE_RECTANGULAR\x10\x00\x12\x1d\n\x19\x43OLUMN_HEAD_TYPE_CIRCULAR\x10\x01\"`\n\x15\x43olumnHeadSupportType\x12#\n\x1f\x43OLUMN_HEAD_SUPPORT_TYPE_HINGED\x10\x00\x12\"\n\x1e\x43OLUMN_HEAD_SUPPORT_TYPE_RIGID\x10\x01\"\x89\x01\n\x15\x43olumnBaseSupportType\x12#\n\x1f\x43OLUMN_BASE_SUPPORT_TYPE_HINGED\x10\x00\x12\"\n\x1e\x43OLUMN_BASE_SUPPORT_TYPE_RIGID\x10\x02\x12\'\n#COLUMN_BASE_SUPPORT_TYPE_SEMI_RIGID\x10\x01\"4\n\x11SpecificationType\x12\x1f\n\x1bSPECIFICATION_TYPE_ABSOLUTE\x10\x00\"\xc1\x01\n\x1dTransverseOffsetReferenceType\x12)\n%TRANSVERSE_OFFSET_REFERENCE_TYPE_NONE\x10\x00\x12\x38\n4TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_MEMBER_SECTION\x10\x01\x12;\n7TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_SURFACE_THICKNESS\x10\x02\"\xb3\x01\n!TransverseOffsetVerticalAlignment\x12,\n(TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_TOP\x10\x00\x12/\n+TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_BOTTOM\x10\x02\x12/\n+TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_CENTER\x10\x01\"\xbb\x01\n#TransverseOffsetHorizontalAlignment\x12/\n+TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_LEFT\x10\x00\x12\x31\n-TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_CENTER\x10\x01\x12\x30\n,TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_RIGHT\x10\x02\"\x80\x01\n\x1eScaffoldingHingeDefinitionType\x12.\n*SCAFFOLDING_HINGE_DEFINITION_TYPE_ABSOLUTE\x10\x00\x12.\n*SCAFFOLDING_HINGE_DEFINITION_TYPE_RELATIVE\x10\x01\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\t\n\x07_springB\x17\n\x15_rotational_restraintB+\n)_adopt_spring_constants_from_soil_massiveB\x0b\n\t_spring_xB\x0b\n\t_spring_yB\x0b\n\t_spring_zB\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)\n\'_partial_activity_along_x_negative_typeB)\n\'_partial_activity_along_x_positive_typeB)\n\'_partial_activity_along_y_negative_typeB)\n\'_partial_activity_along_y_positive_typeB)\n\'_partial_activity_along_z_negative_typeB)\n\'_partial_activity_along_z_positive_typeB*\n(_partial_activity_around_x_negative_typeB*\n(_partial_activity_around_x_positive_typeB*\n(_partial_activity_around_y_negative_typeB*\n(_partial_activity_around_y_positive_typeB*\n(_partial_activity_around_z_negative_typeB*\n(_partial_activity_around_z_positive_typeB1\n/_partial_activity_along_x_negative_displacementB1\n/_partial_activity_along_x_positive_displacementB1\n/_partial_activity_along_y_negative_displacementB1\n/_partial_activity_along_y_positive_displacementB1\n/_partial_activity_along_z_negative_displacementB1\n/_partial_activity_along_z_positive_displacementB.\n,_partial_activity_around_x_negative_rotationB.\n,_partial_activity_around_x_positive_rotationB.\n,_partial_activity_around_y_negative_rotationB.\n,_partial_activity_around_y_positive_rotationB.\n,_partial_activity_around_z_negative_rotationB.\n,_partial_activity_around_z_positive_rotationB*\n(_partial_activity_along_x_negative_forceB*\n(_partial_activity_along_x_positive_forceB*\n(_partial_activity_along_y_negative_forceB*\n(_partial_activity_along_y_positive_forceB*\n(_partial_activity_along_z_negative_forceB*\n(_partial_activity_along_z_positive_forceB,\n*_partial_activity_around_x_negative_momentB,\n*_partial_activity_around_x_positive_momentB,\n*_partial_activity_around_y_negative_momentB,\n*_partial_activity_around_y_positive_momentB,\n*_partial_activity_around_z_negative_momentB,\n*_partial_activity_around_z_positive_momentB-\n+_partial_activity_along_x_negative_slippageB-\n+_partial_activity_along_x_positive_slippageB-\n+_partial_activity_along_y_negative_slippageB-\n+_partial_activity_along_y_positive_slippageB-\n+_partial_activity_along_z_negative_slippageB-\n+_partial_activity_along_z_positive_slippageB.\n,_partial_activity_around_x_negative_slippageB.\n,_partial_activity_around_x_positive_slippageB.\n,_partial_activity_around_y_negative_slippageB.\n,_partial_activity_around_y_positive_slippageB.\n,_partial_activity_around_z_negative_slippageB.\n,_partial_activity_around_z_positive_slippageB\x1c\n\x1a_diagram_along_x_symmetricB\x1c\n\x1a_diagram_along_y_symmetricB\x1c\n\x1a_diagram_along_z_symmetricB\x1d\n\x1b_diagram_around_x_symmetricB\x1d\n\x1b_diagram_around_y_symmetricB\x1d\n\x1b_diagram_around_z_symmetricB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_z_is_sortedB\x1d\n\x1b_diagram_around_x_is_sortedB\x1d\n\x1b_diagram_around_y_is_sortedB\x1d\n\x1b_diagram_around_z_is_sortedB\x18\n\x16_diagram_along_x_tableB\x18\n\x16_diagram_along_y_tableB\x18\n\x16_diagram_along_z_tableB\x19\n\x17_diagram_around_x_tableB\x19\n\x17_diagram_around_y_tableB\x19\n\x17_diagram_around_z_tableB\x18\n\x16_diagram_along_x_startB\x18\n\x16_diagram_along_y_startB\x18\n\x16_diagram_along_z_startB\x19\n\x17_diagram_around_x_startB\x19\n\x17_diagram_around_y_startB\x19\n\x17_diagram_around_z_startB\x16\n\x14_diagram_along_x_endB\x16\n\x14_diagram_along_y_endB\x16\n\x14_diagram_along_z_endB\x17\n\x15_diagram_around_x_endB\x17\n\x15_diagram_around_y_endB\x17\n\x15_diagram_around_z_endB!\n\x1f_diagram_along_x_ac_yield_minusB!\n\x1f_diagram_along_y_ac_yield_minusB!\n\x1f_diagram_along_z_ac_yield_minusB\"\n _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\'\n%_stiffness_diagram_around_x_symmetricB\'\n%_stiffness_diagram_around_y_symmetricB\'\n%_stiffness_diagram_around_z_symmetricB\'\n%_stiffness_diagram_around_x_is_sortedB\'\n%_stiffness_diagram_around_y_is_sortedB\'\n%_stiffness_diagram_around_z_is_sortedB#\n!_stiffness_diagram_around_x_startB#\n!_stiffness_diagram_around_y_startB#\n!_stiffness_diagram_around_z_startB!\n\x1f_stiffness_diagram_around_x_endB!\n\x1f_stiffness_diagram_around_y_endB!\n\x1f_stiffness_diagram_around_z_endB(\n&_stiffness_diagram_around_x_depends_onB(\n&_stiffness_diagram_around_y_depends_onB(\n&_stiffness_diagram_around_z_depends_onB#\n!_stiffness_diagram_around_x_tableB#\n!_stiffness_diagram_around_y_tableB#\n!_stiffness_diagram_around_z_tableB\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\x1d\n\x1b_support_dimensions_enabledB\x1e\n\x1c_support_dimension_type_on_xB\x1e\n\x1c_support_dimension_type_on_yB\x1e\n\x1c_support_dimension_type_on_zB\x1d\n\x1b_support_dimension_height_xB\x1d\n\x1b_support_dimension_height_yB\x1d\n\x1b_support_dimension_height_zB\x1c\n\x1a_support_dimension_width_xB\x1c\n\x1a_support_dimension_width_yB\x1c\n\x1a_support_dimension_width_zB\x1f\n\x1d_support_dimension_diameter_xB\x1f\n\x1d_support_dimension_diameter_yB\x1f\n\x1d_support_dimension_diameter_zB\x14\n\x12_coordinate_systemB\x1a\n\x18_specific_direction_typeB\x10\n\x0e_axes_sequenceB\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\"\n _directed_to_node_direction_nodeB\x1e\n\x1c_directed_to_node_plane_nodeB\x1e\n\x1c_directed_to_node_first_axisB\x1f\n\x1d_directed_to_node_second_axisB#\n!_parallel_to_two_nodes_first_nodeB$\n\"_parallel_to_two_nodes_second_nodeB#\n!_parallel_to_two_nodes_plane_nodeB#\n!_parallel_to_two_nodes_first_axisB$\n\"_parallel_to_two_nodes_second_axisB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB\x1d\n\x1b_specific_direction_enabledB\x1c\n\x1a_fictitious_column_enabledB\x19\n\x17_eccentricities_enabledB\x14\n\x12_single_foundationB\x16\n\x14_column_support_typeB\x13\n\x11_column_head_typeB\x11\n\x0f_column_width_xB\x11\n\x0f_column_width_yB\x12\n\x10_column_rotationB\x10\n\x0e_column_heightB\x1b\n\x19_column_head_support_typeB\x1b\n\x19_column_base_support_typeB\x19\n\x17_column_base_semi_rigidB\x19\n\x17_column_shear_stiffnessB\x11\n\x0f_column_sectionB\x12\n\x10_column_materialB\x1e\n\x1c_column_section_same_as_headB\x12\n\x10_column_spring_xB\x12\n\x10_column_spring_yB\x12\n\x10_column_spring_zB \n\x1e_column_rotational_restraint_xB \n\x1e_column_rotational_restraint_yB\x15\n\x13_specification_typeB#\n!_eccentricities_coordinate_systemB\t\n\x07_offsetB\x0b\n\t_offset_xB\x0b\n\t_offset_yB\x0b\n\t_offset_zB\x1b\n\x19_transverse_offset_activeB#\n!_transverse_offset_reference_typeB%\n#_transverse_offset_reference_memberB&\n$_transverse_offset_reference_surfaceB*\n(_transverse_offset_member_reference_nodeB+\n)_transverse_offset_surface_reference_nodeB\'\n%_transverse_offset_vertical_alignmentB)\n\'_transverse_offset_horizontal_alignmentB\x1c\n\x1a_scaffolding_hinge_enabledB\x19\n\x17_scaffolding_hinge_slipB\x1e\n\x1c_scaffolding_hinge_stiffnessB$\n\"_scaffolding_hinge_definition_typeB&\n$_scaffolding_hinge_slip_eccentricityB)\n\'_scaffolding_hinge_maximum_eccentricityB-\n+_scaffolding_hinge_slip_eccentricity_factorB\x1c\n\x1a_scaffolding_hinge_calc_e0B0\n._scaffolding_hinge_maximum_eccentricity_factorB\x1e\n\x1c_scaffolding_hinge_calc_emaxB\x1c\n\x1a_scaffolding_hinge_sectionB\x1b\n\x19_scaffolding_hinge_calc_dB(\n&_scaffolding_hinge_end_plate_thicknessB\x17\n\x15_scaffolding_hinge_d1B\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
29
29
|
|
|
30
30
|
_globals = globals()
|
|
31
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
32
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_nodes.nodal_support_pb2', _globals)
|
|
33
33
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
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
35
|
_globals['_NODALSUPPORT']._serialized_start=122
|
|
140
|
-
_globals['_NODALSUPPORT']._serialized_end=
|
|
141
|
-
_globals['
|
|
142
|
-
_globals['
|
|
143
|
-
_globals['
|
|
144
|
-
_globals['
|
|
145
|
-
_globals['
|
|
146
|
-
_globals['
|
|
147
|
-
_globals['
|
|
148
|
-
_globals['
|
|
149
|
-
_globals['
|
|
150
|
-
_globals['
|
|
151
|
-
_globals['
|
|
152
|
-
_globals['
|
|
153
|
-
_globals['
|
|
154
|
-
_globals['
|
|
155
|
-
_globals['
|
|
156
|
-
_globals['
|
|
157
|
-
_globals['
|
|
158
|
-
_globals['
|
|
159
|
-
_globals['
|
|
160
|
-
_globals['
|
|
161
|
-
_globals['
|
|
162
|
-
_globals['
|
|
163
|
-
_globals['
|
|
164
|
-
_globals['
|
|
165
|
-
_globals['
|
|
166
|
-
_globals['
|
|
167
|
-
_globals['
|
|
168
|
-
_globals['
|
|
169
|
-
_globals['
|
|
170
|
-
_globals['
|
|
36
|
+
_globals['_NODALSUPPORT']._serialized_end=46244
|
|
37
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXTABLE']._serialized_start=17813
|
|
38
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXTABLE']._serialized_end=17916
|
|
39
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXTABLEROW']._serialized_start=17919
|
|
40
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXTABLEROW']._serialized_end=18142
|
|
41
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYTABLE']._serialized_start=18144
|
|
42
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYTABLE']._serialized_end=18247
|
|
43
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYTABLEROW']._serialized_start=18250
|
|
44
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYTABLEROW']._serialized_end=18473
|
|
45
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZTABLE']._serialized_start=18475
|
|
46
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZTABLE']._serialized_end=18578
|
|
47
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZTABLEROW']._serialized_start=18581
|
|
48
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZTABLEROW']._serialized_end=18804
|
|
49
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXTABLE']._serialized_start=18806
|
|
50
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXTABLE']._serialized_end=18911
|
|
51
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXTABLEROW']._serialized_start=18914
|
|
52
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXTABLEROW']._serialized_end=19132
|
|
53
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYTABLE']._serialized_start=19134
|
|
54
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYTABLE']._serialized_end=19239
|
|
55
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYTABLEROW']._serialized_start=19242
|
|
56
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYTABLEROW']._serialized_end=19460
|
|
57
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZTABLE']._serialized_start=19462
|
|
58
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZTABLE']._serialized_end=19567
|
|
59
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZTABLEROW']._serialized_start=19570
|
|
60
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZTABLEROW']._serialized_end=19788
|
|
61
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXCOLORTABLE']._serialized_start=19790
|
|
62
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXCOLORTABLE']._serialized_end=19903
|
|
63
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXCOLORTABLEROW']._serialized_start=19906
|
|
64
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXCOLORTABLEROW']._serialized_end=20056
|
|
65
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYCOLORTABLE']._serialized_start=20058
|
|
66
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYCOLORTABLE']._serialized_end=20171
|
|
67
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYCOLORTABLEROW']._serialized_start=20174
|
|
68
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYCOLORTABLEROW']._serialized_end=20324
|
|
69
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZCOLORTABLE']._serialized_start=20326
|
|
70
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZCOLORTABLE']._serialized_end=20439
|
|
71
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZCOLORTABLEROW']._serialized_start=20442
|
|
72
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZCOLORTABLEROW']._serialized_end=20592
|
|
73
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXCOLORTABLE']._serialized_start=20594
|
|
74
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXCOLORTABLE']._serialized_end=20709
|
|
75
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXCOLORTABLEROW']._serialized_start=20712
|
|
76
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXCOLORTABLEROW']._serialized_end=20863
|
|
77
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYCOLORTABLE']._serialized_start=20865
|
|
78
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYCOLORTABLE']._serialized_end=20980
|
|
79
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYCOLORTABLEROW']._serialized_start=20983
|
|
80
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYCOLORTABLEROW']._serialized_end=21134
|
|
81
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZCOLORTABLE']._serialized_start=21136
|
|
82
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZCOLORTABLE']._serialized_end=21251
|
|
83
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZCOLORTABLEROW']._serialized_start=21254
|
|
84
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZCOLORTABLEROW']._serialized_end=21405
|
|
85
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXTABLE']._serialized_start=21407
|
|
86
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXTABLE']._serialized_end=21530
|
|
87
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXTABLEROW']._serialized_start=21533
|
|
88
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXTABLEROW']._serialized_end=21722
|
|
89
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYTABLE']._serialized_start=21724
|
|
90
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYTABLE']._serialized_end=21847
|
|
91
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYTABLEROW']._serialized_start=21850
|
|
92
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYTABLEROW']._serialized_end=22039
|
|
93
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZTABLE']._serialized_start=22041
|
|
94
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZTABLE']._serialized_end=22164
|
|
95
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZTABLEROW']._serialized_start=22167
|
|
96
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZTABLEROW']._serialized_end=22356
|
|
97
|
+
_globals['_NODALSUPPORT_SPRINGXNONLINEARITY']._serialized_start=22359
|
|
98
|
+
_globals['_NODALSUPPORT_SPRINGXNONLINEARITY']._serialized_end=23026
|
|
99
|
+
_globals['_NODALSUPPORT_SPRINGYNONLINEARITY']._serialized_start=23029
|
|
100
|
+
_globals['_NODALSUPPORT_SPRINGYNONLINEARITY']._serialized_end=23696
|
|
101
|
+
_globals['_NODALSUPPORT_SPRINGZNONLINEARITY']._serialized_start=23699
|
|
102
|
+
_globals['_NODALSUPPORT_SPRINGZNONLINEARITY']._serialized_end=24366
|
|
103
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTXNONLINEARITY']._serialized_start=24369
|
|
104
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTXNONLINEARITY']._serialized_end=25245
|
|
105
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTYNONLINEARITY']._serialized_start=25248
|
|
106
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTYNONLINEARITY']._serialized_end=26124
|
|
107
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTZNONLINEARITY']._serialized_start=26127
|
|
108
|
+
_globals['_NODALSUPPORT_ROTATIONALRESTRAINTZNONLINEARITY']._serialized_end=27003
|
|
109
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=27006
|
|
110
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=27343
|
|
111
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=27346
|
|
112
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=27683
|
|
113
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_start=27686
|
|
114
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_end=28023
|
|
115
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_start=28026
|
|
116
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_end=28363
|
|
117
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_start=28366
|
|
118
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_end=28703
|
|
119
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_start=28706
|
|
120
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_end=29043
|
|
121
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_start=29046
|
|
122
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_end=29389
|
|
123
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_start=29392
|
|
124
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_end=29735
|
|
125
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_start=29738
|
|
126
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_end=30081
|
|
127
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_start=30084
|
|
128
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_end=30427
|
|
129
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_start=30430
|
|
130
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_end=30773
|
|
131
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_start=30776
|
|
132
|
+
_globals['_NODALSUPPORT_PARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_end=31119
|
|
133
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXSTART']._serialized_start=31122
|
|
134
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXSTART']._serialized_end=31283
|
|
135
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYSTART']._serialized_start=31286
|
|
136
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYSTART']._serialized_end=31447
|
|
137
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZSTART']._serialized_start=31450
|
|
138
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZSTART']._serialized_end=31611
|
|
139
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXSTART']._serialized_start=31614
|
|
140
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXSTART']._serialized_end=31780
|
|
141
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYSTART']._serialized_start=31783
|
|
142
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYSTART']._serialized_end=31949
|
|
143
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZSTART']._serialized_start=31952
|
|
144
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZSTART']._serialized_end=32118
|
|
145
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXEND']._serialized_start=32121
|
|
146
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGXEND']._serialized_end=32272
|
|
147
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYEND']._serialized_start=32275
|
|
148
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGYEND']._serialized_end=32426
|
|
149
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZEND']._serialized_start=32429
|
|
150
|
+
_globals['_NODALSUPPORT_DIAGRAMALONGZEND']._serialized_end=32580
|
|
151
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXEND']._serialized_start=32583
|
|
152
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDXEND']._serialized_end=32739
|
|
153
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYEND']._serialized_start=32742
|
|
154
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDYEND']._serialized_end=32898
|
|
155
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZEND']._serialized_start=32901
|
|
156
|
+
_globals['_NODALSUPPORT_DIAGRAMAROUNDZEND']._serialized_end=33057
|
|
157
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXSTART']._serialized_start=33060
|
|
158
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXSTART']._serialized_end=33232
|
|
159
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYSTART']._serialized_start=33235
|
|
160
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYSTART']._serialized_end=33407
|
|
161
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZSTART']._serialized_start=33410
|
|
162
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZSTART']._serialized_end=33582
|
|
163
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXEND']._serialized_start=33585
|
|
164
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXEND']._serialized_end=33749
|
|
165
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYEND']._serialized_start=33752
|
|
166
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYEND']._serialized_end=33916
|
|
167
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZEND']._serialized_start=33919
|
|
168
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZEND']._serialized_end=34083
|
|
169
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXDEPENDSON']._serialized_start=34086
|
|
170
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDXDEPENDSON']._serialized_end=34303
|
|
171
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYDEPENDSON']._serialized_start=34306
|
|
172
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDYDEPENDSON']._serialized_end=34523
|
|
173
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZDEPENDSON']._serialized_start=34526
|
|
174
|
+
_globals['_NODALSUPPORT_STIFFNESSDIAGRAMAROUNDZDEPENDSON']._serialized_end=34743
|
|
175
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONX']._serialized_start=34746
|
|
176
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONX']._serialized_end=34896
|
|
177
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONY']._serialized_start=34899
|
|
178
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONY']._serialized_end=35049
|
|
179
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONZ']._serialized_start=35052
|
|
180
|
+
_globals['_NODALSUPPORT_SUPPORTDIMENSIONTYPEONZ']._serialized_end=35202
|
|
181
|
+
_globals['_NODALSUPPORT_SPECIFICDIRECTIONTYPE']._serialized_start=35205
|
|
182
|
+
_globals['_NODALSUPPORT_SPECIFICDIRECTIONTYPE']._serialized_end=35481
|
|
183
|
+
_globals['_NODALSUPPORT_AXESSEQUENCE']._serialized_start=35484
|
|
184
|
+
_globals['_NODALSUPPORT_AXESSEQUENCE']._serialized_end=35636
|
|
185
|
+
_globals['_NODALSUPPORT_DIRECTEDTONODEFIRSTAXIS']._serialized_start=35639
|
|
186
|
+
_globals['_NODALSUPPORT_DIRECTEDTONODEFIRSTAXIS']._serialized_end=35769
|
|
187
|
+
_globals['_NODALSUPPORT_DIRECTEDTONODESECONDAXIS']._serialized_start=35772
|
|
188
|
+
_globals['_NODALSUPPORT_DIRECTEDTONODESECONDAXIS']._serialized_end=35906
|
|
189
|
+
_globals['_NODALSUPPORT_PARALLELTOTWONODESFIRSTAXIS']._serialized_start=35909
|
|
190
|
+
_globals['_NODALSUPPORT_PARALLELTOTWONODESFIRSTAXIS']._serialized_end=36058
|
|
191
|
+
_globals['_NODALSUPPORT_PARALLELTOTWONODESSECONDAXIS']._serialized_start=36061
|
|
192
|
+
_globals['_NODALSUPPORT_PARALLELTOTWONODESSECONDAXIS']._serialized_end=36214
|
|
193
|
+
_globals['_NODALSUPPORT_COLUMNSUPPORTTYPE']._serialized_start=36217
|
|
194
|
+
_globals['_NODALSUPPORT_COLUMNSUPPORTTYPE']._serialized_end=36382
|
|
195
|
+
_globals['_NODALSUPPORT_COLUMNHEADTYPE']._serialized_start=36384
|
|
196
|
+
_globals['_NODALSUPPORT_COLUMNHEADTYPE']._serialized_end=36465
|
|
197
|
+
_globals['_NODALSUPPORT_COLUMNHEADSUPPORTTYPE']._serialized_start=36467
|
|
198
|
+
_globals['_NODALSUPPORT_COLUMNHEADSUPPORTTYPE']._serialized_end=36563
|
|
199
|
+
_globals['_NODALSUPPORT_COLUMNBASESUPPORTTYPE']._serialized_start=36566
|
|
200
|
+
_globals['_NODALSUPPORT_COLUMNBASESUPPORTTYPE']._serialized_end=36703
|
|
201
|
+
_globals['_NODALSUPPORT_SPECIFICATIONTYPE']._serialized_start=36705
|
|
202
|
+
_globals['_NODALSUPPORT_SPECIFICATIONTYPE']._serialized_end=36757
|
|
203
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETREFERENCETYPE']._serialized_start=36760
|
|
204
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETREFERENCETYPE']._serialized_end=36953
|
|
205
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETVERTICALALIGNMENT']._serialized_start=36956
|
|
206
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETVERTICALALIGNMENT']._serialized_end=37135
|
|
207
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETHORIZONTALALIGNMENT']._serialized_start=37138
|
|
208
|
+
_globals['_NODALSUPPORT_TRANSVERSEOFFSETHORIZONTALALIGNMENT']._serialized_end=37325
|
|
209
|
+
_globals['_NODALSUPPORT_SCAFFOLDINGHINGEDEFINITIONTYPE']._serialized_start=37328
|
|
210
|
+
_globals['_NODALSUPPORT_SCAFFOLDINGHINGEDEFINITIONTYPE']._serialized_end=37456
|
|
171
211
|
# @@protoc_insertion_point(module_scope)
|