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.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. 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: ...