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,566 @@
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 MemberType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ MEMBER_TYPE_UNKNOWN: _ClassVar[MemberType]
13
+ MEMBER_TYPE_BEAM: _ClassVar[MemberType]
14
+ MEMBER_TYPE_BUCKLING: _ClassVar[MemberType]
15
+ MEMBER_TYPE_CABLE: _ClassVar[MemberType]
16
+ MEMBER_TYPE_COMPRESSION: _ClassVar[MemberType]
17
+ MEMBER_TYPE_COUPLING_HINGE_HINGE: _ClassVar[MemberType]
18
+ MEMBER_TYPE_COUPLING_HINGE_RIGID: _ClassVar[MemberType]
19
+ MEMBER_TYPE_COUPLING_RIGID_HINGE: _ClassVar[MemberType]
20
+ MEMBER_TYPE_COUPLING_RIGID_RIGID: _ClassVar[MemberType]
21
+ MEMBER_TYPE_DAMPER: _ClassVar[MemberType]
22
+ MEMBER_TYPE_DEFINABLE_STIFFNESS: _ClassVar[MemberType]
23
+ MEMBER_TYPE_JOIST: _ClassVar[MemberType]
24
+ MEMBER_TYPE_PILE: _ClassVar[MemberType]
25
+ MEMBER_TYPE_RESULT_BEAM: _ClassVar[MemberType]
26
+ MEMBER_TYPE_RESULT_LINE: _ClassVar[MemberType]
27
+ MEMBER_TYPE_RIB: _ClassVar[MemberType]
28
+ MEMBER_TYPE_RIGID: _ClassVar[MemberType]
29
+ MEMBER_TYPE_SPRING: _ClassVar[MemberType]
30
+ MEMBER_TYPE_SURFACE_MODEL: _ClassVar[MemberType]
31
+ MEMBER_TYPE_TENSION: _ClassVar[MemberType]
32
+ MEMBER_TYPE_TRUSS: _ClassVar[MemberType]
33
+ MEMBER_TYPE_TRUSS_ONLY_N: _ClassVar[MemberType]
34
+
35
+ class MemberSectionDistributionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
36
+ __slots__ = ()
37
+ MEMBER_SECTION_DISTRIBUTION_TYPE_UNIFORM: _ClassVar[MemberSectionDistributionType]
38
+ MEMBER_SECTION_DISTRIBUTION_TYPE_CURVED: _ClassVar[MemberSectionDistributionType]
39
+ MEMBER_SECTION_DISTRIBUTION_TYPE_FISH_BEAM_PARABOLIC: _ClassVar[MemberSectionDistributionType]
40
+ MEMBER_SECTION_DISTRIBUTION_TYPE_LINEAR: _ClassVar[MemberSectionDistributionType]
41
+ MEMBER_SECTION_DISTRIBUTION_TYPE_NONE: _ClassVar[MemberSectionDistributionType]
42
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_BOTH_SIDES: _ClassVar[MemberSectionDistributionType]
43
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_END_OF_MEMBER: _ClassVar[MemberSectionDistributionType]
44
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_START_OF_MEMBER: _ClassVar[MemberSectionDistributionType]
45
+ MEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_CONSTANT_HEIGHT: _ClassVar[MemberSectionDistributionType]
46
+ MEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_VARIABLE_HEIGHT: _ClassVar[MemberSectionDistributionType]
47
+ MEMBER_SECTION_DISTRIBUTION_TYPE_SADDLE: _ClassVar[MemberSectionDistributionType]
48
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_BOTH_SIDES: _ClassVar[MemberSectionDistributionType]
49
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_END_OF_MEMBER: _ClassVar[MemberSectionDistributionType]
50
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_START_OF_MEMBER: _ClassVar[MemberSectionDistributionType]
51
+
52
+ class MemberReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
53
+ __slots__ = ()
54
+ MEMBER_REFERENCE_TYPE_L: _ClassVar[MemberReferenceType]
55
+ MEMBER_REFERENCE_TYPE_XY: _ClassVar[MemberReferenceType]
56
+ MEMBER_REFERENCE_TYPE_XZ: _ClassVar[MemberReferenceType]
57
+ MEMBER_REFERENCE_TYPE_YZ: _ClassVar[MemberReferenceType]
58
+
59
+ class MemberMemberTypeRibAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
60
+ __slots__ = ()
61
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_NEGATIVE: _ClassVar[MemberMemberTypeRibAlignment]
62
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_CENTRIC: _ClassVar[MemberMemberTypeRibAlignment]
63
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_POSITIVE: _ClassVar[MemberMemberTypeRibAlignment]
64
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_USER_DEFINED_VIA_MEMBER_ECCENTRICITY: _ClassVar[MemberMemberTypeRibAlignment]
65
+
66
+ class MemberMemberRibSurfaceRoughnessClassification(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
67
+ __slots__ = ()
68
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_INDENTED: _ClassVar[MemberMemberRibSurfaceRoughnessClassification]
69
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_ROUGH: _ClassVar[MemberMemberRibSurfaceRoughnessClassification]
70
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_SMOOTH: _ClassVar[MemberMemberRibSurfaceRoughnessClassification]
71
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_VERY_SMOOTH: _ClassVar[MemberMemberRibSurfaceRoughnessClassification]
72
+
73
+ class MemberResultBeamIntegrateStressesAndForces(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
74
+ __slots__ = ()
75
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_QUADRATIC: _ClassVar[MemberResultBeamIntegrateStressesAndForces]
76
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FROM_LISTED_INCLUDE_OBJECTS: _ClassVar[MemberResultBeamIntegrateStressesAndForces]
77
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_GENERAL: _ClassVar[MemberResultBeamIntegrateStressesAndForces]
78
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CYLINDER: _ClassVar[MemberResultBeamIntegrateStressesAndForces]
79
+
80
+ class MemberSectionAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
81
+ __slots__ = ()
82
+ MEMBER_SECTION_ALIGNMENT_TOP: _ClassVar[MemberSectionAlignment]
83
+ MEMBER_SECTION_ALIGNMENT_BOTTOM: _ClassVar[MemberSectionAlignment]
84
+ MEMBER_SECTION_ALIGNMENT_CENTRIC: _ClassVar[MemberSectionAlignment]
85
+
86
+ class MemberGrainAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
87
+ __slots__ = ()
88
+ MEMBER_GRAIN_ALIGNMENT_TOP: _ClassVar[MemberGrainAlignment]
89
+ MEMBER_GRAIN_ALIGNMENT_BOTTOM: _ClassVar[MemberGrainAlignment]
90
+ MEMBER_GRAIN_ALIGNMENT_CENTRIC: _ClassVar[MemberGrainAlignment]
91
+
92
+ class MemberCurvedMemberCantileversType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
93
+ __slots__ = ()
94
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_HORIZONTAL: _ClassVar[MemberCurvedMemberCantileversType]
95
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_OFFSET: _ClassVar[MemberCurvedMemberCantileversType]
96
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_PARALLEL: _ClassVar[MemberCurvedMemberCantileversType]
97
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_TAPER: _ClassVar[MemberCurvedMemberCantileversType]
98
+
99
+ class MemberRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
100
+ __slots__ = ()
101
+ MEMBER_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: _ClassVar[MemberRotationSpecificationType]
102
+ MEMBER_ROTATION_SPECIFICATION_TYPE_INSIDE: _ClassVar[MemberRotationSpecificationType]
103
+ MEMBER_ROTATION_SPECIFICATION_TYPE_SURFACE: _ClassVar[MemberRotationSpecificationType]
104
+ MEMBER_ROTATION_SPECIFICATION_TYPE_TO_NODE: _ClassVar[MemberRotationSpecificationType]
105
+
106
+ class MemberRotationPlaneType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
107
+ __slots__ = ()
108
+ MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XY: _ClassVar[MemberRotationPlaneType]
109
+ MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XZ: _ClassVar[MemberRotationPlaneType]
110
+
111
+ class MemberRotationSurfacePlaneType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
112
+ __slots__ = ()
113
+ MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XY: _ClassVar[MemberRotationSurfacePlaneType]
114
+ MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XZ: _ClassVar[MemberRotationSurfacePlaneType]
115
+
116
+ class MemberDeflectionCheckDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
117
+ __slots__ = ()
118
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z: _ClassVar[MemberDeflectionCheckDirection]
119
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Y: _ClassVar[MemberDeflectionCheckDirection]
120
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z: _ClassVar[MemberDeflectionCheckDirection]
121
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z_AND_Y: _ClassVar[MemberDeflectionCheckDirection]
122
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Y: _ClassVar[MemberDeflectionCheckDirection]
123
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z_AND_Y: _ClassVar[MemberDeflectionCheckDirection]
124
+ MEMBER_DEFLECTION_CHECK_DIRECTION_RESULTING_AXIS: _ClassVar[MemberDeflectionCheckDirection]
125
+
126
+ class MemberDeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
127
+ __slots__ = ()
128
+ MEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_SEGMENT_ENDS: _ClassVar[MemberDeflectionCheckDisplacementReference]
129
+ MEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_UNDEFORMED_SYSTEM: _ClassVar[MemberDeflectionCheckDisplacementReference]
130
+ MEMBER_TYPE_UNKNOWN: MemberType
131
+ MEMBER_TYPE_BEAM: MemberType
132
+ MEMBER_TYPE_BUCKLING: MemberType
133
+ MEMBER_TYPE_CABLE: MemberType
134
+ MEMBER_TYPE_COMPRESSION: MemberType
135
+ MEMBER_TYPE_COUPLING_HINGE_HINGE: MemberType
136
+ MEMBER_TYPE_COUPLING_HINGE_RIGID: MemberType
137
+ MEMBER_TYPE_COUPLING_RIGID_HINGE: MemberType
138
+ MEMBER_TYPE_COUPLING_RIGID_RIGID: MemberType
139
+ MEMBER_TYPE_DAMPER: MemberType
140
+ MEMBER_TYPE_DEFINABLE_STIFFNESS: MemberType
141
+ MEMBER_TYPE_JOIST: MemberType
142
+ MEMBER_TYPE_PILE: MemberType
143
+ MEMBER_TYPE_RESULT_BEAM: MemberType
144
+ MEMBER_TYPE_RESULT_LINE: MemberType
145
+ MEMBER_TYPE_RIB: MemberType
146
+ MEMBER_TYPE_RIGID: MemberType
147
+ MEMBER_TYPE_SPRING: MemberType
148
+ MEMBER_TYPE_SURFACE_MODEL: MemberType
149
+ MEMBER_TYPE_TENSION: MemberType
150
+ MEMBER_TYPE_TRUSS: MemberType
151
+ MEMBER_TYPE_TRUSS_ONLY_N: MemberType
152
+ MEMBER_SECTION_DISTRIBUTION_TYPE_UNIFORM: MemberSectionDistributionType
153
+ MEMBER_SECTION_DISTRIBUTION_TYPE_CURVED: MemberSectionDistributionType
154
+ MEMBER_SECTION_DISTRIBUTION_TYPE_FISH_BEAM_PARABOLIC: MemberSectionDistributionType
155
+ MEMBER_SECTION_DISTRIBUTION_TYPE_LINEAR: MemberSectionDistributionType
156
+ MEMBER_SECTION_DISTRIBUTION_TYPE_NONE: MemberSectionDistributionType
157
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_BOTH_SIDES: MemberSectionDistributionType
158
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_END_OF_MEMBER: MemberSectionDistributionType
159
+ MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_START_OF_MEMBER: MemberSectionDistributionType
160
+ MEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_CONSTANT_HEIGHT: MemberSectionDistributionType
161
+ MEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_VARIABLE_HEIGHT: MemberSectionDistributionType
162
+ MEMBER_SECTION_DISTRIBUTION_TYPE_SADDLE: MemberSectionDistributionType
163
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_BOTH_SIDES: MemberSectionDistributionType
164
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_END_OF_MEMBER: MemberSectionDistributionType
165
+ MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_START_OF_MEMBER: MemberSectionDistributionType
166
+ MEMBER_REFERENCE_TYPE_L: MemberReferenceType
167
+ MEMBER_REFERENCE_TYPE_XY: MemberReferenceType
168
+ MEMBER_REFERENCE_TYPE_XZ: MemberReferenceType
169
+ MEMBER_REFERENCE_TYPE_YZ: MemberReferenceType
170
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_NEGATIVE: MemberMemberTypeRibAlignment
171
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_CENTRIC: MemberMemberTypeRibAlignment
172
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_POSITIVE: MemberMemberTypeRibAlignment
173
+ MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_USER_DEFINED_VIA_MEMBER_ECCENTRICITY: MemberMemberTypeRibAlignment
174
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_INDENTED: MemberMemberRibSurfaceRoughnessClassification
175
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_ROUGH: MemberMemberRibSurfaceRoughnessClassification
176
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_SMOOTH: MemberMemberRibSurfaceRoughnessClassification
177
+ MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_VERY_SMOOTH: MemberMemberRibSurfaceRoughnessClassification
178
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_QUADRATIC: MemberResultBeamIntegrateStressesAndForces
179
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FROM_LISTED_INCLUDE_OBJECTS: MemberResultBeamIntegrateStressesAndForces
180
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_GENERAL: MemberResultBeamIntegrateStressesAndForces
181
+ MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CYLINDER: MemberResultBeamIntegrateStressesAndForces
182
+ MEMBER_SECTION_ALIGNMENT_TOP: MemberSectionAlignment
183
+ MEMBER_SECTION_ALIGNMENT_BOTTOM: MemberSectionAlignment
184
+ MEMBER_SECTION_ALIGNMENT_CENTRIC: MemberSectionAlignment
185
+ MEMBER_GRAIN_ALIGNMENT_TOP: MemberGrainAlignment
186
+ MEMBER_GRAIN_ALIGNMENT_BOTTOM: MemberGrainAlignment
187
+ MEMBER_GRAIN_ALIGNMENT_CENTRIC: MemberGrainAlignment
188
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_HORIZONTAL: MemberCurvedMemberCantileversType
189
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_OFFSET: MemberCurvedMemberCantileversType
190
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_PARALLEL: MemberCurvedMemberCantileversType
191
+ MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_TAPER: MemberCurvedMemberCantileversType
192
+ MEMBER_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: MemberRotationSpecificationType
193
+ MEMBER_ROTATION_SPECIFICATION_TYPE_INSIDE: MemberRotationSpecificationType
194
+ MEMBER_ROTATION_SPECIFICATION_TYPE_SURFACE: MemberRotationSpecificationType
195
+ MEMBER_ROTATION_SPECIFICATION_TYPE_TO_NODE: MemberRotationSpecificationType
196
+ MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XY: MemberRotationPlaneType
197
+ MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XZ: MemberRotationPlaneType
198
+ MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XY: MemberRotationSurfacePlaneType
199
+ MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XZ: MemberRotationSurfacePlaneType
200
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z: MemberDeflectionCheckDirection
201
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Y: MemberDeflectionCheckDirection
202
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z: MemberDeflectionCheckDirection
203
+ MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z_AND_Y: MemberDeflectionCheckDirection
204
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Y: MemberDeflectionCheckDirection
205
+ MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z_AND_Y: MemberDeflectionCheckDirection
206
+ MEMBER_DEFLECTION_CHECK_DIRECTION_RESULTING_AXIS: MemberDeflectionCheckDirection
207
+ MEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_SEGMENT_ENDS: MemberDeflectionCheckDisplacementReference
208
+ MEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_UNDEFORMED_SYSTEM: MemberDeflectionCheckDisplacementReference
209
+
210
+ class Member(_message.Message):
211
+ __slots__ = ("no", "type", "is_deactivated_for_calculation", "line", "section_distribution_type", "reference_type", "nodes", "node_start", "node_end", "analytical_length", "analytical_volume", "analytical_surface_of_coating", "analytical_mass", "surface_of_coating", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "length", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "member_representative", "design_properties_via_member", "design_properties_via_parent_member_set", "design_properties_parent_member_set", "comment", "member_type_rib_alignment", "member_rib_first_surface", "member_rib_second_surface", "member_rib_surface_assignment_autodetect", "align_local_z_axis_to_local_z_axis_of_surface", "member_rib_shear_joint_between_web_and_flange", "member_rib_surface_roughness_classification", "member_rib_reduction_of_joint_width", "flange_dimensions", "synchronize_width_mode", "relative_ordinates_mode", "member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled", "member_type_definable_stiffness", "result_beam_integrate_stresses_and_forces", "result_beam_y_z", "result_beam_y_plus", "result_beam_z_plus", "result_beam_y_minus", "result_beam_z_minus", "result_beam_radius", "result_beam_include_all_surfaces", "result_beam_include_surfaces", "result_beam_include_all_solids", "result_beam_include_solids", "result_beam_include_all_members", "result_beam_include_members", "result_beam_exclude_surfaces", "result_beam_exclude_solids", "result_beam_exclude_members", "projected_length", "section_distance_from_start_is_defined_as_relative", "section_distance_from_start_absolute", "section_distance_from_start_relative", "section_distance_from_end_is_defined_as_relative", "section_distance_from_end_absolute", "section_distance_from_end_relative", "section_alignment", "section_start", "section_end", "section_internal", "section_material", "grain_alignment", "is_curved", "curved_member_is_asymmetric_layout", "curved_member_is_cantilevers", "curved_member_cantilevers_type", "curved_member_is_capped_with_loose_ridge_wedge", "curved_member_parameters", "rotation_specification_type", "rotation_angle", "rotation_help_node", "rotation_plane_type", "rotation_surface", "rotation_surface_plane_type", "is_rotated", "member_hinge_start", "member_hinge_end", "member_eccentricity_start", "member_eccentricity_end", "support", "member_transverse_stiffener", "member_openings", "member_nonlinearity", "member_result_intermediate_point", "stress_analysis_configuration", "aluminum_effective_lengths", "aluminum_boundary_conditions", "aluminum_member_local_section_reduction", "aluminum_member_transverse_weld", "member_aluminum_design_uls_configuration", "member_aluminum_design_sls_configuration", "concrete_effective_lengths", "concrete_cover_user_defined_enabled", "concrete_cover", "concrete_cover_top", "concrete_cover_left", "concrete_cover_right", "concrete_cover_bottom", "concrete_cover_min", "concrete_cover_min_top", "concrete_cover_min_left", "concrete_cover_min_right", "concrete_cover_min_bottom", "concrete_cover_different_at_section_sides_enabled", "concrete_durability", "concrete_durability_top", "concrete_durability_left", "concrete_durability_right", "concrete_durability_bottom", "concrete_shear_reinforcement_spans", "concrete_longitudinal_reinforcement_items", "member_concrete_design_uls_configuration", "member_concrete_design_sls_configuration", "member_concrete_design_fr_configuration", "member_concrete_design_seismic_configuration", "steel_effective_lengths", "steel_boundary_conditions", "steel_member_local_section_reduction", "steel_member_transverse_weld", "member_steel_design_uls_configuration", "member_steel_design_sls_configuration", "member_steel_design_fr_configuration", "timber_effective_lengths", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "timber_member_local_section_reduction", "member_timber_design_uls_configuration", "member_timber_design_sls_configuration", "member_timber_design_fr_configuration", "end_modifications_member_start_extension", "end_modifications_member_start_slope_y", "end_modifications_member_start_slope_z", "end_modifications_member_end_extension", "end_modifications_member_end_slope_y", "end_modifications_member_end_slope_z", "has_any_end_modifications", "deflection_check_direction", "deflection_check_displacement_reference", "deflection_segments_z_axis", "deflection_segments_y_axis", "design_support_on_member_start", "design_support_on_member_end", "design_supports_on_internal_nodes", "deflection_segments_defined_length_z_axis_enabled", "deflection_segments_defined_length_y_axis_enabled", "member_type_spring", "member_type_damper_spring", "member_type_damper_damping_coefficient", "generating_object_info", "is_generated", "id_for_export_import", "metadata_for_export_import")
212
+ NO_FIELD_NUMBER: _ClassVar[int]
213
+ TYPE_FIELD_NUMBER: _ClassVar[int]
214
+ IS_DEACTIVATED_FOR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
215
+ LINE_FIELD_NUMBER: _ClassVar[int]
216
+ SECTION_DISTRIBUTION_TYPE_FIELD_NUMBER: _ClassVar[int]
217
+ REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
218
+ NODES_FIELD_NUMBER: _ClassVar[int]
219
+ NODE_START_FIELD_NUMBER: _ClassVar[int]
220
+ NODE_END_FIELD_NUMBER: _ClassVar[int]
221
+ ANALYTICAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
222
+ ANALYTICAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
223
+ ANALYTICAL_SURFACE_OF_COATING_FIELD_NUMBER: _ClassVar[int]
224
+ ANALYTICAL_MASS_FIELD_NUMBER: _ClassVar[int]
225
+ SURFACE_OF_COATING_FIELD_NUMBER: _ClassVar[int]
226
+ ANALYTICAL_CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
227
+ ANALYTICAL_CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
228
+ ANALYTICAL_CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
229
+ ANALYTICAL_CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
230
+ LENGTH_FIELD_NUMBER: _ClassVar[int]
231
+ VOLUME_FIELD_NUMBER: _ClassVar[int]
232
+ MASS_FIELD_NUMBER: _ClassVar[int]
233
+ CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
234
+ CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
235
+ CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
236
+ CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
237
+ MEMBER_REPRESENTATIVE_FIELD_NUMBER: _ClassVar[int]
238
+ DESIGN_PROPERTIES_VIA_MEMBER_FIELD_NUMBER: _ClassVar[int]
239
+ DESIGN_PROPERTIES_VIA_PARENT_MEMBER_SET_FIELD_NUMBER: _ClassVar[int]
240
+ DESIGN_PROPERTIES_PARENT_MEMBER_SET_FIELD_NUMBER: _ClassVar[int]
241
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
242
+ MEMBER_TYPE_RIB_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
243
+ MEMBER_RIB_FIRST_SURFACE_FIELD_NUMBER: _ClassVar[int]
244
+ MEMBER_RIB_SECOND_SURFACE_FIELD_NUMBER: _ClassVar[int]
245
+ MEMBER_RIB_SURFACE_ASSIGNMENT_AUTODETECT_FIELD_NUMBER: _ClassVar[int]
246
+ ALIGN_LOCAL_Z_AXIS_TO_LOCAL_Z_AXIS_OF_SURFACE_FIELD_NUMBER: _ClassVar[int]
247
+ MEMBER_RIB_SHEAR_JOINT_BETWEEN_WEB_AND_FLANGE_FIELD_NUMBER: _ClassVar[int]
248
+ MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_FIELD_NUMBER: _ClassVar[int]
249
+ MEMBER_RIB_REDUCTION_OF_JOINT_WIDTH_FIELD_NUMBER: _ClassVar[int]
250
+ FLANGE_DIMENSIONS_FIELD_NUMBER: _ClassVar[int]
251
+ SYNCHRONIZE_WIDTH_MODE_FIELD_NUMBER: _ClassVar[int]
252
+ RELATIVE_ORDINATES_MODE_FIELD_NUMBER: _ClassVar[int]
253
+ MEMBER_RIB_GENERATING_LONGITUDINAL_REINFORCEMENT_ITEMS_FROM_SURFACES_ENABLED_FIELD_NUMBER: _ClassVar[int]
254
+ MEMBER_TYPE_DEFINABLE_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
255
+ RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FIELD_NUMBER: _ClassVar[int]
256
+ RESULT_BEAM_Y_Z_FIELD_NUMBER: _ClassVar[int]
257
+ RESULT_BEAM_Y_PLUS_FIELD_NUMBER: _ClassVar[int]
258
+ RESULT_BEAM_Z_PLUS_FIELD_NUMBER: _ClassVar[int]
259
+ RESULT_BEAM_Y_MINUS_FIELD_NUMBER: _ClassVar[int]
260
+ RESULT_BEAM_Z_MINUS_FIELD_NUMBER: _ClassVar[int]
261
+ RESULT_BEAM_RADIUS_FIELD_NUMBER: _ClassVar[int]
262
+ RESULT_BEAM_INCLUDE_ALL_SURFACES_FIELD_NUMBER: _ClassVar[int]
263
+ RESULT_BEAM_INCLUDE_SURFACES_FIELD_NUMBER: _ClassVar[int]
264
+ RESULT_BEAM_INCLUDE_ALL_SOLIDS_FIELD_NUMBER: _ClassVar[int]
265
+ RESULT_BEAM_INCLUDE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
266
+ RESULT_BEAM_INCLUDE_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
267
+ RESULT_BEAM_INCLUDE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
268
+ RESULT_BEAM_EXCLUDE_SURFACES_FIELD_NUMBER: _ClassVar[int]
269
+ RESULT_BEAM_EXCLUDE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
270
+ RESULT_BEAM_EXCLUDE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
271
+ PROJECTED_LENGTH_FIELD_NUMBER: _ClassVar[int]
272
+ SECTION_DISTANCE_FROM_START_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
273
+ SECTION_DISTANCE_FROM_START_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
274
+ SECTION_DISTANCE_FROM_START_RELATIVE_FIELD_NUMBER: _ClassVar[int]
275
+ SECTION_DISTANCE_FROM_END_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
276
+ SECTION_DISTANCE_FROM_END_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
277
+ SECTION_DISTANCE_FROM_END_RELATIVE_FIELD_NUMBER: _ClassVar[int]
278
+ SECTION_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
279
+ SECTION_START_FIELD_NUMBER: _ClassVar[int]
280
+ SECTION_END_FIELD_NUMBER: _ClassVar[int]
281
+ SECTION_INTERNAL_FIELD_NUMBER: _ClassVar[int]
282
+ SECTION_MATERIAL_FIELD_NUMBER: _ClassVar[int]
283
+ GRAIN_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
284
+ IS_CURVED_FIELD_NUMBER: _ClassVar[int]
285
+ CURVED_MEMBER_IS_ASYMMETRIC_LAYOUT_FIELD_NUMBER: _ClassVar[int]
286
+ CURVED_MEMBER_IS_CANTILEVERS_FIELD_NUMBER: _ClassVar[int]
287
+ CURVED_MEMBER_CANTILEVERS_TYPE_FIELD_NUMBER: _ClassVar[int]
288
+ CURVED_MEMBER_IS_CAPPED_WITH_LOOSE_RIDGE_WEDGE_FIELD_NUMBER: _ClassVar[int]
289
+ CURVED_MEMBER_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
290
+ ROTATION_SPECIFICATION_TYPE_FIELD_NUMBER: _ClassVar[int]
291
+ ROTATION_ANGLE_FIELD_NUMBER: _ClassVar[int]
292
+ ROTATION_HELP_NODE_FIELD_NUMBER: _ClassVar[int]
293
+ ROTATION_PLANE_TYPE_FIELD_NUMBER: _ClassVar[int]
294
+ ROTATION_SURFACE_FIELD_NUMBER: _ClassVar[int]
295
+ ROTATION_SURFACE_PLANE_TYPE_FIELD_NUMBER: _ClassVar[int]
296
+ IS_ROTATED_FIELD_NUMBER: _ClassVar[int]
297
+ MEMBER_HINGE_START_FIELD_NUMBER: _ClassVar[int]
298
+ MEMBER_HINGE_END_FIELD_NUMBER: _ClassVar[int]
299
+ MEMBER_ECCENTRICITY_START_FIELD_NUMBER: _ClassVar[int]
300
+ MEMBER_ECCENTRICITY_END_FIELD_NUMBER: _ClassVar[int]
301
+ SUPPORT_FIELD_NUMBER: _ClassVar[int]
302
+ MEMBER_TRANSVERSE_STIFFENER_FIELD_NUMBER: _ClassVar[int]
303
+ MEMBER_OPENINGS_FIELD_NUMBER: _ClassVar[int]
304
+ MEMBER_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
305
+ MEMBER_RESULT_INTERMEDIATE_POINT_FIELD_NUMBER: _ClassVar[int]
306
+ STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
307
+ ALUMINUM_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
308
+ ALUMINUM_BOUNDARY_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
309
+ ALUMINUM_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
310
+ ALUMINUM_MEMBER_TRANSVERSE_WELD_FIELD_NUMBER: _ClassVar[int]
311
+ MEMBER_ALUMINUM_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
312
+ MEMBER_ALUMINUM_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
313
+ CONCRETE_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
314
+ CONCRETE_COVER_USER_DEFINED_ENABLED_FIELD_NUMBER: _ClassVar[int]
315
+ CONCRETE_COVER_FIELD_NUMBER: _ClassVar[int]
316
+ CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
317
+ CONCRETE_COVER_LEFT_FIELD_NUMBER: _ClassVar[int]
318
+ CONCRETE_COVER_RIGHT_FIELD_NUMBER: _ClassVar[int]
319
+ CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
320
+ CONCRETE_COVER_MIN_FIELD_NUMBER: _ClassVar[int]
321
+ CONCRETE_COVER_MIN_TOP_FIELD_NUMBER: _ClassVar[int]
322
+ CONCRETE_COVER_MIN_LEFT_FIELD_NUMBER: _ClassVar[int]
323
+ CONCRETE_COVER_MIN_RIGHT_FIELD_NUMBER: _ClassVar[int]
324
+ CONCRETE_COVER_MIN_BOTTOM_FIELD_NUMBER: _ClassVar[int]
325
+ CONCRETE_COVER_DIFFERENT_AT_SECTION_SIDES_ENABLED_FIELD_NUMBER: _ClassVar[int]
326
+ CONCRETE_DURABILITY_FIELD_NUMBER: _ClassVar[int]
327
+ CONCRETE_DURABILITY_TOP_FIELD_NUMBER: _ClassVar[int]
328
+ CONCRETE_DURABILITY_LEFT_FIELD_NUMBER: _ClassVar[int]
329
+ CONCRETE_DURABILITY_RIGHT_FIELD_NUMBER: _ClassVar[int]
330
+ CONCRETE_DURABILITY_BOTTOM_FIELD_NUMBER: _ClassVar[int]
331
+ CONCRETE_SHEAR_REINFORCEMENT_SPANS_FIELD_NUMBER: _ClassVar[int]
332
+ CONCRETE_LONGITUDINAL_REINFORCEMENT_ITEMS_FIELD_NUMBER: _ClassVar[int]
333
+ MEMBER_CONCRETE_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
334
+ MEMBER_CONCRETE_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
335
+ MEMBER_CONCRETE_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
336
+ MEMBER_CONCRETE_DESIGN_SEISMIC_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
337
+ STEEL_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
338
+ STEEL_BOUNDARY_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
339
+ STEEL_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
340
+ STEEL_MEMBER_TRANSVERSE_WELD_FIELD_NUMBER: _ClassVar[int]
341
+ MEMBER_STEEL_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
342
+ MEMBER_STEEL_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
343
+ MEMBER_STEEL_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
344
+ TIMBER_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
345
+ TIMBER_SERVICE_CLASS_FIELD_NUMBER: _ClassVar[int]
346
+ TIMBER_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
347
+ TIMBER_SERVICE_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
348
+ TIMBER_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
349
+ MEMBER_TIMBER_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
350
+ MEMBER_TIMBER_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
351
+ MEMBER_TIMBER_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
352
+ END_MODIFICATIONS_MEMBER_START_EXTENSION_FIELD_NUMBER: _ClassVar[int]
353
+ END_MODIFICATIONS_MEMBER_START_SLOPE_Y_FIELD_NUMBER: _ClassVar[int]
354
+ END_MODIFICATIONS_MEMBER_START_SLOPE_Z_FIELD_NUMBER: _ClassVar[int]
355
+ END_MODIFICATIONS_MEMBER_END_EXTENSION_FIELD_NUMBER: _ClassVar[int]
356
+ END_MODIFICATIONS_MEMBER_END_SLOPE_Y_FIELD_NUMBER: _ClassVar[int]
357
+ END_MODIFICATIONS_MEMBER_END_SLOPE_Z_FIELD_NUMBER: _ClassVar[int]
358
+ HAS_ANY_END_MODIFICATIONS_FIELD_NUMBER: _ClassVar[int]
359
+ DEFLECTION_CHECK_DIRECTION_FIELD_NUMBER: _ClassVar[int]
360
+ DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_FIELD_NUMBER: _ClassVar[int]
361
+ DEFLECTION_SEGMENTS_Z_AXIS_FIELD_NUMBER: _ClassVar[int]
362
+ DEFLECTION_SEGMENTS_Y_AXIS_FIELD_NUMBER: _ClassVar[int]
363
+ DESIGN_SUPPORT_ON_MEMBER_START_FIELD_NUMBER: _ClassVar[int]
364
+ DESIGN_SUPPORT_ON_MEMBER_END_FIELD_NUMBER: _ClassVar[int]
365
+ DESIGN_SUPPORTS_ON_INTERNAL_NODES_FIELD_NUMBER: _ClassVar[int]
366
+ DEFLECTION_SEGMENTS_DEFINED_LENGTH_Z_AXIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
367
+ DEFLECTION_SEGMENTS_DEFINED_LENGTH_Y_AXIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
368
+ MEMBER_TYPE_SPRING_FIELD_NUMBER: _ClassVar[int]
369
+ MEMBER_TYPE_DAMPER_SPRING_FIELD_NUMBER: _ClassVar[int]
370
+ MEMBER_TYPE_DAMPER_DAMPING_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
371
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
372
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
373
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
374
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
375
+ no: int
376
+ type: MemberType
377
+ is_deactivated_for_calculation: bool
378
+ line: int
379
+ section_distribution_type: MemberSectionDistributionType
380
+ reference_type: MemberReferenceType
381
+ nodes: _containers.RepeatedScalarFieldContainer[int]
382
+ node_start: int
383
+ node_end: int
384
+ analytical_length: float
385
+ analytical_volume: float
386
+ analytical_surface_of_coating: float
387
+ analytical_mass: float
388
+ surface_of_coating: float
389
+ analytical_center_of_gravity: _common_pb2.Vector3d
390
+ analytical_center_of_gravity_x: float
391
+ analytical_center_of_gravity_y: float
392
+ analytical_center_of_gravity_z: float
393
+ length: float
394
+ volume: float
395
+ mass: float
396
+ center_of_gravity: _common_pb2.Vector3d
397
+ center_of_gravity_x: float
398
+ center_of_gravity_y: float
399
+ center_of_gravity_z: float
400
+ member_representative: int
401
+ design_properties_via_member: bool
402
+ design_properties_via_parent_member_set: bool
403
+ design_properties_parent_member_set: int
404
+ comment: str
405
+ member_type_rib_alignment: MemberMemberTypeRibAlignment
406
+ member_rib_first_surface: int
407
+ member_rib_second_surface: int
408
+ member_rib_surface_assignment_autodetect: bool
409
+ align_local_z_axis_to_local_z_axis_of_surface: bool
410
+ member_rib_shear_joint_between_web_and_flange: bool
411
+ member_rib_surface_roughness_classification: MemberMemberRibSurfaceRoughnessClassification
412
+ member_rib_reduction_of_joint_width: float
413
+ flange_dimensions: ArrayOfMemberFlangeDimensions
414
+ synchronize_width_mode: bool
415
+ relative_ordinates_mode: bool
416
+ member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled: bool
417
+ member_type_definable_stiffness: int
418
+ result_beam_integrate_stresses_and_forces: MemberResultBeamIntegrateStressesAndForces
419
+ result_beam_y_z: float
420
+ result_beam_y_plus: float
421
+ result_beam_z_plus: float
422
+ result_beam_y_minus: float
423
+ result_beam_z_minus: float
424
+ result_beam_radius: float
425
+ result_beam_include_all_surfaces: bool
426
+ result_beam_include_surfaces: _containers.RepeatedScalarFieldContainer[int]
427
+ result_beam_include_all_solids: bool
428
+ result_beam_include_solids: _containers.RepeatedScalarFieldContainer[int]
429
+ result_beam_include_all_members: bool
430
+ result_beam_include_members: _containers.RepeatedScalarFieldContainer[int]
431
+ result_beam_exclude_surfaces: _containers.RepeatedScalarFieldContainer[int]
432
+ result_beam_exclude_solids: _containers.RepeatedScalarFieldContainer[int]
433
+ result_beam_exclude_members: _containers.RepeatedScalarFieldContainer[int]
434
+ projected_length: float
435
+ section_distance_from_start_is_defined_as_relative: bool
436
+ section_distance_from_start_absolute: float
437
+ section_distance_from_start_relative: float
438
+ section_distance_from_end_is_defined_as_relative: bool
439
+ section_distance_from_end_absolute: float
440
+ section_distance_from_end_relative: float
441
+ section_alignment: MemberSectionAlignment
442
+ section_start: int
443
+ section_end: int
444
+ section_internal: int
445
+ section_material: int
446
+ grain_alignment: MemberGrainAlignment
447
+ is_curved: bool
448
+ curved_member_is_asymmetric_layout: bool
449
+ curved_member_is_cantilevers: bool
450
+ curved_member_cantilevers_type: MemberCurvedMemberCantileversType
451
+ curved_member_is_capped_with_loose_ridge_wedge: bool
452
+ curved_member_parameters: ArrayOfMemberCurvedMemberParametersAndChildItems
453
+ rotation_specification_type: MemberRotationSpecificationType
454
+ rotation_angle: float
455
+ rotation_help_node: int
456
+ rotation_plane_type: MemberRotationPlaneType
457
+ rotation_surface: int
458
+ rotation_surface_plane_type: MemberRotationSurfacePlaneType
459
+ is_rotated: bool
460
+ member_hinge_start: int
461
+ member_hinge_end: int
462
+ member_eccentricity_start: int
463
+ member_eccentricity_end: int
464
+ support: int
465
+ member_transverse_stiffener: int
466
+ member_openings: int
467
+ member_nonlinearity: int
468
+ member_result_intermediate_point: int
469
+ stress_analysis_configuration: int
470
+ aluminum_effective_lengths: int
471
+ aluminum_boundary_conditions: int
472
+ aluminum_member_local_section_reduction: int
473
+ aluminum_member_transverse_weld: int
474
+ member_aluminum_design_uls_configuration: int
475
+ member_aluminum_design_sls_configuration: int
476
+ concrete_effective_lengths: int
477
+ concrete_cover_user_defined_enabled: bool
478
+ concrete_cover: float
479
+ concrete_cover_top: float
480
+ concrete_cover_left: float
481
+ concrete_cover_right: float
482
+ concrete_cover_bottom: float
483
+ concrete_cover_min: _containers.RepeatedScalarFieldContainer[int]
484
+ concrete_cover_min_top: _containers.RepeatedScalarFieldContainer[int]
485
+ concrete_cover_min_left: _containers.RepeatedScalarFieldContainer[int]
486
+ concrete_cover_min_right: _containers.RepeatedScalarFieldContainer[int]
487
+ concrete_cover_min_bottom: _containers.RepeatedScalarFieldContainer[int]
488
+ concrete_cover_different_at_section_sides_enabled: bool
489
+ concrete_durability: int
490
+ concrete_durability_top: int
491
+ concrete_durability_left: int
492
+ concrete_durability_right: int
493
+ concrete_durability_bottom: int
494
+ concrete_shear_reinforcement_spans: ArrayOfMemberConcreteShearReinforcementSpans
495
+ concrete_longitudinal_reinforcement_items: ArrayOfMemberConcreteLongitudinalReinforcementItems
496
+ member_concrete_design_uls_configuration: int
497
+ member_concrete_design_sls_configuration: int
498
+ member_concrete_design_fr_configuration: int
499
+ member_concrete_design_seismic_configuration: int
500
+ steel_effective_lengths: int
501
+ steel_boundary_conditions: int
502
+ steel_member_local_section_reduction: int
503
+ steel_member_transverse_weld: int
504
+ member_steel_design_uls_configuration: int
505
+ member_steel_design_sls_configuration: int
506
+ member_steel_design_fr_configuration: int
507
+ timber_effective_lengths: int
508
+ timber_service_class: int
509
+ timber_moisture_class: int
510
+ timber_service_conditions: int
511
+ timber_member_local_section_reduction: int
512
+ member_timber_design_uls_configuration: int
513
+ member_timber_design_sls_configuration: int
514
+ member_timber_design_fr_configuration: int
515
+ end_modifications_member_start_extension: float
516
+ end_modifications_member_start_slope_y: float
517
+ end_modifications_member_start_slope_z: float
518
+ end_modifications_member_end_extension: float
519
+ end_modifications_member_end_slope_y: float
520
+ end_modifications_member_end_slope_z: float
521
+ has_any_end_modifications: bool
522
+ deflection_check_direction: MemberDeflectionCheckDirection
523
+ deflection_check_displacement_reference: MemberDeflectionCheckDisplacementReference
524
+ deflection_segments_z_axis: ArrayOfMemberDeflectionSegmentsZAxis
525
+ deflection_segments_y_axis: ArrayOfMemberDeflectionSegmentsYAxis
526
+ design_support_on_member_start: int
527
+ design_support_on_member_end: int
528
+ design_supports_on_internal_nodes: ArrayOfMemberDesignSupportsOnInternalNodes
529
+ deflection_segments_defined_length_z_axis_enabled: bool
530
+ deflection_segments_defined_length_y_axis_enabled: bool
531
+ member_type_spring: int
532
+ member_type_damper_spring: int
533
+ member_type_damper_damping_coefficient: float
534
+ generating_object_info: str
535
+ is_generated: bool
536
+ id_for_export_import: str
537
+ metadata_for_export_import: str
538
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[MemberType, str]] = ..., is_deactivated_for_calculation: bool = ..., line: _Optional[int] = ..., section_distribution_type: _Optional[_Union[MemberSectionDistributionType, str]] = ..., reference_type: _Optional[_Union[MemberReferenceType, str]] = ..., nodes: _Optional[_Iterable[int]] = ..., node_start: _Optional[int] = ..., node_end: _Optional[int] = ..., analytical_length: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_surface_of_coating: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., surface_of_coating: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., length: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., member_representative: _Optional[int] = ..., design_properties_via_member: bool = ..., design_properties_via_parent_member_set: bool = ..., design_properties_parent_member_set: _Optional[int] = ..., comment: _Optional[str] = ..., member_type_rib_alignment: _Optional[_Union[MemberMemberTypeRibAlignment, str]] = ..., member_rib_first_surface: _Optional[int] = ..., member_rib_second_surface: _Optional[int] = ..., member_rib_surface_assignment_autodetect: bool = ..., align_local_z_axis_to_local_z_axis_of_surface: bool = ..., member_rib_shear_joint_between_web_and_flange: bool = ..., member_rib_surface_roughness_classification: _Optional[_Union[MemberMemberRibSurfaceRoughnessClassification, str]] = ..., member_rib_reduction_of_joint_width: _Optional[float] = ..., flange_dimensions: _Optional[_Union[ArrayOfMemberFlangeDimensions, _Mapping]] = ..., synchronize_width_mode: bool = ..., relative_ordinates_mode: bool = ..., member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled: bool = ..., member_type_definable_stiffness: _Optional[int] = ..., result_beam_integrate_stresses_and_forces: _Optional[_Union[MemberResultBeamIntegrateStressesAndForces, str]] = ..., result_beam_y_z: _Optional[float] = ..., result_beam_y_plus: _Optional[float] = ..., result_beam_z_plus: _Optional[float] = ..., result_beam_y_minus: _Optional[float] = ..., result_beam_z_minus: _Optional[float] = ..., result_beam_radius: _Optional[float] = ..., result_beam_include_all_surfaces: bool = ..., result_beam_include_surfaces: _Optional[_Iterable[int]] = ..., result_beam_include_all_solids: bool = ..., result_beam_include_solids: _Optional[_Iterable[int]] = ..., result_beam_include_all_members: bool = ..., result_beam_include_members: _Optional[_Iterable[int]] = ..., result_beam_exclude_surfaces: _Optional[_Iterable[int]] = ..., result_beam_exclude_solids: _Optional[_Iterable[int]] = ..., result_beam_exclude_members: _Optional[_Iterable[int]] = ..., projected_length: _Optional[float] = ..., section_distance_from_start_is_defined_as_relative: bool = ..., section_distance_from_start_absolute: _Optional[float] = ..., section_distance_from_start_relative: _Optional[float] = ..., section_distance_from_end_is_defined_as_relative: bool = ..., section_distance_from_end_absolute: _Optional[float] = ..., section_distance_from_end_relative: _Optional[float] = ..., section_alignment: _Optional[_Union[MemberSectionAlignment, str]] = ..., section_start: _Optional[int] = ..., section_end: _Optional[int] = ..., section_internal: _Optional[int] = ..., section_material: _Optional[int] = ..., grain_alignment: _Optional[_Union[MemberGrainAlignment, str]] = ..., is_curved: bool = ..., curved_member_is_asymmetric_layout: bool = ..., curved_member_is_cantilevers: bool = ..., curved_member_cantilevers_type: _Optional[_Union[MemberCurvedMemberCantileversType, str]] = ..., curved_member_is_capped_with_loose_ridge_wedge: bool = ..., curved_member_parameters: _Optional[_Union[ArrayOfMemberCurvedMemberParametersAndChildItems, _Mapping]] = ..., rotation_specification_type: _Optional[_Union[MemberRotationSpecificationType, str]] = ..., rotation_angle: _Optional[float] = ..., rotation_help_node: _Optional[int] = ..., rotation_plane_type: _Optional[_Union[MemberRotationPlaneType, str]] = ..., rotation_surface: _Optional[int] = ..., rotation_surface_plane_type: _Optional[_Union[MemberRotationSurfacePlaneType, str]] = ..., is_rotated: bool = ..., member_hinge_start: _Optional[int] = ..., member_hinge_end: _Optional[int] = ..., member_eccentricity_start: _Optional[int] = ..., member_eccentricity_end: _Optional[int] = ..., support: _Optional[int] = ..., member_transverse_stiffener: _Optional[int] = ..., member_openings: _Optional[int] = ..., member_nonlinearity: _Optional[int] = ..., member_result_intermediate_point: _Optional[int] = ..., stress_analysis_configuration: _Optional[int] = ..., aluminum_effective_lengths: _Optional[int] = ..., aluminum_boundary_conditions: _Optional[int] = ..., aluminum_member_local_section_reduction: _Optional[int] = ..., aluminum_member_transverse_weld: _Optional[int] = ..., member_aluminum_design_uls_configuration: _Optional[int] = ..., member_aluminum_design_sls_configuration: _Optional[int] = ..., concrete_effective_lengths: _Optional[int] = ..., concrete_cover_user_defined_enabled: bool = ..., concrete_cover: _Optional[float] = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_left: _Optional[float] = ..., concrete_cover_right: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., concrete_cover_min: _Optional[_Iterable[int]] = ..., concrete_cover_min_top: _Optional[_Iterable[int]] = ..., concrete_cover_min_left: _Optional[_Iterable[int]] = ..., concrete_cover_min_right: _Optional[_Iterable[int]] = ..., concrete_cover_min_bottom: _Optional[_Iterable[int]] = ..., concrete_cover_different_at_section_sides_enabled: bool = ..., concrete_durability: _Optional[int] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_left: _Optional[int] = ..., concrete_durability_right: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., concrete_shear_reinforcement_spans: _Optional[_Union[ArrayOfMemberConcreteShearReinforcementSpans, _Mapping]] = ..., concrete_longitudinal_reinforcement_items: _Optional[_Union[ArrayOfMemberConcreteLongitudinalReinforcementItems, _Mapping]] = ..., member_concrete_design_uls_configuration: _Optional[int] = ..., member_concrete_design_sls_configuration: _Optional[int] = ..., member_concrete_design_fr_configuration: _Optional[int] = ..., member_concrete_design_seismic_configuration: _Optional[int] = ..., steel_effective_lengths: _Optional[int] = ..., steel_boundary_conditions: _Optional[int] = ..., steel_member_local_section_reduction: _Optional[int] = ..., steel_member_transverse_weld: _Optional[int] = ..., member_steel_design_uls_configuration: _Optional[int] = ..., member_steel_design_sls_configuration: _Optional[int] = ..., member_steel_design_fr_configuration: _Optional[int] = ..., timber_effective_lengths: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., timber_member_local_section_reduction: _Optional[int] = ..., member_timber_design_uls_configuration: _Optional[int] = ..., member_timber_design_sls_configuration: _Optional[int] = ..., member_timber_design_fr_configuration: _Optional[int] = ..., end_modifications_member_start_extension: _Optional[float] = ..., end_modifications_member_start_slope_y: _Optional[float] = ..., end_modifications_member_start_slope_z: _Optional[float] = ..., end_modifications_member_end_extension: _Optional[float] = ..., end_modifications_member_end_slope_y: _Optional[float] = ..., end_modifications_member_end_slope_z: _Optional[float] = ..., has_any_end_modifications: bool = ..., deflection_check_direction: _Optional[_Union[MemberDeflectionCheckDirection, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[MemberDeflectionCheckDisplacementReference, str]] = ..., deflection_segments_z_axis: _Optional[_Union[ArrayOfMemberDeflectionSegmentsZAxis, _Mapping]] = ..., deflection_segments_y_axis: _Optional[_Union[ArrayOfMemberDeflectionSegmentsYAxis, _Mapping]] = ..., design_support_on_member_start: _Optional[int] = ..., design_support_on_member_end: _Optional[int] = ..., design_supports_on_internal_nodes: _Optional[_Union[ArrayOfMemberDesignSupportsOnInternalNodes, _Mapping]] = ..., deflection_segments_defined_length_z_axis_enabled: bool = ..., deflection_segments_defined_length_y_axis_enabled: bool = ..., member_type_spring: _Optional[int] = ..., member_type_damper_spring: _Optional[int] = ..., member_type_damper_damping_coefficient: _Optional[float] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
539
+
540
+ class ArrayOfMemberFlangeDimensions(_message.Message):
541
+ __slots__ = ()
542
+ def __init__(self) -> None: ...
543
+
544
+ class ArrayOfMemberCurvedMemberParametersAndChildItems(_message.Message):
545
+ __slots__ = ()
546
+ def __init__(self) -> None: ...
547
+
548
+ class ArrayOfMemberConcreteShearReinforcementSpans(_message.Message):
549
+ __slots__ = ()
550
+ def __init__(self) -> None: ...
551
+
552
+ class ArrayOfMemberConcreteLongitudinalReinforcementItems(_message.Message):
553
+ __slots__ = ()
554
+ def __init__(self) -> None: ...
555
+
556
+ class ArrayOfMemberDeflectionSegmentsZAxis(_message.Message):
557
+ __slots__ = ()
558
+ def __init__(self) -> None: ...
559
+
560
+ class ArrayOfMemberDeflectionSegmentsYAxis(_message.Message):
561
+ __slots__ = ()
562
+ def __init__(self) -> None: ...
563
+
564
+ class ArrayOfMemberDesignSupportsOnInternalNodes(_message.Message):
565
+ __slots__ = ()
566
+ def __init__(self) -> None: ...