dlubal.api 0.1.293714a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dlubal.api might be problematic. Click here for more details.
- dlubal/__init__.py +0 -0
- dlubal/api/__init__.py +0 -0
- dlubal/api/common/__init__.py +3 -0
- dlubal/api/common/common_pb2.py +42 -0
- dlubal/api/common/common_pb2.pyi +41 -0
- dlubal/api/common/connection.py +251 -0
- dlubal/api/common/exceptions.py +12 -0
- dlubal/api/common/model_id_pb2.py +38 -0
- dlubal/api/common/model_id_pb2.pyi +17 -0
- dlubal/api/common/table.py +35 -0
- dlubal/api/common/table_data_pb2.py +39 -0
- dlubal/api/common/table_data_pb2.pyi +21 -0
- dlubal/api/rfem/__init__.py +32 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/application.py +290 -0
- dlubal/api/rfem/application_pb2.py +67 -0
- dlubal/api/rfem/application_pb2.pyi +135 -0
- dlubal/api/rfem/application_pb2_grpc.py +973 -0
- dlubal/api/rfem/base_data/__init__.py +1 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
- dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
- dlubal/api/rfem/building_model/__init__.py +4 -0
- dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
- dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
- dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/construction_stages/__init__.py +1 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
- dlubal/api/rfem/guide_objects/__init__.py +10 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
- dlubal/api/rfem/imperfections/__init__.py +5 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/load_wizards/__init__.py +2 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
- dlubal/api/rfem/loading/__init__.py +15 -0
- dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
- dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
- dlubal/api/rfem/loading/action_pb2.py +42 -0
- dlubal/api/rfem/loading/action_pb2.pyi +80 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
- dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
- dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
- dlubal/api/rfem/loading/load_case_pb2.py +77 -0
- dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
- dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
- dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
- dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
- dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
- dlubal/api/rfem/loads/__init__.py +17 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rfem/loads/line_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/member_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
- dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
- dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
- dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
- dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
- dlubal/api/rfem/packing.py +45 -0
- dlubal/api/rfem/result_objects/__init__.py +1 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
- dlubal/api/rfem/results/__init__.py +2 -0
- dlubal/api/rfem/results/results_id_pb2.py +36 -0
- dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
- dlubal/api/rfem/results/results_query_pb2.py +40 -0
- dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/structure_advanced/__init__.py +9 -0
- dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
- dlubal/api/rfem/structure_core/__init__.py +15 -0
- dlubal/api/rfem/structure_core/line_pb2.py +53 -0
- dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
- dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
- dlubal/api/rfem/structure_core/material_pb2.py +100 -0
- dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
- dlubal/api/rfem/structure_core/member_pb2.py +79 -0
- dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
- dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
- dlubal/api/rfem/structure_core/node_pb2.py +43 -0
- dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
- dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
- dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
- dlubal/api/rfem/structure_core/section_pb2.py +66 -0
- dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
- dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
- dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
- dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
- dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
- dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
- dlubal/api/rfem/types_for_lines/__init__.py +4 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
- dlubal/api/rfem/types_for_members/__init__.py +13 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
- dlubal/api/rfem/types_for_solids/__init__.py +3 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
- dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
- dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
- dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
- dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
- dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,883 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class LineSupportCoordinateSystem(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
LINE_SUPPORT_COORDINATE_SYSTEM_LOCAL: _ClassVar[LineSupportCoordinateSystem]
|
|
13
|
+
LINE_SUPPORT_COORDINATE_SYSTEM_GLOBAL: _ClassVar[LineSupportCoordinateSystem]
|
|
14
|
+
|
|
15
|
+
class LineSupportSpringXNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportSpringXNonlinearity]
|
|
18
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportSpringXNonlinearity]
|
|
19
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportSpringXNonlinearity]
|
|
20
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportSpringXNonlinearity]
|
|
21
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportSpringXNonlinearity]
|
|
22
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportSpringXNonlinearity]
|
|
23
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportSpringXNonlinearity]
|
|
24
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportSpringXNonlinearity]
|
|
25
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportSpringXNonlinearity]
|
|
26
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportSpringXNonlinearity]
|
|
27
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportSpringXNonlinearity]
|
|
28
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportSpringXNonlinearity]
|
|
29
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportSpringXNonlinearity]
|
|
30
|
+
|
|
31
|
+
class LineSupportSpringYNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
32
|
+
__slots__ = ()
|
|
33
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportSpringYNonlinearity]
|
|
34
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportSpringYNonlinearity]
|
|
35
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportSpringYNonlinearity]
|
|
36
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportSpringYNonlinearity]
|
|
37
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportSpringYNonlinearity]
|
|
38
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportSpringYNonlinearity]
|
|
39
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportSpringYNonlinearity]
|
|
40
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportSpringYNonlinearity]
|
|
41
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportSpringYNonlinearity]
|
|
42
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportSpringYNonlinearity]
|
|
43
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportSpringYNonlinearity]
|
|
44
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportSpringYNonlinearity]
|
|
45
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportSpringYNonlinearity]
|
|
46
|
+
|
|
47
|
+
class LineSupportSpringZNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
48
|
+
__slots__ = ()
|
|
49
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportSpringZNonlinearity]
|
|
50
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportSpringZNonlinearity]
|
|
51
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportSpringZNonlinearity]
|
|
52
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportSpringZNonlinearity]
|
|
53
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportSpringZNonlinearity]
|
|
54
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportSpringZNonlinearity]
|
|
55
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportSpringZNonlinearity]
|
|
56
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportSpringZNonlinearity]
|
|
57
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportSpringZNonlinearity]
|
|
58
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportSpringZNonlinearity]
|
|
59
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportSpringZNonlinearity]
|
|
60
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportSpringZNonlinearity]
|
|
61
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportSpringZNonlinearity]
|
|
62
|
+
|
|
63
|
+
class LineSupportRotationalRestraintXNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
64
|
+
__slots__ = ()
|
|
65
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
66
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
67
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
68
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
69
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
70
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
71
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
72
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
73
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
74
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
75
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
76
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
77
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportRotationalRestraintXNonlinearity]
|
|
78
|
+
|
|
79
|
+
class LineSupportRotationalRestraintYNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
80
|
+
__slots__ = ()
|
|
81
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
82
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
83
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
84
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
85
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
86
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
87
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
88
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
89
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
90
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
91
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
92
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
93
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportRotationalRestraintYNonlinearity]
|
|
94
|
+
|
|
95
|
+
class LineSupportRotationalRestraintZNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
96
|
+
__slots__ = ()
|
|
97
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
98
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
99
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
100
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
101
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
102
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
103
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
104
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
105
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
106
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
107
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
108
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
109
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[LineSupportRotationalRestraintZNonlinearity]
|
|
110
|
+
|
|
111
|
+
class LineSupportDiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
112
|
+
__slots__ = ()
|
|
113
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongXEnd]
|
|
114
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongXEnd]
|
|
115
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongXEnd]
|
|
116
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongXEnd]
|
|
117
|
+
|
|
118
|
+
class LineSupportDiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
119
|
+
__slots__ = ()
|
|
120
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongXStart]
|
|
121
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongXStart]
|
|
122
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongXStart]
|
|
123
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongXStart]
|
|
124
|
+
|
|
125
|
+
class LineSupportDiagramAlongYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
126
|
+
__slots__ = ()
|
|
127
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongYEnd]
|
|
128
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongYEnd]
|
|
129
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongYEnd]
|
|
130
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongYEnd]
|
|
131
|
+
|
|
132
|
+
class LineSupportDiagramAlongYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
133
|
+
__slots__ = ()
|
|
134
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongYStart]
|
|
135
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongYStart]
|
|
136
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongYStart]
|
|
137
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongYStart]
|
|
138
|
+
|
|
139
|
+
class LineSupportDiagramAlongZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
140
|
+
__slots__ = ()
|
|
141
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongZEnd]
|
|
142
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongZEnd]
|
|
143
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongZEnd]
|
|
144
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongZEnd]
|
|
145
|
+
|
|
146
|
+
class LineSupportDiagramAlongZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
147
|
+
__slots__ = ()
|
|
148
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAlongZStart]
|
|
149
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAlongZStart]
|
|
150
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAlongZStart]
|
|
151
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAlongZStart]
|
|
152
|
+
|
|
153
|
+
class LineSupportDiagramAroundXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
154
|
+
__slots__ = ()
|
|
155
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundXEnd]
|
|
156
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundXEnd]
|
|
157
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundXEnd]
|
|
158
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundXEnd]
|
|
159
|
+
|
|
160
|
+
class LineSupportDiagramAroundXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
161
|
+
__slots__ = ()
|
|
162
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundXStart]
|
|
163
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundXStart]
|
|
164
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundXStart]
|
|
165
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundXStart]
|
|
166
|
+
|
|
167
|
+
class LineSupportDiagramAroundYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
168
|
+
__slots__ = ()
|
|
169
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundYEnd]
|
|
170
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundYEnd]
|
|
171
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundYEnd]
|
|
172
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundYEnd]
|
|
173
|
+
|
|
174
|
+
class LineSupportDiagramAroundYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
175
|
+
__slots__ = ()
|
|
176
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundYStart]
|
|
177
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundYStart]
|
|
178
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundYStart]
|
|
179
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundYStart]
|
|
180
|
+
|
|
181
|
+
class LineSupportDiagramAroundZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
182
|
+
__slots__ = ()
|
|
183
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundZEnd]
|
|
184
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundZEnd]
|
|
185
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundZEnd]
|
|
186
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundZEnd]
|
|
187
|
+
|
|
188
|
+
class LineSupportDiagramAroundZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
189
|
+
__slots__ = ()
|
|
190
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[LineSupportDiagramAroundZStart]
|
|
191
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[LineSupportDiagramAroundZStart]
|
|
192
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[LineSupportDiagramAroundZStart]
|
|
193
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[LineSupportDiagramAroundZStart]
|
|
194
|
+
|
|
195
|
+
class LineSupportPartialActivityAlongXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
196
|
+
__slots__ = ()
|
|
197
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongXNegativeType]
|
|
198
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongXNegativeType]
|
|
199
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongXNegativeType]
|
|
200
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongXNegativeType]
|
|
201
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongXNegativeType]
|
|
202
|
+
|
|
203
|
+
class LineSupportPartialActivityAlongXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
204
|
+
__slots__ = ()
|
|
205
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongXPositiveType]
|
|
206
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongXPositiveType]
|
|
207
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongXPositiveType]
|
|
208
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongXPositiveType]
|
|
209
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongXPositiveType]
|
|
210
|
+
|
|
211
|
+
class LineSupportPartialActivityAlongYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
212
|
+
__slots__ = ()
|
|
213
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongYNegativeType]
|
|
214
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongYNegativeType]
|
|
215
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongYNegativeType]
|
|
216
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongYNegativeType]
|
|
217
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongYNegativeType]
|
|
218
|
+
|
|
219
|
+
class LineSupportPartialActivityAlongYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
220
|
+
__slots__ = ()
|
|
221
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongYPositiveType]
|
|
222
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongYPositiveType]
|
|
223
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongYPositiveType]
|
|
224
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongYPositiveType]
|
|
225
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongYPositiveType]
|
|
226
|
+
|
|
227
|
+
class LineSupportPartialActivityAlongZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
228
|
+
__slots__ = ()
|
|
229
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongZNegativeType]
|
|
230
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongZNegativeType]
|
|
231
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongZNegativeType]
|
|
232
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongZNegativeType]
|
|
233
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongZNegativeType]
|
|
234
|
+
|
|
235
|
+
class LineSupportPartialActivityAlongZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
236
|
+
__slots__ = ()
|
|
237
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAlongZPositiveType]
|
|
238
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAlongZPositiveType]
|
|
239
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongZPositiveType]
|
|
240
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAlongZPositiveType]
|
|
241
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[LineSupportPartialActivityAlongZPositiveType]
|
|
242
|
+
|
|
243
|
+
class LineSupportPartialActivityAroundXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
244
|
+
__slots__ = ()
|
|
245
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundXNegativeType]
|
|
246
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundXNegativeType]
|
|
247
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundXNegativeType]
|
|
248
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundXNegativeType]
|
|
249
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundXNegativeType]
|
|
250
|
+
|
|
251
|
+
class LineSupportPartialActivityAroundXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
252
|
+
__slots__ = ()
|
|
253
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundXPositiveType]
|
|
254
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundXPositiveType]
|
|
255
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundXPositiveType]
|
|
256
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundXPositiveType]
|
|
257
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundXPositiveType]
|
|
258
|
+
|
|
259
|
+
class LineSupportPartialActivityAroundYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
260
|
+
__slots__ = ()
|
|
261
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundYNegativeType]
|
|
262
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundYNegativeType]
|
|
263
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundYNegativeType]
|
|
264
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundYNegativeType]
|
|
265
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundYNegativeType]
|
|
266
|
+
|
|
267
|
+
class LineSupportPartialActivityAroundYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
268
|
+
__slots__ = ()
|
|
269
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundYPositiveType]
|
|
270
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundYPositiveType]
|
|
271
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundYPositiveType]
|
|
272
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundYPositiveType]
|
|
273
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundYPositiveType]
|
|
274
|
+
|
|
275
|
+
class LineSupportPartialActivityAroundZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
276
|
+
__slots__ = ()
|
|
277
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundZNegativeType]
|
|
278
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundZNegativeType]
|
|
279
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundZNegativeType]
|
|
280
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundZNegativeType]
|
|
281
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundZNegativeType]
|
|
282
|
+
|
|
283
|
+
class LineSupportPartialActivityAroundZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
284
|
+
__slots__ = ()
|
|
285
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[LineSupportPartialActivityAroundZPositiveType]
|
|
286
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[LineSupportPartialActivityAroundZPositiveType]
|
|
287
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundZPositiveType]
|
|
288
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[LineSupportPartialActivityAroundZPositiveType]
|
|
289
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[LineSupportPartialActivityAroundZPositiveType]
|
|
290
|
+
|
|
291
|
+
class LineSupportFictitiousWallHeadSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
292
|
+
__slots__ = ()
|
|
293
|
+
LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_HINGED: _ClassVar[LineSupportFictitiousWallHeadSupportType]
|
|
294
|
+
LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_RIGID: _ClassVar[LineSupportFictitiousWallHeadSupportType]
|
|
295
|
+
|
|
296
|
+
class LineSupportFictitiousWallBaseSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
297
|
+
__slots__ = ()
|
|
298
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_HINGED: _ClassVar[LineSupportFictitiousWallBaseSupportType]
|
|
299
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_ELASTIC: _ClassVar[LineSupportFictitiousWallBaseSupportType]
|
|
300
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_RIGID: _ClassVar[LineSupportFictitiousWallBaseSupportType]
|
|
301
|
+
LINE_SUPPORT_COORDINATE_SYSTEM_LOCAL: LineSupportCoordinateSystem
|
|
302
|
+
LINE_SUPPORT_COORDINATE_SYSTEM_GLOBAL: LineSupportCoordinateSystem
|
|
303
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE: LineSupportSpringXNonlinearity
|
|
304
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM: LineSupportSpringXNonlinearity
|
|
305
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportSpringXNonlinearity
|
|
306
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportSpringXNonlinearity
|
|
307
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportSpringXNonlinearity
|
|
308
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportSpringXNonlinearity
|
|
309
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportSpringXNonlinearity
|
|
310
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportSpringXNonlinearity
|
|
311
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportSpringXNonlinearity
|
|
312
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportSpringXNonlinearity
|
|
313
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportSpringXNonlinearity
|
|
314
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportSpringXNonlinearity
|
|
315
|
+
LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportSpringXNonlinearity
|
|
316
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE: LineSupportSpringYNonlinearity
|
|
317
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM: LineSupportSpringYNonlinearity
|
|
318
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportSpringYNonlinearity
|
|
319
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportSpringYNonlinearity
|
|
320
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportSpringYNonlinearity
|
|
321
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportSpringYNonlinearity
|
|
322
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportSpringYNonlinearity
|
|
323
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportSpringYNonlinearity
|
|
324
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportSpringYNonlinearity
|
|
325
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportSpringYNonlinearity
|
|
326
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportSpringYNonlinearity
|
|
327
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportSpringYNonlinearity
|
|
328
|
+
LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportSpringYNonlinearity
|
|
329
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE: LineSupportSpringZNonlinearity
|
|
330
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM: LineSupportSpringZNonlinearity
|
|
331
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportSpringZNonlinearity
|
|
332
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportSpringZNonlinearity
|
|
333
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportSpringZNonlinearity
|
|
334
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportSpringZNonlinearity
|
|
335
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportSpringZNonlinearity
|
|
336
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportSpringZNonlinearity
|
|
337
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportSpringZNonlinearity
|
|
338
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportSpringZNonlinearity
|
|
339
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportSpringZNonlinearity
|
|
340
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportSpringZNonlinearity
|
|
341
|
+
LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportSpringZNonlinearity
|
|
342
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE: LineSupportRotationalRestraintXNonlinearity
|
|
343
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM: LineSupportRotationalRestraintXNonlinearity
|
|
344
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportRotationalRestraintXNonlinearity
|
|
345
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportRotationalRestraintXNonlinearity
|
|
346
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportRotationalRestraintXNonlinearity
|
|
347
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportRotationalRestraintXNonlinearity
|
|
348
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportRotationalRestraintXNonlinearity
|
|
349
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportRotationalRestraintXNonlinearity
|
|
350
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportRotationalRestraintXNonlinearity
|
|
351
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportRotationalRestraintXNonlinearity
|
|
352
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportRotationalRestraintXNonlinearity
|
|
353
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportRotationalRestraintXNonlinearity
|
|
354
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportRotationalRestraintXNonlinearity
|
|
355
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE: LineSupportRotationalRestraintYNonlinearity
|
|
356
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM: LineSupportRotationalRestraintYNonlinearity
|
|
357
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportRotationalRestraintYNonlinearity
|
|
358
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportRotationalRestraintYNonlinearity
|
|
359
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportRotationalRestraintYNonlinearity
|
|
360
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportRotationalRestraintYNonlinearity
|
|
361
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportRotationalRestraintYNonlinearity
|
|
362
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportRotationalRestraintYNonlinearity
|
|
363
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportRotationalRestraintYNonlinearity
|
|
364
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportRotationalRestraintYNonlinearity
|
|
365
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportRotationalRestraintYNonlinearity
|
|
366
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportRotationalRestraintYNonlinearity
|
|
367
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportRotationalRestraintYNonlinearity
|
|
368
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE: LineSupportRotationalRestraintZNonlinearity
|
|
369
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM: LineSupportRotationalRestraintZNonlinearity
|
|
370
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: LineSupportRotationalRestraintZNonlinearity
|
|
371
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: LineSupportRotationalRestraintZNonlinearity
|
|
372
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: LineSupportRotationalRestraintZNonlinearity
|
|
373
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: LineSupportRotationalRestraintZNonlinearity
|
|
374
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: LineSupportRotationalRestraintZNonlinearity
|
|
375
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: LineSupportRotationalRestraintZNonlinearity
|
|
376
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: LineSupportRotationalRestraintZNonlinearity
|
|
377
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: LineSupportRotationalRestraintZNonlinearity
|
|
378
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: LineSupportRotationalRestraintZNonlinearity
|
|
379
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: LineSupportRotationalRestraintZNonlinearity
|
|
380
|
+
LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: LineSupportRotationalRestraintZNonlinearity
|
|
381
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongXEnd
|
|
382
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongXEnd
|
|
383
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongXEnd
|
|
384
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongXEnd
|
|
385
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongXStart
|
|
386
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongXStart
|
|
387
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongXStart
|
|
388
|
+
LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongXStart
|
|
389
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongYEnd
|
|
390
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongYEnd
|
|
391
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongYEnd
|
|
392
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongYEnd
|
|
393
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongYStart
|
|
394
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongYStart
|
|
395
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongYStart
|
|
396
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongYStart
|
|
397
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongZEnd
|
|
398
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongZEnd
|
|
399
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongZEnd
|
|
400
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongZEnd
|
|
401
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAlongZStart
|
|
402
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAlongZStart
|
|
403
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAlongZStart
|
|
404
|
+
LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAlongZStart
|
|
405
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundXEnd
|
|
406
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundXEnd
|
|
407
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundXEnd
|
|
408
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundXEnd
|
|
409
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundXStart
|
|
410
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundXStart
|
|
411
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundXStart
|
|
412
|
+
LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundXStart
|
|
413
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundYEnd
|
|
414
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundYEnd
|
|
415
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundYEnd
|
|
416
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundYEnd
|
|
417
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundYStart
|
|
418
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundYStart
|
|
419
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundYStart
|
|
420
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundYStart
|
|
421
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundZEnd
|
|
422
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundZEnd
|
|
423
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundZEnd
|
|
424
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundZEnd
|
|
425
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: LineSupportDiagramAroundZStart
|
|
426
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: LineSupportDiagramAroundZStart
|
|
427
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: LineSupportDiagramAroundZStart
|
|
428
|
+
LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: LineSupportDiagramAroundZStart
|
|
429
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongXNegativeType
|
|
430
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongXNegativeType
|
|
431
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongXNegativeType
|
|
432
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongXNegativeType
|
|
433
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongXNegativeType
|
|
434
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongXPositiveType
|
|
435
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongXPositiveType
|
|
436
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongXPositiveType
|
|
437
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongXPositiveType
|
|
438
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongXPositiveType
|
|
439
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongYNegativeType
|
|
440
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongYNegativeType
|
|
441
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongYNegativeType
|
|
442
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongYNegativeType
|
|
443
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongYNegativeType
|
|
444
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongYPositiveType
|
|
445
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongYPositiveType
|
|
446
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongYPositiveType
|
|
447
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongYPositiveType
|
|
448
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongYPositiveType
|
|
449
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongZNegativeType
|
|
450
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongZNegativeType
|
|
451
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongZNegativeType
|
|
452
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongZNegativeType
|
|
453
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongZNegativeType
|
|
454
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAlongZPositiveType
|
|
455
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAlongZPositiveType
|
|
456
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: LineSupportPartialActivityAlongZPositiveType
|
|
457
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAlongZPositiveType
|
|
458
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: LineSupportPartialActivityAlongZPositiveType
|
|
459
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundXNegativeType
|
|
460
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundXNegativeType
|
|
461
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundXNegativeType
|
|
462
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundXNegativeType
|
|
463
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundXNegativeType
|
|
464
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundXPositiveType
|
|
465
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundXPositiveType
|
|
466
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundXPositiveType
|
|
467
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundXPositiveType
|
|
468
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundXPositiveType
|
|
469
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundYNegativeType
|
|
470
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundYNegativeType
|
|
471
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundYNegativeType
|
|
472
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundYNegativeType
|
|
473
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundYNegativeType
|
|
474
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundYPositiveType
|
|
475
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundYPositiveType
|
|
476
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundYPositiveType
|
|
477
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundYPositiveType
|
|
478
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundYPositiveType
|
|
479
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundZNegativeType
|
|
480
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundZNegativeType
|
|
481
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundZNegativeType
|
|
482
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundZNegativeType
|
|
483
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundZNegativeType
|
|
484
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: LineSupportPartialActivityAroundZPositiveType
|
|
485
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: LineSupportPartialActivityAroundZPositiveType
|
|
486
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: LineSupportPartialActivityAroundZPositiveType
|
|
487
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: LineSupportPartialActivityAroundZPositiveType
|
|
488
|
+
LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: LineSupportPartialActivityAroundZPositiveType
|
|
489
|
+
LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_HINGED: LineSupportFictitiousWallHeadSupportType
|
|
490
|
+
LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_RIGID: LineSupportFictitiousWallHeadSupportType
|
|
491
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_HINGED: LineSupportFictitiousWallBaseSupportType
|
|
492
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_ELASTIC: LineSupportFictitiousWallBaseSupportType
|
|
493
|
+
LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_RIGID: LineSupportFictitiousWallBaseSupportType
|
|
494
|
+
|
|
495
|
+
class LineSupport(_message.Message):
|
|
496
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "lines", "coordinate_system", "x_axis_rotation", "spring", "rotational_restraint", "spring_x", "spring_y", "spring_z", "rotational_restraint_x", "rotational_restraint_y", "rotational_restraint_z", "spring_x_nonlinearity", "spring_y_nonlinearity", "spring_z_nonlinearity", "rotational_restraint_x_nonlinearity", "rotational_restraint_y_nonlinearity", "rotational_restraint_z_nonlinearity", "comment", "diagram_along_x_end", "diagram_along_x_is_sorted", "diagram_along_x_symmetric", "diagram_along_x_start", "diagram_along_x_table", "diagram_along_y_end", "diagram_along_y_is_sorted", "diagram_along_y_symmetric", "diagram_along_y_start", "diagram_along_y_table", "diagram_along_z_end", "diagram_along_z_is_sorted", "diagram_along_z_symmetric", "diagram_along_z_start", "diagram_along_z_table", "diagram_around_x_end", "diagram_around_x_is_sorted", "diagram_around_x_symmetric", "diagram_around_x_start", "diagram_around_x_table", "diagram_around_y_end", "diagram_around_y_is_sorted", "diagram_around_y_symmetric", "diagram_around_y_start", "diagram_around_y_table", "diagram_around_z_end", "diagram_around_z_is_sorted", "diagram_around_z_symmetric", "diagram_around_z_start", "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", "friction_coefficient_x", "friction_coefficient_y", "friction_coefficient_z", "friction_direction_independent_x", "friction_direction_independent_y", "friction_direction_independent_z", "partial_activity_along_x_negative_displacement", "partial_activity_along_x_negative_force", "partial_activity_along_x_negative_slippage", "partial_activity_along_x_negative_type", "partial_activity_along_x_positive_displacement", "partial_activity_along_x_positive_force", "partial_activity_along_x_positive_slippage", "partial_activity_along_x_positive_type", "partial_activity_along_y_negative_displacement", "partial_activity_along_y_negative_force", "partial_activity_along_y_negative_slippage", "partial_activity_along_y_negative_type", "partial_activity_along_y_positive_displacement", "partial_activity_along_y_positive_force", "partial_activity_along_y_positive_slippage", "partial_activity_along_y_positive_type", "partial_activity_along_z_negative_displacement", "partial_activity_along_z_negative_force", "partial_activity_along_z_negative_slippage", "partial_activity_along_z_negative_type", "partial_activity_along_z_positive_displacement", "partial_activity_along_z_positive_force", "partial_activity_along_z_positive_slippage", "partial_activity_along_z_positive_type", "partial_activity_around_x_negative_moment", "partial_activity_around_x_negative_rotation", "partial_activity_around_x_negative_slippage", "partial_activity_around_x_negative_type", "partial_activity_around_x_positive_moment", "partial_activity_around_x_positive_rotation", "partial_activity_around_x_positive_slippage", "partial_activity_around_x_positive_type", "partial_activity_around_y_negative_moment", "partial_activity_around_y_negative_rotation", "partial_activity_around_y_negative_slippage", "partial_activity_around_y_negative_type", "partial_activity_around_y_positive_moment", "partial_activity_around_y_positive_rotation", "partial_activity_around_y_positive_slippage", "partial_activity_around_y_positive_type", "partial_activity_around_z_negative_moment", "partial_activity_around_z_negative_rotation", "partial_activity_around_z_negative_slippage", "partial_activity_around_z_negative_type", "partial_activity_around_z_positive_moment", "partial_activity_around_z_positive_rotation", "partial_activity_around_z_positive_slippage", "partial_activity_around_z_positive_type", "is_generated", "generating_object_info", "fictitious_wall_enabled", "fictitious_wall_width", "fictitious_wall_height", "fictitious_wall_head_support_type", "fictitious_wall_base_support_type", "fictitious_wall_base_elastic", "fictitious_wall_shear_stiffness", "fictitious_wall_material", "fictitious_wall_spring_x", "fictitious_wall_spring_y", "fictitious_wall_spring_z", "fictitious_wall_rotational_restraint_about_line_axis", "id_for_export_import", "metadata_for_export_import")
|
|
497
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
498
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
499
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
500
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
501
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
502
|
+
X_AXIS_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
503
|
+
SPRING_FIELD_NUMBER: _ClassVar[int]
|
|
504
|
+
ROTATIONAL_RESTRAINT_FIELD_NUMBER: _ClassVar[int]
|
|
505
|
+
SPRING_X_FIELD_NUMBER: _ClassVar[int]
|
|
506
|
+
SPRING_Y_FIELD_NUMBER: _ClassVar[int]
|
|
507
|
+
SPRING_Z_FIELD_NUMBER: _ClassVar[int]
|
|
508
|
+
ROTATIONAL_RESTRAINT_X_FIELD_NUMBER: _ClassVar[int]
|
|
509
|
+
ROTATIONAL_RESTRAINT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
510
|
+
ROTATIONAL_RESTRAINT_Z_FIELD_NUMBER: _ClassVar[int]
|
|
511
|
+
SPRING_X_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
512
|
+
SPRING_Y_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
513
|
+
SPRING_Z_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
514
|
+
ROTATIONAL_RESTRAINT_X_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
515
|
+
ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
516
|
+
ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
|
|
517
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
518
|
+
DIAGRAM_ALONG_X_END_FIELD_NUMBER: _ClassVar[int]
|
|
519
|
+
DIAGRAM_ALONG_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
520
|
+
DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
521
|
+
DIAGRAM_ALONG_X_START_FIELD_NUMBER: _ClassVar[int]
|
|
522
|
+
DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
523
|
+
DIAGRAM_ALONG_Y_END_FIELD_NUMBER: _ClassVar[int]
|
|
524
|
+
DIAGRAM_ALONG_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
525
|
+
DIAGRAM_ALONG_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
526
|
+
DIAGRAM_ALONG_Y_START_FIELD_NUMBER: _ClassVar[int]
|
|
527
|
+
DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
528
|
+
DIAGRAM_ALONG_Z_END_FIELD_NUMBER: _ClassVar[int]
|
|
529
|
+
DIAGRAM_ALONG_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
530
|
+
DIAGRAM_ALONG_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
531
|
+
DIAGRAM_ALONG_Z_START_FIELD_NUMBER: _ClassVar[int]
|
|
532
|
+
DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
533
|
+
DIAGRAM_AROUND_X_END_FIELD_NUMBER: _ClassVar[int]
|
|
534
|
+
DIAGRAM_AROUND_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
535
|
+
DIAGRAM_AROUND_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
536
|
+
DIAGRAM_AROUND_X_START_FIELD_NUMBER: _ClassVar[int]
|
|
537
|
+
DIAGRAM_AROUND_X_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
538
|
+
DIAGRAM_AROUND_Y_END_FIELD_NUMBER: _ClassVar[int]
|
|
539
|
+
DIAGRAM_AROUND_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
540
|
+
DIAGRAM_AROUND_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
541
|
+
DIAGRAM_AROUND_Y_START_FIELD_NUMBER: _ClassVar[int]
|
|
542
|
+
DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
543
|
+
DIAGRAM_AROUND_Z_END_FIELD_NUMBER: _ClassVar[int]
|
|
544
|
+
DIAGRAM_AROUND_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
|
|
545
|
+
DIAGRAM_AROUND_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
|
|
546
|
+
DIAGRAM_AROUND_Z_START_FIELD_NUMBER: _ClassVar[int]
|
|
547
|
+
DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
548
|
+
DIAGRAM_ALONG_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
549
|
+
DIAGRAM_ALONG_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
550
|
+
DIAGRAM_ALONG_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
551
|
+
DIAGRAM_AROUND_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
552
|
+
DIAGRAM_AROUND_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
553
|
+
DIAGRAM_AROUND_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
|
|
554
|
+
DIAGRAM_ALONG_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
555
|
+
DIAGRAM_ALONG_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
556
|
+
DIAGRAM_ALONG_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
557
|
+
DIAGRAM_AROUND_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
558
|
+
DIAGRAM_AROUND_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
559
|
+
DIAGRAM_AROUND_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
|
|
560
|
+
DIAGRAM_ALONG_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
561
|
+
DIAGRAM_ALONG_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
562
|
+
DIAGRAM_ALONG_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
563
|
+
DIAGRAM_AROUND_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
564
|
+
DIAGRAM_AROUND_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
565
|
+
DIAGRAM_AROUND_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
566
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
567
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
568
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
569
|
+
DIAGRAM_AROUND_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
570
|
+
DIAGRAM_AROUND_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
571
|
+
DIAGRAM_AROUND_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
572
|
+
DIAGRAM_ALONG_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
573
|
+
DIAGRAM_ALONG_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
574
|
+
DIAGRAM_ALONG_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
575
|
+
DIAGRAM_AROUND_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
576
|
+
DIAGRAM_AROUND_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
577
|
+
DIAGRAM_AROUND_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
578
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
579
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
580
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
581
|
+
DIAGRAM_AROUND_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
582
|
+
DIAGRAM_AROUND_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
583
|
+
DIAGRAM_AROUND_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
|
|
584
|
+
DIAGRAM_ALONG_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
585
|
+
DIAGRAM_ALONG_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
586
|
+
DIAGRAM_ALONG_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
587
|
+
DIAGRAM_AROUND_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
588
|
+
DIAGRAM_AROUND_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
589
|
+
DIAGRAM_AROUND_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
|
|
590
|
+
DIAGRAM_ALONG_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
591
|
+
DIAGRAM_ALONG_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
592
|
+
DIAGRAM_ALONG_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
593
|
+
DIAGRAM_AROUND_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
594
|
+
DIAGRAM_AROUND_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
595
|
+
DIAGRAM_AROUND_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
596
|
+
FRICTION_COEFFICIENT_X_FIELD_NUMBER: _ClassVar[int]
|
|
597
|
+
FRICTION_COEFFICIENT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
598
|
+
FRICTION_COEFFICIENT_Z_FIELD_NUMBER: _ClassVar[int]
|
|
599
|
+
FRICTION_DIRECTION_INDEPENDENT_X_FIELD_NUMBER: _ClassVar[int]
|
|
600
|
+
FRICTION_DIRECTION_INDEPENDENT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
601
|
+
FRICTION_DIRECTION_INDEPENDENT_Z_FIELD_NUMBER: _ClassVar[int]
|
|
602
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
603
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
604
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
605
|
+
PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
606
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
607
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
608
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
609
|
+
PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
610
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
611
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
612
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
613
|
+
PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
614
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
615
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
616
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
617
|
+
PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
618
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
619
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
620
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
621
|
+
PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
622
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
623
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
|
|
624
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
625
|
+
PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
626
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
627
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
628
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
629
|
+
PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
630
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
631
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
632
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
633
|
+
PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
634
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
635
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
636
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
637
|
+
PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
638
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
639
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
640
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
641
|
+
PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
642
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
643
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
644
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
645
|
+
PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
646
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
|
|
647
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
648
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
|
|
649
|
+
PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
650
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
651
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
652
|
+
FICTITIOUS_WALL_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
653
|
+
FICTITIOUS_WALL_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
654
|
+
FICTITIOUS_WALL_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
655
|
+
FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
656
|
+
FICTITIOUS_WALL_BASE_SUPPORT_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
657
|
+
FICTITIOUS_WALL_BASE_ELASTIC_FIELD_NUMBER: _ClassVar[int]
|
|
658
|
+
FICTITIOUS_WALL_SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
659
|
+
FICTITIOUS_WALL_MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
660
|
+
FICTITIOUS_WALL_SPRING_X_FIELD_NUMBER: _ClassVar[int]
|
|
661
|
+
FICTITIOUS_WALL_SPRING_Y_FIELD_NUMBER: _ClassVar[int]
|
|
662
|
+
FICTITIOUS_WALL_SPRING_Z_FIELD_NUMBER: _ClassVar[int]
|
|
663
|
+
FICTITIOUS_WALL_ROTATIONAL_RESTRAINT_ABOUT_LINE_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
664
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
665
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
666
|
+
no: int
|
|
667
|
+
user_defined_name_enabled: bool
|
|
668
|
+
name: str
|
|
669
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
670
|
+
coordinate_system: LineSupportCoordinateSystem
|
|
671
|
+
x_axis_rotation: float
|
|
672
|
+
spring: _common_pb2.Vector3d
|
|
673
|
+
rotational_restraint: _common_pb2.Vector3d
|
|
674
|
+
spring_x: float
|
|
675
|
+
spring_y: float
|
|
676
|
+
spring_z: float
|
|
677
|
+
rotational_restraint_x: float
|
|
678
|
+
rotational_restraint_y: float
|
|
679
|
+
rotational_restraint_z: float
|
|
680
|
+
spring_x_nonlinearity: LineSupportSpringXNonlinearity
|
|
681
|
+
spring_y_nonlinearity: LineSupportSpringYNonlinearity
|
|
682
|
+
spring_z_nonlinearity: LineSupportSpringZNonlinearity
|
|
683
|
+
rotational_restraint_x_nonlinearity: LineSupportRotationalRestraintXNonlinearity
|
|
684
|
+
rotational_restraint_y_nonlinearity: LineSupportRotationalRestraintYNonlinearity
|
|
685
|
+
rotational_restraint_z_nonlinearity: LineSupportRotationalRestraintZNonlinearity
|
|
686
|
+
comment: str
|
|
687
|
+
diagram_along_x_end: LineSupportDiagramAlongXEnd
|
|
688
|
+
diagram_along_x_is_sorted: bool
|
|
689
|
+
diagram_along_x_symmetric: bool
|
|
690
|
+
diagram_along_x_start: LineSupportDiagramAlongXStart
|
|
691
|
+
diagram_along_x_table: ArrayOfLineSupportDiagramAlongXTable
|
|
692
|
+
diagram_along_y_end: LineSupportDiagramAlongYEnd
|
|
693
|
+
diagram_along_y_is_sorted: bool
|
|
694
|
+
diagram_along_y_symmetric: bool
|
|
695
|
+
diagram_along_y_start: LineSupportDiagramAlongYStart
|
|
696
|
+
diagram_along_y_table: ArrayOfLineSupportDiagramAlongYTable
|
|
697
|
+
diagram_along_z_end: LineSupportDiagramAlongZEnd
|
|
698
|
+
diagram_along_z_is_sorted: bool
|
|
699
|
+
diagram_along_z_symmetric: bool
|
|
700
|
+
diagram_along_z_start: LineSupportDiagramAlongZStart
|
|
701
|
+
diagram_along_z_table: ArrayOfLineSupportDiagramAlongZTable
|
|
702
|
+
diagram_around_x_end: LineSupportDiagramAroundXEnd
|
|
703
|
+
diagram_around_x_is_sorted: bool
|
|
704
|
+
diagram_around_x_symmetric: bool
|
|
705
|
+
diagram_around_x_start: LineSupportDiagramAroundXStart
|
|
706
|
+
diagram_around_x_table: ArrayOfLineSupportDiagramAroundXTable
|
|
707
|
+
diagram_around_y_end: LineSupportDiagramAroundYEnd
|
|
708
|
+
diagram_around_y_is_sorted: bool
|
|
709
|
+
diagram_around_y_symmetric: bool
|
|
710
|
+
diagram_around_y_start: LineSupportDiagramAroundYStart
|
|
711
|
+
diagram_around_y_table: ArrayOfLineSupportDiagramAroundYTable
|
|
712
|
+
diagram_around_z_end: LineSupportDiagramAroundZEnd
|
|
713
|
+
diagram_around_z_is_sorted: bool
|
|
714
|
+
diagram_around_z_symmetric: bool
|
|
715
|
+
diagram_around_z_start: LineSupportDiagramAroundZStart
|
|
716
|
+
diagram_around_z_table: ArrayOfLineSupportDiagramAroundZTable
|
|
717
|
+
diagram_along_x_ac_yield_minus: float
|
|
718
|
+
diagram_along_y_ac_yield_minus: float
|
|
719
|
+
diagram_along_z_ac_yield_minus: float
|
|
720
|
+
diagram_around_x_ac_yield_minus: float
|
|
721
|
+
diagram_around_y_ac_yield_minus: float
|
|
722
|
+
diagram_around_z_ac_yield_minus: float
|
|
723
|
+
diagram_along_x_ac_yield_plus: float
|
|
724
|
+
diagram_along_y_ac_yield_plus: float
|
|
725
|
+
diagram_along_z_ac_yield_plus: float
|
|
726
|
+
diagram_around_x_ac_yield_plus: float
|
|
727
|
+
diagram_around_y_ac_yield_plus: float
|
|
728
|
+
diagram_around_z_ac_yield_plus: float
|
|
729
|
+
diagram_along_x_acceptance_criteria_active: bool
|
|
730
|
+
diagram_along_y_acceptance_criteria_active: bool
|
|
731
|
+
diagram_along_z_acceptance_criteria_active: bool
|
|
732
|
+
diagram_around_x_acceptance_criteria_active: bool
|
|
733
|
+
diagram_around_y_acceptance_criteria_active: bool
|
|
734
|
+
diagram_around_z_acceptance_criteria_active: bool
|
|
735
|
+
diagram_along_x_minus_color_one: _common_pb2.Color
|
|
736
|
+
diagram_along_y_minus_color_one: _common_pb2.Color
|
|
737
|
+
diagram_along_z_minus_color_one: _common_pb2.Color
|
|
738
|
+
diagram_around_x_minus_color_one: _common_pb2.Color
|
|
739
|
+
diagram_around_y_minus_color_one: _common_pb2.Color
|
|
740
|
+
diagram_around_z_minus_color_one: _common_pb2.Color
|
|
741
|
+
diagram_along_x_minus_color_two: _common_pb2.Color
|
|
742
|
+
diagram_along_y_minus_color_two: _common_pb2.Color
|
|
743
|
+
diagram_along_z_minus_color_two: _common_pb2.Color
|
|
744
|
+
diagram_around_x_minus_color_two: _common_pb2.Color
|
|
745
|
+
diagram_around_y_minus_color_two: _common_pb2.Color
|
|
746
|
+
diagram_around_z_minus_color_two: _common_pb2.Color
|
|
747
|
+
diagram_along_x_plus_color_one: _common_pb2.Color
|
|
748
|
+
diagram_along_y_plus_color_one: _common_pb2.Color
|
|
749
|
+
diagram_along_z_plus_color_one: _common_pb2.Color
|
|
750
|
+
diagram_around_x_plus_color_one: _common_pb2.Color
|
|
751
|
+
diagram_around_y_plus_color_one: _common_pb2.Color
|
|
752
|
+
diagram_around_z_plus_color_one: _common_pb2.Color
|
|
753
|
+
diagram_along_x_plus_color_two: _common_pb2.Color
|
|
754
|
+
diagram_along_y_plus_color_two: _common_pb2.Color
|
|
755
|
+
diagram_along_z_plus_color_two: _common_pb2.Color
|
|
756
|
+
diagram_around_x_plus_color_two: _common_pb2.Color
|
|
757
|
+
diagram_around_y_plus_color_two: _common_pb2.Color
|
|
758
|
+
diagram_around_z_plus_color_two: _common_pb2.Color
|
|
759
|
+
diagram_along_x_color_table: ArrayOfLineSupportDiagramAlongXColorTable
|
|
760
|
+
diagram_along_y_color_table: ArrayOfLineSupportDiagramAlongYColorTable
|
|
761
|
+
diagram_along_z_color_table: ArrayOfLineSupportDiagramAlongZColorTable
|
|
762
|
+
diagram_around_x_color_table: ArrayOfLineSupportDiagramAroundXColorTable
|
|
763
|
+
diagram_around_y_color_table: ArrayOfLineSupportDiagramAroundYColorTable
|
|
764
|
+
diagram_around_z_color_table: ArrayOfLineSupportDiagramAroundZColorTable
|
|
765
|
+
friction_coefficient_x: float
|
|
766
|
+
friction_coefficient_y: float
|
|
767
|
+
friction_coefficient_z: float
|
|
768
|
+
friction_direction_independent_x: bool
|
|
769
|
+
friction_direction_independent_y: bool
|
|
770
|
+
friction_direction_independent_z: bool
|
|
771
|
+
partial_activity_along_x_negative_displacement: float
|
|
772
|
+
partial_activity_along_x_negative_force: float
|
|
773
|
+
partial_activity_along_x_negative_slippage: float
|
|
774
|
+
partial_activity_along_x_negative_type: LineSupportPartialActivityAlongXNegativeType
|
|
775
|
+
partial_activity_along_x_positive_displacement: float
|
|
776
|
+
partial_activity_along_x_positive_force: float
|
|
777
|
+
partial_activity_along_x_positive_slippage: float
|
|
778
|
+
partial_activity_along_x_positive_type: LineSupportPartialActivityAlongXPositiveType
|
|
779
|
+
partial_activity_along_y_negative_displacement: float
|
|
780
|
+
partial_activity_along_y_negative_force: float
|
|
781
|
+
partial_activity_along_y_negative_slippage: float
|
|
782
|
+
partial_activity_along_y_negative_type: LineSupportPartialActivityAlongYNegativeType
|
|
783
|
+
partial_activity_along_y_positive_displacement: float
|
|
784
|
+
partial_activity_along_y_positive_force: float
|
|
785
|
+
partial_activity_along_y_positive_slippage: float
|
|
786
|
+
partial_activity_along_y_positive_type: LineSupportPartialActivityAlongYPositiveType
|
|
787
|
+
partial_activity_along_z_negative_displacement: float
|
|
788
|
+
partial_activity_along_z_negative_force: float
|
|
789
|
+
partial_activity_along_z_negative_slippage: float
|
|
790
|
+
partial_activity_along_z_negative_type: LineSupportPartialActivityAlongZNegativeType
|
|
791
|
+
partial_activity_along_z_positive_displacement: float
|
|
792
|
+
partial_activity_along_z_positive_force: float
|
|
793
|
+
partial_activity_along_z_positive_slippage: float
|
|
794
|
+
partial_activity_along_z_positive_type: LineSupportPartialActivityAlongZPositiveType
|
|
795
|
+
partial_activity_around_x_negative_moment: float
|
|
796
|
+
partial_activity_around_x_negative_rotation: float
|
|
797
|
+
partial_activity_around_x_negative_slippage: float
|
|
798
|
+
partial_activity_around_x_negative_type: LineSupportPartialActivityAroundXNegativeType
|
|
799
|
+
partial_activity_around_x_positive_moment: float
|
|
800
|
+
partial_activity_around_x_positive_rotation: float
|
|
801
|
+
partial_activity_around_x_positive_slippage: float
|
|
802
|
+
partial_activity_around_x_positive_type: LineSupportPartialActivityAroundXPositiveType
|
|
803
|
+
partial_activity_around_y_negative_moment: float
|
|
804
|
+
partial_activity_around_y_negative_rotation: float
|
|
805
|
+
partial_activity_around_y_negative_slippage: float
|
|
806
|
+
partial_activity_around_y_negative_type: LineSupportPartialActivityAroundYNegativeType
|
|
807
|
+
partial_activity_around_y_positive_moment: float
|
|
808
|
+
partial_activity_around_y_positive_rotation: float
|
|
809
|
+
partial_activity_around_y_positive_slippage: float
|
|
810
|
+
partial_activity_around_y_positive_type: LineSupportPartialActivityAroundYPositiveType
|
|
811
|
+
partial_activity_around_z_negative_moment: float
|
|
812
|
+
partial_activity_around_z_negative_rotation: float
|
|
813
|
+
partial_activity_around_z_negative_slippage: float
|
|
814
|
+
partial_activity_around_z_negative_type: LineSupportPartialActivityAroundZNegativeType
|
|
815
|
+
partial_activity_around_z_positive_moment: float
|
|
816
|
+
partial_activity_around_z_positive_rotation: float
|
|
817
|
+
partial_activity_around_z_positive_slippage: float
|
|
818
|
+
partial_activity_around_z_positive_type: LineSupportPartialActivityAroundZPositiveType
|
|
819
|
+
is_generated: bool
|
|
820
|
+
generating_object_info: str
|
|
821
|
+
fictitious_wall_enabled: bool
|
|
822
|
+
fictitious_wall_width: float
|
|
823
|
+
fictitious_wall_height: float
|
|
824
|
+
fictitious_wall_head_support_type: LineSupportFictitiousWallHeadSupportType
|
|
825
|
+
fictitious_wall_base_support_type: LineSupportFictitiousWallBaseSupportType
|
|
826
|
+
fictitious_wall_base_elastic: float
|
|
827
|
+
fictitious_wall_shear_stiffness: bool
|
|
828
|
+
fictitious_wall_material: int
|
|
829
|
+
fictitious_wall_spring_x: float
|
|
830
|
+
fictitious_wall_spring_y: float
|
|
831
|
+
fictitious_wall_spring_z: float
|
|
832
|
+
fictitious_wall_rotational_restraint_about_line_axis: float
|
|
833
|
+
id_for_export_import: str
|
|
834
|
+
metadata_for_export_import: str
|
|
835
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., lines: _Optional[_Iterable[int]] = ..., coordinate_system: _Optional[_Union[LineSupportCoordinateSystem, str]] = ..., x_axis_rotation: _Optional[float] = ..., spring: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotational_restraint: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., spring_x: _Optional[float] = ..., spring_y: _Optional[float] = ..., spring_z: _Optional[float] = ..., rotational_restraint_x: _Optional[float] = ..., rotational_restraint_y: _Optional[float] = ..., rotational_restraint_z: _Optional[float] = ..., spring_x_nonlinearity: _Optional[_Union[LineSupportSpringXNonlinearity, str]] = ..., spring_y_nonlinearity: _Optional[_Union[LineSupportSpringYNonlinearity, str]] = ..., spring_z_nonlinearity: _Optional[_Union[LineSupportSpringZNonlinearity, str]] = ..., rotational_restraint_x_nonlinearity: _Optional[_Union[LineSupportRotationalRestraintXNonlinearity, str]] = ..., rotational_restraint_y_nonlinearity: _Optional[_Union[LineSupportRotationalRestraintYNonlinearity, str]] = ..., rotational_restraint_z_nonlinearity: _Optional[_Union[LineSupportRotationalRestraintZNonlinearity, str]] = ..., comment: _Optional[str] = ..., diagram_along_x_end: _Optional[_Union[LineSupportDiagramAlongXEnd, str]] = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_x_symmetric: bool = ..., diagram_along_x_start: _Optional[_Union[LineSupportDiagramAlongXStart, str]] = ..., diagram_along_x_table: _Optional[_Union[ArrayOfLineSupportDiagramAlongXTable, _Mapping]] = ..., diagram_along_y_end: _Optional[_Union[LineSupportDiagramAlongYEnd, str]] = ..., diagram_along_y_is_sorted: bool = ..., diagram_along_y_symmetric: bool = ..., diagram_along_y_start: _Optional[_Union[LineSupportDiagramAlongYStart, str]] = ..., diagram_along_y_table: _Optional[_Union[ArrayOfLineSupportDiagramAlongYTable, _Mapping]] = ..., diagram_along_z_end: _Optional[_Union[LineSupportDiagramAlongZEnd, str]] = ..., diagram_along_z_is_sorted: bool = ..., diagram_along_z_symmetric: bool = ..., diagram_along_z_start: _Optional[_Union[LineSupportDiagramAlongZStart, str]] = ..., diagram_along_z_table: _Optional[_Union[ArrayOfLineSupportDiagramAlongZTable, _Mapping]] = ..., diagram_around_x_end: _Optional[_Union[LineSupportDiagramAroundXEnd, str]] = ..., diagram_around_x_is_sorted: bool = ..., diagram_around_x_symmetric: bool = ..., diagram_around_x_start: _Optional[_Union[LineSupportDiagramAroundXStart, str]] = ..., diagram_around_x_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundXTable, _Mapping]] = ..., diagram_around_y_end: _Optional[_Union[LineSupportDiagramAroundYEnd, str]] = ..., diagram_around_y_is_sorted: bool = ..., diagram_around_y_symmetric: bool = ..., diagram_around_y_start: _Optional[_Union[LineSupportDiagramAroundYStart, str]] = ..., diagram_around_y_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundYTable, _Mapping]] = ..., diagram_around_z_end: _Optional[_Union[LineSupportDiagramAroundZEnd, str]] = ..., diagram_around_z_is_sorted: bool = ..., diagram_around_z_symmetric: bool = ..., diagram_around_z_start: _Optional[_Union[LineSupportDiagramAroundZStart, str]] = ..., diagram_around_z_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundZTable, _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[ArrayOfLineSupportDiagramAlongXColorTable, _Mapping]] = ..., diagram_along_y_color_table: _Optional[_Union[ArrayOfLineSupportDiagramAlongYColorTable, _Mapping]] = ..., diagram_along_z_color_table: _Optional[_Union[ArrayOfLineSupportDiagramAlongZColorTable, _Mapping]] = ..., diagram_around_x_color_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundXColorTable, _Mapping]] = ..., diagram_around_y_color_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundYColorTable, _Mapping]] = ..., diagram_around_z_color_table: _Optional[_Union[ArrayOfLineSupportDiagramAroundZColorTable, _Mapping]] = ..., friction_coefficient_x: _Optional[float] = ..., friction_coefficient_y: _Optional[float] = ..., friction_coefficient_z: _Optional[float] = ..., friction_direction_independent_x: bool = ..., friction_direction_independent_y: bool = ..., friction_direction_independent_z: bool = ..., partial_activity_along_x_negative_displacement: _Optional[float] = ..., partial_activity_along_x_negative_force: _Optional[float] = ..., partial_activity_along_x_negative_slippage: _Optional[float] = ..., partial_activity_along_x_negative_type: _Optional[_Union[LineSupportPartialActivityAlongXNegativeType, str]] = ..., partial_activity_along_x_positive_displacement: _Optional[float] = ..., partial_activity_along_x_positive_force: _Optional[float] = ..., partial_activity_along_x_positive_slippage: _Optional[float] = ..., partial_activity_along_x_positive_type: _Optional[_Union[LineSupportPartialActivityAlongXPositiveType, str]] = ..., partial_activity_along_y_negative_displacement: _Optional[float] = ..., partial_activity_along_y_negative_force: _Optional[float] = ..., partial_activity_along_y_negative_slippage: _Optional[float] = ..., partial_activity_along_y_negative_type: _Optional[_Union[LineSupportPartialActivityAlongYNegativeType, str]] = ..., partial_activity_along_y_positive_displacement: _Optional[float] = ..., partial_activity_along_y_positive_force: _Optional[float] = ..., partial_activity_along_y_positive_slippage: _Optional[float] = ..., partial_activity_along_y_positive_type: _Optional[_Union[LineSupportPartialActivityAlongYPositiveType, str]] = ..., partial_activity_along_z_negative_displacement: _Optional[float] = ..., partial_activity_along_z_negative_force: _Optional[float] = ..., partial_activity_along_z_negative_slippage: _Optional[float] = ..., partial_activity_along_z_negative_type: _Optional[_Union[LineSupportPartialActivityAlongZNegativeType, str]] = ..., partial_activity_along_z_positive_displacement: _Optional[float] = ..., partial_activity_along_z_positive_force: _Optional[float] = ..., partial_activity_along_z_positive_slippage: _Optional[float] = ..., partial_activity_along_z_positive_type: _Optional[_Union[LineSupportPartialActivityAlongZPositiveType, str]] = ..., partial_activity_around_x_negative_moment: _Optional[float] = ..., partial_activity_around_x_negative_rotation: _Optional[float] = ..., partial_activity_around_x_negative_slippage: _Optional[float] = ..., partial_activity_around_x_negative_type: _Optional[_Union[LineSupportPartialActivityAroundXNegativeType, str]] = ..., partial_activity_around_x_positive_moment: _Optional[float] = ..., partial_activity_around_x_positive_rotation: _Optional[float] = ..., partial_activity_around_x_positive_slippage: _Optional[float] = ..., partial_activity_around_x_positive_type: _Optional[_Union[LineSupportPartialActivityAroundXPositiveType, str]] = ..., partial_activity_around_y_negative_moment: _Optional[float] = ..., partial_activity_around_y_negative_rotation: _Optional[float] = ..., partial_activity_around_y_negative_slippage: _Optional[float] = ..., partial_activity_around_y_negative_type: _Optional[_Union[LineSupportPartialActivityAroundYNegativeType, str]] = ..., partial_activity_around_y_positive_moment: _Optional[float] = ..., partial_activity_around_y_positive_rotation: _Optional[float] = ..., partial_activity_around_y_positive_slippage: _Optional[float] = ..., partial_activity_around_y_positive_type: _Optional[_Union[LineSupportPartialActivityAroundYPositiveType, str]] = ..., partial_activity_around_z_negative_moment: _Optional[float] = ..., partial_activity_around_z_negative_rotation: _Optional[float] = ..., partial_activity_around_z_negative_slippage: _Optional[float] = ..., partial_activity_around_z_negative_type: _Optional[_Union[LineSupportPartialActivityAroundZNegativeType, str]] = ..., partial_activity_around_z_positive_moment: _Optional[float] = ..., partial_activity_around_z_positive_rotation: _Optional[float] = ..., partial_activity_around_z_positive_slippage: _Optional[float] = ..., partial_activity_around_z_positive_type: _Optional[_Union[LineSupportPartialActivityAroundZPositiveType, str]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., fictitious_wall_enabled: bool = ..., fictitious_wall_width: _Optional[float] = ..., fictitious_wall_height: _Optional[float] = ..., fictitious_wall_head_support_type: _Optional[_Union[LineSupportFictitiousWallHeadSupportType, str]] = ..., fictitious_wall_base_support_type: _Optional[_Union[LineSupportFictitiousWallBaseSupportType, str]] = ..., fictitious_wall_base_elastic: _Optional[float] = ..., fictitious_wall_shear_stiffness: bool = ..., fictitious_wall_material: _Optional[int] = ..., fictitious_wall_spring_x: _Optional[float] = ..., fictitious_wall_spring_y: _Optional[float] = ..., fictitious_wall_spring_z: _Optional[float] = ..., fictitious_wall_rotational_restraint_about_line_axis: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
836
|
+
|
|
837
|
+
class ArrayOfLineSupportDiagramAlongXTable(_message.Message):
|
|
838
|
+
__slots__ = ()
|
|
839
|
+
def __init__(self) -> None: ...
|
|
840
|
+
|
|
841
|
+
class ArrayOfLineSupportDiagramAlongYTable(_message.Message):
|
|
842
|
+
__slots__ = ()
|
|
843
|
+
def __init__(self) -> None: ...
|
|
844
|
+
|
|
845
|
+
class ArrayOfLineSupportDiagramAlongZTable(_message.Message):
|
|
846
|
+
__slots__ = ()
|
|
847
|
+
def __init__(self) -> None: ...
|
|
848
|
+
|
|
849
|
+
class ArrayOfLineSupportDiagramAroundXTable(_message.Message):
|
|
850
|
+
__slots__ = ()
|
|
851
|
+
def __init__(self) -> None: ...
|
|
852
|
+
|
|
853
|
+
class ArrayOfLineSupportDiagramAroundYTable(_message.Message):
|
|
854
|
+
__slots__ = ()
|
|
855
|
+
def __init__(self) -> None: ...
|
|
856
|
+
|
|
857
|
+
class ArrayOfLineSupportDiagramAroundZTable(_message.Message):
|
|
858
|
+
__slots__ = ()
|
|
859
|
+
def __init__(self) -> None: ...
|
|
860
|
+
|
|
861
|
+
class ArrayOfLineSupportDiagramAlongXColorTable(_message.Message):
|
|
862
|
+
__slots__ = ()
|
|
863
|
+
def __init__(self) -> None: ...
|
|
864
|
+
|
|
865
|
+
class ArrayOfLineSupportDiagramAlongYColorTable(_message.Message):
|
|
866
|
+
__slots__ = ()
|
|
867
|
+
def __init__(self) -> None: ...
|
|
868
|
+
|
|
869
|
+
class ArrayOfLineSupportDiagramAlongZColorTable(_message.Message):
|
|
870
|
+
__slots__ = ()
|
|
871
|
+
def __init__(self) -> None: ...
|
|
872
|
+
|
|
873
|
+
class ArrayOfLineSupportDiagramAroundXColorTable(_message.Message):
|
|
874
|
+
__slots__ = ()
|
|
875
|
+
def __init__(self) -> None: ...
|
|
876
|
+
|
|
877
|
+
class ArrayOfLineSupportDiagramAroundYColorTable(_message.Message):
|
|
878
|
+
__slots__ = ()
|
|
879
|
+
def __init__(self) -> None: ...
|
|
880
|
+
|
|
881
|
+
class ArrayOfLineSupportDiagramAroundZColorTable(_message.Message):
|
|
882
|
+
__slots__ = ()
|
|
883
|
+
def __init__(self) -> None: ...
|