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
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from dlubal.api.rfem import object_id_pb2 as _object_id_pb2
|
|
1
3
|
from google.protobuf.internal import containers as _containers
|
|
2
4
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
5
|
from google.protobuf import descriptor as _descriptor
|
|
@@ -6,477 +8,830 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
|
6
8
|
|
|
7
9
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
10
|
|
|
9
|
-
class NodalReleaseTypeAxialReleaseNNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
-
__slots__ = ()
|
|
11
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
12
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
13
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
14
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
15
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
16
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
17
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
18
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
19
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
20
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
21
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
22
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
23
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseNNonlinearity]
|
|
24
|
-
|
|
25
|
-
class NodalReleaseTypeAxialReleaseVyNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
26
|
-
__slots__ = ()
|
|
27
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
28
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
29
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
30
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
31
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
32
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
33
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
34
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
35
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
36
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
37
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
38
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
39
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVyNonlinearity]
|
|
40
|
-
|
|
41
|
-
class NodalReleaseTypeAxialReleaseVzNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
42
|
-
__slots__ = ()
|
|
43
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
44
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
45
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
46
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
47
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
48
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
49
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
50
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
51
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
52
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
53
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
54
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
55
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeAxialReleaseVzNonlinearity]
|
|
56
|
-
|
|
57
|
-
class NodalReleaseTypeMomentReleaseMtNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
58
|
-
__slots__ = ()
|
|
59
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
60
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
61
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
62
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
63
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
64
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
65
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
66
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
67
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
68
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
69
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
70
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
71
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMtNonlinearity]
|
|
72
|
-
|
|
73
|
-
class NodalReleaseTypeMomentReleaseMyNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
74
|
-
__slots__ = ()
|
|
75
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
76
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
77
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
78
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
79
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
80
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
81
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
82
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
83
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
84
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
85
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
86
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
87
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMyNonlinearity]
|
|
88
|
-
|
|
89
|
-
class NodalReleaseTypeMomentReleaseMzNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
90
|
-
__slots__ = ()
|
|
91
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_NONE: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
92
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
93
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
94
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
95
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
96
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
97
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
98
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
99
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
100
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
101
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
102
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
103
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseTypeMomentReleaseMzNonlinearity]
|
|
104
|
-
|
|
105
|
-
class NodalReleaseTypePartialActivityAlongXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
106
|
-
__slots__ = ()
|
|
107
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongXNegativeType]
|
|
108
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongXNegativeType]
|
|
109
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongXNegativeType]
|
|
110
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongXNegativeType]
|
|
111
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongXNegativeType]
|
|
112
|
-
|
|
113
|
-
class NodalReleaseTypePartialActivityAlongXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
114
|
-
__slots__ = ()
|
|
115
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongXPositiveType]
|
|
116
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongXPositiveType]
|
|
117
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongXPositiveType]
|
|
118
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongXPositiveType]
|
|
119
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongXPositiveType]
|
|
120
|
-
|
|
121
|
-
class NodalReleaseTypePartialActivityAlongYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
122
|
-
__slots__ = ()
|
|
123
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongYNegativeType]
|
|
124
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongYNegativeType]
|
|
125
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongYNegativeType]
|
|
126
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongYNegativeType]
|
|
127
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongYNegativeType]
|
|
128
|
-
|
|
129
|
-
class NodalReleaseTypePartialActivityAlongYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
130
|
-
__slots__ = ()
|
|
131
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongYPositiveType]
|
|
132
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongYPositiveType]
|
|
133
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongYPositiveType]
|
|
134
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongYPositiveType]
|
|
135
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongYPositiveType]
|
|
136
|
-
|
|
137
|
-
class NodalReleaseTypePartialActivityAlongZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
138
|
-
__slots__ = ()
|
|
139
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongZNegativeType]
|
|
140
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongZNegativeType]
|
|
141
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongZNegativeType]
|
|
142
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongZNegativeType]
|
|
143
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongZNegativeType]
|
|
144
|
-
|
|
145
|
-
class NodalReleaseTypePartialActivityAlongZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
146
|
-
__slots__ = ()
|
|
147
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAlongZPositiveType]
|
|
148
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongZPositiveType]
|
|
149
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAlongZPositiveType]
|
|
150
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAlongZPositiveType]
|
|
151
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalReleaseTypePartialActivityAlongZPositiveType]
|
|
152
|
-
|
|
153
|
-
class NodalReleaseTypePartialActivityAroundXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
154
|
-
__slots__ = ()
|
|
155
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundXNegativeType]
|
|
156
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundXNegativeType]
|
|
157
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundXNegativeType]
|
|
158
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundXNegativeType]
|
|
159
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundXNegativeType]
|
|
160
|
-
|
|
161
|
-
class NodalReleaseTypePartialActivityAroundXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
162
|
-
__slots__ = ()
|
|
163
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundXPositiveType]
|
|
164
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundXPositiveType]
|
|
165
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundXPositiveType]
|
|
166
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundXPositiveType]
|
|
167
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundXPositiveType]
|
|
168
|
-
|
|
169
|
-
class NodalReleaseTypePartialActivityAroundYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
170
|
-
__slots__ = ()
|
|
171
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundYNegativeType]
|
|
172
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundYNegativeType]
|
|
173
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundYNegativeType]
|
|
174
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundYNegativeType]
|
|
175
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundYNegativeType]
|
|
176
|
-
|
|
177
|
-
class NodalReleaseTypePartialActivityAroundYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
178
|
-
__slots__ = ()
|
|
179
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundYPositiveType]
|
|
180
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundYPositiveType]
|
|
181
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundYPositiveType]
|
|
182
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundYPositiveType]
|
|
183
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundYPositiveType]
|
|
184
|
-
|
|
185
|
-
class NodalReleaseTypePartialActivityAroundZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
186
|
-
__slots__ = ()
|
|
187
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundZNegativeType]
|
|
188
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundZNegativeType]
|
|
189
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundZNegativeType]
|
|
190
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundZNegativeType]
|
|
191
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundZNegativeType]
|
|
192
|
-
|
|
193
|
-
class NodalReleaseTypePartialActivityAroundZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
194
|
-
__slots__ = ()
|
|
195
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalReleaseTypePartialActivityAroundZPositiveType]
|
|
196
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundZPositiveType]
|
|
197
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalReleaseTypePartialActivityAroundZPositiveType]
|
|
198
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: _ClassVar[NodalReleaseTypePartialActivityAroundZPositiveType]
|
|
199
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalReleaseTypePartialActivityAroundZPositiveType]
|
|
200
|
-
|
|
201
|
-
class NodalReleaseTypeDiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
202
|
-
__slots__ = ()
|
|
203
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongXStart]
|
|
204
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongXStart]
|
|
205
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongXStart]
|
|
206
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongXStart]
|
|
207
|
-
|
|
208
|
-
class NodalReleaseTypeDiagramAlongYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
209
|
-
__slots__ = ()
|
|
210
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongYStart]
|
|
211
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongYStart]
|
|
212
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongYStart]
|
|
213
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongYStart]
|
|
214
|
-
|
|
215
|
-
class NodalReleaseTypeDiagramAlongZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
216
|
-
__slots__ = ()
|
|
217
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongZStart]
|
|
218
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongZStart]
|
|
219
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongZStart]
|
|
220
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongZStart]
|
|
221
|
-
|
|
222
|
-
class NodalReleaseTypeDiagramAroundXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
223
|
-
__slots__ = ()
|
|
224
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundXStart]
|
|
225
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundXStart]
|
|
226
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundXStart]
|
|
227
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundXStart]
|
|
228
|
-
|
|
229
|
-
class NodalReleaseTypeDiagramAroundYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
230
|
-
__slots__ = ()
|
|
231
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundYStart]
|
|
232
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundYStart]
|
|
233
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundYStart]
|
|
234
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundYStart]
|
|
235
|
-
|
|
236
|
-
class NodalReleaseTypeDiagramAroundZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
237
|
-
__slots__ = ()
|
|
238
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundZStart]
|
|
239
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundZStart]
|
|
240
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundZStart]
|
|
241
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundZStart]
|
|
242
|
-
|
|
243
|
-
class NodalReleaseTypeDiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
244
|
-
__slots__ = ()
|
|
245
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongXEnd]
|
|
246
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongXEnd]
|
|
247
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongXEnd]
|
|
248
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongXEnd]
|
|
249
|
-
|
|
250
|
-
class NodalReleaseTypeDiagramAlongYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
251
|
-
__slots__ = ()
|
|
252
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongYEnd]
|
|
253
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongYEnd]
|
|
254
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongYEnd]
|
|
255
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongYEnd]
|
|
256
|
-
|
|
257
|
-
class NodalReleaseTypeDiagramAlongZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
258
|
-
__slots__ = ()
|
|
259
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAlongZEnd]
|
|
260
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAlongZEnd]
|
|
261
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAlongZEnd]
|
|
262
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAlongZEnd]
|
|
263
|
-
|
|
264
|
-
class NodalReleaseTypeDiagramAroundXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
265
|
-
__slots__ = ()
|
|
266
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundXEnd]
|
|
267
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundXEnd]
|
|
268
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundXEnd]
|
|
269
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundXEnd]
|
|
270
|
-
|
|
271
|
-
class NodalReleaseTypeDiagramAroundYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
272
|
-
__slots__ = ()
|
|
273
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundYEnd]
|
|
274
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundYEnd]
|
|
275
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundYEnd]
|
|
276
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundYEnd]
|
|
277
|
-
|
|
278
|
-
class NodalReleaseTypeDiagramAroundZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
279
|
-
__slots__ = ()
|
|
280
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalReleaseTypeDiagramAroundZEnd]
|
|
281
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalReleaseTypeDiagramAroundZEnd]
|
|
282
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalReleaseTypeDiagramAroundZEnd]
|
|
283
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalReleaseTypeDiagramAroundZEnd]
|
|
284
|
-
|
|
285
|
-
class NodalReleaseTypeLocalAxisSystemObjectType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
286
|
-
__slots__ = ()
|
|
287
|
-
NODAL_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_MEMBER: _ClassVar[NodalReleaseTypeLocalAxisSystemObjectType]
|
|
288
|
-
NODAL_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_LINE: _ClassVar[NodalReleaseTypeLocalAxisSystemObjectType]
|
|
289
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_NONE: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
290
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
291
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
292
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
293
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
294
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
295
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
296
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
297
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
298
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
299
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
300
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
301
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_N_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeAxialReleaseNNonlinearity
|
|
302
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_NONE: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
303
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
304
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
305
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
306
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
307
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
308
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
309
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
310
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
311
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
312
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
313
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
314
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VY_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeAxialReleaseVyNonlinearity
|
|
315
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_NONE: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
316
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
317
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
318
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
319
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
320
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
321
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
322
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
323
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
324
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
325
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
326
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
327
|
-
NODAL_RELEASE_TYPE_AXIAL_RELEASE_VZ_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeAxialReleaseVzNonlinearity
|
|
328
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_NONE: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
329
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
330
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
331
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
332
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
333
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
334
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
335
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
336
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
337
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
338
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
339
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
340
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MT_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeMomentReleaseMtNonlinearity
|
|
341
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_NONE: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
342
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
343
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
344
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
345
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
346
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
347
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
348
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
349
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
350
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
351
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
352
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
353
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MY_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeMomentReleaseMyNonlinearity
|
|
354
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_NONE: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
355
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_DIAGRAM: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
356
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
357
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
358
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
359
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
360
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
361
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
362
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
363
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
364
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
365
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
366
|
-
NODAL_RELEASE_TYPE_MOMENT_RELEASE_MZ_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalReleaseTypeMomentReleaseMzNonlinearity
|
|
367
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongXNegativeType
|
|
368
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongXNegativeType
|
|
369
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongXNegativeType
|
|
370
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongXNegativeType
|
|
371
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongXNegativeType
|
|
372
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongXPositiveType
|
|
373
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongXPositiveType
|
|
374
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongXPositiveType
|
|
375
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongXPositiveType
|
|
376
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongXPositiveType
|
|
377
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongYNegativeType
|
|
378
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongYNegativeType
|
|
379
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongYNegativeType
|
|
380
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongYNegativeType
|
|
381
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongYNegativeType
|
|
382
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongYPositiveType
|
|
383
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongYPositiveType
|
|
384
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongYPositiveType
|
|
385
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongYPositiveType
|
|
386
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongYPositiveType
|
|
387
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongZNegativeType
|
|
388
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongZNegativeType
|
|
389
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongZNegativeType
|
|
390
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongZNegativeType
|
|
391
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongZNegativeType
|
|
392
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAlongZPositiveType
|
|
393
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalReleaseTypePartialActivityAlongZPositiveType
|
|
394
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAlongZPositiveType
|
|
395
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAlongZPositiveType
|
|
396
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalReleaseTypePartialActivityAlongZPositiveType
|
|
397
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundXNegativeType
|
|
398
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundXNegativeType
|
|
399
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundXNegativeType
|
|
400
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundXNegativeType
|
|
401
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundXNegativeType
|
|
402
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundXPositiveType
|
|
403
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundXPositiveType
|
|
404
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundXPositiveType
|
|
405
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundXPositiveType
|
|
406
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundXPositiveType
|
|
407
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundYNegativeType
|
|
408
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundYNegativeType
|
|
409
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundYNegativeType
|
|
410
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundYNegativeType
|
|
411
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundYNegativeType
|
|
412
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundYPositiveType
|
|
413
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundYPositiveType
|
|
414
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundYPositiveType
|
|
415
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundYPositiveType
|
|
416
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundYPositiveType
|
|
417
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundZNegativeType
|
|
418
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundZNegativeType
|
|
419
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundZNegativeType
|
|
420
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundZNegativeType
|
|
421
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundZNegativeType
|
|
422
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalReleaseTypePartialActivityAroundZPositiveType
|
|
423
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalReleaseTypePartialActivityAroundZPositiveType
|
|
424
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalReleaseTypePartialActivityAroundZPositiveType
|
|
425
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS: NodalReleaseTypePartialActivityAroundZPositiveType
|
|
426
|
-
NODAL_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalReleaseTypePartialActivityAroundZPositiveType
|
|
427
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongXStart
|
|
428
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongXStart
|
|
429
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongXStart
|
|
430
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongXStart
|
|
431
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongYStart
|
|
432
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongYStart
|
|
433
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongYStart
|
|
434
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongYStart
|
|
435
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongZStart
|
|
436
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongZStart
|
|
437
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongZStart
|
|
438
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongZStart
|
|
439
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundXStart
|
|
440
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundXStart
|
|
441
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundXStart
|
|
442
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundXStart
|
|
443
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundYStart
|
|
444
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundYStart
|
|
445
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundYStart
|
|
446
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundYStart
|
|
447
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundZStart
|
|
448
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundZStart
|
|
449
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundZStart
|
|
450
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundZStart
|
|
451
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongXEnd
|
|
452
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongXEnd
|
|
453
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongXEnd
|
|
454
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongXEnd
|
|
455
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongYEnd
|
|
456
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongYEnd
|
|
457
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongYEnd
|
|
458
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongYEnd
|
|
459
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAlongZEnd
|
|
460
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAlongZEnd
|
|
461
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAlongZEnd
|
|
462
|
-
NODAL_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAlongZEnd
|
|
463
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundXEnd
|
|
464
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundXEnd
|
|
465
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundXEnd
|
|
466
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundXEnd
|
|
467
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundYEnd
|
|
468
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundYEnd
|
|
469
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundYEnd
|
|
470
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundYEnd
|
|
471
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalReleaseTypeDiagramAroundZEnd
|
|
472
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalReleaseTypeDiagramAroundZEnd
|
|
473
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: NodalReleaseTypeDiagramAroundZEnd
|
|
474
|
-
NODAL_RELEASE_TYPE_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalReleaseTypeDiagramAroundZEnd
|
|
475
|
-
NODAL_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_MEMBER: NodalReleaseTypeLocalAxisSystemObjectType
|
|
476
|
-
NODAL_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_LINE: NodalReleaseTypeLocalAxisSystemObjectType
|
|
477
|
-
|
|
478
11
|
class NodalReleaseType(_message.Message):
|
|
479
|
-
__slots__ = ("no", "user_defined_name_enabled", "name", "nodal_releases", "coordinate_system", "axial_release_n", "axial_release_vy", "axial_release_vz", "moment_release_mt", "moment_release_my", "moment_release_mz", "axial_release_n_nonlinearity", "axial_release_vy_nonlinearity", "axial_release_vz_nonlinearity", "moment_release_mt_nonlinearity", "moment_release_my_nonlinearity", "moment_release_mz_nonlinearity", "partial_activity_along_x_negative_type", "partial_activity_along_x_positive_type", "partial_activity_along_y_negative_type", "partial_activity_along_y_positive_type", "partial_activity_along_z_negative_type", "partial_activity_along_z_positive_type", "partial_activity_around_x_negative_type", "partial_activity_around_x_positive_type", "partial_activity_around_y_negative_type", "partial_activity_around_y_positive_type", "partial_activity_around_z_negative_type", "partial_activity_around_z_positive_type", "partial_activity_along_x_negative_displacement", "partial_activity_along_x_positive_displacement", "partial_activity_along_y_negative_displacement", "partial_activity_along_y_positive_displacement", "partial_activity_along_z_negative_displacement", "partial_activity_along_z_positive_displacement", "partial_activity_around_x_negative_moment", "partial_activity_around_x_positive_moment", "partial_activity_around_y_negative_moment", "partial_activity_around_y_positive_moment", "partial_activity_around_z_negative_moment", "partial_activity_around_z_positive_moment", "partial_activity_along_x_negative_force", "partial_activity_along_x_positive_force", "partial_activity_along_y_negative_force", "partial_activity_along_y_positive_force", "partial_activity_along_z_negative_force", "partial_activity_along_z_positive_force", "partial_activity_around_x_negative_rotation", "partial_activity_around_x_positive_rotation", "partial_activity_around_y_negative_rotation", "partial_activity_around_y_positive_rotation", "partial_activity_around_z_negative_rotation", "partial_activity_around_z_positive_rotation", "partial_activity_along_x_negative_slippage", "partial_activity_along_x_positive_slippage", "partial_activity_along_y_negative_slippage", "partial_activity_along_y_positive_slippage", "partial_activity_along_z_negative_slippage", "partial_activity_along_z_positive_slippage", "partial_activity_around_x_negative_slippage", "partial_activity_around_x_positive_slippage", "partial_activity_around_y_negative_slippage", "partial_activity_around_y_positive_slippage", "partial_activity_around_z_negative_slippage", "partial_activity_around_z_positive_slippage", "diagram_along_x_table", "diagram_along_y_table", "diagram_along_z_table", "diagram_around_x_table", "diagram_around_y_table", "diagram_around_z_table", "diagram_along_x_symmetric", "diagram_along_y_symmetric", "diagram_along_z_symmetric", "diagram_around_x_symmetric", "diagram_around_y_symmetric", "diagram_around_z_symmetric", "diagram_along_x_is_sorted", "diagram_along_y_is_sorted", "diagram_along_z_is_sorted", "diagram_around_x_is_sorted", "diagram_around_y_is_sorted", "diagram_around_z_is_sorted", "diagram_along_x_start", "diagram_along_y_start", "diagram_along_z_start", "diagram_around_x_start", "diagram_around_y_start", "diagram_around_z_start", "diagram_along_x_end", "diagram_along_y_end", "diagram_along_z_end", "diagram_around_x_end", "diagram_around_y_end", "diagram_around_z_end", "friction_coefficient_x", "friction_coefficient_xy", "friction_coefficient_xz", "friction_coefficient_y", "friction_coefficient_yx", "friction_coefficient_yz", "friction_coefficient_z", "friction_coefficient_zx", "friction_coefficient_zy", "friction_direction_independent_x", "friction_direction_independent_y", "friction_direction_independent_z", "comment", "is_generated", "generating_object_info", "local_axis_system_object_type", "local_axis_system_reference_object", "id_for_export_import", "metadata_for_export_import")
|
|
12
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "nodal_releases", "coordinate_system", "axial_release_n", "axial_release_vy", "axial_release_vz", "moment_release_mt", "moment_release_my", "moment_release_mz", "axial_release_n_nonlinearity", "axial_release_vy_nonlinearity", "axial_release_vz_nonlinearity", "moment_release_mt_nonlinearity", "moment_release_my_nonlinearity", "moment_release_mz_nonlinearity", "partial_activity_along_x_negative_type", "partial_activity_along_x_positive_type", "partial_activity_along_y_negative_type", "partial_activity_along_y_positive_type", "partial_activity_along_z_negative_type", "partial_activity_along_z_positive_type", "partial_activity_around_x_negative_type", "partial_activity_around_x_positive_type", "partial_activity_around_y_negative_type", "partial_activity_around_y_positive_type", "partial_activity_around_z_negative_type", "partial_activity_around_z_positive_type", "partial_activity_along_x_negative_displacement", "partial_activity_along_x_positive_displacement", "partial_activity_along_y_negative_displacement", "partial_activity_along_y_positive_displacement", "partial_activity_along_z_negative_displacement", "partial_activity_along_z_positive_displacement", "partial_activity_around_x_negative_rotation", "partial_activity_around_x_positive_rotation", "partial_activity_around_y_negative_rotation", "partial_activity_around_y_positive_rotation", "partial_activity_around_z_negative_rotation", "partial_activity_around_z_positive_rotation", "partial_activity_along_x_negative_force", "partial_activity_along_x_positive_force", "partial_activity_along_y_negative_force", "partial_activity_along_y_positive_force", "partial_activity_along_z_negative_force", "partial_activity_along_z_positive_force", "partial_activity_around_x_negative_moment", "partial_activity_around_x_positive_moment", "partial_activity_around_y_negative_moment", "partial_activity_around_y_positive_moment", "partial_activity_around_z_negative_moment", "partial_activity_around_z_positive_moment", "partial_activity_along_x_negative_slippage", "partial_activity_along_x_positive_slippage", "partial_activity_along_y_negative_slippage", "partial_activity_along_y_positive_slippage", "partial_activity_along_z_negative_slippage", "partial_activity_along_z_positive_slippage", "partial_activity_around_x_negative_slippage", "partial_activity_around_x_positive_slippage", "partial_activity_around_y_negative_slippage", "partial_activity_around_y_positive_slippage", "partial_activity_around_z_negative_slippage", "partial_activity_around_z_positive_slippage", "diagram_along_x_symmetric", "diagram_along_y_symmetric", "diagram_along_z_symmetric", "diagram_around_x_symmetric", "diagram_around_y_symmetric", "diagram_around_z_symmetric", "diagram_along_x_is_sorted", "diagram_along_y_is_sorted", "diagram_along_z_is_sorted", "diagram_around_x_is_sorted", "diagram_around_y_is_sorted", "diagram_around_z_is_sorted", "diagram_along_x_start", "diagram_along_y_start", "diagram_along_z_start", "diagram_around_x_start", "diagram_around_y_start", "diagram_around_z_start", "diagram_along_x_end", "diagram_along_y_end", "diagram_along_z_end", "diagram_around_x_end", "diagram_around_y_end", "diagram_around_z_end", "diagram_along_x_table", "diagram_along_y_table", "diagram_along_z_table", "diagram_around_x_table", "diagram_around_y_table", "diagram_around_z_table", "diagram_along_x_ac_yield_minus", "diagram_along_y_ac_yield_minus", "diagram_along_z_ac_yield_minus", "diagram_around_x_ac_yield_minus", "diagram_around_y_ac_yield_minus", "diagram_around_z_ac_yield_minus", "diagram_along_x_ac_yield_plus", "diagram_along_y_ac_yield_plus", "diagram_along_z_ac_yield_plus", "diagram_around_x_ac_yield_plus", "diagram_around_y_ac_yield_plus", "diagram_around_z_ac_yield_plus", "diagram_along_x_acceptance_criteria_active", "diagram_along_y_acceptance_criteria_active", "diagram_along_z_acceptance_criteria_active", "diagram_around_x_acceptance_criteria_active", "diagram_around_y_acceptance_criteria_active", "diagram_around_z_acceptance_criteria_active", "diagram_along_x_minus_color_one", "diagram_along_y_minus_color_one", "diagram_along_z_minus_color_one", "diagram_around_x_minus_color_one", "diagram_around_y_minus_color_one", "diagram_around_z_minus_color_one", "diagram_along_x_minus_color_two", "diagram_along_y_minus_color_two", "diagram_along_z_minus_color_two", "diagram_around_x_minus_color_two", "diagram_around_y_minus_color_two", "diagram_around_z_minus_color_two", "diagram_along_x_plus_color_one", "diagram_along_y_plus_color_one", "diagram_along_z_plus_color_one", "diagram_around_x_plus_color_one", "diagram_around_y_plus_color_one", "diagram_around_z_plus_color_one", "diagram_along_x_plus_color_two", "diagram_along_y_plus_color_two", "diagram_along_z_plus_color_two", "diagram_around_x_plus_color_two", "diagram_around_y_plus_color_two", "diagram_around_z_plus_color_two", "diagram_along_x_color_table", "diagram_along_y_color_table", "diagram_along_z_color_table", "diagram_around_x_color_table", "diagram_around_y_color_table", "diagram_around_z_color_table", "plastic_diagram_along_x_table", "plastic_diagram_along_y_table", "plastic_diagram_along_z_table", "plastic_diagram_around_y_table", "plastic_diagram_around_z_table", "plastic_diagram_along_x_symmetric", "plastic_diagram_along_y_symmetric", "plastic_diagram_along_z_symmetric", "plastic_diagram_around_y_symmetric", "plastic_diagram_around_z_symmetric", "plastic_diagram_around_y_force_interaction", "plastic_diagram_around_z_force_interaction", "plastic_diagram_along_x_user_defined", "plastic_diagram_along_y_user_defined", "plastic_diagram_along_z_user_defined", "plastic_diagram_around_y_user_defined", "plastic_diagram_around_z_user_defined", "plastic_diagram_along_x_is_user_defined_member_length", "plastic_diagram_along_y_is_user_defined_member_length", "plastic_diagram_along_z_is_user_defined_member_length", "plastic_diagram_around_y_is_user_defined_member_length", "plastic_diagram_around_z_is_user_defined_member_length", "plastic_diagram_along_x_user_defined_member_length", "plastic_diagram_along_y_user_defined_member_length", "plastic_diagram_along_z_user_defined_member_length", "plastic_diagram_around_y_user_defined_member_length", "plastic_diagram_around_z_user_defined_member_length", "plastic_diagram_along_x_attached_members_min_max_length", "plastic_diagram_along_y_attached_members_min_max_length", "plastic_diagram_along_z_attached_members_min_max_length", "plastic_diagram_around_y_attached_members_min_max_length", "plastic_diagram_around_z_attached_members_min_max_length", "plastic_diagram_along_x_io_negative", "plastic_diagram_along_y_io_negative", "plastic_diagram_along_z_io_negative", "plastic_diagram_around_y_io_negative", "plastic_diagram_around_z_io_negative", "plastic_diagram_along_x_io_positive", "plastic_diagram_along_y_io_positive", "plastic_diagram_along_z_io_positive", "plastic_diagram_around_y_io_positive", "plastic_diagram_around_z_io_positive", "plastic_diagram_along_x_ls_negative", "plastic_diagram_along_y_ls_negative", "plastic_diagram_along_z_ls_negative", "plastic_diagram_around_y_ls_negative", "plastic_diagram_around_z_ls_negative", "plastic_diagram_along_x_ls_positive", "plastic_diagram_along_y_ls_positive", "plastic_diagram_along_z_ls_positive", "plastic_diagram_around_y_ls_positive", "plastic_diagram_around_z_ls_positive", "plastic_diagram_along_x_cp_negative", "plastic_diagram_along_y_cp_negative", "plastic_diagram_along_z_cp_negative", "plastic_diagram_around_y_cp_negative", "plastic_diagram_around_z_cp_negative", "plastic_diagram_along_x_cp_positive", "plastic_diagram_along_y_cp_positive", "plastic_diagram_along_z_cp_positive", "plastic_diagram_around_y_cp_positive", "plastic_diagram_around_z_cp_positive", "plastic_diagram_along_x_minus_color_one", "plastic_diagram_along_y_minus_color_one", "plastic_diagram_along_z_minus_color_one", "plastic_diagram_around_y_minus_color_one", "plastic_diagram_around_z_minus_color_one", "plastic_diagram_along_x_minus_color_two", "plastic_diagram_along_y_minus_color_two", "plastic_diagram_along_z_minus_color_two", "plastic_diagram_around_y_minus_color_two", "plastic_diagram_around_z_minus_color_two", "plastic_diagram_along_x_minus_color_three", "plastic_diagram_along_y_minus_color_three", "plastic_diagram_along_z_minus_color_three", "plastic_diagram_around_y_minus_color_three", "plastic_diagram_around_z_minus_color_three", "plastic_diagram_along_x_minus_color_four", "plastic_diagram_along_y_minus_color_four", "plastic_diagram_along_z_minus_color_four", "plastic_diagram_around_y_minus_color_four", "plastic_diagram_around_z_minus_color_four", "plastic_diagram_along_x_plus_color_one", "plastic_diagram_along_y_plus_color_one", "plastic_diagram_along_z_plus_color_one", "plastic_diagram_around_y_plus_color_one", "plastic_diagram_around_z_plus_color_one", "plastic_diagram_along_x_plus_color_two", "plastic_diagram_along_y_plus_color_two", "plastic_diagram_along_z_plus_color_two", "plastic_diagram_around_y_plus_color_two", "plastic_diagram_around_z_plus_color_two", "plastic_diagram_along_x_plus_color_three", "plastic_diagram_along_y_plus_color_three", "plastic_diagram_along_z_plus_color_three", "plastic_diagram_around_y_plus_color_three", "plastic_diagram_around_z_plus_color_three", "plastic_diagram_along_x_plus_color_four", "plastic_diagram_along_y_plus_color_four", "plastic_diagram_along_z_plus_color_four", "plastic_diagram_around_y_plus_color_four", "plastic_diagram_around_z_plus_color_four", "plastic_diagram_along_x_component_type", "plastic_diagram_along_y_component_type", "plastic_diagram_along_z_component_type", "plastic_diagram_around_y_component_type", "plastic_diagram_around_z_component_type", "plastic_diagram_along_x_color_table", "plastic_diagram_along_y_color_table", "plastic_diagram_along_z_color_table", "plastic_diagram_around_y_color_table", "plastic_diagram_around_z_color_table", "friction_coefficient_x", "friction_coefficient_xy", "friction_coefficient_xz", "friction_coefficient_y", "friction_coefficient_yx", "friction_coefficient_yz", "friction_coefficient_z", "friction_coefficient_zx", "friction_coefficient_zy", "friction_direction_independent_x", "friction_direction_independent_y", "friction_direction_independent_z", "comment", "is_generated", "generating_object_info", "local_axis_system_object_type", "local_axis_system_reference_object", "id_for_export_import", "metadata_for_export_import")
|
|
13
|
+
class AxialReleaseNNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
14
|
+
__slots__ = ()
|
|
15
|
+
AXIAL_RELEASE_N_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
16
|
+
AXIAL_RELEASE_N_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
17
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
18
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
19
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
20
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
21
|
+
AXIAL_RELEASE_N_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
22
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
23
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
24
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
25
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
26
|
+
AXIAL_RELEASE_N_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
27
|
+
AXIAL_RELEASE_N_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseNNonlinearity]
|
|
28
|
+
AXIAL_RELEASE_N_NONLINEARITY_NONE: NodalReleaseType.AxialReleaseNNonlinearity
|
|
29
|
+
AXIAL_RELEASE_N_NONLINEARITY_DIAGRAM: NodalReleaseType.AxialReleaseNNonlinearity
|
|
30
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.AxialReleaseNNonlinearity
|
|
31
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.AxialReleaseNNonlinearity
|
|
32
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.AxialReleaseNNonlinearity
|
|
33
|
+
AXIAL_RELEASE_N_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.AxialReleaseNNonlinearity
|
|
34
|
+
AXIAL_RELEASE_N_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.AxialReleaseNNonlinearity
|
|
35
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.AxialReleaseNNonlinearity
|
|
36
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.AxialReleaseNNonlinearity
|
|
37
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.AxialReleaseNNonlinearity
|
|
38
|
+
AXIAL_RELEASE_N_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.AxialReleaseNNonlinearity
|
|
39
|
+
AXIAL_RELEASE_N_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.AxialReleaseNNonlinearity
|
|
40
|
+
AXIAL_RELEASE_N_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.AxialReleaseNNonlinearity
|
|
41
|
+
class AxialReleaseVyNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
42
|
+
__slots__ = ()
|
|
43
|
+
AXIAL_RELEASE_VY_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
44
|
+
AXIAL_RELEASE_VY_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
45
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
46
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
47
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
48
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
49
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
50
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
51
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
52
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
53
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
54
|
+
AXIAL_RELEASE_VY_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
55
|
+
AXIAL_RELEASE_VY_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVyNonlinearity]
|
|
56
|
+
AXIAL_RELEASE_VY_NONLINEARITY_NONE: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
57
|
+
AXIAL_RELEASE_VY_NONLINEARITY_DIAGRAM: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
58
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
59
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
60
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
61
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
62
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
63
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
64
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
65
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
66
|
+
AXIAL_RELEASE_VY_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
67
|
+
AXIAL_RELEASE_VY_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
68
|
+
AXIAL_RELEASE_VY_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
69
|
+
class AxialReleaseVzNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
70
|
+
__slots__ = ()
|
|
71
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
72
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
73
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
74
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
75
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
76
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
77
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
78
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
79
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
80
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
81
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
82
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
83
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.AxialReleaseVzNonlinearity]
|
|
84
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_NONE: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
85
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_DIAGRAM: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
86
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
87
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
88
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
89
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
90
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
91
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
92
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
93
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
94
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
95
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
96
|
+
AXIAL_RELEASE_VZ_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
97
|
+
class MomentReleaseMtNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
98
|
+
__slots__ = ()
|
|
99
|
+
MOMENT_RELEASE_MT_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
100
|
+
MOMENT_RELEASE_MT_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
101
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
102
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
103
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
104
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
105
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
106
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
107
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
108
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
109
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
110
|
+
MOMENT_RELEASE_MT_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
111
|
+
MOMENT_RELEASE_MT_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMtNonlinearity]
|
|
112
|
+
MOMENT_RELEASE_MT_NONLINEARITY_NONE: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
113
|
+
MOMENT_RELEASE_MT_NONLINEARITY_DIAGRAM: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
114
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
115
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
116
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
117
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
118
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
119
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
120
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
121
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
122
|
+
MOMENT_RELEASE_MT_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
123
|
+
MOMENT_RELEASE_MT_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
124
|
+
MOMENT_RELEASE_MT_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
125
|
+
class MomentReleaseMyNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
126
|
+
__slots__ = ()
|
|
127
|
+
MOMENT_RELEASE_MY_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
128
|
+
MOMENT_RELEASE_MY_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
129
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
130
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
131
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
132
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
133
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
134
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
135
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
136
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
137
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
138
|
+
MOMENT_RELEASE_MY_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
139
|
+
MOMENT_RELEASE_MY_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMyNonlinearity]
|
|
140
|
+
MOMENT_RELEASE_MY_NONLINEARITY_NONE: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
141
|
+
MOMENT_RELEASE_MY_NONLINEARITY_DIAGRAM: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
142
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
143
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
144
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
145
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
146
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
147
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
148
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
149
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
150
|
+
MOMENT_RELEASE_MY_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
151
|
+
MOMENT_RELEASE_MY_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
152
|
+
MOMENT_RELEASE_MY_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
153
|
+
class MomentReleaseMzNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
154
|
+
__slots__ = ()
|
|
155
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_NONE: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
156
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
157
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
158
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
159
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_IF_NEGATIVE: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
160
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_IF_POSITIVE: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
161
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
162
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
163
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1_2: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
164
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
165
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_2: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
166
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_PARTIAL_ACTIVITY: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
167
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_STIFFNESS_DIAGRAM: _ClassVar[NodalReleaseType.MomentReleaseMzNonlinearity]
|
|
168
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_NONE: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
169
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_DIAGRAM: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
170
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_ALL_IF_NEGATIVE: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
171
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_ALL_IF_POSITIVE: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
172
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_IF_NEGATIVE: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
173
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FAILURE_IF_POSITIVE: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
174
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FORCE_MOMENT_DIAGRAM: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
175
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
176
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1_2: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
177
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_1_PLUS_2: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
178
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_FRICTION_DIRECTION_2: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
179
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_PARTIAL_ACTIVITY: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
180
|
+
MOMENT_RELEASE_MZ_NONLINEARITY_STIFFNESS_DIAGRAM: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
181
|
+
class PartialActivityAlongXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
182
|
+
__slots__ = ()
|
|
183
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongXNegativeType]
|
|
184
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongXNegativeType]
|
|
185
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongXNegativeType]
|
|
186
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongXNegativeType]
|
|
187
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongXNegativeType]
|
|
188
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
189
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
190
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
191
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
192
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
193
|
+
class PartialActivityAlongXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
194
|
+
__slots__ = ()
|
|
195
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongXPositiveType]
|
|
196
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongXPositiveType]
|
|
197
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongXPositiveType]
|
|
198
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongXPositiveType]
|
|
199
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongXPositiveType]
|
|
200
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
201
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
202
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
203
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
204
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
205
|
+
class PartialActivityAlongYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
206
|
+
__slots__ = ()
|
|
207
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongYNegativeType]
|
|
208
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongYNegativeType]
|
|
209
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongYNegativeType]
|
|
210
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongYNegativeType]
|
|
211
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongYNegativeType]
|
|
212
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
213
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
214
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
215
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
216
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
217
|
+
class PartialActivityAlongYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
218
|
+
__slots__ = ()
|
|
219
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongYPositiveType]
|
|
220
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongYPositiveType]
|
|
221
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongYPositiveType]
|
|
222
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongYPositiveType]
|
|
223
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongYPositiveType]
|
|
224
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
225
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
226
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
227
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
228
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
229
|
+
class PartialActivityAlongZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
230
|
+
__slots__ = ()
|
|
231
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongZNegativeType]
|
|
232
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongZNegativeType]
|
|
233
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongZNegativeType]
|
|
234
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongZNegativeType]
|
|
235
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongZNegativeType]
|
|
236
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
237
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
238
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
239
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
240
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
241
|
+
class PartialActivityAlongZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
242
|
+
__slots__ = ()
|
|
243
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAlongZPositiveType]
|
|
244
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAlongZPositiveType]
|
|
245
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongZPositiveType]
|
|
246
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAlongZPositiveType]
|
|
247
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAlongZPositiveType]
|
|
248
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
249
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
250
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
251
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
252
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
253
|
+
class PartialActivityAroundXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
254
|
+
__slots__ = ()
|
|
255
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundXNegativeType]
|
|
256
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundXNegativeType]
|
|
257
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundXNegativeType]
|
|
258
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundXNegativeType]
|
|
259
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundXNegativeType]
|
|
260
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
261
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
262
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
263
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
264
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
265
|
+
class PartialActivityAroundXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
266
|
+
__slots__ = ()
|
|
267
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundXPositiveType]
|
|
268
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundXPositiveType]
|
|
269
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundXPositiveType]
|
|
270
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundXPositiveType]
|
|
271
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundXPositiveType]
|
|
272
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
273
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
274
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
275
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
276
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
277
|
+
class PartialActivityAroundYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
278
|
+
__slots__ = ()
|
|
279
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundYNegativeType]
|
|
280
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundYNegativeType]
|
|
281
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundYNegativeType]
|
|
282
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundYNegativeType]
|
|
283
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundYNegativeType]
|
|
284
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
285
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
286
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
287
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
288
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
289
|
+
class PartialActivityAroundYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
290
|
+
__slots__ = ()
|
|
291
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundYPositiveType]
|
|
292
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundYPositiveType]
|
|
293
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundYPositiveType]
|
|
294
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundYPositiveType]
|
|
295
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundYPositiveType]
|
|
296
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
297
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
298
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
299
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
300
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
301
|
+
class PartialActivityAroundZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
302
|
+
__slots__ = ()
|
|
303
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundZNegativeType]
|
|
304
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundZNegativeType]
|
|
305
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundZNegativeType]
|
|
306
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundZNegativeType]
|
|
307
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundZNegativeType]
|
|
308
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
309
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
310
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
311
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
312
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
313
|
+
class PartialActivityAroundZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
314
|
+
__slots__ = ()
|
|
315
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_COMPLETE: _ClassVar[NodalReleaseType.PartialActivityAroundZPositiveType]
|
|
316
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE: _ClassVar[NodalReleaseType.PartialActivityAroundZPositiveType]
|
|
317
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundZPositiveType]
|
|
318
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FIXED: _ClassVar[NodalReleaseType.PartialActivityAroundZPositiveType]
|
|
319
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: _ClassVar[NodalReleaseType.PartialActivityAroundZPositiveType]
|
|
320
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_COMPLETE: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
321
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
322
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FAILURE_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
323
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FIXED: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
324
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_YIELDING_FROM_FORCE_OR_MOMENT: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
325
|
+
class DiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
326
|
+
__slots__ = ()
|
|
327
|
+
DIAGRAM_ALONG_X_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongXStart]
|
|
328
|
+
DIAGRAM_ALONG_X_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongXStart]
|
|
329
|
+
DIAGRAM_ALONG_X_START_STOP: _ClassVar[NodalReleaseType.DiagramAlongXStart]
|
|
330
|
+
DIAGRAM_ALONG_X_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongXStart]
|
|
331
|
+
DIAGRAM_ALONG_X_START_FAILURE: NodalReleaseType.DiagramAlongXStart
|
|
332
|
+
DIAGRAM_ALONG_X_START_CONTINUOUS: NodalReleaseType.DiagramAlongXStart
|
|
333
|
+
DIAGRAM_ALONG_X_START_STOP: NodalReleaseType.DiagramAlongXStart
|
|
334
|
+
DIAGRAM_ALONG_X_START_YIELDING: NodalReleaseType.DiagramAlongXStart
|
|
335
|
+
class DiagramAlongYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
336
|
+
__slots__ = ()
|
|
337
|
+
DIAGRAM_ALONG_Y_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongYStart]
|
|
338
|
+
DIAGRAM_ALONG_Y_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongYStart]
|
|
339
|
+
DIAGRAM_ALONG_Y_START_STOP: _ClassVar[NodalReleaseType.DiagramAlongYStart]
|
|
340
|
+
DIAGRAM_ALONG_Y_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongYStart]
|
|
341
|
+
DIAGRAM_ALONG_Y_START_FAILURE: NodalReleaseType.DiagramAlongYStart
|
|
342
|
+
DIAGRAM_ALONG_Y_START_CONTINUOUS: NodalReleaseType.DiagramAlongYStart
|
|
343
|
+
DIAGRAM_ALONG_Y_START_STOP: NodalReleaseType.DiagramAlongYStart
|
|
344
|
+
DIAGRAM_ALONG_Y_START_YIELDING: NodalReleaseType.DiagramAlongYStart
|
|
345
|
+
class DiagramAlongZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
346
|
+
__slots__ = ()
|
|
347
|
+
DIAGRAM_ALONG_Z_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongZStart]
|
|
348
|
+
DIAGRAM_ALONG_Z_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongZStart]
|
|
349
|
+
DIAGRAM_ALONG_Z_START_STOP: _ClassVar[NodalReleaseType.DiagramAlongZStart]
|
|
350
|
+
DIAGRAM_ALONG_Z_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongZStart]
|
|
351
|
+
DIAGRAM_ALONG_Z_START_FAILURE: NodalReleaseType.DiagramAlongZStart
|
|
352
|
+
DIAGRAM_ALONG_Z_START_CONTINUOUS: NodalReleaseType.DiagramAlongZStart
|
|
353
|
+
DIAGRAM_ALONG_Z_START_STOP: NodalReleaseType.DiagramAlongZStart
|
|
354
|
+
DIAGRAM_ALONG_Z_START_YIELDING: NodalReleaseType.DiagramAlongZStart
|
|
355
|
+
class DiagramAroundXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
356
|
+
__slots__ = ()
|
|
357
|
+
DIAGRAM_AROUND_X_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundXStart]
|
|
358
|
+
DIAGRAM_AROUND_X_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundXStart]
|
|
359
|
+
DIAGRAM_AROUND_X_START_STOP: _ClassVar[NodalReleaseType.DiagramAroundXStart]
|
|
360
|
+
DIAGRAM_AROUND_X_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundXStart]
|
|
361
|
+
DIAGRAM_AROUND_X_START_FAILURE: NodalReleaseType.DiagramAroundXStart
|
|
362
|
+
DIAGRAM_AROUND_X_START_CONTINUOUS: NodalReleaseType.DiagramAroundXStart
|
|
363
|
+
DIAGRAM_AROUND_X_START_STOP: NodalReleaseType.DiagramAroundXStart
|
|
364
|
+
DIAGRAM_AROUND_X_START_YIELDING: NodalReleaseType.DiagramAroundXStart
|
|
365
|
+
class DiagramAroundYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
366
|
+
__slots__ = ()
|
|
367
|
+
DIAGRAM_AROUND_Y_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundYStart]
|
|
368
|
+
DIAGRAM_AROUND_Y_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundYStart]
|
|
369
|
+
DIAGRAM_AROUND_Y_START_STOP: _ClassVar[NodalReleaseType.DiagramAroundYStart]
|
|
370
|
+
DIAGRAM_AROUND_Y_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundYStart]
|
|
371
|
+
DIAGRAM_AROUND_Y_START_FAILURE: NodalReleaseType.DiagramAroundYStart
|
|
372
|
+
DIAGRAM_AROUND_Y_START_CONTINUOUS: NodalReleaseType.DiagramAroundYStart
|
|
373
|
+
DIAGRAM_AROUND_Y_START_STOP: NodalReleaseType.DiagramAroundYStart
|
|
374
|
+
DIAGRAM_AROUND_Y_START_YIELDING: NodalReleaseType.DiagramAroundYStart
|
|
375
|
+
class DiagramAroundZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
376
|
+
__slots__ = ()
|
|
377
|
+
DIAGRAM_AROUND_Z_START_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundZStart]
|
|
378
|
+
DIAGRAM_AROUND_Z_START_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundZStart]
|
|
379
|
+
DIAGRAM_AROUND_Z_START_STOP: _ClassVar[NodalReleaseType.DiagramAroundZStart]
|
|
380
|
+
DIAGRAM_AROUND_Z_START_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundZStart]
|
|
381
|
+
DIAGRAM_AROUND_Z_START_FAILURE: NodalReleaseType.DiagramAroundZStart
|
|
382
|
+
DIAGRAM_AROUND_Z_START_CONTINUOUS: NodalReleaseType.DiagramAroundZStart
|
|
383
|
+
DIAGRAM_AROUND_Z_START_STOP: NodalReleaseType.DiagramAroundZStart
|
|
384
|
+
DIAGRAM_AROUND_Z_START_YIELDING: NodalReleaseType.DiagramAroundZStart
|
|
385
|
+
class DiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
386
|
+
__slots__ = ()
|
|
387
|
+
DIAGRAM_ALONG_X_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongXEnd]
|
|
388
|
+
DIAGRAM_ALONG_X_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongXEnd]
|
|
389
|
+
DIAGRAM_ALONG_X_END_STOP: _ClassVar[NodalReleaseType.DiagramAlongXEnd]
|
|
390
|
+
DIAGRAM_ALONG_X_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongXEnd]
|
|
391
|
+
DIAGRAM_ALONG_X_END_FAILURE: NodalReleaseType.DiagramAlongXEnd
|
|
392
|
+
DIAGRAM_ALONG_X_END_CONTINUOUS: NodalReleaseType.DiagramAlongXEnd
|
|
393
|
+
DIAGRAM_ALONG_X_END_STOP: NodalReleaseType.DiagramAlongXEnd
|
|
394
|
+
DIAGRAM_ALONG_X_END_YIELDING: NodalReleaseType.DiagramAlongXEnd
|
|
395
|
+
class DiagramAlongYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
396
|
+
__slots__ = ()
|
|
397
|
+
DIAGRAM_ALONG_Y_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongYEnd]
|
|
398
|
+
DIAGRAM_ALONG_Y_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongYEnd]
|
|
399
|
+
DIAGRAM_ALONG_Y_END_STOP: _ClassVar[NodalReleaseType.DiagramAlongYEnd]
|
|
400
|
+
DIAGRAM_ALONG_Y_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongYEnd]
|
|
401
|
+
DIAGRAM_ALONG_Y_END_FAILURE: NodalReleaseType.DiagramAlongYEnd
|
|
402
|
+
DIAGRAM_ALONG_Y_END_CONTINUOUS: NodalReleaseType.DiagramAlongYEnd
|
|
403
|
+
DIAGRAM_ALONG_Y_END_STOP: NodalReleaseType.DiagramAlongYEnd
|
|
404
|
+
DIAGRAM_ALONG_Y_END_YIELDING: NodalReleaseType.DiagramAlongYEnd
|
|
405
|
+
class DiagramAlongZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
406
|
+
__slots__ = ()
|
|
407
|
+
DIAGRAM_ALONG_Z_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAlongZEnd]
|
|
408
|
+
DIAGRAM_ALONG_Z_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAlongZEnd]
|
|
409
|
+
DIAGRAM_ALONG_Z_END_STOP: _ClassVar[NodalReleaseType.DiagramAlongZEnd]
|
|
410
|
+
DIAGRAM_ALONG_Z_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAlongZEnd]
|
|
411
|
+
DIAGRAM_ALONG_Z_END_FAILURE: NodalReleaseType.DiagramAlongZEnd
|
|
412
|
+
DIAGRAM_ALONG_Z_END_CONTINUOUS: NodalReleaseType.DiagramAlongZEnd
|
|
413
|
+
DIAGRAM_ALONG_Z_END_STOP: NodalReleaseType.DiagramAlongZEnd
|
|
414
|
+
DIAGRAM_ALONG_Z_END_YIELDING: NodalReleaseType.DiagramAlongZEnd
|
|
415
|
+
class DiagramAroundXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
416
|
+
__slots__ = ()
|
|
417
|
+
DIAGRAM_AROUND_X_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundXEnd]
|
|
418
|
+
DIAGRAM_AROUND_X_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundXEnd]
|
|
419
|
+
DIAGRAM_AROUND_X_END_STOP: _ClassVar[NodalReleaseType.DiagramAroundXEnd]
|
|
420
|
+
DIAGRAM_AROUND_X_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundXEnd]
|
|
421
|
+
DIAGRAM_AROUND_X_END_FAILURE: NodalReleaseType.DiagramAroundXEnd
|
|
422
|
+
DIAGRAM_AROUND_X_END_CONTINUOUS: NodalReleaseType.DiagramAroundXEnd
|
|
423
|
+
DIAGRAM_AROUND_X_END_STOP: NodalReleaseType.DiagramAroundXEnd
|
|
424
|
+
DIAGRAM_AROUND_X_END_YIELDING: NodalReleaseType.DiagramAroundXEnd
|
|
425
|
+
class DiagramAroundYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
426
|
+
__slots__ = ()
|
|
427
|
+
DIAGRAM_AROUND_Y_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundYEnd]
|
|
428
|
+
DIAGRAM_AROUND_Y_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundYEnd]
|
|
429
|
+
DIAGRAM_AROUND_Y_END_STOP: _ClassVar[NodalReleaseType.DiagramAroundYEnd]
|
|
430
|
+
DIAGRAM_AROUND_Y_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundYEnd]
|
|
431
|
+
DIAGRAM_AROUND_Y_END_FAILURE: NodalReleaseType.DiagramAroundYEnd
|
|
432
|
+
DIAGRAM_AROUND_Y_END_CONTINUOUS: NodalReleaseType.DiagramAroundYEnd
|
|
433
|
+
DIAGRAM_AROUND_Y_END_STOP: NodalReleaseType.DiagramAroundYEnd
|
|
434
|
+
DIAGRAM_AROUND_Y_END_YIELDING: NodalReleaseType.DiagramAroundYEnd
|
|
435
|
+
class DiagramAroundZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
436
|
+
__slots__ = ()
|
|
437
|
+
DIAGRAM_AROUND_Z_END_FAILURE: _ClassVar[NodalReleaseType.DiagramAroundZEnd]
|
|
438
|
+
DIAGRAM_AROUND_Z_END_CONTINUOUS: _ClassVar[NodalReleaseType.DiagramAroundZEnd]
|
|
439
|
+
DIAGRAM_AROUND_Z_END_STOP: _ClassVar[NodalReleaseType.DiagramAroundZEnd]
|
|
440
|
+
DIAGRAM_AROUND_Z_END_YIELDING: _ClassVar[NodalReleaseType.DiagramAroundZEnd]
|
|
441
|
+
DIAGRAM_AROUND_Z_END_FAILURE: NodalReleaseType.DiagramAroundZEnd
|
|
442
|
+
DIAGRAM_AROUND_Z_END_CONTINUOUS: NodalReleaseType.DiagramAroundZEnd
|
|
443
|
+
DIAGRAM_AROUND_Z_END_STOP: NodalReleaseType.DiagramAroundZEnd
|
|
444
|
+
DIAGRAM_AROUND_Z_END_YIELDING: NodalReleaseType.DiagramAroundZEnd
|
|
445
|
+
class PlasticDiagramAlongXComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
446
|
+
__slots__ = ()
|
|
447
|
+
PLASTIC_DIAGRAM_ALONG_X_COMPONENT_TYPE_PRIMARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongXComponentType]
|
|
448
|
+
PLASTIC_DIAGRAM_ALONG_X_COMPONENT_TYPE_SECONDARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongXComponentType]
|
|
449
|
+
PLASTIC_DIAGRAM_ALONG_X_COMPONENT_TYPE_PRIMARY: NodalReleaseType.PlasticDiagramAlongXComponentType
|
|
450
|
+
PLASTIC_DIAGRAM_ALONG_X_COMPONENT_TYPE_SECONDARY: NodalReleaseType.PlasticDiagramAlongXComponentType
|
|
451
|
+
class PlasticDiagramAlongYComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
452
|
+
__slots__ = ()
|
|
453
|
+
PLASTIC_DIAGRAM_ALONG_Y_COMPONENT_TYPE_PRIMARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongYComponentType]
|
|
454
|
+
PLASTIC_DIAGRAM_ALONG_Y_COMPONENT_TYPE_SECONDARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongYComponentType]
|
|
455
|
+
PLASTIC_DIAGRAM_ALONG_Y_COMPONENT_TYPE_PRIMARY: NodalReleaseType.PlasticDiagramAlongYComponentType
|
|
456
|
+
PLASTIC_DIAGRAM_ALONG_Y_COMPONENT_TYPE_SECONDARY: NodalReleaseType.PlasticDiagramAlongYComponentType
|
|
457
|
+
class PlasticDiagramAlongZComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
458
|
+
__slots__ = ()
|
|
459
|
+
PLASTIC_DIAGRAM_ALONG_Z_COMPONENT_TYPE_PRIMARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongZComponentType]
|
|
460
|
+
PLASTIC_DIAGRAM_ALONG_Z_COMPONENT_TYPE_SECONDARY: _ClassVar[NodalReleaseType.PlasticDiagramAlongZComponentType]
|
|
461
|
+
PLASTIC_DIAGRAM_ALONG_Z_COMPONENT_TYPE_PRIMARY: NodalReleaseType.PlasticDiagramAlongZComponentType
|
|
462
|
+
PLASTIC_DIAGRAM_ALONG_Z_COMPONENT_TYPE_SECONDARY: NodalReleaseType.PlasticDiagramAlongZComponentType
|
|
463
|
+
class PlasticDiagramAroundYComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
464
|
+
__slots__ = ()
|
|
465
|
+
PLASTIC_DIAGRAM_AROUND_Y_COMPONENT_TYPE_PRIMARY: _ClassVar[NodalReleaseType.PlasticDiagramAroundYComponentType]
|
|
466
|
+
PLASTIC_DIAGRAM_AROUND_Y_COMPONENT_TYPE_SECONDARY: _ClassVar[NodalReleaseType.PlasticDiagramAroundYComponentType]
|
|
467
|
+
PLASTIC_DIAGRAM_AROUND_Y_COMPONENT_TYPE_PRIMARY: NodalReleaseType.PlasticDiagramAroundYComponentType
|
|
468
|
+
PLASTIC_DIAGRAM_AROUND_Y_COMPONENT_TYPE_SECONDARY: NodalReleaseType.PlasticDiagramAroundYComponentType
|
|
469
|
+
class PlasticDiagramAroundZComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
470
|
+
__slots__ = ()
|
|
471
|
+
PLASTIC_DIAGRAM_AROUND_Z_COMPONENT_TYPE_PRIMARY: _ClassVar[NodalReleaseType.PlasticDiagramAroundZComponentType]
|
|
472
|
+
PLASTIC_DIAGRAM_AROUND_Z_COMPONENT_TYPE_SECONDARY: _ClassVar[NodalReleaseType.PlasticDiagramAroundZComponentType]
|
|
473
|
+
PLASTIC_DIAGRAM_AROUND_Z_COMPONENT_TYPE_PRIMARY: NodalReleaseType.PlasticDiagramAroundZComponentType
|
|
474
|
+
PLASTIC_DIAGRAM_AROUND_Z_COMPONENT_TYPE_SECONDARY: NodalReleaseType.PlasticDiagramAroundZComponentType
|
|
475
|
+
class LocalAxisSystemObjectType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
476
|
+
__slots__ = ()
|
|
477
|
+
LOCAL_AXIS_SYSTEM_OBJECT_TYPE_MEMBER: _ClassVar[NodalReleaseType.LocalAxisSystemObjectType]
|
|
478
|
+
LOCAL_AXIS_SYSTEM_OBJECT_TYPE_LINE: _ClassVar[NodalReleaseType.LocalAxisSystemObjectType]
|
|
479
|
+
LOCAL_AXIS_SYSTEM_OBJECT_TYPE_MEMBER: NodalReleaseType.LocalAxisSystemObjectType
|
|
480
|
+
LOCAL_AXIS_SYSTEM_OBJECT_TYPE_LINE: NodalReleaseType.LocalAxisSystemObjectType
|
|
481
|
+
class DiagramAlongXTable(_message.Message):
|
|
482
|
+
__slots__ = ("rows",)
|
|
483
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
484
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongXTableRow]
|
|
485
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongXTableRow, _Mapping]]] = ...) -> None: ...
|
|
486
|
+
class DiagramAlongXTableRow(_message.Message):
|
|
487
|
+
__slots__ = ("no", "description", "displacement", "force", "spring", "note")
|
|
488
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
489
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
490
|
+
DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
491
|
+
FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
492
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
493
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
494
|
+
no: int
|
|
495
|
+
description: str
|
|
496
|
+
displacement: float
|
|
497
|
+
force: float
|
|
498
|
+
spring: float
|
|
499
|
+
note: str
|
|
500
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., displacement: _Optional[float] = ..., force: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
501
|
+
class DiagramAlongYTable(_message.Message):
|
|
502
|
+
__slots__ = ("rows",)
|
|
503
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
504
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongYTableRow]
|
|
505
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongYTableRow, _Mapping]]] = ...) -> None: ...
|
|
506
|
+
class DiagramAlongYTableRow(_message.Message):
|
|
507
|
+
__slots__ = ("no", "description", "displacement", "force", "spring", "note")
|
|
508
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
509
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
510
|
+
DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
511
|
+
FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
512
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
513
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
514
|
+
no: int
|
|
515
|
+
description: str
|
|
516
|
+
displacement: float
|
|
517
|
+
force: float
|
|
518
|
+
spring: float
|
|
519
|
+
note: str
|
|
520
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., displacement: _Optional[float] = ..., force: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
521
|
+
class DiagramAlongZTable(_message.Message):
|
|
522
|
+
__slots__ = ("rows",)
|
|
523
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
524
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongZTableRow]
|
|
525
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongZTableRow, _Mapping]]] = ...) -> None: ...
|
|
526
|
+
class DiagramAlongZTableRow(_message.Message):
|
|
527
|
+
__slots__ = ("no", "description", "displacement", "force", "spring", "note")
|
|
528
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
529
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
530
|
+
DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
531
|
+
FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
532
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
533
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
534
|
+
no: int
|
|
535
|
+
description: str
|
|
536
|
+
displacement: float
|
|
537
|
+
force: float
|
|
538
|
+
spring: float
|
|
539
|
+
note: str
|
|
540
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., displacement: _Optional[float] = ..., force: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
541
|
+
class DiagramAroundXTable(_message.Message):
|
|
542
|
+
__slots__ = ("rows",)
|
|
543
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
544
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundXTableRow]
|
|
545
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundXTableRow, _Mapping]]] = ...) -> None: ...
|
|
546
|
+
class DiagramAroundXTableRow(_message.Message):
|
|
547
|
+
__slots__ = ("no", "description", "rotation", "moment", "spring", "note")
|
|
548
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
549
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
550
|
+
ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
551
|
+
MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
552
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
553
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
554
|
+
no: int
|
|
555
|
+
description: str
|
|
556
|
+
rotation: float
|
|
557
|
+
moment: float
|
|
558
|
+
spring: float
|
|
559
|
+
note: str
|
|
560
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., rotation: _Optional[float] = ..., moment: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
561
|
+
class DiagramAroundYTable(_message.Message):
|
|
562
|
+
__slots__ = ("rows",)
|
|
563
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
564
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundYTableRow]
|
|
565
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundYTableRow, _Mapping]]] = ...) -> None: ...
|
|
566
|
+
class DiagramAroundYTableRow(_message.Message):
|
|
567
|
+
__slots__ = ("no", "description", "rotation", "moment", "spring", "note")
|
|
568
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
569
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
570
|
+
ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
571
|
+
MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
572
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
573
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
574
|
+
no: int
|
|
575
|
+
description: str
|
|
576
|
+
rotation: float
|
|
577
|
+
moment: float
|
|
578
|
+
spring: float
|
|
579
|
+
note: str
|
|
580
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., rotation: _Optional[float] = ..., moment: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
581
|
+
class DiagramAroundZTable(_message.Message):
|
|
582
|
+
__slots__ = ("rows",)
|
|
583
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
584
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundZTableRow]
|
|
585
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundZTableRow, _Mapping]]] = ...) -> None: ...
|
|
586
|
+
class DiagramAroundZTableRow(_message.Message):
|
|
587
|
+
__slots__ = ("no", "description", "rotation", "moment", "spring", "note")
|
|
588
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
589
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
590
|
+
ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
591
|
+
MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
592
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
593
|
+
NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
594
|
+
no: int
|
|
595
|
+
description: str
|
|
596
|
+
rotation: float
|
|
597
|
+
moment: float
|
|
598
|
+
spring: float
|
|
599
|
+
note: str
|
|
600
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., rotation: _Optional[float] = ..., moment: _Optional[float] = ..., spring: _Optional[float] = ..., note: _Optional[str] = ...) -> None: ...
|
|
601
|
+
class DiagramAlongXColorTable(_message.Message):
|
|
602
|
+
__slots__ = ("rows",)
|
|
603
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
604
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongXColorTableRow]
|
|
605
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongXColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
606
|
+
class DiagramAlongXColorTableRow(_message.Message):
|
|
607
|
+
__slots__ = ("no", "description", "color")
|
|
608
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
609
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
610
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
611
|
+
no: int
|
|
612
|
+
description: str
|
|
613
|
+
color: _common_pb2.Color
|
|
614
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
615
|
+
class DiagramAlongYColorTable(_message.Message):
|
|
616
|
+
__slots__ = ("rows",)
|
|
617
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
618
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongYColorTableRow]
|
|
619
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongYColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
620
|
+
class DiagramAlongYColorTableRow(_message.Message):
|
|
621
|
+
__slots__ = ("no", "description", "color")
|
|
622
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
623
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
624
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
625
|
+
no: int
|
|
626
|
+
description: str
|
|
627
|
+
color: _common_pb2.Color
|
|
628
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
629
|
+
class DiagramAlongZColorTable(_message.Message):
|
|
630
|
+
__slots__ = ("rows",)
|
|
631
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
632
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAlongZColorTableRow]
|
|
633
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAlongZColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
634
|
+
class DiagramAlongZColorTableRow(_message.Message):
|
|
635
|
+
__slots__ = ("no", "description", "color")
|
|
636
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
637
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
638
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
639
|
+
no: int
|
|
640
|
+
description: str
|
|
641
|
+
color: _common_pb2.Color
|
|
642
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
643
|
+
class DiagramAroundXColorTable(_message.Message):
|
|
644
|
+
__slots__ = ("rows",)
|
|
645
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
646
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundXColorTableRow]
|
|
647
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundXColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
648
|
+
class DiagramAroundXColorTableRow(_message.Message):
|
|
649
|
+
__slots__ = ("no", "description", "color")
|
|
650
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
651
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
652
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
653
|
+
no: int
|
|
654
|
+
description: str
|
|
655
|
+
color: _common_pb2.Color
|
|
656
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
657
|
+
class DiagramAroundYColorTable(_message.Message):
|
|
658
|
+
__slots__ = ("rows",)
|
|
659
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
660
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundYColorTableRow]
|
|
661
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundYColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
662
|
+
class DiagramAroundYColorTableRow(_message.Message):
|
|
663
|
+
__slots__ = ("no", "description", "color")
|
|
664
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
665
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
666
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
667
|
+
no: int
|
|
668
|
+
description: str
|
|
669
|
+
color: _common_pb2.Color
|
|
670
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
671
|
+
class DiagramAroundZColorTable(_message.Message):
|
|
672
|
+
__slots__ = ("rows",)
|
|
673
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
674
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.DiagramAroundZColorTableRow]
|
|
675
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.DiagramAroundZColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
676
|
+
class DiagramAroundZColorTableRow(_message.Message):
|
|
677
|
+
__slots__ = ("no", "description", "color")
|
|
678
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
679
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
680
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
681
|
+
no: int
|
|
682
|
+
description: str
|
|
683
|
+
color: _common_pb2.Color
|
|
684
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
685
|
+
class PlasticDiagramAlongXTable(_message.Message):
|
|
686
|
+
__slots__ = ("rows",)
|
|
687
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
688
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongXTableRow]
|
|
689
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongXTableRow, _Mapping]]] = ...) -> None: ...
|
|
690
|
+
class PlasticDiagramAlongXTableRow(_message.Message):
|
|
691
|
+
__slots__ = ("no", "description", "force_ratio", "deflection_ratio")
|
|
692
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
693
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
694
|
+
FORCE_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
695
|
+
DEFLECTION_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
696
|
+
no: int
|
|
697
|
+
description: str
|
|
698
|
+
force_ratio: float
|
|
699
|
+
deflection_ratio: float
|
|
700
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., force_ratio: _Optional[float] = ..., deflection_ratio: _Optional[float] = ...) -> None: ...
|
|
701
|
+
class PlasticDiagramAlongYTable(_message.Message):
|
|
702
|
+
__slots__ = ("rows",)
|
|
703
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
704
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongYTableRow]
|
|
705
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongYTableRow, _Mapping]]] = ...) -> None: ...
|
|
706
|
+
class PlasticDiagramAlongYTableRow(_message.Message):
|
|
707
|
+
__slots__ = ("no", "description", "force_ratio", "deflection_ratio")
|
|
708
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
709
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
710
|
+
FORCE_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
711
|
+
DEFLECTION_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
712
|
+
no: int
|
|
713
|
+
description: str
|
|
714
|
+
force_ratio: float
|
|
715
|
+
deflection_ratio: float
|
|
716
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., force_ratio: _Optional[float] = ..., deflection_ratio: _Optional[float] = ...) -> None: ...
|
|
717
|
+
class PlasticDiagramAlongZTable(_message.Message):
|
|
718
|
+
__slots__ = ("rows",)
|
|
719
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
720
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongZTableRow]
|
|
721
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongZTableRow, _Mapping]]] = ...) -> None: ...
|
|
722
|
+
class PlasticDiagramAlongZTableRow(_message.Message):
|
|
723
|
+
__slots__ = ("no", "description", "force_ratio", "deflection_ratio")
|
|
724
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
725
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
726
|
+
FORCE_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
727
|
+
DEFLECTION_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
728
|
+
no: int
|
|
729
|
+
description: str
|
|
730
|
+
force_ratio: float
|
|
731
|
+
deflection_ratio: float
|
|
732
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., force_ratio: _Optional[float] = ..., deflection_ratio: _Optional[float] = ...) -> None: ...
|
|
733
|
+
class PlasticDiagramAroundYTable(_message.Message):
|
|
734
|
+
__slots__ = ("rows",)
|
|
735
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
736
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAroundYTableRow]
|
|
737
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAroundYTableRow, _Mapping]]] = ...) -> None: ...
|
|
738
|
+
class PlasticDiagramAroundYTableRow(_message.Message):
|
|
739
|
+
__slots__ = ("no", "description", "force_ratio", "deflection_ratio")
|
|
740
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
741
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
742
|
+
FORCE_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
743
|
+
DEFLECTION_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
744
|
+
no: int
|
|
745
|
+
description: str
|
|
746
|
+
force_ratio: float
|
|
747
|
+
deflection_ratio: float
|
|
748
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., force_ratio: _Optional[float] = ..., deflection_ratio: _Optional[float] = ...) -> None: ...
|
|
749
|
+
class PlasticDiagramAroundZTable(_message.Message):
|
|
750
|
+
__slots__ = ("rows",)
|
|
751
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
752
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAroundZTableRow]
|
|
753
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAroundZTableRow, _Mapping]]] = ...) -> None: ...
|
|
754
|
+
class PlasticDiagramAroundZTableRow(_message.Message):
|
|
755
|
+
__slots__ = ("no", "description", "force_ratio", "deflection_ratio")
|
|
756
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
757
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
758
|
+
FORCE_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
759
|
+
DEFLECTION_RATIO_FIELD_NUMBER: _ClassVar[int]
|
|
760
|
+
no: int
|
|
761
|
+
description: str
|
|
762
|
+
force_ratio: float
|
|
763
|
+
deflection_ratio: float
|
|
764
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., force_ratio: _Optional[float] = ..., deflection_ratio: _Optional[float] = ...) -> None: ...
|
|
765
|
+
class PlasticDiagramAlongXColorTable(_message.Message):
|
|
766
|
+
__slots__ = ("rows",)
|
|
767
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
768
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongXColorTableRow]
|
|
769
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongXColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
770
|
+
class PlasticDiagramAlongXColorTableRow(_message.Message):
|
|
771
|
+
__slots__ = ("no", "description", "color")
|
|
772
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
773
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
774
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
775
|
+
no: int
|
|
776
|
+
description: str
|
|
777
|
+
color: _common_pb2.Color
|
|
778
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
779
|
+
class PlasticDiagramAlongYColorTable(_message.Message):
|
|
780
|
+
__slots__ = ("rows",)
|
|
781
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
782
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongYColorTableRow]
|
|
783
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongYColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
784
|
+
class PlasticDiagramAlongYColorTableRow(_message.Message):
|
|
785
|
+
__slots__ = ("no", "description", "color")
|
|
786
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
787
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
788
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
789
|
+
no: int
|
|
790
|
+
description: str
|
|
791
|
+
color: _common_pb2.Color
|
|
792
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
793
|
+
class PlasticDiagramAlongZColorTable(_message.Message):
|
|
794
|
+
__slots__ = ("rows",)
|
|
795
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
796
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAlongZColorTableRow]
|
|
797
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAlongZColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
798
|
+
class PlasticDiagramAlongZColorTableRow(_message.Message):
|
|
799
|
+
__slots__ = ("no", "description", "color")
|
|
800
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
801
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
802
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
803
|
+
no: int
|
|
804
|
+
description: str
|
|
805
|
+
color: _common_pb2.Color
|
|
806
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
807
|
+
class PlasticDiagramAroundYColorTable(_message.Message):
|
|
808
|
+
__slots__ = ("rows",)
|
|
809
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
810
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAroundYColorTableRow]
|
|
811
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAroundYColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
812
|
+
class PlasticDiagramAroundYColorTableRow(_message.Message):
|
|
813
|
+
__slots__ = ("no", "description", "color")
|
|
814
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
815
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
816
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
817
|
+
no: int
|
|
818
|
+
description: str
|
|
819
|
+
color: _common_pb2.Color
|
|
820
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
821
|
+
class PlasticDiagramAroundZColorTable(_message.Message):
|
|
822
|
+
__slots__ = ("rows",)
|
|
823
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
824
|
+
rows: _containers.RepeatedCompositeFieldContainer[NodalReleaseType.PlasticDiagramAroundZColorTableRow]
|
|
825
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[NodalReleaseType.PlasticDiagramAroundZColorTableRow, _Mapping]]] = ...) -> None: ...
|
|
826
|
+
class PlasticDiagramAroundZColorTableRow(_message.Message):
|
|
827
|
+
__slots__ = ("no", "description", "color")
|
|
828
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
829
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
830
|
+
COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
831
|
+
no: int
|
|
832
|
+
description: str
|
|
833
|
+
color: _common_pb2.Color
|
|
834
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., color: _Optional[_Union[_common_pb2.Color, _Mapping]] = ...) -> None: ...
|
|
480
835
|
NO_FIELD_NUMBER: _ClassVar[int]
|
|
481
836
|
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
482
837
|
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -512,24 +867,24 @@ class NodalReleaseType(_message.Message):
|
|
|
512
867
|
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
513
868
|
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
514
869
|
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
515
|
-
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
516
|
-
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
517
|
-
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
518
|
-
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
519
|
-
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
520
|
-
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
521
|
-
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
522
|
-
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
523
|
-
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
524
|
-
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
525
|
-
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
526
|
-
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
527
870
|
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
528
871
|
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
529
872
|
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
530
873
|
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
531
874
|
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
532
875
|
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
876
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
877
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
878
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
879
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
880
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
881
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
882
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
883
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
884
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
885
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
886
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
887
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
533
888
|
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
534
889
|
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
535
890
|
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -542,12 +897,6 @@ class NodalReleaseType(_message.Message):
|
|
|
542
897
|
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
543
898
|
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
544
899
|
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
545
|
-
DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
546
|
-
DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
547
|
-
DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
548
|
-
DIAGRAM_AROUND_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
549
|
-
DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
550
|
-
DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
551
900
|
DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
552
901
|
DIAGRAM_ALONG_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
553
902
|
DIAGRAM_ALONG_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -572,6 +921,172 @@ class NodalReleaseType(_message.Message):
|
|
|
572
921
|
DIAGRAM_AROUND_X_END_FIELD_NUMBER: _ClassVar[int]
|
|
573
922
|
DIAGRAM_AROUND_Y_END_FIELD_NUMBER: _ClassVar[int]
|
|
574
923
|
DIAGRAM_AROUND_Z_END_FIELD_NUMBER: _ClassVar[int]
|
|
924
|
+
DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
925
|
+
DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
926
|
+
DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
927
|
+
DIAGRAM_AROUND_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
928
|
+
DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
929
|
+
DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
930
|
+
DIAGRAM_ALONG_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
931
|
+
DIAGRAM_ALONG_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
932
|
+
DIAGRAM_ALONG_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
933
|
+
DIAGRAM_AROUND_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
934
|
+
DIAGRAM_AROUND_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
935
|
+
DIAGRAM_AROUND_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
936
|
+
DIAGRAM_ALONG_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
937
|
+
DIAGRAM_ALONG_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
938
|
+
DIAGRAM_ALONG_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
939
|
+
DIAGRAM_AROUND_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
940
|
+
DIAGRAM_AROUND_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
941
|
+
DIAGRAM_AROUND_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
942
|
+
DIAGRAM_ALONG_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
943
|
+
DIAGRAM_ALONG_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
944
|
+
DIAGRAM_ALONG_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
945
|
+
DIAGRAM_AROUND_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
946
|
+
DIAGRAM_AROUND_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
947
|
+
DIAGRAM_AROUND_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
948
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
949
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
950
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
951
|
+
DIAGRAM_AROUND_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
952
|
+
DIAGRAM_AROUND_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
953
|
+
DIAGRAM_AROUND_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
954
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
955
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
956
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
957
|
+
DIAGRAM_AROUND_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
958
|
+
DIAGRAM_AROUND_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
959
|
+
DIAGRAM_AROUND_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
960
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
961
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
962
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
963
|
+
DIAGRAM_AROUND_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
964
|
+
DIAGRAM_AROUND_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
965
|
+
DIAGRAM_AROUND_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
966
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
967
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
968
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
969
|
+
DIAGRAM_AROUND_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
970
|
+
DIAGRAM_AROUND_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
971
|
+
DIAGRAM_AROUND_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
972
|
+
DIAGRAM_ALONG_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
973
|
+
DIAGRAM_ALONG_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
974
|
+
DIAGRAM_ALONG_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
975
|
+
DIAGRAM_AROUND_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
976
|
+
DIAGRAM_AROUND_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
977
|
+
DIAGRAM_AROUND_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
978
|
+
PLASTIC_DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
979
|
+
PLASTIC_DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
980
|
+
PLASTIC_DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
981
|
+
PLASTIC_DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
982
|
+
PLASTIC_DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
983
|
+
PLASTIC_DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
984
|
+
PLASTIC_DIAGRAM_ALONG_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
985
|
+
PLASTIC_DIAGRAM_ALONG_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
986
|
+
PLASTIC_DIAGRAM_AROUND_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
987
|
+
PLASTIC_DIAGRAM_AROUND_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
988
|
+
PLASTIC_DIAGRAM_AROUND_Y_FORCE_INTERACTION_FIELD_NUMBER: _ClassVar[int]
|
|
989
|
+
PLASTIC_DIAGRAM_AROUND_Z_FORCE_INTERACTION_FIELD_NUMBER: _ClassVar[int]
|
|
990
|
+
PLASTIC_DIAGRAM_ALONG_X_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
991
|
+
PLASTIC_DIAGRAM_ALONG_Y_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
992
|
+
PLASTIC_DIAGRAM_ALONG_Z_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
993
|
+
PLASTIC_DIAGRAM_AROUND_Y_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
994
|
+
PLASTIC_DIAGRAM_AROUND_Z_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
995
|
+
PLASTIC_DIAGRAM_ALONG_X_IS_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
996
|
+
PLASTIC_DIAGRAM_ALONG_Y_IS_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
997
|
+
PLASTIC_DIAGRAM_ALONG_Z_IS_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
998
|
+
PLASTIC_DIAGRAM_AROUND_Y_IS_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
999
|
+
PLASTIC_DIAGRAM_AROUND_Z_IS_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1000
|
+
PLASTIC_DIAGRAM_ALONG_X_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1001
|
+
PLASTIC_DIAGRAM_ALONG_Y_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1002
|
+
PLASTIC_DIAGRAM_ALONG_Z_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1003
|
+
PLASTIC_DIAGRAM_AROUND_Y_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1004
|
+
PLASTIC_DIAGRAM_AROUND_Z_USER_DEFINED_MEMBER_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1005
|
+
PLASTIC_DIAGRAM_ALONG_X_ATTACHED_MEMBERS_MIN_MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1006
|
+
PLASTIC_DIAGRAM_ALONG_Y_ATTACHED_MEMBERS_MIN_MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1007
|
+
PLASTIC_DIAGRAM_ALONG_Z_ATTACHED_MEMBERS_MIN_MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1008
|
+
PLASTIC_DIAGRAM_AROUND_Y_ATTACHED_MEMBERS_MIN_MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1009
|
+
PLASTIC_DIAGRAM_AROUND_Z_ATTACHED_MEMBERS_MIN_MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
1010
|
+
PLASTIC_DIAGRAM_ALONG_X_IO_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1011
|
+
PLASTIC_DIAGRAM_ALONG_Y_IO_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1012
|
+
PLASTIC_DIAGRAM_ALONG_Z_IO_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1013
|
+
PLASTIC_DIAGRAM_AROUND_Y_IO_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1014
|
+
PLASTIC_DIAGRAM_AROUND_Z_IO_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1015
|
+
PLASTIC_DIAGRAM_ALONG_X_IO_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1016
|
+
PLASTIC_DIAGRAM_ALONG_Y_IO_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1017
|
+
PLASTIC_DIAGRAM_ALONG_Z_IO_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1018
|
+
PLASTIC_DIAGRAM_AROUND_Y_IO_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1019
|
+
PLASTIC_DIAGRAM_AROUND_Z_IO_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1020
|
+
PLASTIC_DIAGRAM_ALONG_X_LS_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1021
|
+
PLASTIC_DIAGRAM_ALONG_Y_LS_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1022
|
+
PLASTIC_DIAGRAM_ALONG_Z_LS_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1023
|
+
PLASTIC_DIAGRAM_AROUND_Y_LS_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1024
|
+
PLASTIC_DIAGRAM_AROUND_Z_LS_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1025
|
+
PLASTIC_DIAGRAM_ALONG_X_LS_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1026
|
+
PLASTIC_DIAGRAM_ALONG_Y_LS_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1027
|
+
PLASTIC_DIAGRAM_ALONG_Z_LS_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1028
|
+
PLASTIC_DIAGRAM_AROUND_Y_LS_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1029
|
+
PLASTIC_DIAGRAM_AROUND_Z_LS_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1030
|
+
PLASTIC_DIAGRAM_ALONG_X_CP_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1031
|
+
PLASTIC_DIAGRAM_ALONG_Y_CP_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1032
|
+
PLASTIC_DIAGRAM_ALONG_Z_CP_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1033
|
+
PLASTIC_DIAGRAM_AROUND_Y_CP_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1034
|
+
PLASTIC_DIAGRAM_AROUND_Z_CP_NEGATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1035
|
+
PLASTIC_DIAGRAM_ALONG_X_CP_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1036
|
+
PLASTIC_DIAGRAM_ALONG_Y_CP_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1037
|
+
PLASTIC_DIAGRAM_ALONG_Z_CP_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1038
|
+
PLASTIC_DIAGRAM_AROUND_Y_CP_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1039
|
+
PLASTIC_DIAGRAM_AROUND_Z_CP_POSITIVE_FIELD_NUMBER: _ClassVar[int]
|
|
1040
|
+
PLASTIC_DIAGRAM_ALONG_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1041
|
+
PLASTIC_DIAGRAM_ALONG_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1042
|
+
PLASTIC_DIAGRAM_ALONG_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1043
|
+
PLASTIC_DIAGRAM_AROUND_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1044
|
+
PLASTIC_DIAGRAM_AROUND_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1045
|
+
PLASTIC_DIAGRAM_ALONG_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1046
|
+
PLASTIC_DIAGRAM_ALONG_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1047
|
+
PLASTIC_DIAGRAM_ALONG_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1048
|
+
PLASTIC_DIAGRAM_AROUND_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1049
|
+
PLASTIC_DIAGRAM_AROUND_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1050
|
+
PLASTIC_DIAGRAM_ALONG_X_MINUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1051
|
+
PLASTIC_DIAGRAM_ALONG_Y_MINUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1052
|
+
PLASTIC_DIAGRAM_ALONG_Z_MINUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1053
|
+
PLASTIC_DIAGRAM_AROUND_Y_MINUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1054
|
+
PLASTIC_DIAGRAM_AROUND_Z_MINUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1055
|
+
PLASTIC_DIAGRAM_ALONG_X_MINUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1056
|
+
PLASTIC_DIAGRAM_ALONG_Y_MINUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1057
|
+
PLASTIC_DIAGRAM_ALONG_Z_MINUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1058
|
+
PLASTIC_DIAGRAM_AROUND_Y_MINUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1059
|
+
PLASTIC_DIAGRAM_AROUND_Z_MINUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1060
|
+
PLASTIC_DIAGRAM_ALONG_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1061
|
+
PLASTIC_DIAGRAM_ALONG_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1062
|
+
PLASTIC_DIAGRAM_ALONG_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1063
|
+
PLASTIC_DIAGRAM_AROUND_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1064
|
+
PLASTIC_DIAGRAM_AROUND_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
1065
|
+
PLASTIC_DIAGRAM_ALONG_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1066
|
+
PLASTIC_DIAGRAM_ALONG_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1067
|
+
PLASTIC_DIAGRAM_ALONG_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1068
|
+
PLASTIC_DIAGRAM_AROUND_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1069
|
+
PLASTIC_DIAGRAM_AROUND_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
1070
|
+
PLASTIC_DIAGRAM_ALONG_X_PLUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1071
|
+
PLASTIC_DIAGRAM_ALONG_Y_PLUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1072
|
+
PLASTIC_DIAGRAM_ALONG_Z_PLUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1073
|
+
PLASTIC_DIAGRAM_AROUND_Y_PLUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1074
|
+
PLASTIC_DIAGRAM_AROUND_Z_PLUS_COLOR_THREE_FIELD_NUMBER: _ClassVar[int]
|
|
1075
|
+
PLASTIC_DIAGRAM_ALONG_X_PLUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1076
|
+
PLASTIC_DIAGRAM_ALONG_Y_PLUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1077
|
+
PLASTIC_DIAGRAM_ALONG_Z_PLUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1078
|
+
PLASTIC_DIAGRAM_AROUND_Y_PLUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1079
|
+
PLASTIC_DIAGRAM_AROUND_Z_PLUS_COLOR_FOUR_FIELD_NUMBER: _ClassVar[int]
|
|
1080
|
+
PLASTIC_DIAGRAM_ALONG_X_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1081
|
+
PLASTIC_DIAGRAM_ALONG_Y_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1082
|
+
PLASTIC_DIAGRAM_ALONG_Z_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1083
|
+
PLASTIC_DIAGRAM_AROUND_Y_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1084
|
+
PLASTIC_DIAGRAM_AROUND_Z_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
1085
|
+
PLASTIC_DIAGRAM_ALONG_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
1086
|
+
PLASTIC_DIAGRAM_ALONG_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
1087
|
+
PLASTIC_DIAGRAM_ALONG_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
1088
|
+
PLASTIC_DIAGRAM_AROUND_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
1089
|
+
PLASTIC_DIAGRAM_AROUND_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
575
1090
|
FRICTION_COEFFICIENT_X_FIELD_NUMBER: _ClassVar[int]
|
|
576
1091
|
FRICTION_COEFFICIENT_XY_FIELD_NUMBER: _ClassVar[int]
|
|
577
1092
|
FRICTION_COEFFICIENT_XZ_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -595,55 +1110,55 @@ class NodalReleaseType(_message.Message):
|
|
|
595
1110
|
user_defined_name_enabled: bool
|
|
596
1111
|
name: str
|
|
597
1112
|
nodal_releases: _containers.RepeatedScalarFieldContainer[int]
|
|
598
|
-
coordinate_system:
|
|
1113
|
+
coordinate_system: _common_pb2.CoordinateSystemRepresentation
|
|
599
1114
|
axial_release_n: float
|
|
600
1115
|
axial_release_vy: float
|
|
601
1116
|
axial_release_vz: float
|
|
602
1117
|
moment_release_mt: float
|
|
603
1118
|
moment_release_my: float
|
|
604
1119
|
moment_release_mz: float
|
|
605
|
-
axial_release_n_nonlinearity:
|
|
606
|
-
axial_release_vy_nonlinearity:
|
|
607
|
-
axial_release_vz_nonlinearity:
|
|
608
|
-
moment_release_mt_nonlinearity:
|
|
609
|
-
moment_release_my_nonlinearity:
|
|
610
|
-
moment_release_mz_nonlinearity:
|
|
611
|
-
partial_activity_along_x_negative_type:
|
|
612
|
-
partial_activity_along_x_positive_type:
|
|
613
|
-
partial_activity_along_y_negative_type:
|
|
614
|
-
partial_activity_along_y_positive_type:
|
|
615
|
-
partial_activity_along_z_negative_type:
|
|
616
|
-
partial_activity_along_z_positive_type:
|
|
617
|
-
partial_activity_around_x_negative_type:
|
|
618
|
-
partial_activity_around_x_positive_type:
|
|
619
|
-
partial_activity_around_y_negative_type:
|
|
620
|
-
partial_activity_around_y_positive_type:
|
|
621
|
-
partial_activity_around_z_negative_type:
|
|
622
|
-
partial_activity_around_z_positive_type:
|
|
1120
|
+
axial_release_n_nonlinearity: NodalReleaseType.AxialReleaseNNonlinearity
|
|
1121
|
+
axial_release_vy_nonlinearity: NodalReleaseType.AxialReleaseVyNonlinearity
|
|
1122
|
+
axial_release_vz_nonlinearity: NodalReleaseType.AxialReleaseVzNonlinearity
|
|
1123
|
+
moment_release_mt_nonlinearity: NodalReleaseType.MomentReleaseMtNonlinearity
|
|
1124
|
+
moment_release_my_nonlinearity: NodalReleaseType.MomentReleaseMyNonlinearity
|
|
1125
|
+
moment_release_mz_nonlinearity: NodalReleaseType.MomentReleaseMzNonlinearity
|
|
1126
|
+
partial_activity_along_x_negative_type: NodalReleaseType.PartialActivityAlongXNegativeType
|
|
1127
|
+
partial_activity_along_x_positive_type: NodalReleaseType.PartialActivityAlongXPositiveType
|
|
1128
|
+
partial_activity_along_y_negative_type: NodalReleaseType.PartialActivityAlongYNegativeType
|
|
1129
|
+
partial_activity_along_y_positive_type: NodalReleaseType.PartialActivityAlongYPositiveType
|
|
1130
|
+
partial_activity_along_z_negative_type: NodalReleaseType.PartialActivityAlongZNegativeType
|
|
1131
|
+
partial_activity_along_z_positive_type: NodalReleaseType.PartialActivityAlongZPositiveType
|
|
1132
|
+
partial_activity_around_x_negative_type: NodalReleaseType.PartialActivityAroundXNegativeType
|
|
1133
|
+
partial_activity_around_x_positive_type: NodalReleaseType.PartialActivityAroundXPositiveType
|
|
1134
|
+
partial_activity_around_y_negative_type: NodalReleaseType.PartialActivityAroundYNegativeType
|
|
1135
|
+
partial_activity_around_y_positive_type: NodalReleaseType.PartialActivityAroundYPositiveType
|
|
1136
|
+
partial_activity_around_z_negative_type: NodalReleaseType.PartialActivityAroundZNegativeType
|
|
1137
|
+
partial_activity_around_z_positive_type: NodalReleaseType.PartialActivityAroundZPositiveType
|
|
623
1138
|
partial_activity_along_x_negative_displacement: float
|
|
624
1139
|
partial_activity_along_x_positive_displacement: float
|
|
625
1140
|
partial_activity_along_y_negative_displacement: float
|
|
626
1141
|
partial_activity_along_y_positive_displacement: float
|
|
627
1142
|
partial_activity_along_z_negative_displacement: float
|
|
628
1143
|
partial_activity_along_z_positive_displacement: float
|
|
629
|
-
partial_activity_around_x_negative_moment: float
|
|
630
|
-
partial_activity_around_x_positive_moment: float
|
|
631
|
-
partial_activity_around_y_negative_moment: float
|
|
632
|
-
partial_activity_around_y_positive_moment: float
|
|
633
|
-
partial_activity_around_z_negative_moment: float
|
|
634
|
-
partial_activity_around_z_positive_moment: float
|
|
635
|
-
partial_activity_along_x_negative_force: float
|
|
636
|
-
partial_activity_along_x_positive_force: float
|
|
637
|
-
partial_activity_along_y_negative_force: float
|
|
638
|
-
partial_activity_along_y_positive_force: float
|
|
639
|
-
partial_activity_along_z_negative_force: float
|
|
640
|
-
partial_activity_along_z_positive_force: float
|
|
641
1144
|
partial_activity_around_x_negative_rotation: float
|
|
642
1145
|
partial_activity_around_x_positive_rotation: float
|
|
643
1146
|
partial_activity_around_y_negative_rotation: float
|
|
644
1147
|
partial_activity_around_y_positive_rotation: float
|
|
645
1148
|
partial_activity_around_z_negative_rotation: float
|
|
646
1149
|
partial_activity_around_z_positive_rotation: float
|
|
1150
|
+
partial_activity_along_x_negative_force: float
|
|
1151
|
+
partial_activity_along_x_positive_force: float
|
|
1152
|
+
partial_activity_along_y_negative_force: float
|
|
1153
|
+
partial_activity_along_y_positive_force: float
|
|
1154
|
+
partial_activity_along_z_negative_force: float
|
|
1155
|
+
partial_activity_along_z_positive_force: float
|
|
1156
|
+
partial_activity_around_x_negative_moment: float
|
|
1157
|
+
partial_activity_around_x_positive_moment: float
|
|
1158
|
+
partial_activity_around_y_negative_moment: float
|
|
1159
|
+
partial_activity_around_y_positive_moment: float
|
|
1160
|
+
partial_activity_around_z_negative_moment: float
|
|
1161
|
+
partial_activity_around_z_positive_moment: float
|
|
647
1162
|
partial_activity_along_x_negative_slippage: float
|
|
648
1163
|
partial_activity_along_x_positive_slippage: float
|
|
649
1164
|
partial_activity_along_y_negative_slippage: float
|
|
@@ -656,12 +1171,6 @@ class NodalReleaseType(_message.Message):
|
|
|
656
1171
|
partial_activity_around_y_positive_slippage: float
|
|
657
1172
|
partial_activity_around_z_negative_slippage: float
|
|
658
1173
|
partial_activity_around_z_positive_slippage: float
|
|
659
|
-
diagram_along_x_table: ArrayOfNodalReleaseTypeDiagramAlongXTable
|
|
660
|
-
diagram_along_y_table: ArrayOfNodalReleaseTypeDiagramAlongYTable
|
|
661
|
-
diagram_along_z_table: ArrayOfNodalReleaseTypeDiagramAlongZTable
|
|
662
|
-
diagram_around_x_table: ArrayOfNodalReleaseTypeDiagramAroundXTable
|
|
663
|
-
diagram_around_y_table: ArrayOfNodalReleaseTypeDiagramAroundYTable
|
|
664
|
-
diagram_around_z_table: ArrayOfNodalReleaseTypeDiagramAroundZTable
|
|
665
1174
|
diagram_along_x_symmetric: bool
|
|
666
1175
|
diagram_along_y_symmetric: bool
|
|
667
1176
|
diagram_along_z_symmetric: bool
|
|
@@ -674,18 +1183,184 @@ class NodalReleaseType(_message.Message):
|
|
|
674
1183
|
diagram_around_x_is_sorted: bool
|
|
675
1184
|
diagram_around_y_is_sorted: bool
|
|
676
1185
|
diagram_around_z_is_sorted: bool
|
|
677
|
-
diagram_along_x_start:
|
|
678
|
-
diagram_along_y_start:
|
|
679
|
-
diagram_along_z_start:
|
|
680
|
-
diagram_around_x_start:
|
|
681
|
-
diagram_around_y_start:
|
|
682
|
-
diagram_around_z_start:
|
|
683
|
-
diagram_along_x_end:
|
|
684
|
-
diagram_along_y_end:
|
|
685
|
-
diagram_along_z_end:
|
|
686
|
-
diagram_around_x_end:
|
|
687
|
-
diagram_around_y_end:
|
|
688
|
-
diagram_around_z_end:
|
|
1186
|
+
diagram_along_x_start: NodalReleaseType.DiagramAlongXStart
|
|
1187
|
+
diagram_along_y_start: NodalReleaseType.DiagramAlongYStart
|
|
1188
|
+
diagram_along_z_start: NodalReleaseType.DiagramAlongZStart
|
|
1189
|
+
diagram_around_x_start: NodalReleaseType.DiagramAroundXStart
|
|
1190
|
+
diagram_around_y_start: NodalReleaseType.DiagramAroundYStart
|
|
1191
|
+
diagram_around_z_start: NodalReleaseType.DiagramAroundZStart
|
|
1192
|
+
diagram_along_x_end: NodalReleaseType.DiagramAlongXEnd
|
|
1193
|
+
diagram_along_y_end: NodalReleaseType.DiagramAlongYEnd
|
|
1194
|
+
diagram_along_z_end: NodalReleaseType.DiagramAlongZEnd
|
|
1195
|
+
diagram_around_x_end: NodalReleaseType.DiagramAroundXEnd
|
|
1196
|
+
diagram_around_y_end: NodalReleaseType.DiagramAroundYEnd
|
|
1197
|
+
diagram_around_z_end: NodalReleaseType.DiagramAroundZEnd
|
|
1198
|
+
diagram_along_x_table: NodalReleaseType.DiagramAlongXTable
|
|
1199
|
+
diagram_along_y_table: NodalReleaseType.DiagramAlongYTable
|
|
1200
|
+
diagram_along_z_table: NodalReleaseType.DiagramAlongZTable
|
|
1201
|
+
diagram_around_x_table: NodalReleaseType.DiagramAroundXTable
|
|
1202
|
+
diagram_around_y_table: NodalReleaseType.DiagramAroundYTable
|
|
1203
|
+
diagram_around_z_table: NodalReleaseType.DiagramAroundZTable
|
|
1204
|
+
diagram_along_x_ac_yield_minus: float
|
|
1205
|
+
diagram_along_y_ac_yield_minus: float
|
|
1206
|
+
diagram_along_z_ac_yield_minus: float
|
|
1207
|
+
diagram_around_x_ac_yield_minus: float
|
|
1208
|
+
diagram_around_y_ac_yield_minus: float
|
|
1209
|
+
diagram_around_z_ac_yield_minus: float
|
|
1210
|
+
diagram_along_x_ac_yield_plus: float
|
|
1211
|
+
diagram_along_y_ac_yield_plus: float
|
|
1212
|
+
diagram_along_z_ac_yield_plus: float
|
|
1213
|
+
diagram_around_x_ac_yield_plus: float
|
|
1214
|
+
diagram_around_y_ac_yield_plus: float
|
|
1215
|
+
diagram_around_z_ac_yield_plus: float
|
|
1216
|
+
diagram_along_x_acceptance_criteria_active: bool
|
|
1217
|
+
diagram_along_y_acceptance_criteria_active: bool
|
|
1218
|
+
diagram_along_z_acceptance_criteria_active: bool
|
|
1219
|
+
diagram_around_x_acceptance_criteria_active: bool
|
|
1220
|
+
diagram_around_y_acceptance_criteria_active: bool
|
|
1221
|
+
diagram_around_z_acceptance_criteria_active: bool
|
|
1222
|
+
diagram_along_x_minus_color_one: _common_pb2.Color
|
|
1223
|
+
diagram_along_y_minus_color_one: _common_pb2.Color
|
|
1224
|
+
diagram_along_z_minus_color_one: _common_pb2.Color
|
|
1225
|
+
diagram_around_x_minus_color_one: _common_pb2.Color
|
|
1226
|
+
diagram_around_y_minus_color_one: _common_pb2.Color
|
|
1227
|
+
diagram_around_z_minus_color_one: _common_pb2.Color
|
|
1228
|
+
diagram_along_x_minus_color_two: _common_pb2.Color
|
|
1229
|
+
diagram_along_y_minus_color_two: _common_pb2.Color
|
|
1230
|
+
diagram_along_z_minus_color_two: _common_pb2.Color
|
|
1231
|
+
diagram_around_x_minus_color_two: _common_pb2.Color
|
|
1232
|
+
diagram_around_y_minus_color_two: _common_pb2.Color
|
|
1233
|
+
diagram_around_z_minus_color_two: _common_pb2.Color
|
|
1234
|
+
diagram_along_x_plus_color_one: _common_pb2.Color
|
|
1235
|
+
diagram_along_y_plus_color_one: _common_pb2.Color
|
|
1236
|
+
diagram_along_z_plus_color_one: _common_pb2.Color
|
|
1237
|
+
diagram_around_x_plus_color_one: _common_pb2.Color
|
|
1238
|
+
diagram_around_y_plus_color_one: _common_pb2.Color
|
|
1239
|
+
diagram_around_z_plus_color_one: _common_pb2.Color
|
|
1240
|
+
diagram_along_x_plus_color_two: _common_pb2.Color
|
|
1241
|
+
diagram_along_y_plus_color_two: _common_pb2.Color
|
|
1242
|
+
diagram_along_z_plus_color_two: _common_pb2.Color
|
|
1243
|
+
diagram_around_x_plus_color_two: _common_pb2.Color
|
|
1244
|
+
diagram_around_y_plus_color_two: _common_pb2.Color
|
|
1245
|
+
diagram_around_z_plus_color_two: _common_pb2.Color
|
|
1246
|
+
diagram_along_x_color_table: NodalReleaseType.DiagramAlongXColorTable
|
|
1247
|
+
diagram_along_y_color_table: NodalReleaseType.DiagramAlongYColorTable
|
|
1248
|
+
diagram_along_z_color_table: NodalReleaseType.DiagramAlongZColorTable
|
|
1249
|
+
diagram_around_x_color_table: NodalReleaseType.DiagramAroundXColorTable
|
|
1250
|
+
diagram_around_y_color_table: NodalReleaseType.DiagramAroundYColorTable
|
|
1251
|
+
diagram_around_z_color_table: NodalReleaseType.DiagramAroundZColorTable
|
|
1252
|
+
plastic_diagram_along_x_table: NodalReleaseType.PlasticDiagramAlongXTable
|
|
1253
|
+
plastic_diagram_along_y_table: NodalReleaseType.PlasticDiagramAlongYTable
|
|
1254
|
+
plastic_diagram_along_z_table: NodalReleaseType.PlasticDiagramAlongZTable
|
|
1255
|
+
plastic_diagram_around_y_table: NodalReleaseType.PlasticDiagramAroundYTable
|
|
1256
|
+
plastic_diagram_around_z_table: NodalReleaseType.PlasticDiagramAroundZTable
|
|
1257
|
+
plastic_diagram_along_x_symmetric: bool
|
|
1258
|
+
plastic_diagram_along_y_symmetric: bool
|
|
1259
|
+
plastic_diagram_along_z_symmetric: bool
|
|
1260
|
+
plastic_diagram_around_y_symmetric: bool
|
|
1261
|
+
plastic_diagram_around_z_symmetric: bool
|
|
1262
|
+
plastic_diagram_around_y_force_interaction: bool
|
|
1263
|
+
plastic_diagram_around_z_force_interaction: bool
|
|
1264
|
+
plastic_diagram_along_x_user_defined: bool
|
|
1265
|
+
plastic_diagram_along_y_user_defined: bool
|
|
1266
|
+
plastic_diagram_along_z_user_defined: bool
|
|
1267
|
+
plastic_diagram_around_y_user_defined: bool
|
|
1268
|
+
plastic_diagram_around_z_user_defined: bool
|
|
1269
|
+
plastic_diagram_along_x_is_user_defined_member_length: bool
|
|
1270
|
+
plastic_diagram_along_y_is_user_defined_member_length: bool
|
|
1271
|
+
plastic_diagram_along_z_is_user_defined_member_length: bool
|
|
1272
|
+
plastic_diagram_around_y_is_user_defined_member_length: bool
|
|
1273
|
+
plastic_diagram_around_z_is_user_defined_member_length: bool
|
|
1274
|
+
plastic_diagram_along_x_user_defined_member_length: float
|
|
1275
|
+
plastic_diagram_along_y_user_defined_member_length: float
|
|
1276
|
+
plastic_diagram_along_z_user_defined_member_length: float
|
|
1277
|
+
plastic_diagram_around_y_user_defined_member_length: float
|
|
1278
|
+
plastic_diagram_around_z_user_defined_member_length: float
|
|
1279
|
+
plastic_diagram_along_x_attached_members_min_max_length: str
|
|
1280
|
+
plastic_diagram_along_y_attached_members_min_max_length: str
|
|
1281
|
+
plastic_diagram_along_z_attached_members_min_max_length: str
|
|
1282
|
+
plastic_diagram_around_y_attached_members_min_max_length: str
|
|
1283
|
+
plastic_diagram_around_z_attached_members_min_max_length: str
|
|
1284
|
+
plastic_diagram_along_x_io_negative: float
|
|
1285
|
+
plastic_diagram_along_y_io_negative: float
|
|
1286
|
+
plastic_diagram_along_z_io_negative: float
|
|
1287
|
+
plastic_diagram_around_y_io_negative: float
|
|
1288
|
+
plastic_diagram_around_z_io_negative: float
|
|
1289
|
+
plastic_diagram_along_x_io_positive: float
|
|
1290
|
+
plastic_diagram_along_y_io_positive: float
|
|
1291
|
+
plastic_diagram_along_z_io_positive: float
|
|
1292
|
+
plastic_diagram_around_y_io_positive: float
|
|
1293
|
+
plastic_diagram_around_z_io_positive: float
|
|
1294
|
+
plastic_diagram_along_x_ls_negative: float
|
|
1295
|
+
plastic_diagram_along_y_ls_negative: float
|
|
1296
|
+
plastic_diagram_along_z_ls_negative: float
|
|
1297
|
+
plastic_diagram_around_y_ls_negative: float
|
|
1298
|
+
plastic_diagram_around_z_ls_negative: float
|
|
1299
|
+
plastic_diagram_along_x_ls_positive: float
|
|
1300
|
+
plastic_diagram_along_y_ls_positive: float
|
|
1301
|
+
plastic_diagram_along_z_ls_positive: float
|
|
1302
|
+
plastic_diagram_around_y_ls_positive: float
|
|
1303
|
+
plastic_diagram_around_z_ls_positive: float
|
|
1304
|
+
plastic_diagram_along_x_cp_negative: float
|
|
1305
|
+
plastic_diagram_along_y_cp_negative: float
|
|
1306
|
+
plastic_diagram_along_z_cp_negative: float
|
|
1307
|
+
plastic_diagram_around_y_cp_negative: float
|
|
1308
|
+
plastic_diagram_around_z_cp_negative: float
|
|
1309
|
+
plastic_diagram_along_x_cp_positive: float
|
|
1310
|
+
plastic_diagram_along_y_cp_positive: float
|
|
1311
|
+
plastic_diagram_along_z_cp_positive: float
|
|
1312
|
+
plastic_diagram_around_y_cp_positive: float
|
|
1313
|
+
plastic_diagram_around_z_cp_positive: float
|
|
1314
|
+
plastic_diagram_along_x_minus_color_one: _common_pb2.Color
|
|
1315
|
+
plastic_diagram_along_y_minus_color_one: _common_pb2.Color
|
|
1316
|
+
plastic_diagram_along_z_minus_color_one: _common_pb2.Color
|
|
1317
|
+
plastic_diagram_around_y_minus_color_one: _common_pb2.Color
|
|
1318
|
+
plastic_diagram_around_z_minus_color_one: _common_pb2.Color
|
|
1319
|
+
plastic_diagram_along_x_minus_color_two: _common_pb2.Color
|
|
1320
|
+
plastic_diagram_along_y_minus_color_two: _common_pb2.Color
|
|
1321
|
+
plastic_diagram_along_z_minus_color_two: _common_pb2.Color
|
|
1322
|
+
plastic_diagram_around_y_minus_color_two: _common_pb2.Color
|
|
1323
|
+
plastic_diagram_around_z_minus_color_two: _common_pb2.Color
|
|
1324
|
+
plastic_diagram_along_x_minus_color_three: _common_pb2.Color
|
|
1325
|
+
plastic_diagram_along_y_minus_color_three: _common_pb2.Color
|
|
1326
|
+
plastic_diagram_along_z_minus_color_three: _common_pb2.Color
|
|
1327
|
+
plastic_diagram_around_y_minus_color_three: _common_pb2.Color
|
|
1328
|
+
plastic_diagram_around_z_minus_color_three: _common_pb2.Color
|
|
1329
|
+
plastic_diagram_along_x_minus_color_four: _common_pb2.Color
|
|
1330
|
+
plastic_diagram_along_y_minus_color_four: _common_pb2.Color
|
|
1331
|
+
plastic_diagram_along_z_minus_color_four: _common_pb2.Color
|
|
1332
|
+
plastic_diagram_around_y_minus_color_four: _common_pb2.Color
|
|
1333
|
+
plastic_diagram_around_z_minus_color_four: _common_pb2.Color
|
|
1334
|
+
plastic_diagram_along_x_plus_color_one: _common_pb2.Color
|
|
1335
|
+
plastic_diagram_along_y_plus_color_one: _common_pb2.Color
|
|
1336
|
+
plastic_diagram_along_z_plus_color_one: _common_pb2.Color
|
|
1337
|
+
plastic_diagram_around_y_plus_color_one: _common_pb2.Color
|
|
1338
|
+
plastic_diagram_around_z_plus_color_one: _common_pb2.Color
|
|
1339
|
+
plastic_diagram_along_x_plus_color_two: _common_pb2.Color
|
|
1340
|
+
plastic_diagram_along_y_plus_color_two: _common_pb2.Color
|
|
1341
|
+
plastic_diagram_along_z_plus_color_two: _common_pb2.Color
|
|
1342
|
+
plastic_diagram_around_y_plus_color_two: _common_pb2.Color
|
|
1343
|
+
plastic_diagram_around_z_plus_color_two: _common_pb2.Color
|
|
1344
|
+
plastic_diagram_along_x_plus_color_three: _common_pb2.Color
|
|
1345
|
+
plastic_diagram_along_y_plus_color_three: _common_pb2.Color
|
|
1346
|
+
plastic_diagram_along_z_plus_color_three: _common_pb2.Color
|
|
1347
|
+
plastic_diagram_around_y_plus_color_three: _common_pb2.Color
|
|
1348
|
+
plastic_diagram_around_z_plus_color_three: _common_pb2.Color
|
|
1349
|
+
plastic_diagram_along_x_plus_color_four: _common_pb2.Color
|
|
1350
|
+
plastic_diagram_along_y_plus_color_four: _common_pb2.Color
|
|
1351
|
+
plastic_diagram_along_z_plus_color_four: _common_pb2.Color
|
|
1352
|
+
plastic_diagram_around_y_plus_color_four: _common_pb2.Color
|
|
1353
|
+
plastic_diagram_around_z_plus_color_four: _common_pb2.Color
|
|
1354
|
+
plastic_diagram_along_x_component_type: NodalReleaseType.PlasticDiagramAlongXComponentType
|
|
1355
|
+
plastic_diagram_along_y_component_type: NodalReleaseType.PlasticDiagramAlongYComponentType
|
|
1356
|
+
plastic_diagram_along_z_component_type: NodalReleaseType.PlasticDiagramAlongZComponentType
|
|
1357
|
+
plastic_diagram_around_y_component_type: NodalReleaseType.PlasticDiagramAroundYComponentType
|
|
1358
|
+
plastic_diagram_around_z_component_type: NodalReleaseType.PlasticDiagramAroundZComponentType
|
|
1359
|
+
plastic_diagram_along_x_color_table: NodalReleaseType.PlasticDiagramAlongXColorTable
|
|
1360
|
+
plastic_diagram_along_y_color_table: NodalReleaseType.PlasticDiagramAlongYColorTable
|
|
1361
|
+
plastic_diagram_along_z_color_table: NodalReleaseType.PlasticDiagramAlongZColorTable
|
|
1362
|
+
plastic_diagram_around_y_color_table: NodalReleaseType.PlasticDiagramAroundYColorTable
|
|
1363
|
+
plastic_diagram_around_z_color_table: NodalReleaseType.PlasticDiagramAroundZColorTable
|
|
689
1364
|
friction_coefficient_x: float
|
|
690
1365
|
friction_coefficient_xy: float
|
|
691
1366
|
friction_coefficient_xz: float
|
|
@@ -701,32 +1376,8 @@ class NodalReleaseType(_message.Message):
|
|
|
701
1376
|
comment: str
|
|
702
1377
|
is_generated: bool
|
|
703
1378
|
generating_object_info: str
|
|
704
|
-
local_axis_system_object_type:
|
|
705
|
-
local_axis_system_reference_object:
|
|
1379
|
+
local_axis_system_object_type: NodalReleaseType.LocalAxisSystemObjectType
|
|
1380
|
+
local_axis_system_reference_object: _object_id_pb2.ObjectId
|
|
706
1381
|
id_for_export_import: str
|
|
707
1382
|
metadata_for_export_import: str
|
|
708
|
-
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., nodal_releases: _Optional[_Iterable[int]] = ..., coordinate_system: _Optional[str] = ..., axial_release_n: _Optional[float] = ..., axial_release_vy: _Optional[float] = ..., axial_release_vz: _Optional[float] = ..., moment_release_mt: _Optional[float] = ..., moment_release_my: _Optional[float] = ..., moment_release_mz: _Optional[float] = ..., axial_release_n_nonlinearity: _Optional[_Union[NodalReleaseTypeAxialReleaseNNonlinearity, str]] = ..., axial_release_vy_nonlinearity: _Optional[_Union[NodalReleaseTypeAxialReleaseVyNonlinearity, str]] = ..., axial_release_vz_nonlinearity: _Optional[_Union[NodalReleaseTypeAxialReleaseVzNonlinearity, str]] = ..., moment_release_mt_nonlinearity: _Optional[_Union[NodalReleaseTypeMomentReleaseMtNonlinearity, str]] = ..., moment_release_my_nonlinearity: _Optional[_Union[NodalReleaseTypeMomentReleaseMyNonlinearity, str]] = ..., moment_release_mz_nonlinearity: _Optional[_Union[NodalReleaseTypeMomentReleaseMzNonlinearity, str]] = ..., partial_activity_along_x_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongXNegativeType, str]] = ..., partial_activity_along_x_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongXPositiveType, str]] = ..., partial_activity_along_y_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongYNegativeType, str]] = ..., partial_activity_along_y_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongYPositiveType, str]] = ..., partial_activity_along_z_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongZNegativeType, str]] = ..., partial_activity_along_z_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAlongZPositiveType, str]] = ..., partial_activity_around_x_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundXNegativeType, str]] = ..., partial_activity_around_x_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundXPositiveType, str]] = ..., partial_activity_around_y_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundYNegativeType, str]] = ..., partial_activity_around_y_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundYPositiveType, str]] = ..., partial_activity_around_z_negative_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundZNegativeType, str]] = ..., partial_activity_around_z_positive_type: _Optional[_Union[NodalReleaseTypePartialActivityAroundZPositiveType, str]] = ..., partial_activity_along_x_negative_displacement: _Optional[float] = ..., partial_activity_along_x_positive_displacement: _Optional[float] = ..., partial_activity_along_y_negative_displacement: _Optional[float] = ..., partial_activity_along_y_positive_displacement: _Optional[float] = ..., partial_activity_along_z_negative_displacement: _Optional[float] = ..., partial_activity_along_z_positive_displacement: _Optional[float] = ..., partial_activity_around_x_negative_moment: _Optional[float] = ..., partial_activity_around_x_positive_moment: _Optional[float] = ..., partial_activity_around_y_negative_moment: _Optional[float] = ..., partial_activity_around_y_positive_moment: _Optional[float] = ..., partial_activity_around_z_negative_moment: _Optional[float] = ..., partial_activity_around_z_positive_moment: _Optional[float] = ..., partial_activity_along_x_negative_force: _Optional[float] = ..., partial_activity_along_x_positive_force: _Optional[float] = ..., partial_activity_along_y_negative_force: _Optional[float] = ..., partial_activity_along_y_positive_force: _Optional[float] = ..., partial_activity_along_z_negative_force: _Optional[float] = ..., partial_activity_along_z_positive_force: _Optional[float] = ..., partial_activity_around_x_negative_rotation: _Optional[float] = ..., partial_activity_around_x_positive_rotation: _Optional[float] = ..., partial_activity_around_y_negative_rotation: _Optional[float] = ..., partial_activity_around_y_positive_rotation: _Optional[float] = ..., partial_activity_around_z_negative_rotation: _Optional[float] = ..., partial_activity_around_z_positive_rotation: _Optional[float] = ..., partial_activity_along_x_negative_slippage: _Optional[float] = ..., partial_activity_along_x_positive_slippage: _Optional[float] = ..., partial_activity_along_y_negative_slippage: _Optional[float] = ..., partial_activity_along_y_positive_slippage: _Optional[float] = ..., partial_activity_along_z_negative_slippage: _Optional[float] = ..., partial_activity_along_z_positive_slippage: _Optional[float] = ..., partial_activity_around_x_negative_slippage: _Optional[float] = ..., partial_activity_around_x_positive_slippage: _Optional[float] = ..., partial_activity_around_y_negative_slippage: _Optional[float] = ..., partial_activity_around_y_positive_slippage: _Optional[float] = ..., partial_activity_around_z_negative_slippage: _Optional[float] = ..., partial_activity_around_z_positive_slippage: _Optional[float] = ..., diagram_along_x_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAlongXTable, _Mapping]] = ..., diagram_along_y_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAlongYTable, _Mapping]] = ..., diagram_along_z_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAlongZTable, _Mapping]] = ..., diagram_around_x_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAroundXTable, _Mapping]] = ..., diagram_around_y_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAroundYTable, _Mapping]] = ..., diagram_around_z_table: _Optional[_Union[ArrayOfNodalReleaseTypeDiagramAroundZTable, _Mapping]] = ..., diagram_along_x_symmetric: bool = ..., diagram_along_y_symmetric: bool = ..., diagram_along_z_symmetric: bool = ..., diagram_around_x_symmetric: bool = ..., diagram_around_y_symmetric: bool = ..., diagram_around_z_symmetric: bool = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_y_is_sorted: bool = ..., diagram_along_z_is_sorted: bool = ..., diagram_around_x_is_sorted: bool = ..., diagram_around_y_is_sorted: bool = ..., diagram_around_z_is_sorted: bool = ..., diagram_along_x_start: _Optional[_Union[NodalReleaseTypeDiagramAlongXStart, str]] = ..., diagram_along_y_start: _Optional[_Union[NodalReleaseTypeDiagramAlongYStart, str]] = ..., diagram_along_z_start: _Optional[_Union[NodalReleaseTypeDiagramAlongZStart, str]] = ..., diagram_around_x_start: _Optional[_Union[NodalReleaseTypeDiagramAroundXStart, str]] = ..., diagram_around_y_start: _Optional[_Union[NodalReleaseTypeDiagramAroundYStart, str]] = ..., diagram_around_z_start: _Optional[_Union[NodalReleaseTypeDiagramAroundZStart, str]] = ..., diagram_along_x_end: _Optional[_Union[NodalReleaseTypeDiagramAlongXEnd, str]] = ..., diagram_along_y_end: _Optional[_Union[NodalReleaseTypeDiagramAlongYEnd, str]] = ..., diagram_along_z_end: _Optional[_Union[NodalReleaseTypeDiagramAlongZEnd, str]] = ..., diagram_around_x_end: _Optional[_Union[NodalReleaseTypeDiagramAroundXEnd, str]] = ..., diagram_around_y_end: _Optional[_Union[NodalReleaseTypeDiagramAroundYEnd, str]] = ..., diagram_around_z_end: _Optional[_Union[NodalReleaseTypeDiagramAroundZEnd, str]] = ..., friction_coefficient_x: _Optional[float] = ..., friction_coefficient_xy: _Optional[float] = ..., friction_coefficient_xz: _Optional[float] = ..., friction_coefficient_y: _Optional[float] = ..., friction_coefficient_yx: _Optional[float] = ..., friction_coefficient_yz: _Optional[float] = ..., friction_coefficient_z: _Optional[float] = ..., friction_coefficient_zx: _Optional[float] = ..., friction_coefficient_zy: _Optional[float] = ..., friction_direction_independent_x: bool = ..., friction_direction_independent_y: bool = ..., friction_direction_independent_z: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., local_axis_system_object_type: _Optional[_Union[NodalReleaseTypeLocalAxisSystemObjectType, str]] = ..., local_axis_system_reference_object: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
709
|
-
|
|
710
|
-
class ArrayOfNodalReleaseTypeDiagramAlongXTable(_message.Message):
|
|
711
|
-
__slots__ = ()
|
|
712
|
-
def __init__(self) -> None: ...
|
|
713
|
-
|
|
714
|
-
class ArrayOfNodalReleaseTypeDiagramAlongYTable(_message.Message):
|
|
715
|
-
__slots__ = ()
|
|
716
|
-
def __init__(self) -> None: ...
|
|
717
|
-
|
|
718
|
-
class ArrayOfNodalReleaseTypeDiagramAlongZTable(_message.Message):
|
|
719
|
-
__slots__ = ()
|
|
720
|
-
def __init__(self) -> None: ...
|
|
721
|
-
|
|
722
|
-
class ArrayOfNodalReleaseTypeDiagramAroundXTable(_message.Message):
|
|
723
|
-
__slots__ = ()
|
|
724
|
-
def __init__(self) -> None: ...
|
|
725
|
-
|
|
726
|
-
class ArrayOfNodalReleaseTypeDiagramAroundYTable(_message.Message):
|
|
727
|
-
__slots__ = ()
|
|
728
|
-
def __init__(self) -> None: ...
|
|
729
|
-
|
|
730
|
-
class ArrayOfNodalReleaseTypeDiagramAroundZTable(_message.Message):
|
|
731
|
-
__slots__ = ()
|
|
732
|
-
def __init__(self) -> None: ...
|
|
1383
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., nodal_releases: _Optional[_Iterable[int]] = ..., coordinate_system: _Optional[_Union[_common_pb2.CoordinateSystemRepresentation, _Mapping]] = ..., axial_release_n: _Optional[float] = ..., axial_release_vy: _Optional[float] = ..., axial_release_vz: _Optional[float] = ..., moment_release_mt: _Optional[float] = ..., moment_release_my: _Optional[float] = ..., moment_release_mz: _Optional[float] = ..., axial_release_n_nonlinearity: _Optional[_Union[NodalReleaseType.AxialReleaseNNonlinearity, str]] = ..., axial_release_vy_nonlinearity: _Optional[_Union[NodalReleaseType.AxialReleaseVyNonlinearity, str]] = ..., axial_release_vz_nonlinearity: _Optional[_Union[NodalReleaseType.AxialReleaseVzNonlinearity, str]] = ..., moment_release_mt_nonlinearity: _Optional[_Union[NodalReleaseType.MomentReleaseMtNonlinearity, str]] = ..., moment_release_my_nonlinearity: _Optional[_Union[NodalReleaseType.MomentReleaseMyNonlinearity, str]] = ..., moment_release_mz_nonlinearity: _Optional[_Union[NodalReleaseType.MomentReleaseMzNonlinearity, str]] = ..., partial_activity_along_x_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongXNegativeType, str]] = ..., partial_activity_along_x_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongXPositiveType, str]] = ..., partial_activity_along_y_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongYNegativeType, str]] = ..., partial_activity_along_y_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongYPositiveType, str]] = ..., partial_activity_along_z_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongZNegativeType, str]] = ..., partial_activity_along_z_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAlongZPositiveType, str]] = ..., partial_activity_around_x_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundXNegativeType, str]] = ..., partial_activity_around_x_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundXPositiveType, str]] = ..., partial_activity_around_y_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundYNegativeType, str]] = ..., partial_activity_around_y_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundYPositiveType, str]] = ..., partial_activity_around_z_negative_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundZNegativeType, str]] = ..., partial_activity_around_z_positive_type: _Optional[_Union[NodalReleaseType.PartialActivityAroundZPositiveType, str]] = ..., partial_activity_along_x_negative_displacement: _Optional[float] = ..., partial_activity_along_x_positive_displacement: _Optional[float] = ..., partial_activity_along_y_negative_displacement: _Optional[float] = ..., partial_activity_along_y_positive_displacement: _Optional[float] = ..., partial_activity_along_z_negative_displacement: _Optional[float] = ..., partial_activity_along_z_positive_displacement: _Optional[float] = ..., partial_activity_around_x_negative_rotation: _Optional[float] = ..., partial_activity_around_x_positive_rotation: _Optional[float] = ..., partial_activity_around_y_negative_rotation: _Optional[float] = ..., partial_activity_around_y_positive_rotation: _Optional[float] = ..., partial_activity_around_z_negative_rotation: _Optional[float] = ..., partial_activity_around_z_positive_rotation: _Optional[float] = ..., partial_activity_along_x_negative_force: _Optional[float] = ..., partial_activity_along_x_positive_force: _Optional[float] = ..., partial_activity_along_y_negative_force: _Optional[float] = ..., partial_activity_along_y_positive_force: _Optional[float] = ..., partial_activity_along_z_negative_force: _Optional[float] = ..., partial_activity_along_z_positive_force: _Optional[float] = ..., partial_activity_around_x_negative_moment: _Optional[float] = ..., partial_activity_around_x_positive_moment: _Optional[float] = ..., partial_activity_around_y_negative_moment: _Optional[float] = ..., partial_activity_around_y_positive_moment: _Optional[float] = ..., partial_activity_around_z_negative_moment: _Optional[float] = ..., partial_activity_around_z_positive_moment: _Optional[float] = ..., partial_activity_along_x_negative_slippage: _Optional[float] = ..., partial_activity_along_x_positive_slippage: _Optional[float] = ..., partial_activity_along_y_negative_slippage: _Optional[float] = ..., partial_activity_along_y_positive_slippage: _Optional[float] = ..., partial_activity_along_z_negative_slippage: _Optional[float] = ..., partial_activity_along_z_positive_slippage: _Optional[float] = ..., partial_activity_around_x_negative_slippage: _Optional[float] = ..., partial_activity_around_x_positive_slippage: _Optional[float] = ..., partial_activity_around_y_negative_slippage: _Optional[float] = ..., partial_activity_around_y_positive_slippage: _Optional[float] = ..., partial_activity_around_z_negative_slippage: _Optional[float] = ..., partial_activity_around_z_positive_slippage: _Optional[float] = ..., diagram_along_x_symmetric: bool = ..., diagram_along_y_symmetric: bool = ..., diagram_along_z_symmetric: bool = ..., diagram_around_x_symmetric: bool = ..., diagram_around_y_symmetric: bool = ..., diagram_around_z_symmetric: bool = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_y_is_sorted: bool = ..., diagram_along_z_is_sorted: bool = ..., diagram_around_x_is_sorted: bool = ..., diagram_around_y_is_sorted: bool = ..., diagram_around_z_is_sorted: bool = ..., diagram_along_x_start: _Optional[_Union[NodalReleaseType.DiagramAlongXStart, str]] = ..., diagram_along_y_start: _Optional[_Union[NodalReleaseType.DiagramAlongYStart, str]] = ..., diagram_along_z_start: _Optional[_Union[NodalReleaseType.DiagramAlongZStart, str]] = ..., diagram_around_x_start: _Optional[_Union[NodalReleaseType.DiagramAroundXStart, str]] = ..., diagram_around_y_start: _Optional[_Union[NodalReleaseType.DiagramAroundYStart, str]] = ..., diagram_around_z_start: _Optional[_Union[NodalReleaseType.DiagramAroundZStart, str]] = ..., diagram_along_x_end: _Optional[_Union[NodalReleaseType.DiagramAlongXEnd, str]] = ..., diagram_along_y_end: _Optional[_Union[NodalReleaseType.DiagramAlongYEnd, str]] = ..., diagram_along_z_end: _Optional[_Union[NodalReleaseType.DiagramAlongZEnd, str]] = ..., diagram_around_x_end: _Optional[_Union[NodalReleaseType.DiagramAroundXEnd, str]] = ..., diagram_around_y_end: _Optional[_Union[NodalReleaseType.DiagramAroundYEnd, str]] = ..., diagram_around_z_end: _Optional[_Union[NodalReleaseType.DiagramAroundZEnd, str]] = ..., diagram_along_x_table: _Optional[_Union[NodalReleaseType.DiagramAlongXTable, _Mapping]] = ..., diagram_along_y_table: _Optional[_Union[NodalReleaseType.DiagramAlongYTable, _Mapping]] = ..., diagram_along_z_table: _Optional[_Union[NodalReleaseType.DiagramAlongZTable, _Mapping]] = ..., diagram_around_x_table: _Optional[_Union[NodalReleaseType.DiagramAroundXTable, _Mapping]] = ..., diagram_around_y_table: _Optional[_Union[NodalReleaseType.DiagramAroundYTable, _Mapping]] = ..., diagram_around_z_table: _Optional[_Union[NodalReleaseType.DiagramAroundZTable, _Mapping]] = ..., diagram_along_x_ac_yield_minus: _Optional[float] = ..., diagram_along_y_ac_yield_minus: _Optional[float] = ..., diagram_along_z_ac_yield_minus: _Optional[float] = ..., diagram_around_x_ac_yield_minus: _Optional[float] = ..., diagram_around_y_ac_yield_minus: _Optional[float] = ..., diagram_around_z_ac_yield_minus: _Optional[float] = ..., diagram_along_x_ac_yield_plus: _Optional[float] = ..., diagram_along_y_ac_yield_plus: _Optional[float] = ..., diagram_along_z_ac_yield_plus: _Optional[float] = ..., diagram_around_x_ac_yield_plus: _Optional[float] = ..., diagram_around_y_ac_yield_plus: _Optional[float] = ..., diagram_around_z_ac_yield_plus: _Optional[float] = ..., diagram_along_x_acceptance_criteria_active: bool = ..., diagram_along_y_acceptance_criteria_active: bool = ..., diagram_along_z_acceptance_criteria_active: bool = ..., diagram_around_x_acceptance_criteria_active: bool = ..., diagram_around_y_acceptance_criteria_active: bool = ..., diagram_around_z_acceptance_criteria_active: bool = ..., diagram_along_x_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_x_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_y_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_z_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_x_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_y_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_z_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_x_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_y_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_z_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_y_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_z_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_x_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_y_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_around_z_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., diagram_along_x_color_table: _Optional[_Union[NodalReleaseType.DiagramAlongXColorTable, _Mapping]] = ..., diagram_along_y_color_table: _Optional[_Union[NodalReleaseType.DiagramAlongYColorTable, _Mapping]] = ..., diagram_along_z_color_table: _Optional[_Union[NodalReleaseType.DiagramAlongZColorTable, _Mapping]] = ..., diagram_around_x_color_table: _Optional[_Union[NodalReleaseType.DiagramAroundXColorTable, _Mapping]] = ..., diagram_around_y_color_table: _Optional[_Union[NodalReleaseType.DiagramAroundYColorTable, _Mapping]] = ..., diagram_around_z_color_table: _Optional[_Union[NodalReleaseType.DiagramAroundZColorTable, _Mapping]] = ..., plastic_diagram_along_x_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongXTable, _Mapping]] = ..., plastic_diagram_along_y_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongYTable, _Mapping]] = ..., plastic_diagram_along_z_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongZTable, _Mapping]] = ..., plastic_diagram_around_y_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundYTable, _Mapping]] = ..., plastic_diagram_around_z_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundZTable, _Mapping]] = ..., plastic_diagram_along_x_symmetric: bool = ..., plastic_diagram_along_y_symmetric: bool = ..., plastic_diagram_along_z_symmetric: bool = ..., plastic_diagram_around_y_symmetric: bool = ..., plastic_diagram_around_z_symmetric: bool = ..., plastic_diagram_around_y_force_interaction: bool = ..., plastic_diagram_around_z_force_interaction: bool = ..., plastic_diagram_along_x_user_defined: bool = ..., plastic_diagram_along_y_user_defined: bool = ..., plastic_diagram_along_z_user_defined: bool = ..., plastic_diagram_around_y_user_defined: bool = ..., plastic_diagram_around_z_user_defined: bool = ..., plastic_diagram_along_x_is_user_defined_member_length: bool = ..., plastic_diagram_along_y_is_user_defined_member_length: bool = ..., plastic_diagram_along_z_is_user_defined_member_length: bool = ..., plastic_diagram_around_y_is_user_defined_member_length: bool = ..., plastic_diagram_around_z_is_user_defined_member_length: bool = ..., plastic_diagram_along_x_user_defined_member_length: _Optional[float] = ..., plastic_diagram_along_y_user_defined_member_length: _Optional[float] = ..., plastic_diagram_along_z_user_defined_member_length: _Optional[float] = ..., plastic_diagram_around_y_user_defined_member_length: _Optional[float] = ..., plastic_diagram_around_z_user_defined_member_length: _Optional[float] = ..., plastic_diagram_along_x_attached_members_min_max_length: _Optional[str] = ..., plastic_diagram_along_y_attached_members_min_max_length: _Optional[str] = ..., plastic_diagram_along_z_attached_members_min_max_length: _Optional[str] = ..., plastic_diagram_around_y_attached_members_min_max_length: _Optional[str] = ..., plastic_diagram_around_z_attached_members_min_max_length: _Optional[str] = ..., plastic_diagram_along_x_io_negative: _Optional[float] = ..., plastic_diagram_along_y_io_negative: _Optional[float] = ..., plastic_diagram_along_z_io_negative: _Optional[float] = ..., plastic_diagram_around_y_io_negative: _Optional[float] = ..., plastic_diagram_around_z_io_negative: _Optional[float] = ..., plastic_diagram_along_x_io_positive: _Optional[float] = ..., plastic_diagram_along_y_io_positive: _Optional[float] = ..., plastic_diagram_along_z_io_positive: _Optional[float] = ..., plastic_diagram_around_y_io_positive: _Optional[float] = ..., plastic_diagram_around_z_io_positive: _Optional[float] = ..., plastic_diagram_along_x_ls_negative: _Optional[float] = ..., plastic_diagram_along_y_ls_negative: _Optional[float] = ..., plastic_diagram_along_z_ls_negative: _Optional[float] = ..., plastic_diagram_around_y_ls_negative: _Optional[float] = ..., plastic_diagram_around_z_ls_negative: _Optional[float] = ..., plastic_diagram_along_x_ls_positive: _Optional[float] = ..., plastic_diagram_along_y_ls_positive: _Optional[float] = ..., plastic_diagram_along_z_ls_positive: _Optional[float] = ..., plastic_diagram_around_y_ls_positive: _Optional[float] = ..., plastic_diagram_around_z_ls_positive: _Optional[float] = ..., plastic_diagram_along_x_cp_negative: _Optional[float] = ..., plastic_diagram_along_y_cp_negative: _Optional[float] = ..., plastic_diagram_along_z_cp_negative: _Optional[float] = ..., plastic_diagram_around_y_cp_negative: _Optional[float] = ..., plastic_diagram_around_z_cp_negative: _Optional[float] = ..., plastic_diagram_along_x_cp_positive: _Optional[float] = ..., plastic_diagram_along_y_cp_positive: _Optional[float] = ..., plastic_diagram_along_z_cp_positive: _Optional[float] = ..., plastic_diagram_around_y_cp_positive: _Optional[float] = ..., plastic_diagram_around_z_cp_positive: _Optional[float] = ..., plastic_diagram_along_x_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_minus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_minus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_minus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_minus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_minus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_minus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_minus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_minus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_minus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_minus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_minus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_minus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_plus_color_one: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_plus_color_two: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_plus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_plus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_plus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_plus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_plus_color_three: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_plus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_y_plus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_z_plus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_y_plus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_around_z_plus_color_four: _Optional[_Union[_common_pb2.Color, _Mapping]] = ..., plastic_diagram_along_x_component_type: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongXComponentType, str]] = ..., plastic_diagram_along_y_component_type: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongYComponentType, str]] = ..., plastic_diagram_along_z_component_type: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongZComponentType, str]] = ..., plastic_diagram_around_y_component_type: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundYComponentType, str]] = ..., plastic_diagram_around_z_component_type: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundZComponentType, str]] = ..., plastic_diagram_along_x_color_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongXColorTable, _Mapping]] = ..., plastic_diagram_along_y_color_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongYColorTable, _Mapping]] = ..., plastic_diagram_along_z_color_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAlongZColorTable, _Mapping]] = ..., plastic_diagram_around_y_color_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundYColorTable, _Mapping]] = ..., plastic_diagram_around_z_color_table: _Optional[_Union[NodalReleaseType.PlasticDiagramAroundZColorTable, _Mapping]] = ..., friction_coefficient_x: _Optional[float] = ..., friction_coefficient_xy: _Optional[float] = ..., friction_coefficient_xz: _Optional[float] = ..., friction_coefficient_y: _Optional[float] = ..., friction_coefficient_yx: _Optional[float] = ..., friction_coefficient_yz: _Optional[float] = ..., friction_coefficient_z: _Optional[float] = ..., friction_coefficient_zx: _Optional[float] = ..., friction_coefficient_zy: _Optional[float] = ..., friction_direction_independent_x: bool = ..., friction_direction_independent_y: bool = ..., friction_direction_independent_z: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., local_axis_system_object_type: _Optional[_Union[NodalReleaseType.LocalAxisSystemObjectType, str]] = ..., local_axis_system_reference_object: _Optional[_Union[_object_id_pb2.ObjectId, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|