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,1202 @@
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 NodalSupportSpecificDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: _ClassVar[NodalSupportSpecificDirectionType]
13
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: _ClassVar[NodalSupportSpecificDirectionType]
14
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: _ClassVar[NodalSupportSpecificDirectionType]
15
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: _ClassVar[NodalSupportSpecificDirectionType]
16
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: _ClassVar[NodalSupportSpecificDirectionType]
17
+
18
+ class NodalSupportSpringXNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportSpringXNonlinearity]
21
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportSpringXNonlinearity]
22
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportSpringXNonlinearity]
23
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportSpringXNonlinearity]
24
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportSpringXNonlinearity]
25
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportSpringXNonlinearity]
26
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportSpringXNonlinearity]
27
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportSpringXNonlinearity]
28
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportSpringXNonlinearity]
29
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportSpringXNonlinearity]
30
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportSpringXNonlinearity]
31
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportSpringXNonlinearity]
32
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportSpringXNonlinearity]
33
+
34
+ class NodalSupportSpringYNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportSpringYNonlinearity]
37
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportSpringYNonlinearity]
38
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportSpringYNonlinearity]
39
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportSpringYNonlinearity]
40
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportSpringYNonlinearity]
41
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportSpringYNonlinearity]
42
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportSpringYNonlinearity]
43
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportSpringYNonlinearity]
44
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportSpringYNonlinearity]
45
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportSpringYNonlinearity]
46
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportSpringYNonlinearity]
47
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportSpringYNonlinearity]
48
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportSpringYNonlinearity]
49
+
50
+ class NodalSupportSpringZNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
51
+ __slots__ = ()
52
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportSpringZNonlinearity]
53
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportSpringZNonlinearity]
54
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportSpringZNonlinearity]
55
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportSpringZNonlinearity]
56
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportSpringZNonlinearity]
57
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportSpringZNonlinearity]
58
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportSpringZNonlinearity]
59
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportSpringZNonlinearity]
60
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportSpringZNonlinearity]
61
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportSpringZNonlinearity]
62
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportSpringZNonlinearity]
63
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportSpringZNonlinearity]
64
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportSpringZNonlinearity]
65
+
66
+ class NodalSupportRotationalRestraintXNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
67
+ __slots__ = ()
68
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
69
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
70
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
71
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
72
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
73
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
74
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
75
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
76
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
77
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
78
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
79
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
80
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintXNonlinearity]
81
+
82
+ class NodalSupportRotationalRestraintYNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
83
+ __slots__ = ()
84
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
85
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
86
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
87
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
88
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
89
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
90
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
91
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
92
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
93
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
94
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
95
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
96
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintYNonlinearity]
97
+
98
+ class NodalSupportRotationalRestraintZNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
99
+ __slots__ = ()
100
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
101
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
102
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
103
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
104
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
105
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
106
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
107
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
108
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
109
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
110
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
111
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
112
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: _ClassVar[NodalSupportRotationalRestraintZNonlinearity]
113
+
114
+ class NodalSupportAxesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
115
+ __slots__ = ()
116
+ NODAL_SUPPORT_AXES_SEQUENCE_XYZ: _ClassVar[NodalSupportAxesSequence]
117
+ NODAL_SUPPORT_AXES_SEQUENCE_XZY: _ClassVar[NodalSupportAxesSequence]
118
+ NODAL_SUPPORT_AXES_SEQUENCE_YXZ: _ClassVar[NodalSupportAxesSequence]
119
+ NODAL_SUPPORT_AXES_SEQUENCE_YZX: _ClassVar[NodalSupportAxesSequence]
120
+ NODAL_SUPPORT_AXES_SEQUENCE_ZXY: _ClassVar[NodalSupportAxesSequence]
121
+ NODAL_SUPPORT_AXES_SEQUENCE_ZYX: _ClassVar[NodalSupportAxesSequence]
122
+
123
+ class NodalSupportColumnBaseSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
124
+ __slots__ = ()
125
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_HINGED: _ClassVar[NodalSupportColumnBaseSupportType]
126
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_RIGID: _ClassVar[NodalSupportColumnBaseSupportType]
127
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_SEMI_RIGID: _ClassVar[NodalSupportColumnBaseSupportType]
128
+
129
+ class NodalSupportColumnHeadSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
130
+ __slots__ = ()
131
+ NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_HINGED: _ClassVar[NodalSupportColumnHeadSupportType]
132
+ NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_RIGID: _ClassVar[NodalSupportColumnHeadSupportType]
133
+
134
+ class NodalSupportColumnHeadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
135
+ __slots__ = ()
136
+ NODAL_SUPPORT_COLUMN_HEAD_TYPE_RECTANGULAR: _ClassVar[NodalSupportColumnHeadType]
137
+ NODAL_SUPPORT_COLUMN_HEAD_TYPE_CIRCULAR: _ClassVar[NodalSupportColumnHeadType]
138
+
139
+ class NodalSupportColumnSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
140
+ __slots__ = ()
141
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_SURFACE_FOUNDATIONS: _ClassVar[NodalSupportColumnSupportType]
142
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_NODAL_SUPPORT: _ClassVar[NodalSupportColumnSupportType]
143
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_WITH_ADAPTED_FE_MESH: _ClassVar[NodalSupportColumnSupportType]
144
+
145
+ class NodalSupportDiagramAlongXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
146
+ __slots__ = ()
147
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongXStart]
148
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongXStart]
149
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongXStart]
150
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongXStart]
151
+
152
+ class NodalSupportDiagramAlongXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
153
+ __slots__ = ()
154
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongXEnd]
155
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongXEnd]
156
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongXEnd]
157
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongXEnd]
158
+
159
+ class NodalSupportDiagramAlongYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
160
+ __slots__ = ()
161
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongYStart]
162
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongYStart]
163
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongYStart]
164
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongYStart]
165
+
166
+ class NodalSupportDiagramAlongYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
167
+ __slots__ = ()
168
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongYEnd]
169
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongYEnd]
170
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongYEnd]
171
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongYEnd]
172
+
173
+ class NodalSupportDiagramAlongZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
174
+ __slots__ = ()
175
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongZStart]
176
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongZStart]
177
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongZStart]
178
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongZStart]
179
+
180
+ class NodalSupportDiagramAlongZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
181
+ __slots__ = ()
182
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAlongZEnd]
183
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAlongZEnd]
184
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAlongZEnd]
185
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAlongZEnd]
186
+
187
+ class NodalSupportDiagramAroundXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
188
+ __slots__ = ()
189
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundXStart]
190
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundXStart]
191
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundXStart]
192
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundXStart]
193
+
194
+ class NodalSupportDiagramAroundXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
195
+ __slots__ = ()
196
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundXEnd]
197
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundXEnd]
198
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundXEnd]
199
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundXEnd]
200
+
201
+ class NodalSupportDiagramAroundYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
202
+ __slots__ = ()
203
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundYStart]
204
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundYStart]
205
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundYStart]
206
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundYStart]
207
+
208
+ class NodalSupportDiagramAroundYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
209
+ __slots__ = ()
210
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundYEnd]
211
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundYEnd]
212
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundYEnd]
213
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundYEnd]
214
+
215
+ class NodalSupportDiagramAroundZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
216
+ __slots__ = ()
217
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundZStart]
218
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundZStart]
219
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundZStart]
220
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundZStart]
221
+
222
+ class NodalSupportDiagramAroundZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
223
+ __slots__ = ()
224
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportDiagramAroundZEnd]
225
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportDiagramAroundZEnd]
226
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: _ClassVar[NodalSupportDiagramAroundZEnd]
227
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportDiagramAroundZEnd]
228
+
229
+ class NodalSupportDirectedToNodeFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
230
+ __slots__ = ()
231
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_X: _ClassVar[NodalSupportDirectedToNodeFirstAxis]
232
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Y: _ClassVar[NodalSupportDirectedToNodeFirstAxis]
233
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Z: _ClassVar[NodalSupportDirectedToNodeFirstAxis]
234
+
235
+ class NodalSupportDirectedToNodeSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
236
+ __slots__ = ()
237
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_X: _ClassVar[NodalSupportDirectedToNodeSecondAxis]
238
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Y: _ClassVar[NodalSupportDirectedToNodeSecondAxis]
239
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Z: _ClassVar[NodalSupportDirectedToNodeSecondAxis]
240
+
241
+ class NodalSupportParallelToTwoNodesFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
242
+ __slots__ = ()
243
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: _ClassVar[NodalSupportParallelToTwoNodesFirstAxis]
244
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: _ClassVar[NodalSupportParallelToTwoNodesFirstAxis]
245
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: _ClassVar[NodalSupportParallelToTwoNodesFirstAxis]
246
+
247
+ class NodalSupportParallelToTwoNodesSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
248
+ __slots__ = ()
249
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: _ClassVar[NodalSupportParallelToTwoNodesSecondAxis]
250
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: _ClassVar[NodalSupportParallelToTwoNodesSecondAxis]
251
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: _ClassVar[NodalSupportParallelToTwoNodesSecondAxis]
252
+
253
+ class NodalSupportPartialActivityAlongXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
254
+ __slots__ = ()
255
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongXNegativeType]
256
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongXNegativeType]
257
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongXNegativeType]
258
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongXNegativeType]
259
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongXNegativeType]
260
+
261
+ class NodalSupportPartialActivityAlongXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
262
+ __slots__ = ()
263
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongXPositiveType]
264
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongXPositiveType]
265
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongXPositiveType]
266
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongXPositiveType]
267
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongXPositiveType]
268
+
269
+ class NodalSupportPartialActivityAlongYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
270
+ __slots__ = ()
271
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongYNegativeType]
272
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongYNegativeType]
273
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongYNegativeType]
274
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongYNegativeType]
275
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongYNegativeType]
276
+
277
+ class NodalSupportPartialActivityAlongYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
278
+ __slots__ = ()
279
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongYPositiveType]
280
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongYPositiveType]
281
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongYPositiveType]
282
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongYPositiveType]
283
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongYPositiveType]
284
+
285
+ class NodalSupportPartialActivityAlongZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
286
+ __slots__ = ()
287
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongZNegativeType]
288
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongZNegativeType]
289
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongZNegativeType]
290
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongZNegativeType]
291
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongZNegativeType]
292
+
293
+ class NodalSupportPartialActivityAlongZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
294
+ __slots__ = ()
295
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAlongZPositiveType]
296
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAlongZPositiveType]
297
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongZPositiveType]
298
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAlongZPositiveType]
299
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: _ClassVar[NodalSupportPartialActivityAlongZPositiveType]
300
+
301
+ class NodalSupportPartialActivityAroundXNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
302
+ __slots__ = ()
303
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundXNegativeType]
304
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundXNegativeType]
305
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundXNegativeType]
306
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundXNegativeType]
307
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundXNegativeType]
308
+
309
+ class NodalSupportPartialActivityAroundXPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
310
+ __slots__ = ()
311
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundXPositiveType]
312
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundXPositiveType]
313
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundXPositiveType]
314
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundXPositiveType]
315
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundXPositiveType]
316
+
317
+ class NodalSupportPartialActivityAroundYNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
318
+ __slots__ = ()
319
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundYNegativeType]
320
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundYNegativeType]
321
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundYNegativeType]
322
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundYNegativeType]
323
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundYNegativeType]
324
+
325
+ class NodalSupportPartialActivityAroundYPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
326
+ __slots__ = ()
327
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundYPositiveType]
328
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundYPositiveType]
329
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundYPositiveType]
330
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundYPositiveType]
331
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundYPositiveType]
332
+
333
+ class NodalSupportPartialActivityAroundZNegativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
334
+ __slots__ = ()
335
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundZNegativeType]
336
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundZNegativeType]
337
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundZNegativeType]
338
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundZNegativeType]
339
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundZNegativeType]
340
+
341
+ class NodalSupportPartialActivityAroundZPositiveType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
342
+ __slots__ = ()
343
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: _ClassVar[NodalSupportPartialActivityAroundZPositiveType]
344
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: _ClassVar[NodalSupportPartialActivityAroundZPositiveType]
345
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundZPositiveType]
346
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: _ClassVar[NodalSupportPartialActivityAroundZPositiveType]
347
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: _ClassVar[NodalSupportPartialActivityAroundZPositiveType]
348
+
349
+ class NodalSupportStiffnessDiagramAroundXDependsOn(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
350
+ __slots__ = ()
351
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: _ClassVar[NodalSupportStiffnessDiagramAroundXDependsOn]
352
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: _ClassVar[NodalSupportStiffnessDiagramAroundXDependsOn]
353
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: _ClassVar[NodalSupportStiffnessDiagramAroundXDependsOn]
354
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: _ClassVar[NodalSupportStiffnessDiagramAroundXDependsOn]
355
+
356
+ class NodalSupportStiffnessDiagramAroundXEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
357
+ __slots__ = ()
358
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundXEnd]
359
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundXEnd]
360
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundXEnd]
361
+
362
+ class NodalSupportStiffnessDiagramAroundXStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
363
+ __slots__ = ()
364
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundXStart]
365
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundXStart]
366
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundXStart]
367
+
368
+ class NodalSupportStiffnessDiagramAroundYDependsOn(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
369
+ __slots__ = ()
370
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: _ClassVar[NodalSupportStiffnessDiagramAroundYDependsOn]
371
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: _ClassVar[NodalSupportStiffnessDiagramAroundYDependsOn]
372
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: _ClassVar[NodalSupportStiffnessDiagramAroundYDependsOn]
373
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: _ClassVar[NodalSupportStiffnessDiagramAroundYDependsOn]
374
+
375
+ class NodalSupportStiffnessDiagramAroundYEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
376
+ __slots__ = ()
377
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundYEnd]
378
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundYEnd]
379
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundYEnd]
380
+
381
+ class NodalSupportStiffnessDiagramAroundYStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
382
+ __slots__ = ()
383
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundYStart]
384
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundYStart]
385
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundYStart]
386
+
387
+ class NodalSupportStiffnessDiagramAroundZDependsOn(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
388
+ __slots__ = ()
389
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: _ClassVar[NodalSupportStiffnessDiagramAroundZDependsOn]
390
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: _ClassVar[NodalSupportStiffnessDiagramAroundZDependsOn]
391
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: _ClassVar[NodalSupportStiffnessDiagramAroundZDependsOn]
392
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: _ClassVar[NodalSupportStiffnessDiagramAroundZDependsOn]
393
+
394
+ class NodalSupportStiffnessDiagramAroundZEnd(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
395
+ __slots__ = ()
396
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundZEnd]
397
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundZEnd]
398
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundZEnd]
399
+
400
+ class NodalSupportStiffnessDiagramAroundZStart(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
401
+ __slots__ = ()
402
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: _ClassVar[NodalSupportStiffnessDiagramAroundZStart]
403
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: _ClassVar[NodalSupportStiffnessDiagramAroundZStart]
404
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: _ClassVar[NodalSupportStiffnessDiagramAroundZStart]
405
+
406
+ class NodalSupportSupportDimensionTypeOnX(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
407
+ __slots__ = ()
408
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_RECTANGULAR: _ClassVar[NodalSupportSupportDimensionTypeOnX]
409
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_CIRCULAR: _ClassVar[NodalSupportSupportDimensionTypeOnX]
410
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_NONE: _ClassVar[NodalSupportSupportDimensionTypeOnX]
411
+
412
+ class NodalSupportSupportDimensionTypeOnY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
413
+ __slots__ = ()
414
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_RECTANGULAR: _ClassVar[NodalSupportSupportDimensionTypeOnY]
415
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_CIRCULAR: _ClassVar[NodalSupportSupportDimensionTypeOnY]
416
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_NONE: _ClassVar[NodalSupportSupportDimensionTypeOnY]
417
+
418
+ class NodalSupportSupportDimensionTypeOnZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
419
+ __slots__ = ()
420
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_RECTANGULAR: _ClassVar[NodalSupportSupportDimensionTypeOnZ]
421
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_CIRCULAR: _ClassVar[NodalSupportSupportDimensionTypeOnZ]
422
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_NONE: _ClassVar[NodalSupportSupportDimensionTypeOnZ]
423
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: NodalSupportSpecificDirectionType
424
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: NodalSupportSpecificDirectionType
425
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: NodalSupportSpecificDirectionType
426
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: NodalSupportSpecificDirectionType
427
+ NODAL_SUPPORT_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: NodalSupportSpecificDirectionType
428
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE: NodalSupportSpringXNonlinearity
429
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM: NodalSupportSpringXNonlinearity
430
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportSpringXNonlinearity
431
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportSpringXNonlinearity
432
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportSpringXNonlinearity
433
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportSpringXNonlinearity
434
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportSpringXNonlinearity
435
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportSpringXNonlinearity
436
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportSpringXNonlinearity
437
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportSpringXNonlinearity
438
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportSpringXNonlinearity
439
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportSpringXNonlinearity
440
+ NODAL_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportSpringXNonlinearity
441
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE: NodalSupportSpringYNonlinearity
442
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM: NodalSupportSpringYNonlinearity
443
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportSpringYNonlinearity
444
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportSpringYNonlinearity
445
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportSpringYNonlinearity
446
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportSpringYNonlinearity
447
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportSpringYNonlinearity
448
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportSpringYNonlinearity
449
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportSpringYNonlinearity
450
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportSpringYNonlinearity
451
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportSpringYNonlinearity
452
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportSpringYNonlinearity
453
+ NODAL_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportSpringYNonlinearity
454
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE: NodalSupportSpringZNonlinearity
455
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM: NodalSupportSpringZNonlinearity
456
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportSpringZNonlinearity
457
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportSpringZNonlinearity
458
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportSpringZNonlinearity
459
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportSpringZNonlinearity
460
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportSpringZNonlinearity
461
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportSpringZNonlinearity
462
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportSpringZNonlinearity
463
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportSpringZNonlinearity
464
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportSpringZNonlinearity
465
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportSpringZNonlinearity
466
+ NODAL_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportSpringZNonlinearity
467
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE: NodalSupportRotationalRestraintXNonlinearity
468
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM: NodalSupportRotationalRestraintXNonlinearity
469
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportRotationalRestraintXNonlinearity
470
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportRotationalRestraintXNonlinearity
471
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportRotationalRestraintXNonlinearity
472
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportRotationalRestraintXNonlinearity
473
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportRotationalRestraintXNonlinearity
474
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportRotationalRestraintXNonlinearity
475
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportRotationalRestraintXNonlinearity
476
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportRotationalRestraintXNonlinearity
477
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportRotationalRestraintXNonlinearity
478
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportRotationalRestraintXNonlinearity
479
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportRotationalRestraintXNonlinearity
480
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE: NodalSupportRotationalRestraintYNonlinearity
481
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM: NodalSupportRotationalRestraintYNonlinearity
482
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportRotationalRestraintYNonlinearity
483
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportRotationalRestraintYNonlinearity
484
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportRotationalRestraintYNonlinearity
485
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportRotationalRestraintYNonlinearity
486
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportRotationalRestraintYNonlinearity
487
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportRotationalRestraintYNonlinearity
488
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportRotationalRestraintYNonlinearity
489
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportRotationalRestraintYNonlinearity
490
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportRotationalRestraintYNonlinearity
491
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportRotationalRestraintYNonlinearity
492
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportRotationalRestraintYNonlinearity
493
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE: NodalSupportRotationalRestraintZNonlinearity
494
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM: NodalSupportRotationalRestraintZNonlinearity
495
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE: NodalSupportRotationalRestraintZNonlinearity
496
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE: NodalSupportRotationalRestraintZNonlinearity
497
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE: NodalSupportRotationalRestraintZNonlinearity
498
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE: NodalSupportRotationalRestraintZNonlinearity
499
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM: NodalSupportRotationalRestraintZNonlinearity
500
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1: NodalSupportRotationalRestraintZNonlinearity
501
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2: NodalSupportRotationalRestraintZNonlinearity
502
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2: NodalSupportRotationalRestraintZNonlinearity
503
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2: NodalSupportRotationalRestraintZNonlinearity
504
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY: NodalSupportRotationalRestraintZNonlinearity
505
+ NODAL_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM: NodalSupportRotationalRestraintZNonlinearity
506
+ NODAL_SUPPORT_AXES_SEQUENCE_XYZ: NodalSupportAxesSequence
507
+ NODAL_SUPPORT_AXES_SEQUENCE_XZY: NodalSupportAxesSequence
508
+ NODAL_SUPPORT_AXES_SEQUENCE_YXZ: NodalSupportAxesSequence
509
+ NODAL_SUPPORT_AXES_SEQUENCE_YZX: NodalSupportAxesSequence
510
+ NODAL_SUPPORT_AXES_SEQUENCE_ZXY: NodalSupportAxesSequence
511
+ NODAL_SUPPORT_AXES_SEQUENCE_ZYX: NodalSupportAxesSequence
512
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_HINGED: NodalSupportColumnBaseSupportType
513
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_RIGID: NodalSupportColumnBaseSupportType
514
+ NODAL_SUPPORT_COLUMN_BASE_SUPPORT_TYPE_SEMI_RIGID: NodalSupportColumnBaseSupportType
515
+ NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_HINGED: NodalSupportColumnHeadSupportType
516
+ NODAL_SUPPORT_COLUMN_HEAD_SUPPORT_TYPE_RIGID: NodalSupportColumnHeadSupportType
517
+ NODAL_SUPPORT_COLUMN_HEAD_TYPE_RECTANGULAR: NodalSupportColumnHeadType
518
+ NODAL_SUPPORT_COLUMN_HEAD_TYPE_CIRCULAR: NodalSupportColumnHeadType
519
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_SURFACE_FOUNDATIONS: NodalSupportColumnSupportType
520
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_ELASTIC_NODAL_SUPPORT: NodalSupportColumnSupportType
521
+ NODAL_SUPPORT_COLUMN_SUPPORT_TYPE_WITH_ADAPTED_FE_MESH: NodalSupportColumnSupportType
522
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongXStart
523
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongXStart
524
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongXStart
525
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongXStart
526
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongXEnd
527
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongXEnd
528
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongXEnd
529
+ NODAL_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongXEnd
530
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongYStart
531
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongYStart
532
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongYStart
533
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongYStart
534
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongYEnd
535
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongYEnd
536
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongYEnd
537
+ NODAL_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongYEnd
538
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongZStart
539
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongZStart
540
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongZStart
541
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongZStart
542
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAlongZEnd
543
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAlongZEnd
544
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAlongZEnd
545
+ NODAL_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAlongZEnd
546
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundXStart
547
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundXStart
548
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundXStart
549
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundXStart
550
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundXEnd
551
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundXEnd
552
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundXEnd
553
+ NODAL_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundXEnd
554
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundYStart
555
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundYStart
556
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundYStart
557
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundYStart
558
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundYEnd
559
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundYEnd
560
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundYEnd
561
+ NODAL_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundYEnd
562
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundZStart
563
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundZStart
564
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundZStart
565
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundZStart
566
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportDiagramAroundZEnd
567
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportDiagramAroundZEnd
568
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP: NodalSupportDiagramAroundZEnd
569
+ NODAL_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportDiagramAroundZEnd
570
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_X: NodalSupportDirectedToNodeFirstAxis
571
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Y: NodalSupportDirectedToNodeFirstAxis
572
+ NODAL_SUPPORT_DIRECTED_TO_NODE_FIRST_AXIS_Z: NodalSupportDirectedToNodeFirstAxis
573
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_X: NodalSupportDirectedToNodeSecondAxis
574
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Y: NodalSupportDirectedToNodeSecondAxis
575
+ NODAL_SUPPORT_DIRECTED_TO_NODE_SECOND_AXIS_Z: NodalSupportDirectedToNodeSecondAxis
576
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: NodalSupportParallelToTwoNodesFirstAxis
577
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: NodalSupportParallelToTwoNodesFirstAxis
578
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: NodalSupportParallelToTwoNodesFirstAxis
579
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: NodalSupportParallelToTwoNodesSecondAxis
580
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: NodalSupportParallelToTwoNodesSecondAxis
581
+ NODAL_SUPPORT_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: NodalSupportParallelToTwoNodesSecondAxis
582
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongXNegativeType
583
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongXNegativeType
584
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongXNegativeType
585
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongXNegativeType
586
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongXNegativeType
587
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongXPositiveType
588
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongXPositiveType
589
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongXPositiveType
590
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongXPositiveType
591
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongXPositiveType
592
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongYNegativeType
593
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongYNegativeType
594
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongYNegativeType
595
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongYNegativeType
596
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongYNegativeType
597
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongYPositiveType
598
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongYPositiveType
599
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongYPositiveType
600
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongYPositiveType
601
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongYPositiveType
602
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongZNegativeType
603
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongZNegativeType
604
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongZNegativeType
605
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongZNegativeType
606
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongZNegativeType
607
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAlongZPositiveType
608
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAlongZPositiveType
609
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE: NodalSupportPartialActivityAlongZPositiveType
610
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAlongZPositiveType
611
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE: NodalSupportPartialActivityAlongZPositiveType
612
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundXNegativeType
613
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundXNegativeType
614
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundXNegativeType
615
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundXNegativeType
616
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundXNegativeType
617
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundXPositiveType
618
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundXPositiveType
619
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundXPositiveType
620
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundXPositiveType
621
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundXPositiveType
622
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundYNegativeType
623
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundYNegativeType
624
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundYNegativeType
625
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundYNegativeType
626
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundYNegativeType
627
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundYPositiveType
628
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundYPositiveType
629
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundYPositiveType
630
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundYPositiveType
631
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundYPositiveType
632
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundZNegativeType
633
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundZNegativeType
634
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundZNegativeType
635
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundZNegativeType
636
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundZNegativeType
637
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE: NodalSupportPartialActivityAroundZPositiveType
638
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE: NodalSupportPartialActivityAroundZPositiveType
639
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT: NodalSupportPartialActivityAroundZPositiveType
640
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED: NodalSupportPartialActivityAroundZPositiveType
641
+ NODAL_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT: NodalSupportPartialActivityAroundZPositiveType
642
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: NodalSupportStiffnessDiagramAroundXDependsOn
643
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: NodalSupportStiffnessDiagramAroundXDependsOn
644
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: NodalSupportStiffnessDiagramAroundXDependsOn
645
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: NodalSupportStiffnessDiagramAroundXDependsOn
646
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundXEnd
647
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundXEnd
648
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundXEnd
649
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundXStart
650
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundXStart
651
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_X_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundXStart
652
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: NodalSupportStiffnessDiagramAroundYDependsOn
653
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: NodalSupportStiffnessDiagramAroundYDependsOn
654
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: NodalSupportStiffnessDiagramAroundYDependsOn
655
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: NodalSupportStiffnessDiagramAroundYDependsOn
656
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundYEnd
657
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundYEnd
658
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundYEnd
659
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundYStart
660
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundYStart
661
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Y_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundYStart
662
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PX: NodalSupportStiffnessDiagramAroundZDependsOn
663
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_P: NodalSupportStiffnessDiagramAroundZDependsOn
664
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PY: NodalSupportStiffnessDiagramAroundZDependsOn
665
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_STIFFNESS_DIAGRAM_DEPENDS_ON_PZ: NodalSupportStiffnessDiagramAroundZDependsOn
666
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundZEnd
667
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundZEnd
668
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_END_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundZEnd
669
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_FAILURE: NodalSupportStiffnessDiagramAroundZStart
670
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_CONTINUOUS: NodalSupportStiffnessDiagramAroundZStart
671
+ NODAL_SUPPORT_STIFFNESS_DIAGRAM_AROUND_Z_START_STIFFNESS_DIAGRAM_ENDING_TYPE_YIELDING: NodalSupportStiffnessDiagramAroundZStart
672
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_RECTANGULAR: NodalSupportSupportDimensionTypeOnX
673
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_CIRCULAR: NodalSupportSupportDimensionTypeOnX
674
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_X_NONE: NodalSupportSupportDimensionTypeOnX
675
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_RECTANGULAR: NodalSupportSupportDimensionTypeOnY
676
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_CIRCULAR: NodalSupportSupportDimensionTypeOnY
677
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Y_NONE: NodalSupportSupportDimensionTypeOnY
678
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_RECTANGULAR: NodalSupportSupportDimensionTypeOnZ
679
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_CIRCULAR: NodalSupportSupportDimensionTypeOnZ
680
+ NODAL_SUPPORT_SUPPORT_DIMENSION_TYPE_ON_Z_NONE: NodalSupportSupportDimensionTypeOnZ
681
+
682
+ class NodalSupport(_message.Message):
683
+ __slots__ = ("no", "user_defined_name_enabled", "name", "fictitious_column_enabled", "specific_direction_enabled", "specific_direction_type", "nodes", "spring", "spring_x", "spring_y", "spring_z", "rotational_restraint", "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", "axes_sequence", "column_base_semi_rigid", "column_base_support_type", "column_head_support_type", "column_head_type", "column_height", "column_section_same_as_head", "column_material", "column_rotation", "column_rotational_restraint_x", "column_rotational_restraint_y", "column_section", "column_shear_stiffness", "column_spring_x", "column_spring_y", "column_spring_z", "column_support_type", "column_width_x", "column_width_y", "comment", "coordinate_system", "diagram_along_x_symmetric", "diagram_along_x_start", "diagram_along_x_end", "diagram_along_x_table", "diagram_along_x_is_sorted", "diagram_along_y_symmetric", "diagram_along_y_start", "diagram_along_y_end", "diagram_along_y_table", "diagram_along_y_is_sorted", "diagram_along_z_symmetric", "diagram_along_z_start", "diagram_along_z_end", "diagram_along_z_table", "diagram_along_z_is_sorted", "diagram_around_x_symmetric", "diagram_around_x_start", "diagram_around_x_end", "diagram_around_x_table", "diagram_around_x_is_sorted", "diagram_around_y_symmetric", "diagram_around_y_start", "diagram_around_y_end", "diagram_around_y_table", "diagram_around_y_is_sorted", "diagram_around_z_symmetric", "diagram_around_z_start", "diagram_around_z_end", "diagram_around_z_table", "diagram_around_z_is_sorted", "directed_to_node_direction_node", "directed_to_node_first_axis", "directed_to_node_plane_node", "directed_to_node_second_axis", "friction_coefficient_x", "friction_coefficient_xy", "friction_coefficient_xz", "friction_coefficient_y", "friction_coefficient_yx", "friction_coefficient_yz", "friction_coefficient_z", "friction_coefficient_zx", "friction_coefficient_zy", "parallel_to_line", "parallel_to_member", "parallel_to_two_nodes_first_axis", "parallel_to_two_nodes_first_node", "parallel_to_two_nodes_plane_node", "parallel_to_two_nodes_second_axis", "parallel_to_two_nodes_second_node", "partial_activity_along_x_negative_type", "partial_activity_along_x_negative_displacement", "partial_activity_along_x_negative_force", "partial_activity_along_x_negative_slippage", "partial_activity_along_x_positive_type", "partial_activity_along_x_positive_displacement", "partial_activity_along_x_positive_force", "partial_activity_along_x_positive_slippage", "partial_activity_along_y_negative_type", "partial_activity_along_y_negative_displacement", "partial_activity_along_y_negative_force", "partial_activity_along_y_negative_slippage", "partial_activity_along_y_positive_type", "partial_activity_along_y_positive_displacement", "partial_activity_along_y_positive_force", "partial_activity_along_y_positive_slippage", "partial_activity_along_z_negative_type", "partial_activity_along_z_negative_displacement", "partial_activity_along_z_negative_force", "partial_activity_along_z_negative_slippage", "partial_activity_along_z_positive_type", "partial_activity_along_z_positive_displacement", "partial_activity_along_z_positive_force", "partial_activity_along_z_positive_slippage", "partial_activity_around_x_negative_type", "partial_activity_around_x_negative_moment", "partial_activity_around_x_negative_rotation", "partial_activity_around_x_negative_slippage", "partial_activity_around_x_positive_type", "partial_activity_around_x_positive_moment", "partial_activity_around_x_positive_rotation", "partial_activity_around_x_positive_slippage", "partial_activity_around_y_negative_type", "partial_activity_around_y_negative_moment", "partial_activity_around_y_negative_rotation", "partial_activity_around_y_negative_slippage", "partial_activity_around_y_positive_type", "partial_activity_around_y_positive_moment", "partial_activity_around_y_positive_rotation", "partial_activity_around_y_positive_slippage", "partial_activity_around_z_negative_type", "partial_activity_around_z_negative_moment", "partial_activity_around_z_negative_rotation", "partial_activity_around_z_negative_slippage", "partial_activity_around_z_positive_type", "partial_activity_around_z_positive_moment", "partial_activity_around_z_positive_rotation", "partial_activity_around_z_positive_slippage", "rotated_about_angle_1", "rotated_about_angle_2", "rotated_about_angle_3", "rotated_about_angle_x", "rotated_about_angle_y", "rotated_about_angle_z", "stiffness_diagram_around_x_depends_on", "stiffness_diagram_around_x_end", "stiffness_diagram_around_x_is_sorted", "stiffness_diagram_around_x_start", "stiffness_diagram_around_x_symmetric", "stiffness_diagram_around_x_table", "stiffness_diagram_around_y_depends_on", "stiffness_diagram_around_y_end", "stiffness_diagram_around_y_is_sorted", "stiffness_diagram_around_y_start", "stiffness_diagram_around_y_symmetric", "stiffness_diagram_around_y_table", "stiffness_diagram_around_z_depends_on", "stiffness_diagram_around_z_end", "stiffness_diagram_around_z_is_sorted", "stiffness_diagram_around_z_start", "stiffness_diagram_around_z_symmetric", "stiffness_diagram_around_z_table", "support_dimension_diameter_x", "support_dimension_diameter_y", "support_dimension_diameter_z", "support_dimension_height_x", "support_dimension_height_y", "support_dimension_height_z", "support_dimension_type_on_x", "support_dimension_type_on_y", "support_dimension_type_on_z", "support_dimension_width_x", "support_dimension_width_y", "support_dimension_width_z", "support_dimensions_enabled", "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", "generating_object_info", "is_generated", "id_for_export_import", "metadata_for_export_import")
684
+ NO_FIELD_NUMBER: _ClassVar[int]
685
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
686
+ NAME_FIELD_NUMBER: _ClassVar[int]
687
+ FICTITIOUS_COLUMN_ENABLED_FIELD_NUMBER: _ClassVar[int]
688
+ SPECIFIC_DIRECTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
689
+ SPECIFIC_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
690
+ NODES_FIELD_NUMBER: _ClassVar[int]
691
+ SPRING_FIELD_NUMBER: _ClassVar[int]
692
+ SPRING_X_FIELD_NUMBER: _ClassVar[int]
693
+ SPRING_Y_FIELD_NUMBER: _ClassVar[int]
694
+ SPRING_Z_FIELD_NUMBER: _ClassVar[int]
695
+ ROTATIONAL_RESTRAINT_FIELD_NUMBER: _ClassVar[int]
696
+ ROTATIONAL_RESTRAINT_X_FIELD_NUMBER: _ClassVar[int]
697
+ ROTATIONAL_RESTRAINT_Y_FIELD_NUMBER: _ClassVar[int]
698
+ ROTATIONAL_RESTRAINT_Z_FIELD_NUMBER: _ClassVar[int]
699
+ SPRING_X_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
700
+ SPRING_Y_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
701
+ SPRING_Z_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
702
+ ROTATIONAL_RESTRAINT_X_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
703
+ ROTATIONAL_RESTRAINT_Y_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
704
+ ROTATIONAL_RESTRAINT_Z_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
705
+ AXES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
706
+ COLUMN_BASE_SEMI_RIGID_FIELD_NUMBER: _ClassVar[int]
707
+ COLUMN_BASE_SUPPORT_TYPE_FIELD_NUMBER: _ClassVar[int]
708
+ COLUMN_HEAD_SUPPORT_TYPE_FIELD_NUMBER: _ClassVar[int]
709
+ COLUMN_HEAD_TYPE_FIELD_NUMBER: _ClassVar[int]
710
+ COLUMN_HEIGHT_FIELD_NUMBER: _ClassVar[int]
711
+ COLUMN_SECTION_SAME_AS_HEAD_FIELD_NUMBER: _ClassVar[int]
712
+ COLUMN_MATERIAL_FIELD_NUMBER: _ClassVar[int]
713
+ COLUMN_ROTATION_FIELD_NUMBER: _ClassVar[int]
714
+ COLUMN_ROTATIONAL_RESTRAINT_X_FIELD_NUMBER: _ClassVar[int]
715
+ COLUMN_ROTATIONAL_RESTRAINT_Y_FIELD_NUMBER: _ClassVar[int]
716
+ COLUMN_SECTION_FIELD_NUMBER: _ClassVar[int]
717
+ COLUMN_SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
718
+ COLUMN_SPRING_X_FIELD_NUMBER: _ClassVar[int]
719
+ COLUMN_SPRING_Y_FIELD_NUMBER: _ClassVar[int]
720
+ COLUMN_SPRING_Z_FIELD_NUMBER: _ClassVar[int]
721
+ COLUMN_SUPPORT_TYPE_FIELD_NUMBER: _ClassVar[int]
722
+ COLUMN_WIDTH_X_FIELD_NUMBER: _ClassVar[int]
723
+ COLUMN_WIDTH_Y_FIELD_NUMBER: _ClassVar[int]
724
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
725
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
726
+ DIAGRAM_ALONG_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
727
+ DIAGRAM_ALONG_X_START_FIELD_NUMBER: _ClassVar[int]
728
+ DIAGRAM_ALONG_X_END_FIELD_NUMBER: _ClassVar[int]
729
+ DIAGRAM_ALONG_X_TABLE_FIELD_NUMBER: _ClassVar[int]
730
+ DIAGRAM_ALONG_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
731
+ DIAGRAM_ALONG_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
732
+ DIAGRAM_ALONG_Y_START_FIELD_NUMBER: _ClassVar[int]
733
+ DIAGRAM_ALONG_Y_END_FIELD_NUMBER: _ClassVar[int]
734
+ DIAGRAM_ALONG_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
735
+ DIAGRAM_ALONG_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
736
+ DIAGRAM_ALONG_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
737
+ DIAGRAM_ALONG_Z_START_FIELD_NUMBER: _ClassVar[int]
738
+ DIAGRAM_ALONG_Z_END_FIELD_NUMBER: _ClassVar[int]
739
+ DIAGRAM_ALONG_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
740
+ DIAGRAM_ALONG_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
741
+ DIAGRAM_AROUND_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
742
+ DIAGRAM_AROUND_X_START_FIELD_NUMBER: _ClassVar[int]
743
+ DIAGRAM_AROUND_X_END_FIELD_NUMBER: _ClassVar[int]
744
+ DIAGRAM_AROUND_X_TABLE_FIELD_NUMBER: _ClassVar[int]
745
+ DIAGRAM_AROUND_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
746
+ DIAGRAM_AROUND_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
747
+ DIAGRAM_AROUND_Y_START_FIELD_NUMBER: _ClassVar[int]
748
+ DIAGRAM_AROUND_Y_END_FIELD_NUMBER: _ClassVar[int]
749
+ DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
750
+ DIAGRAM_AROUND_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
751
+ DIAGRAM_AROUND_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
752
+ DIAGRAM_AROUND_Z_START_FIELD_NUMBER: _ClassVar[int]
753
+ DIAGRAM_AROUND_Z_END_FIELD_NUMBER: _ClassVar[int]
754
+ DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
755
+ DIAGRAM_AROUND_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
756
+ DIRECTED_TO_NODE_DIRECTION_NODE_FIELD_NUMBER: _ClassVar[int]
757
+ DIRECTED_TO_NODE_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
758
+ DIRECTED_TO_NODE_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
759
+ DIRECTED_TO_NODE_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
760
+ FRICTION_COEFFICIENT_X_FIELD_NUMBER: _ClassVar[int]
761
+ FRICTION_COEFFICIENT_XY_FIELD_NUMBER: _ClassVar[int]
762
+ FRICTION_COEFFICIENT_XZ_FIELD_NUMBER: _ClassVar[int]
763
+ FRICTION_COEFFICIENT_Y_FIELD_NUMBER: _ClassVar[int]
764
+ FRICTION_COEFFICIENT_YX_FIELD_NUMBER: _ClassVar[int]
765
+ FRICTION_COEFFICIENT_YZ_FIELD_NUMBER: _ClassVar[int]
766
+ FRICTION_COEFFICIENT_Z_FIELD_NUMBER: _ClassVar[int]
767
+ FRICTION_COEFFICIENT_ZX_FIELD_NUMBER: _ClassVar[int]
768
+ FRICTION_COEFFICIENT_ZY_FIELD_NUMBER: _ClassVar[int]
769
+ PARALLEL_TO_LINE_FIELD_NUMBER: _ClassVar[int]
770
+ PARALLEL_TO_MEMBER_FIELD_NUMBER: _ClassVar[int]
771
+ PARALLEL_TO_TWO_NODES_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
772
+ PARALLEL_TO_TWO_NODES_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
773
+ PARALLEL_TO_TWO_NODES_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
774
+ PARALLEL_TO_TWO_NODES_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
775
+ PARALLEL_TO_TWO_NODES_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
776
+ PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
777
+ PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
778
+ PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
779
+ PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
780
+ PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
781
+ PARTIAL_ACTIVITY_ALONG_X_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
782
+ PARTIAL_ACTIVITY_ALONG_X_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
783
+ PARTIAL_ACTIVITY_ALONG_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
784
+ PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
785
+ PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
786
+ PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
787
+ PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
788
+ PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
789
+ PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
790
+ PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
791
+ PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
792
+ PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
793
+ PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
794
+ PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
795
+ PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
796
+ PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
797
+ PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
798
+ PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_FORCE_FIELD_NUMBER: _ClassVar[int]
799
+ PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
800
+ PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
801
+ PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
802
+ PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
803
+ PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
804
+ PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
805
+ PARTIAL_ACTIVITY_AROUND_X_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
806
+ PARTIAL_ACTIVITY_AROUND_X_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
807
+ PARTIAL_ACTIVITY_AROUND_X_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
808
+ PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
809
+ PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
810
+ PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
811
+ PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
812
+ PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
813
+ PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
814
+ PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
815
+ PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
816
+ PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
817
+ PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
818
+ PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
819
+ PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
820
+ PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_FIELD_NUMBER: _ClassVar[int]
821
+ PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_MOMENT_FIELD_NUMBER: _ClassVar[int]
822
+ PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_ROTATION_FIELD_NUMBER: _ClassVar[int]
823
+ PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
824
+ ROTATED_ABOUT_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
825
+ ROTATED_ABOUT_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
826
+ ROTATED_ABOUT_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
827
+ ROTATED_ABOUT_ANGLE_X_FIELD_NUMBER: _ClassVar[int]
828
+ ROTATED_ABOUT_ANGLE_Y_FIELD_NUMBER: _ClassVar[int]
829
+ ROTATED_ABOUT_ANGLE_Z_FIELD_NUMBER: _ClassVar[int]
830
+ STIFFNESS_DIAGRAM_AROUND_X_DEPENDS_ON_FIELD_NUMBER: _ClassVar[int]
831
+ STIFFNESS_DIAGRAM_AROUND_X_END_FIELD_NUMBER: _ClassVar[int]
832
+ STIFFNESS_DIAGRAM_AROUND_X_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
833
+ STIFFNESS_DIAGRAM_AROUND_X_START_FIELD_NUMBER: _ClassVar[int]
834
+ STIFFNESS_DIAGRAM_AROUND_X_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
835
+ STIFFNESS_DIAGRAM_AROUND_X_TABLE_FIELD_NUMBER: _ClassVar[int]
836
+ STIFFNESS_DIAGRAM_AROUND_Y_DEPENDS_ON_FIELD_NUMBER: _ClassVar[int]
837
+ STIFFNESS_DIAGRAM_AROUND_Y_END_FIELD_NUMBER: _ClassVar[int]
838
+ STIFFNESS_DIAGRAM_AROUND_Y_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
839
+ STIFFNESS_DIAGRAM_AROUND_Y_START_FIELD_NUMBER: _ClassVar[int]
840
+ STIFFNESS_DIAGRAM_AROUND_Y_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
841
+ STIFFNESS_DIAGRAM_AROUND_Y_TABLE_FIELD_NUMBER: _ClassVar[int]
842
+ STIFFNESS_DIAGRAM_AROUND_Z_DEPENDS_ON_FIELD_NUMBER: _ClassVar[int]
843
+ STIFFNESS_DIAGRAM_AROUND_Z_END_FIELD_NUMBER: _ClassVar[int]
844
+ STIFFNESS_DIAGRAM_AROUND_Z_IS_SORTED_FIELD_NUMBER: _ClassVar[int]
845
+ STIFFNESS_DIAGRAM_AROUND_Z_START_FIELD_NUMBER: _ClassVar[int]
846
+ STIFFNESS_DIAGRAM_AROUND_Z_SYMMETRIC_FIELD_NUMBER: _ClassVar[int]
847
+ STIFFNESS_DIAGRAM_AROUND_Z_TABLE_FIELD_NUMBER: _ClassVar[int]
848
+ SUPPORT_DIMENSION_DIAMETER_X_FIELD_NUMBER: _ClassVar[int]
849
+ SUPPORT_DIMENSION_DIAMETER_Y_FIELD_NUMBER: _ClassVar[int]
850
+ SUPPORT_DIMENSION_DIAMETER_Z_FIELD_NUMBER: _ClassVar[int]
851
+ SUPPORT_DIMENSION_HEIGHT_X_FIELD_NUMBER: _ClassVar[int]
852
+ SUPPORT_DIMENSION_HEIGHT_Y_FIELD_NUMBER: _ClassVar[int]
853
+ SUPPORT_DIMENSION_HEIGHT_Z_FIELD_NUMBER: _ClassVar[int]
854
+ SUPPORT_DIMENSION_TYPE_ON_X_FIELD_NUMBER: _ClassVar[int]
855
+ SUPPORT_DIMENSION_TYPE_ON_Y_FIELD_NUMBER: _ClassVar[int]
856
+ SUPPORT_DIMENSION_TYPE_ON_Z_FIELD_NUMBER: _ClassVar[int]
857
+ SUPPORT_DIMENSION_WIDTH_X_FIELD_NUMBER: _ClassVar[int]
858
+ SUPPORT_DIMENSION_WIDTH_Y_FIELD_NUMBER: _ClassVar[int]
859
+ SUPPORT_DIMENSION_WIDTH_Z_FIELD_NUMBER: _ClassVar[int]
860
+ SUPPORT_DIMENSIONS_ENABLED_FIELD_NUMBER: _ClassVar[int]
861
+ DIAGRAM_ALONG_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
862
+ DIAGRAM_ALONG_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
863
+ DIAGRAM_ALONG_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
864
+ DIAGRAM_AROUND_X_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
865
+ DIAGRAM_AROUND_Y_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
866
+ DIAGRAM_AROUND_Z_AC_YIELD_MINUS_FIELD_NUMBER: _ClassVar[int]
867
+ DIAGRAM_ALONG_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
868
+ DIAGRAM_ALONG_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
869
+ DIAGRAM_ALONG_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
870
+ DIAGRAM_AROUND_X_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
871
+ DIAGRAM_AROUND_Y_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
872
+ DIAGRAM_AROUND_Z_AC_YIELD_PLUS_FIELD_NUMBER: _ClassVar[int]
873
+ DIAGRAM_ALONG_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
874
+ DIAGRAM_ALONG_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
875
+ DIAGRAM_ALONG_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
876
+ DIAGRAM_AROUND_X_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
877
+ DIAGRAM_AROUND_Y_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
878
+ DIAGRAM_AROUND_Z_ACCEPTANCE_CRITERIA_ACTIVE_FIELD_NUMBER: _ClassVar[int]
879
+ DIAGRAM_ALONG_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
880
+ DIAGRAM_ALONG_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
881
+ DIAGRAM_ALONG_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
882
+ DIAGRAM_AROUND_X_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
883
+ DIAGRAM_AROUND_Y_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
884
+ DIAGRAM_AROUND_Z_MINUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
885
+ DIAGRAM_ALONG_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
886
+ DIAGRAM_ALONG_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
887
+ DIAGRAM_ALONG_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
888
+ DIAGRAM_AROUND_X_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
889
+ DIAGRAM_AROUND_Y_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
890
+ DIAGRAM_AROUND_Z_MINUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
891
+ DIAGRAM_ALONG_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
892
+ DIAGRAM_ALONG_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
893
+ DIAGRAM_ALONG_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
894
+ DIAGRAM_AROUND_X_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
895
+ DIAGRAM_AROUND_Y_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
896
+ DIAGRAM_AROUND_Z_PLUS_COLOR_ONE_FIELD_NUMBER: _ClassVar[int]
897
+ DIAGRAM_ALONG_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
898
+ DIAGRAM_ALONG_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
899
+ DIAGRAM_ALONG_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
900
+ DIAGRAM_AROUND_X_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
901
+ DIAGRAM_AROUND_Y_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
902
+ DIAGRAM_AROUND_Z_PLUS_COLOR_TWO_FIELD_NUMBER: _ClassVar[int]
903
+ DIAGRAM_ALONG_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
904
+ DIAGRAM_ALONG_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
905
+ DIAGRAM_ALONG_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
906
+ DIAGRAM_AROUND_X_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
907
+ DIAGRAM_AROUND_Y_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
908
+ DIAGRAM_AROUND_Z_COLOR_TABLE_FIELD_NUMBER: _ClassVar[int]
909
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
910
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
911
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
912
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
913
+ no: int
914
+ user_defined_name_enabled: bool
915
+ name: str
916
+ fictitious_column_enabled: bool
917
+ specific_direction_enabled: bool
918
+ specific_direction_type: NodalSupportSpecificDirectionType
919
+ nodes: _containers.RepeatedScalarFieldContainer[int]
920
+ spring: _common_pb2.Vector3d
921
+ spring_x: float
922
+ spring_y: float
923
+ spring_z: float
924
+ rotational_restraint: _common_pb2.Vector3d
925
+ rotational_restraint_x: float
926
+ rotational_restraint_y: float
927
+ rotational_restraint_z: float
928
+ spring_x_nonlinearity: NodalSupportSpringXNonlinearity
929
+ spring_y_nonlinearity: NodalSupportSpringYNonlinearity
930
+ spring_z_nonlinearity: NodalSupportSpringZNonlinearity
931
+ rotational_restraint_x_nonlinearity: NodalSupportRotationalRestraintXNonlinearity
932
+ rotational_restraint_y_nonlinearity: NodalSupportRotationalRestraintYNonlinearity
933
+ rotational_restraint_z_nonlinearity: NodalSupportRotationalRestraintZNonlinearity
934
+ axes_sequence: NodalSupportAxesSequence
935
+ column_base_semi_rigid: float
936
+ column_base_support_type: NodalSupportColumnBaseSupportType
937
+ column_head_support_type: NodalSupportColumnHeadSupportType
938
+ column_head_type: NodalSupportColumnHeadType
939
+ column_height: float
940
+ column_section_same_as_head: bool
941
+ column_material: int
942
+ column_rotation: float
943
+ column_rotational_restraint_x: float
944
+ column_rotational_restraint_y: float
945
+ column_section: int
946
+ column_shear_stiffness: bool
947
+ column_spring_x: float
948
+ column_spring_y: float
949
+ column_spring_z: float
950
+ column_support_type: NodalSupportColumnSupportType
951
+ column_width_x: float
952
+ column_width_y: float
953
+ comment: str
954
+ coordinate_system: int
955
+ diagram_along_x_symmetric: bool
956
+ diagram_along_x_start: NodalSupportDiagramAlongXStart
957
+ diagram_along_x_end: NodalSupportDiagramAlongXEnd
958
+ diagram_along_x_table: ArrayOfNodalSupportDiagramAlongXTable
959
+ diagram_along_x_is_sorted: bool
960
+ diagram_along_y_symmetric: bool
961
+ diagram_along_y_start: NodalSupportDiagramAlongYStart
962
+ diagram_along_y_end: NodalSupportDiagramAlongYEnd
963
+ diagram_along_y_table: ArrayOfNodalSupportDiagramAlongYTable
964
+ diagram_along_y_is_sorted: bool
965
+ diagram_along_z_symmetric: bool
966
+ diagram_along_z_start: NodalSupportDiagramAlongZStart
967
+ diagram_along_z_end: NodalSupportDiagramAlongZEnd
968
+ diagram_along_z_table: ArrayOfNodalSupportDiagramAlongZTable
969
+ diagram_along_z_is_sorted: bool
970
+ diagram_around_x_symmetric: bool
971
+ diagram_around_x_start: NodalSupportDiagramAroundXStart
972
+ diagram_around_x_end: NodalSupportDiagramAroundXEnd
973
+ diagram_around_x_table: ArrayOfNodalSupportDiagramAroundXTable
974
+ diagram_around_x_is_sorted: bool
975
+ diagram_around_y_symmetric: bool
976
+ diagram_around_y_start: NodalSupportDiagramAroundYStart
977
+ diagram_around_y_end: NodalSupportDiagramAroundYEnd
978
+ diagram_around_y_table: ArrayOfNodalSupportDiagramAroundYTable
979
+ diagram_around_y_is_sorted: bool
980
+ diagram_around_z_symmetric: bool
981
+ diagram_around_z_start: NodalSupportDiagramAroundZStart
982
+ diagram_around_z_end: NodalSupportDiagramAroundZEnd
983
+ diagram_around_z_table: ArrayOfNodalSupportDiagramAroundZTable
984
+ diagram_around_z_is_sorted: bool
985
+ directed_to_node_direction_node: int
986
+ directed_to_node_first_axis: NodalSupportDirectedToNodeFirstAxis
987
+ directed_to_node_plane_node: int
988
+ directed_to_node_second_axis: NodalSupportDirectedToNodeSecondAxis
989
+ friction_coefficient_x: float
990
+ friction_coefficient_xy: float
991
+ friction_coefficient_xz: float
992
+ friction_coefficient_y: float
993
+ friction_coefficient_yx: float
994
+ friction_coefficient_yz: float
995
+ friction_coefficient_z: float
996
+ friction_coefficient_zx: float
997
+ friction_coefficient_zy: float
998
+ parallel_to_line: int
999
+ parallel_to_member: int
1000
+ parallel_to_two_nodes_first_axis: NodalSupportParallelToTwoNodesFirstAxis
1001
+ parallel_to_two_nodes_first_node: int
1002
+ parallel_to_two_nodes_plane_node: int
1003
+ parallel_to_two_nodes_second_axis: NodalSupportParallelToTwoNodesSecondAxis
1004
+ parallel_to_two_nodes_second_node: int
1005
+ partial_activity_along_x_negative_type: NodalSupportPartialActivityAlongXNegativeType
1006
+ partial_activity_along_x_negative_displacement: float
1007
+ partial_activity_along_x_negative_force: float
1008
+ partial_activity_along_x_negative_slippage: float
1009
+ partial_activity_along_x_positive_type: NodalSupportPartialActivityAlongXPositiveType
1010
+ partial_activity_along_x_positive_displacement: float
1011
+ partial_activity_along_x_positive_force: float
1012
+ partial_activity_along_x_positive_slippage: float
1013
+ partial_activity_along_y_negative_type: NodalSupportPartialActivityAlongYNegativeType
1014
+ partial_activity_along_y_negative_displacement: float
1015
+ partial_activity_along_y_negative_force: float
1016
+ partial_activity_along_y_negative_slippage: float
1017
+ partial_activity_along_y_positive_type: NodalSupportPartialActivityAlongYPositiveType
1018
+ partial_activity_along_y_positive_displacement: float
1019
+ partial_activity_along_y_positive_force: float
1020
+ partial_activity_along_y_positive_slippage: float
1021
+ partial_activity_along_z_negative_type: NodalSupportPartialActivityAlongZNegativeType
1022
+ partial_activity_along_z_negative_displacement: float
1023
+ partial_activity_along_z_negative_force: float
1024
+ partial_activity_along_z_negative_slippage: float
1025
+ partial_activity_along_z_positive_type: NodalSupportPartialActivityAlongZPositiveType
1026
+ partial_activity_along_z_positive_displacement: float
1027
+ partial_activity_along_z_positive_force: float
1028
+ partial_activity_along_z_positive_slippage: float
1029
+ partial_activity_around_x_negative_type: NodalSupportPartialActivityAroundXNegativeType
1030
+ partial_activity_around_x_negative_moment: float
1031
+ partial_activity_around_x_negative_rotation: float
1032
+ partial_activity_around_x_negative_slippage: float
1033
+ partial_activity_around_x_positive_type: NodalSupportPartialActivityAroundXPositiveType
1034
+ partial_activity_around_x_positive_moment: float
1035
+ partial_activity_around_x_positive_rotation: float
1036
+ partial_activity_around_x_positive_slippage: float
1037
+ partial_activity_around_y_negative_type: NodalSupportPartialActivityAroundYNegativeType
1038
+ partial_activity_around_y_negative_moment: float
1039
+ partial_activity_around_y_negative_rotation: float
1040
+ partial_activity_around_y_negative_slippage: float
1041
+ partial_activity_around_y_positive_type: NodalSupportPartialActivityAroundYPositiveType
1042
+ partial_activity_around_y_positive_moment: float
1043
+ partial_activity_around_y_positive_rotation: float
1044
+ partial_activity_around_y_positive_slippage: float
1045
+ partial_activity_around_z_negative_type: NodalSupportPartialActivityAroundZNegativeType
1046
+ partial_activity_around_z_negative_moment: float
1047
+ partial_activity_around_z_negative_rotation: float
1048
+ partial_activity_around_z_negative_slippage: float
1049
+ partial_activity_around_z_positive_type: NodalSupportPartialActivityAroundZPositiveType
1050
+ partial_activity_around_z_positive_moment: float
1051
+ partial_activity_around_z_positive_rotation: float
1052
+ partial_activity_around_z_positive_slippage: float
1053
+ rotated_about_angle_1: float
1054
+ rotated_about_angle_2: float
1055
+ rotated_about_angle_3: float
1056
+ rotated_about_angle_x: float
1057
+ rotated_about_angle_y: float
1058
+ rotated_about_angle_z: float
1059
+ stiffness_diagram_around_x_depends_on: NodalSupportStiffnessDiagramAroundXDependsOn
1060
+ stiffness_diagram_around_x_end: NodalSupportStiffnessDiagramAroundXEnd
1061
+ stiffness_diagram_around_x_is_sorted: bool
1062
+ stiffness_diagram_around_x_start: NodalSupportStiffnessDiagramAroundXStart
1063
+ stiffness_diagram_around_x_symmetric: bool
1064
+ stiffness_diagram_around_x_table: ArrayOfNodalSupportStiffnessDiagramAroundXTable
1065
+ stiffness_diagram_around_y_depends_on: NodalSupportStiffnessDiagramAroundYDependsOn
1066
+ stiffness_diagram_around_y_end: NodalSupportStiffnessDiagramAroundYEnd
1067
+ stiffness_diagram_around_y_is_sorted: bool
1068
+ stiffness_diagram_around_y_start: NodalSupportStiffnessDiagramAroundYStart
1069
+ stiffness_diagram_around_y_symmetric: bool
1070
+ stiffness_diagram_around_y_table: ArrayOfNodalSupportStiffnessDiagramAroundYTable
1071
+ stiffness_diagram_around_z_depends_on: NodalSupportStiffnessDiagramAroundZDependsOn
1072
+ stiffness_diagram_around_z_end: NodalSupportStiffnessDiagramAroundZEnd
1073
+ stiffness_diagram_around_z_is_sorted: bool
1074
+ stiffness_diagram_around_z_start: NodalSupportStiffnessDiagramAroundZStart
1075
+ stiffness_diagram_around_z_symmetric: bool
1076
+ stiffness_diagram_around_z_table: ArrayOfNodalSupportStiffnessDiagramAroundZTable
1077
+ support_dimension_diameter_x: float
1078
+ support_dimension_diameter_y: float
1079
+ support_dimension_diameter_z: float
1080
+ support_dimension_height_x: float
1081
+ support_dimension_height_y: float
1082
+ support_dimension_height_z: float
1083
+ support_dimension_type_on_x: NodalSupportSupportDimensionTypeOnX
1084
+ support_dimension_type_on_y: NodalSupportSupportDimensionTypeOnY
1085
+ support_dimension_type_on_z: NodalSupportSupportDimensionTypeOnZ
1086
+ support_dimension_width_x: float
1087
+ support_dimension_width_y: float
1088
+ support_dimension_width_z: float
1089
+ support_dimensions_enabled: bool
1090
+ diagram_along_x_ac_yield_minus: float
1091
+ diagram_along_y_ac_yield_minus: float
1092
+ diagram_along_z_ac_yield_minus: float
1093
+ diagram_around_x_ac_yield_minus: float
1094
+ diagram_around_y_ac_yield_minus: float
1095
+ diagram_around_z_ac_yield_minus: float
1096
+ diagram_along_x_ac_yield_plus: float
1097
+ diagram_along_y_ac_yield_plus: float
1098
+ diagram_along_z_ac_yield_plus: float
1099
+ diagram_around_x_ac_yield_plus: float
1100
+ diagram_around_y_ac_yield_plus: float
1101
+ diagram_around_z_ac_yield_plus: float
1102
+ diagram_along_x_acceptance_criteria_active: bool
1103
+ diagram_along_y_acceptance_criteria_active: bool
1104
+ diagram_along_z_acceptance_criteria_active: bool
1105
+ diagram_around_x_acceptance_criteria_active: bool
1106
+ diagram_around_y_acceptance_criteria_active: bool
1107
+ diagram_around_z_acceptance_criteria_active: bool
1108
+ diagram_along_x_minus_color_one: _common_pb2.Color
1109
+ diagram_along_y_minus_color_one: _common_pb2.Color
1110
+ diagram_along_z_minus_color_one: _common_pb2.Color
1111
+ diagram_around_x_minus_color_one: _common_pb2.Color
1112
+ diagram_around_y_minus_color_one: _common_pb2.Color
1113
+ diagram_around_z_minus_color_one: _common_pb2.Color
1114
+ diagram_along_x_minus_color_two: _common_pb2.Color
1115
+ diagram_along_y_minus_color_two: _common_pb2.Color
1116
+ diagram_along_z_minus_color_two: _common_pb2.Color
1117
+ diagram_around_x_minus_color_two: _common_pb2.Color
1118
+ diagram_around_y_minus_color_two: _common_pb2.Color
1119
+ diagram_around_z_minus_color_two: _common_pb2.Color
1120
+ diagram_along_x_plus_color_one: _common_pb2.Color
1121
+ diagram_along_y_plus_color_one: _common_pb2.Color
1122
+ diagram_along_z_plus_color_one: _common_pb2.Color
1123
+ diagram_around_x_plus_color_one: _common_pb2.Color
1124
+ diagram_around_y_plus_color_one: _common_pb2.Color
1125
+ diagram_around_z_plus_color_one: _common_pb2.Color
1126
+ diagram_along_x_plus_color_two: _common_pb2.Color
1127
+ diagram_along_y_plus_color_two: _common_pb2.Color
1128
+ diagram_along_z_plus_color_two: _common_pb2.Color
1129
+ diagram_around_x_plus_color_two: _common_pb2.Color
1130
+ diagram_around_y_plus_color_two: _common_pb2.Color
1131
+ diagram_around_z_plus_color_two: _common_pb2.Color
1132
+ diagram_along_x_color_table: ArrayOfNodalSupportDiagramAlongXColorTable
1133
+ diagram_along_y_color_table: ArrayOfNodalSupportDiagramAlongYColorTable
1134
+ diagram_along_z_color_table: ArrayOfNodalSupportDiagramAlongZColorTable
1135
+ diagram_around_x_color_table: ArrayOfNodalSupportDiagramAroundXColorTable
1136
+ diagram_around_y_color_table: ArrayOfNodalSupportDiagramAroundYColorTable
1137
+ diagram_around_z_color_table: ArrayOfNodalSupportDiagramAroundZColorTable
1138
+ generating_object_info: str
1139
+ is_generated: bool
1140
+ id_for_export_import: str
1141
+ metadata_for_export_import: str
1142
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., fictitious_column_enabled: bool = ..., specific_direction_enabled: bool = ..., specific_direction_type: _Optional[_Union[NodalSupportSpecificDirectionType, str]] = ..., nodes: _Optional[_Iterable[int]] = ..., spring: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., spring_x: _Optional[float] = ..., spring_y: _Optional[float] = ..., spring_z: _Optional[float] = ..., rotational_restraint: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotational_restraint_x: _Optional[float] = ..., rotational_restraint_y: _Optional[float] = ..., rotational_restraint_z: _Optional[float] = ..., spring_x_nonlinearity: _Optional[_Union[NodalSupportSpringXNonlinearity, str]] = ..., spring_y_nonlinearity: _Optional[_Union[NodalSupportSpringYNonlinearity, str]] = ..., spring_z_nonlinearity: _Optional[_Union[NodalSupportSpringZNonlinearity, str]] = ..., rotational_restraint_x_nonlinearity: _Optional[_Union[NodalSupportRotationalRestraintXNonlinearity, str]] = ..., rotational_restraint_y_nonlinearity: _Optional[_Union[NodalSupportRotationalRestraintYNonlinearity, str]] = ..., rotational_restraint_z_nonlinearity: _Optional[_Union[NodalSupportRotationalRestraintZNonlinearity, str]] = ..., axes_sequence: _Optional[_Union[NodalSupportAxesSequence, str]] = ..., column_base_semi_rigid: _Optional[float] = ..., column_base_support_type: _Optional[_Union[NodalSupportColumnBaseSupportType, str]] = ..., column_head_support_type: _Optional[_Union[NodalSupportColumnHeadSupportType, str]] = ..., column_head_type: _Optional[_Union[NodalSupportColumnHeadType, str]] = ..., column_height: _Optional[float] = ..., column_section_same_as_head: bool = ..., column_material: _Optional[int] = ..., column_rotation: _Optional[float] = ..., column_rotational_restraint_x: _Optional[float] = ..., column_rotational_restraint_y: _Optional[float] = ..., column_section: _Optional[int] = ..., column_shear_stiffness: bool = ..., column_spring_x: _Optional[float] = ..., column_spring_y: _Optional[float] = ..., column_spring_z: _Optional[float] = ..., column_support_type: _Optional[_Union[NodalSupportColumnSupportType, str]] = ..., column_width_x: _Optional[float] = ..., column_width_y: _Optional[float] = ..., comment: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., diagram_along_x_symmetric: bool = ..., diagram_along_x_start: _Optional[_Union[NodalSupportDiagramAlongXStart, str]] = ..., diagram_along_x_end: _Optional[_Union[NodalSupportDiagramAlongXEnd, str]] = ..., diagram_along_x_table: _Optional[_Union[ArrayOfNodalSupportDiagramAlongXTable, _Mapping]] = ..., diagram_along_x_is_sorted: bool = ..., diagram_along_y_symmetric: bool = ..., diagram_along_y_start: _Optional[_Union[NodalSupportDiagramAlongYStart, str]] = ..., diagram_along_y_end: _Optional[_Union[NodalSupportDiagramAlongYEnd, str]] = ..., diagram_along_y_table: _Optional[_Union[ArrayOfNodalSupportDiagramAlongYTable, _Mapping]] = ..., diagram_along_y_is_sorted: bool = ..., diagram_along_z_symmetric: bool = ..., diagram_along_z_start: _Optional[_Union[NodalSupportDiagramAlongZStart, str]] = ..., diagram_along_z_end: _Optional[_Union[NodalSupportDiagramAlongZEnd, str]] = ..., diagram_along_z_table: _Optional[_Union[ArrayOfNodalSupportDiagramAlongZTable, _Mapping]] = ..., diagram_along_z_is_sorted: bool = ..., diagram_around_x_symmetric: bool = ..., diagram_around_x_start: _Optional[_Union[NodalSupportDiagramAroundXStart, str]] = ..., diagram_around_x_end: _Optional[_Union[NodalSupportDiagramAroundXEnd, str]] = ..., diagram_around_x_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundXTable, _Mapping]] = ..., diagram_around_x_is_sorted: bool = ..., diagram_around_y_symmetric: bool = ..., diagram_around_y_start: _Optional[_Union[NodalSupportDiagramAroundYStart, str]] = ..., diagram_around_y_end: _Optional[_Union[NodalSupportDiagramAroundYEnd, str]] = ..., diagram_around_y_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundYTable, _Mapping]] = ..., diagram_around_y_is_sorted: bool = ..., diagram_around_z_symmetric: bool = ..., diagram_around_z_start: _Optional[_Union[NodalSupportDiagramAroundZStart, str]] = ..., diagram_around_z_end: _Optional[_Union[NodalSupportDiagramAroundZEnd, str]] = ..., diagram_around_z_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundZTable, _Mapping]] = ..., diagram_around_z_is_sorted: bool = ..., directed_to_node_direction_node: _Optional[int] = ..., directed_to_node_first_axis: _Optional[_Union[NodalSupportDirectedToNodeFirstAxis, str]] = ..., directed_to_node_plane_node: _Optional[int] = ..., directed_to_node_second_axis: _Optional[_Union[NodalSupportDirectedToNodeSecondAxis, str]] = ..., friction_coefficient_x: _Optional[float] = ..., friction_coefficient_xy: _Optional[float] = ..., friction_coefficient_xz: _Optional[float] = ..., friction_coefficient_y: _Optional[float] = ..., friction_coefficient_yx: _Optional[float] = ..., friction_coefficient_yz: _Optional[float] = ..., friction_coefficient_z: _Optional[float] = ..., friction_coefficient_zx: _Optional[float] = ..., friction_coefficient_zy: _Optional[float] = ..., parallel_to_line: _Optional[int] = ..., parallel_to_member: _Optional[int] = ..., parallel_to_two_nodes_first_axis: _Optional[_Union[NodalSupportParallelToTwoNodesFirstAxis, str]] = ..., parallel_to_two_nodes_first_node: _Optional[int] = ..., parallel_to_two_nodes_plane_node: _Optional[int] = ..., parallel_to_two_nodes_second_axis: _Optional[_Union[NodalSupportParallelToTwoNodesSecondAxis, str]] = ..., parallel_to_two_nodes_second_node: _Optional[int] = ..., partial_activity_along_x_negative_type: _Optional[_Union[NodalSupportPartialActivityAlongXNegativeType, str]] = ..., 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAlongXPositiveType, 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_y_negative_type: _Optional[_Union[NodalSupportPartialActivityAlongYNegativeType, 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAlongYPositiveType, 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_z_negative_type: _Optional[_Union[NodalSupportPartialActivityAlongZNegativeType, 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAlongZPositiveType, 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_around_x_negative_type: _Optional[_Union[NodalSupportPartialActivityAroundXNegativeType, 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAroundXPositiveType, 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_y_negative_type: _Optional[_Union[NodalSupportPartialActivityAroundYNegativeType, 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAroundYPositiveType, 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_z_negative_type: _Optional[_Union[NodalSupportPartialActivityAroundZNegativeType, 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_positive_type: _Optional[_Union[NodalSupportPartialActivityAroundZPositiveType, 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] = ..., rotated_about_angle_1: _Optional[float] = ..., rotated_about_angle_2: _Optional[float] = ..., rotated_about_angle_3: _Optional[float] = ..., rotated_about_angle_x: _Optional[float] = ..., rotated_about_angle_y: _Optional[float] = ..., rotated_about_angle_z: _Optional[float] = ..., stiffness_diagram_around_x_depends_on: _Optional[_Union[NodalSupportStiffnessDiagramAroundXDependsOn, str]] = ..., stiffness_diagram_around_x_end: _Optional[_Union[NodalSupportStiffnessDiagramAroundXEnd, str]] = ..., stiffness_diagram_around_x_is_sorted: bool = ..., stiffness_diagram_around_x_start: _Optional[_Union[NodalSupportStiffnessDiagramAroundXStart, str]] = ..., stiffness_diagram_around_x_symmetric: bool = ..., stiffness_diagram_around_x_table: _Optional[_Union[ArrayOfNodalSupportStiffnessDiagramAroundXTable, _Mapping]] = ..., stiffness_diagram_around_y_depends_on: _Optional[_Union[NodalSupportStiffnessDiagramAroundYDependsOn, str]] = ..., stiffness_diagram_around_y_end: _Optional[_Union[NodalSupportStiffnessDiagramAroundYEnd, str]] = ..., stiffness_diagram_around_y_is_sorted: bool = ..., stiffness_diagram_around_y_start: _Optional[_Union[NodalSupportStiffnessDiagramAroundYStart, str]] = ..., stiffness_diagram_around_y_symmetric: bool = ..., stiffness_diagram_around_y_table: _Optional[_Union[ArrayOfNodalSupportStiffnessDiagramAroundYTable, _Mapping]] = ..., stiffness_diagram_around_z_depends_on: _Optional[_Union[NodalSupportStiffnessDiagramAroundZDependsOn, str]] = ..., stiffness_diagram_around_z_end: _Optional[_Union[NodalSupportStiffnessDiagramAroundZEnd, str]] = ..., stiffness_diagram_around_z_is_sorted: bool = ..., stiffness_diagram_around_z_start: _Optional[_Union[NodalSupportStiffnessDiagramAroundZStart, str]] = ..., stiffness_diagram_around_z_symmetric: bool = ..., stiffness_diagram_around_z_table: _Optional[_Union[ArrayOfNodalSupportStiffnessDiagramAroundZTable, _Mapping]] = ..., support_dimension_diameter_x: _Optional[float] = ..., support_dimension_diameter_y: _Optional[float] = ..., support_dimension_diameter_z: _Optional[float] = ..., support_dimension_height_x: _Optional[float] = ..., support_dimension_height_y: _Optional[float] = ..., support_dimension_height_z: _Optional[float] = ..., support_dimension_type_on_x: _Optional[_Union[NodalSupportSupportDimensionTypeOnX, str]] = ..., support_dimension_type_on_y: _Optional[_Union[NodalSupportSupportDimensionTypeOnY, str]] = ..., support_dimension_type_on_z: _Optional[_Union[NodalSupportSupportDimensionTypeOnZ, str]] = ..., support_dimension_width_x: _Optional[float] = ..., support_dimension_width_y: _Optional[float] = ..., support_dimension_width_z: _Optional[float] = ..., support_dimensions_enabled: bool = ..., 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[ArrayOfNodalSupportDiagramAlongXColorTable, _Mapping]] = ..., diagram_along_y_color_table: _Optional[_Union[ArrayOfNodalSupportDiagramAlongYColorTable, _Mapping]] = ..., diagram_along_z_color_table: _Optional[_Union[ArrayOfNodalSupportDiagramAlongZColorTable, _Mapping]] = ..., diagram_around_x_color_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundXColorTable, _Mapping]] = ..., diagram_around_y_color_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundYColorTable, _Mapping]] = ..., diagram_around_z_color_table: _Optional[_Union[ArrayOfNodalSupportDiagramAroundZColorTable, _Mapping]] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
1143
+
1144
+ class ArrayOfNodalSupportDiagramAlongXTable(_message.Message):
1145
+ __slots__ = ()
1146
+ def __init__(self) -> None: ...
1147
+
1148
+ class ArrayOfNodalSupportDiagramAlongYTable(_message.Message):
1149
+ __slots__ = ()
1150
+ def __init__(self) -> None: ...
1151
+
1152
+ class ArrayOfNodalSupportDiagramAlongZTable(_message.Message):
1153
+ __slots__ = ()
1154
+ def __init__(self) -> None: ...
1155
+
1156
+ class ArrayOfNodalSupportDiagramAroundXTable(_message.Message):
1157
+ __slots__ = ()
1158
+ def __init__(self) -> None: ...
1159
+
1160
+ class ArrayOfNodalSupportDiagramAroundYTable(_message.Message):
1161
+ __slots__ = ()
1162
+ def __init__(self) -> None: ...
1163
+
1164
+ class ArrayOfNodalSupportDiagramAroundZTable(_message.Message):
1165
+ __slots__ = ()
1166
+ def __init__(self) -> None: ...
1167
+
1168
+ class ArrayOfNodalSupportStiffnessDiagramAroundXTable(_message.Message):
1169
+ __slots__ = ()
1170
+ def __init__(self) -> None: ...
1171
+
1172
+ class ArrayOfNodalSupportStiffnessDiagramAroundYTable(_message.Message):
1173
+ __slots__ = ()
1174
+ def __init__(self) -> None: ...
1175
+
1176
+ class ArrayOfNodalSupportStiffnessDiagramAroundZTable(_message.Message):
1177
+ __slots__ = ()
1178
+ def __init__(self) -> None: ...
1179
+
1180
+ class ArrayOfNodalSupportDiagramAlongXColorTable(_message.Message):
1181
+ __slots__ = ()
1182
+ def __init__(self) -> None: ...
1183
+
1184
+ class ArrayOfNodalSupportDiagramAlongYColorTable(_message.Message):
1185
+ __slots__ = ()
1186
+ def __init__(self) -> None: ...
1187
+
1188
+ class ArrayOfNodalSupportDiagramAlongZColorTable(_message.Message):
1189
+ __slots__ = ()
1190
+ def __init__(self) -> None: ...
1191
+
1192
+ class ArrayOfNodalSupportDiagramAroundXColorTable(_message.Message):
1193
+ __slots__ = ()
1194
+ def __init__(self) -> None: ...
1195
+
1196
+ class ArrayOfNodalSupportDiagramAroundYColorTable(_message.Message):
1197
+ __slots__ = ()
1198
+ def __init__(self) -> None: ...
1199
+
1200
+ class ArrayOfNodalSupportDiagramAroundZColorTable(_message.Message):
1201
+ __slots__ = ()
1202
+ def __init__(self) -> None: ...