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,590 @@
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 MemberRepresentativeType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ MEMBER_REPRESENTATIVE_TYPE_UNKNOWN: _ClassVar[MemberRepresentativeType]
13
+ MEMBER_REPRESENTATIVE_TYPE_BEAM: _ClassVar[MemberRepresentativeType]
14
+ MEMBER_REPRESENTATIVE_TYPE_BUCKLING: _ClassVar[MemberRepresentativeType]
15
+ MEMBER_REPRESENTATIVE_TYPE_CABLE: _ClassVar[MemberRepresentativeType]
16
+ MEMBER_REPRESENTATIVE_TYPE_COMPRESSION: _ClassVar[MemberRepresentativeType]
17
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_HINGE_HINGE: _ClassVar[MemberRepresentativeType]
18
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_HINGE_RIGID: _ClassVar[MemberRepresentativeType]
19
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_RIGID_HINGE: _ClassVar[MemberRepresentativeType]
20
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_RIGID_RIGID: _ClassVar[MemberRepresentativeType]
21
+ MEMBER_REPRESENTATIVE_TYPE_DAMPER: _ClassVar[MemberRepresentativeType]
22
+ MEMBER_REPRESENTATIVE_TYPE_DEFINABLE_STIFFNESS: _ClassVar[MemberRepresentativeType]
23
+ MEMBER_REPRESENTATIVE_TYPE_JOIST: _ClassVar[MemberRepresentativeType]
24
+ MEMBER_REPRESENTATIVE_TYPE_PILE: _ClassVar[MemberRepresentativeType]
25
+ MEMBER_REPRESENTATIVE_TYPE_RESULT_BEAM: _ClassVar[MemberRepresentativeType]
26
+ MEMBER_REPRESENTATIVE_TYPE_RESULT_LINE: _ClassVar[MemberRepresentativeType]
27
+ MEMBER_REPRESENTATIVE_TYPE_RIB: _ClassVar[MemberRepresentativeType]
28
+ MEMBER_REPRESENTATIVE_TYPE_RIGID: _ClassVar[MemberRepresentativeType]
29
+ MEMBER_REPRESENTATIVE_TYPE_SPRING: _ClassVar[MemberRepresentativeType]
30
+ MEMBER_REPRESENTATIVE_TYPE_SURFACE_MODEL: _ClassVar[MemberRepresentativeType]
31
+ MEMBER_REPRESENTATIVE_TYPE_TENSION: _ClassVar[MemberRepresentativeType]
32
+ MEMBER_REPRESENTATIVE_TYPE_TRUSS: _ClassVar[MemberRepresentativeType]
33
+ MEMBER_REPRESENTATIVE_TYPE_TRUSS_ONLY_N: _ClassVar[MemberRepresentativeType]
34
+
35
+ class MemberRepresentativeSectionDistributionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
36
+ __slots__ = ()
37
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_UNIFORM: _ClassVar[MemberRepresentativeSectionDistributionType]
38
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_CURVED: _ClassVar[MemberRepresentativeSectionDistributionType]
39
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_FISH_BEAM_PARABOLIC: _ClassVar[MemberRepresentativeSectionDistributionType]
40
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_LINEAR: _ClassVar[MemberRepresentativeSectionDistributionType]
41
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_NONE: _ClassVar[MemberRepresentativeSectionDistributionType]
42
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_BOTH_SIDES: _ClassVar[MemberRepresentativeSectionDistributionType]
43
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_END_OF_MEMBER: _ClassVar[MemberRepresentativeSectionDistributionType]
44
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_START_OF_MEMBER: _ClassVar[MemberRepresentativeSectionDistributionType]
45
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_CONSTANT_HEIGHT: _ClassVar[MemberRepresentativeSectionDistributionType]
46
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_VARIABLE_HEIGHT: _ClassVar[MemberRepresentativeSectionDistributionType]
47
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_SADDLE: _ClassVar[MemberRepresentativeSectionDistributionType]
48
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_BOTH_SIDES: _ClassVar[MemberRepresentativeSectionDistributionType]
49
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_END_OF_MEMBER: _ClassVar[MemberRepresentativeSectionDistributionType]
50
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_START_OF_MEMBER: _ClassVar[MemberRepresentativeSectionDistributionType]
51
+
52
+ class MemberRepresentativeReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
53
+ __slots__ = ()
54
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_L: _ClassVar[MemberRepresentativeReferenceType]
55
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_XY: _ClassVar[MemberRepresentativeReferenceType]
56
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_XZ: _ClassVar[MemberRepresentativeReferenceType]
57
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_YZ: _ClassVar[MemberRepresentativeReferenceType]
58
+
59
+ class MemberRepresentativeMemberTypeRibAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
60
+ __slots__ = ()
61
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_NEGATIVE: _ClassVar[MemberRepresentativeMemberTypeRibAlignment]
62
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_CENTRIC: _ClassVar[MemberRepresentativeMemberTypeRibAlignment]
63
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_POSITIVE: _ClassVar[MemberRepresentativeMemberTypeRibAlignment]
64
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_USER_DEFINED_VIA_MEMBER_ECCENTRICITY: _ClassVar[MemberRepresentativeMemberTypeRibAlignment]
65
+
66
+ class MemberRepresentativeMemberRibSurfaceRoughnessClassification(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
67
+ __slots__ = ()
68
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_INDENTED: _ClassVar[MemberRepresentativeMemberRibSurfaceRoughnessClassification]
69
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_ROUGH: _ClassVar[MemberRepresentativeMemberRibSurfaceRoughnessClassification]
70
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_SMOOTH: _ClassVar[MemberRepresentativeMemberRibSurfaceRoughnessClassification]
71
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_VERY_SMOOTH: _ClassVar[MemberRepresentativeMemberRibSurfaceRoughnessClassification]
72
+
73
+ class MemberRepresentativeResultBeamIntegrateStressesAndForces(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
74
+ __slots__ = ()
75
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_QUADRATIC: _ClassVar[MemberRepresentativeResultBeamIntegrateStressesAndForces]
76
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FROM_LISTED_INCLUDE_OBJECTS: _ClassVar[MemberRepresentativeResultBeamIntegrateStressesAndForces]
77
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_GENERAL: _ClassVar[MemberRepresentativeResultBeamIntegrateStressesAndForces]
78
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CYLINDER: _ClassVar[MemberRepresentativeResultBeamIntegrateStressesAndForces]
79
+
80
+ class MemberRepresentativeSectionAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
81
+ __slots__ = ()
82
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_TOP: _ClassVar[MemberRepresentativeSectionAlignment]
83
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_BOTTOM: _ClassVar[MemberRepresentativeSectionAlignment]
84
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_CENTRIC: _ClassVar[MemberRepresentativeSectionAlignment]
85
+
86
+ class MemberRepresentativeGrainAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
87
+ __slots__ = ()
88
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_TOP: _ClassVar[MemberRepresentativeGrainAlignment]
89
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_BOTTOM: _ClassVar[MemberRepresentativeGrainAlignment]
90
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_CENTRIC: _ClassVar[MemberRepresentativeGrainAlignment]
91
+
92
+ class MemberRepresentativeCurvedMemberCantileversType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
93
+ __slots__ = ()
94
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_HORIZONTAL: _ClassVar[MemberRepresentativeCurvedMemberCantileversType]
95
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_OFFSET: _ClassVar[MemberRepresentativeCurvedMemberCantileversType]
96
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_PARALLEL: _ClassVar[MemberRepresentativeCurvedMemberCantileversType]
97
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_TAPER: _ClassVar[MemberRepresentativeCurvedMemberCantileversType]
98
+
99
+ class MemberRepresentativeRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
100
+ __slots__ = ()
101
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: _ClassVar[MemberRepresentativeRotationSpecificationType]
102
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_INSIDE: _ClassVar[MemberRepresentativeRotationSpecificationType]
103
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_SURFACE: _ClassVar[MemberRepresentativeRotationSpecificationType]
104
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_TO_NODE: _ClassVar[MemberRepresentativeRotationSpecificationType]
105
+
106
+ class MemberRepresentativeRotationPlaneType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
107
+ __slots__ = ()
108
+ MEMBER_REPRESENTATIVE_ROTATION_PLANE_TYPE_ROTATION_PLANE_XY: _ClassVar[MemberRepresentativeRotationPlaneType]
109
+ MEMBER_REPRESENTATIVE_ROTATION_PLANE_TYPE_ROTATION_PLANE_XZ: _ClassVar[MemberRepresentativeRotationPlaneType]
110
+
111
+ class MemberRepresentativeRotationSurfacePlaneType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
112
+ __slots__ = ()
113
+ MEMBER_REPRESENTATIVE_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XY: _ClassVar[MemberRepresentativeRotationSurfacePlaneType]
114
+ MEMBER_REPRESENTATIVE_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XZ: _ClassVar[MemberRepresentativeRotationSurfacePlaneType]
115
+
116
+ class MemberRepresentativeDeflectionCheckDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
117
+ __slots__ = ()
118
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
119
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Y: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
120
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
121
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z_AND_Y: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
122
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Y: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
123
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z_AND_Y: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
124
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_RESULTING_AXIS: _ClassVar[MemberRepresentativeDeflectionCheckDirection]
125
+
126
+ class MemberRepresentativeDeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
127
+ __slots__ = ()
128
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_SEGMENT_ENDS: _ClassVar[MemberRepresentativeDeflectionCheckDisplacementReference]
129
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_UNDEFORMED_SYSTEM: _ClassVar[MemberRepresentativeDeflectionCheckDisplacementReference]
130
+ MEMBER_REPRESENTATIVE_TYPE_UNKNOWN: MemberRepresentativeType
131
+ MEMBER_REPRESENTATIVE_TYPE_BEAM: MemberRepresentativeType
132
+ MEMBER_REPRESENTATIVE_TYPE_BUCKLING: MemberRepresentativeType
133
+ MEMBER_REPRESENTATIVE_TYPE_CABLE: MemberRepresentativeType
134
+ MEMBER_REPRESENTATIVE_TYPE_COMPRESSION: MemberRepresentativeType
135
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_HINGE_HINGE: MemberRepresentativeType
136
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_HINGE_RIGID: MemberRepresentativeType
137
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_RIGID_HINGE: MemberRepresentativeType
138
+ MEMBER_REPRESENTATIVE_TYPE_COUPLING_RIGID_RIGID: MemberRepresentativeType
139
+ MEMBER_REPRESENTATIVE_TYPE_DAMPER: MemberRepresentativeType
140
+ MEMBER_REPRESENTATIVE_TYPE_DEFINABLE_STIFFNESS: MemberRepresentativeType
141
+ MEMBER_REPRESENTATIVE_TYPE_JOIST: MemberRepresentativeType
142
+ MEMBER_REPRESENTATIVE_TYPE_PILE: MemberRepresentativeType
143
+ MEMBER_REPRESENTATIVE_TYPE_RESULT_BEAM: MemberRepresentativeType
144
+ MEMBER_REPRESENTATIVE_TYPE_RESULT_LINE: MemberRepresentativeType
145
+ MEMBER_REPRESENTATIVE_TYPE_RIB: MemberRepresentativeType
146
+ MEMBER_REPRESENTATIVE_TYPE_RIGID: MemberRepresentativeType
147
+ MEMBER_REPRESENTATIVE_TYPE_SPRING: MemberRepresentativeType
148
+ MEMBER_REPRESENTATIVE_TYPE_SURFACE_MODEL: MemberRepresentativeType
149
+ MEMBER_REPRESENTATIVE_TYPE_TENSION: MemberRepresentativeType
150
+ MEMBER_REPRESENTATIVE_TYPE_TRUSS: MemberRepresentativeType
151
+ MEMBER_REPRESENTATIVE_TYPE_TRUSS_ONLY_N: MemberRepresentativeType
152
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_UNIFORM: MemberRepresentativeSectionDistributionType
153
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_CURVED: MemberRepresentativeSectionDistributionType
154
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_FISH_BEAM_PARABOLIC: MemberRepresentativeSectionDistributionType
155
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_LINEAR: MemberRepresentativeSectionDistributionType
156
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_NONE: MemberRepresentativeSectionDistributionType
157
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_BOTH_SIDES: MemberRepresentativeSectionDistributionType
158
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_END_OF_MEMBER: MemberRepresentativeSectionDistributionType
159
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_START_OF_MEMBER: MemberRepresentativeSectionDistributionType
160
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_CONSTANT_HEIGHT: MemberRepresentativeSectionDistributionType
161
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_VARIABLE_HEIGHT: MemberRepresentativeSectionDistributionType
162
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_SADDLE: MemberRepresentativeSectionDistributionType
163
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_BOTH_SIDES: MemberRepresentativeSectionDistributionType
164
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_END_OF_MEMBER: MemberRepresentativeSectionDistributionType
165
+ MEMBER_REPRESENTATIVE_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_START_OF_MEMBER: MemberRepresentativeSectionDistributionType
166
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_L: MemberRepresentativeReferenceType
167
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_XY: MemberRepresentativeReferenceType
168
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_XZ: MemberRepresentativeReferenceType
169
+ MEMBER_REPRESENTATIVE_REFERENCE_TYPE_YZ: MemberRepresentativeReferenceType
170
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_NEGATIVE: MemberRepresentativeMemberTypeRibAlignment
171
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_CENTRIC: MemberRepresentativeMemberTypeRibAlignment
172
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_POSITIVE: MemberRepresentativeMemberTypeRibAlignment
173
+ MEMBER_REPRESENTATIVE_MEMBER_TYPE_RIB_ALIGNMENT_USER_DEFINED_VIA_MEMBER_ECCENTRICITY: MemberRepresentativeMemberTypeRibAlignment
174
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_INDENTED: MemberRepresentativeMemberRibSurfaceRoughnessClassification
175
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_ROUGH: MemberRepresentativeMemberRibSurfaceRoughnessClassification
176
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_SMOOTH: MemberRepresentativeMemberRibSurfaceRoughnessClassification
177
+ MEMBER_REPRESENTATIVE_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_VERY_SMOOTH: MemberRepresentativeMemberRibSurfaceRoughnessClassification
178
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_QUADRATIC: MemberRepresentativeResultBeamIntegrateStressesAndForces
179
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FROM_LISTED_INCLUDE_OBJECTS: MemberRepresentativeResultBeamIntegrateStressesAndForces
180
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_GENERAL: MemberRepresentativeResultBeamIntegrateStressesAndForces
181
+ MEMBER_REPRESENTATIVE_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CYLINDER: MemberRepresentativeResultBeamIntegrateStressesAndForces
182
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_TOP: MemberRepresentativeSectionAlignment
183
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_BOTTOM: MemberRepresentativeSectionAlignment
184
+ MEMBER_REPRESENTATIVE_SECTION_ALIGNMENT_CENTRIC: MemberRepresentativeSectionAlignment
185
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_TOP: MemberRepresentativeGrainAlignment
186
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_BOTTOM: MemberRepresentativeGrainAlignment
187
+ MEMBER_REPRESENTATIVE_GRAIN_ALIGNMENT_CENTRIC: MemberRepresentativeGrainAlignment
188
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_HORIZONTAL: MemberRepresentativeCurvedMemberCantileversType
189
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_OFFSET: MemberRepresentativeCurvedMemberCantileversType
190
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_PARALLEL: MemberRepresentativeCurvedMemberCantileversType
191
+ MEMBER_REPRESENTATIVE_CURVED_MEMBER_CANTILEVERS_TYPE_TAPER: MemberRepresentativeCurvedMemberCantileversType
192
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: MemberRepresentativeRotationSpecificationType
193
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_INSIDE: MemberRepresentativeRotationSpecificationType
194
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_SURFACE: MemberRepresentativeRotationSpecificationType
195
+ MEMBER_REPRESENTATIVE_ROTATION_SPECIFICATION_TYPE_TO_NODE: MemberRepresentativeRotationSpecificationType
196
+ MEMBER_REPRESENTATIVE_ROTATION_PLANE_TYPE_ROTATION_PLANE_XY: MemberRepresentativeRotationPlaneType
197
+ MEMBER_REPRESENTATIVE_ROTATION_PLANE_TYPE_ROTATION_PLANE_XZ: MemberRepresentativeRotationPlaneType
198
+ MEMBER_REPRESENTATIVE_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XY: MemberRepresentativeRotationSurfacePlaneType
199
+ MEMBER_REPRESENTATIVE_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XZ: MemberRepresentativeRotationSurfacePlaneType
200
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z: MemberRepresentativeDeflectionCheckDirection
201
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Y: MemberRepresentativeDeflectionCheckDirection
202
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z: MemberRepresentativeDeflectionCheckDirection
203
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z_AND_Y: MemberRepresentativeDeflectionCheckDirection
204
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Y: MemberRepresentativeDeflectionCheckDirection
205
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z_AND_Y: MemberRepresentativeDeflectionCheckDirection
206
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DIRECTION_RESULTING_AXIS: MemberRepresentativeDeflectionCheckDirection
207
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_SEGMENT_ENDS: MemberRepresentativeDeflectionCheckDisplacementReference
208
+ MEMBER_REPRESENTATIVE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_UNDEFORMED_SYSTEM: MemberRepresentativeDeflectionCheckDisplacementReference
209
+
210
+ class MemberRepresentative(_message.Message):
211
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "comment", "number_of_members", "total_length", "total_volume", "total_mass", "total_surface_of_coating", "nodes_on_member_from_start", "is_deactivated_for_calculation", "line", "section_distribution_type", "reference_type", "nodes", "node_start", "node_end", "analytical_length", "analytical_volume", "analytical_mass", "analytical_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", "surface_of_coating", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "member_representative", "member_type_rib_alignment", "member_rib_first_surface", "member_rib_second_surface", "member_rib_surface_assignment_autodetect", "member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled", "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", "result_beam_integrate_stresses_and_forces", "flange_dimensions", "synchronize_width_mode", "relative_ordinates_mode", "member_type_definable_stiffness", "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_surfaces", "result_beam_include_all_surfaces", "result_beam_include_solids", "result_beam_include_all_solids", "result_beam_include_members", "result_beam_include_all_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", "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", "section_start", "section_end", "section_internal", "section_material", "members", "member_hinge_start", "member_hinge_end", "member_eccentricity_start", "member_eccentricity_end", "support", "member_transverse_stiffener", "member_openings", "member_nonlinearity", "member_result_intermediate_point", "concrete_effective_lengths", "steel_effective_lengths", "timber_effective_lengths", "aluminum_effective_lengths", "concrete_shear_reinforcement_spans", "concrete_longitudinal_reinforcement_items", "concrete_cover_user_defined_enabled", "concrete_cover_different_at_section_sides_enabled", "concrete_cover", "concrete_cover_top", "concrete_cover_bottom", "concrete_cover_left", "concrete_cover_right", "concrete_cover_min", "concrete_cover_min_top", "concrete_cover_min_bottom", "concrete_cover_min_left", "concrete_cover_min_right", "concrete_durability", "concrete_durability_top", "concrete_durability_bottom", "concrete_durability_left", "concrete_durability_right", "steel_boundary_conditions", "steel_member_local_section_reduction", "steel_member_transverse_weld", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "timber_member_local_section_reduction", "aluminum_boundary_conditions", "aluminum_member_local_section_reduction", "aluminum_member_transverse_weld", "stress_analysis_configuration", "member_aluminum_design_uls_configuration", "member_aluminum_design_sls_configuration", "member_concrete_design_uls_configuration", "member_concrete_design_sls_configuration", "member_concrete_design_fr_configuration", "member_concrete_design_seismic_configuration", "member_steel_design_uls_configuration", "member_steel_design_sls_configuration", "member_steel_design_fr_configuration", "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", "design_support_on_member_start", "design_support_on_member_end", "design_supports_on_internal_nodes", "is_generated", "generating_object_info", "deflection_segments_defined_length_y_axis_enabled", "deflection_segments_defined_length_z_axis_enabled", "deflection_segments_y_axis", "deflection_segments_z_axis", "concrete_longitudinal_reinforcement_span", "concrete_shear_reinforcement_span", "design_properties_via_member", "design_properties_via_parent_member_set", "design_properties_parent_member_set", "id_for_export_import", "metadata_for_export_import")
212
+ NO_FIELD_NUMBER: _ClassVar[int]
213
+ TYPE_FIELD_NUMBER: _ClassVar[int]
214
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
215
+ NAME_FIELD_NUMBER: _ClassVar[int]
216
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
217
+ NUMBER_OF_MEMBERS_FIELD_NUMBER: _ClassVar[int]
218
+ TOTAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
219
+ TOTAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
220
+ TOTAL_MASS_FIELD_NUMBER: _ClassVar[int]
221
+ TOTAL_SURFACE_OF_COATING_FIELD_NUMBER: _ClassVar[int]
222
+ NODES_ON_MEMBER_FROM_START_FIELD_NUMBER: _ClassVar[int]
223
+ IS_DEACTIVATED_FOR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
224
+ LINE_FIELD_NUMBER: _ClassVar[int]
225
+ SECTION_DISTRIBUTION_TYPE_FIELD_NUMBER: _ClassVar[int]
226
+ REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
227
+ NODES_FIELD_NUMBER: _ClassVar[int]
228
+ NODE_START_FIELD_NUMBER: _ClassVar[int]
229
+ NODE_END_FIELD_NUMBER: _ClassVar[int]
230
+ ANALYTICAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
231
+ ANALYTICAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
232
+ ANALYTICAL_MASS_FIELD_NUMBER: _ClassVar[int]
233
+ ANALYTICAL_SURFACE_OF_COATING_FIELD_NUMBER: _ClassVar[int]
234
+ ANALYTICAL_CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
235
+ ANALYTICAL_CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
236
+ ANALYTICAL_CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
237
+ ANALYTICAL_CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
238
+ LENGTH_FIELD_NUMBER: _ClassVar[int]
239
+ VOLUME_FIELD_NUMBER: _ClassVar[int]
240
+ MASS_FIELD_NUMBER: _ClassVar[int]
241
+ SURFACE_OF_COATING_FIELD_NUMBER: _ClassVar[int]
242
+ CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
243
+ CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
244
+ CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
245
+ CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
246
+ MEMBER_REPRESENTATIVE_FIELD_NUMBER: _ClassVar[int]
247
+ MEMBER_TYPE_RIB_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
248
+ MEMBER_RIB_FIRST_SURFACE_FIELD_NUMBER: _ClassVar[int]
249
+ MEMBER_RIB_SECOND_SURFACE_FIELD_NUMBER: _ClassVar[int]
250
+ MEMBER_RIB_SURFACE_ASSIGNMENT_AUTODETECT_FIELD_NUMBER: _ClassVar[int]
251
+ MEMBER_RIB_GENERATING_LONGITUDINAL_REINFORCEMENT_ITEMS_FROM_SURFACES_ENABLED_FIELD_NUMBER: _ClassVar[int]
252
+ ALIGN_LOCAL_Z_AXIS_TO_LOCAL_Z_AXIS_OF_SURFACE_FIELD_NUMBER: _ClassVar[int]
253
+ MEMBER_RIB_SHEAR_JOINT_BETWEEN_WEB_AND_FLANGE_FIELD_NUMBER: _ClassVar[int]
254
+ MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_FIELD_NUMBER: _ClassVar[int]
255
+ MEMBER_RIB_REDUCTION_OF_JOINT_WIDTH_FIELD_NUMBER: _ClassVar[int]
256
+ RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FIELD_NUMBER: _ClassVar[int]
257
+ FLANGE_DIMENSIONS_FIELD_NUMBER: _ClassVar[int]
258
+ SYNCHRONIZE_WIDTH_MODE_FIELD_NUMBER: _ClassVar[int]
259
+ RELATIVE_ORDINATES_MODE_FIELD_NUMBER: _ClassVar[int]
260
+ MEMBER_TYPE_DEFINABLE_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
261
+ RESULT_BEAM_Y_Z_FIELD_NUMBER: _ClassVar[int]
262
+ RESULT_BEAM_Y_PLUS_FIELD_NUMBER: _ClassVar[int]
263
+ RESULT_BEAM_Z_PLUS_FIELD_NUMBER: _ClassVar[int]
264
+ RESULT_BEAM_Y_MINUS_FIELD_NUMBER: _ClassVar[int]
265
+ RESULT_BEAM_Z_MINUS_FIELD_NUMBER: _ClassVar[int]
266
+ RESULT_BEAM_RADIUS_FIELD_NUMBER: _ClassVar[int]
267
+ RESULT_BEAM_INCLUDE_SURFACES_FIELD_NUMBER: _ClassVar[int]
268
+ RESULT_BEAM_INCLUDE_ALL_SURFACES_FIELD_NUMBER: _ClassVar[int]
269
+ RESULT_BEAM_INCLUDE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
270
+ RESULT_BEAM_INCLUDE_ALL_SOLIDS_FIELD_NUMBER: _ClassVar[int]
271
+ RESULT_BEAM_INCLUDE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
272
+ RESULT_BEAM_INCLUDE_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
273
+ RESULT_BEAM_EXCLUDE_SURFACES_FIELD_NUMBER: _ClassVar[int]
274
+ RESULT_BEAM_EXCLUDE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
275
+ RESULT_BEAM_EXCLUDE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
276
+ PROJECTED_LENGTH_FIELD_NUMBER: _ClassVar[int]
277
+ SECTION_DISTANCE_FROM_START_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
278
+ SECTION_DISTANCE_FROM_START_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
279
+ SECTION_DISTANCE_FROM_START_RELATIVE_FIELD_NUMBER: _ClassVar[int]
280
+ SECTION_DISTANCE_FROM_END_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
281
+ SECTION_DISTANCE_FROM_END_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
282
+ SECTION_DISTANCE_FROM_END_RELATIVE_FIELD_NUMBER: _ClassVar[int]
283
+ SECTION_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
284
+ GRAIN_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
285
+ IS_CURVED_FIELD_NUMBER: _ClassVar[int]
286
+ CURVED_MEMBER_IS_ASYMMETRIC_LAYOUT_FIELD_NUMBER: _ClassVar[int]
287
+ CURVED_MEMBER_IS_CANTILEVERS_FIELD_NUMBER: _ClassVar[int]
288
+ CURVED_MEMBER_CANTILEVERS_TYPE_FIELD_NUMBER: _ClassVar[int]
289
+ CURVED_MEMBER_IS_CAPPED_WITH_LOOSE_RIDGE_WEDGE_FIELD_NUMBER: _ClassVar[int]
290
+ CURVED_MEMBER_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
291
+ ROTATION_SPECIFICATION_TYPE_FIELD_NUMBER: _ClassVar[int]
292
+ ROTATION_ANGLE_FIELD_NUMBER: _ClassVar[int]
293
+ ROTATION_HELP_NODE_FIELD_NUMBER: _ClassVar[int]
294
+ ROTATION_PLANE_TYPE_FIELD_NUMBER: _ClassVar[int]
295
+ ROTATION_SURFACE_FIELD_NUMBER: _ClassVar[int]
296
+ ROTATION_SURFACE_PLANE_TYPE_FIELD_NUMBER: _ClassVar[int]
297
+ IS_ROTATED_FIELD_NUMBER: _ClassVar[int]
298
+ SECTION_START_FIELD_NUMBER: _ClassVar[int]
299
+ SECTION_END_FIELD_NUMBER: _ClassVar[int]
300
+ SECTION_INTERNAL_FIELD_NUMBER: _ClassVar[int]
301
+ SECTION_MATERIAL_FIELD_NUMBER: _ClassVar[int]
302
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
303
+ MEMBER_HINGE_START_FIELD_NUMBER: _ClassVar[int]
304
+ MEMBER_HINGE_END_FIELD_NUMBER: _ClassVar[int]
305
+ MEMBER_ECCENTRICITY_START_FIELD_NUMBER: _ClassVar[int]
306
+ MEMBER_ECCENTRICITY_END_FIELD_NUMBER: _ClassVar[int]
307
+ SUPPORT_FIELD_NUMBER: _ClassVar[int]
308
+ MEMBER_TRANSVERSE_STIFFENER_FIELD_NUMBER: _ClassVar[int]
309
+ MEMBER_OPENINGS_FIELD_NUMBER: _ClassVar[int]
310
+ MEMBER_NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
311
+ MEMBER_RESULT_INTERMEDIATE_POINT_FIELD_NUMBER: _ClassVar[int]
312
+ CONCRETE_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
313
+ STEEL_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
314
+ TIMBER_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
315
+ ALUMINUM_EFFECTIVE_LENGTHS_FIELD_NUMBER: _ClassVar[int]
316
+ CONCRETE_SHEAR_REINFORCEMENT_SPANS_FIELD_NUMBER: _ClassVar[int]
317
+ CONCRETE_LONGITUDINAL_REINFORCEMENT_ITEMS_FIELD_NUMBER: _ClassVar[int]
318
+ CONCRETE_COVER_USER_DEFINED_ENABLED_FIELD_NUMBER: _ClassVar[int]
319
+ CONCRETE_COVER_DIFFERENT_AT_SECTION_SIDES_ENABLED_FIELD_NUMBER: _ClassVar[int]
320
+ CONCRETE_COVER_FIELD_NUMBER: _ClassVar[int]
321
+ CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
322
+ CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
323
+ CONCRETE_COVER_LEFT_FIELD_NUMBER: _ClassVar[int]
324
+ CONCRETE_COVER_RIGHT_FIELD_NUMBER: _ClassVar[int]
325
+ CONCRETE_COVER_MIN_FIELD_NUMBER: _ClassVar[int]
326
+ CONCRETE_COVER_MIN_TOP_FIELD_NUMBER: _ClassVar[int]
327
+ CONCRETE_COVER_MIN_BOTTOM_FIELD_NUMBER: _ClassVar[int]
328
+ CONCRETE_COVER_MIN_LEFT_FIELD_NUMBER: _ClassVar[int]
329
+ CONCRETE_COVER_MIN_RIGHT_FIELD_NUMBER: _ClassVar[int]
330
+ CONCRETE_DURABILITY_FIELD_NUMBER: _ClassVar[int]
331
+ CONCRETE_DURABILITY_TOP_FIELD_NUMBER: _ClassVar[int]
332
+ CONCRETE_DURABILITY_BOTTOM_FIELD_NUMBER: _ClassVar[int]
333
+ CONCRETE_DURABILITY_LEFT_FIELD_NUMBER: _ClassVar[int]
334
+ CONCRETE_DURABILITY_RIGHT_FIELD_NUMBER: _ClassVar[int]
335
+ STEEL_BOUNDARY_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
336
+ STEEL_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
337
+ STEEL_MEMBER_TRANSVERSE_WELD_FIELD_NUMBER: _ClassVar[int]
338
+ TIMBER_SERVICE_CLASS_FIELD_NUMBER: _ClassVar[int]
339
+ TIMBER_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
340
+ TIMBER_SERVICE_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
341
+ TIMBER_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
342
+ ALUMINUM_BOUNDARY_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
343
+ ALUMINUM_MEMBER_LOCAL_SECTION_REDUCTION_FIELD_NUMBER: _ClassVar[int]
344
+ ALUMINUM_MEMBER_TRANSVERSE_WELD_FIELD_NUMBER: _ClassVar[int]
345
+ STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
346
+ MEMBER_ALUMINUM_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
347
+ MEMBER_ALUMINUM_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
348
+ MEMBER_CONCRETE_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
349
+ MEMBER_CONCRETE_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
350
+ MEMBER_CONCRETE_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
351
+ MEMBER_CONCRETE_DESIGN_SEISMIC_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
352
+ MEMBER_STEEL_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
353
+ MEMBER_STEEL_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
354
+ MEMBER_STEEL_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
355
+ MEMBER_TIMBER_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
356
+ MEMBER_TIMBER_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
357
+ MEMBER_TIMBER_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
358
+ END_MODIFICATIONS_MEMBER_START_EXTENSION_FIELD_NUMBER: _ClassVar[int]
359
+ END_MODIFICATIONS_MEMBER_START_SLOPE_Y_FIELD_NUMBER: _ClassVar[int]
360
+ END_MODIFICATIONS_MEMBER_START_SLOPE_Z_FIELD_NUMBER: _ClassVar[int]
361
+ END_MODIFICATIONS_MEMBER_END_EXTENSION_FIELD_NUMBER: _ClassVar[int]
362
+ END_MODIFICATIONS_MEMBER_END_SLOPE_Y_FIELD_NUMBER: _ClassVar[int]
363
+ END_MODIFICATIONS_MEMBER_END_SLOPE_Z_FIELD_NUMBER: _ClassVar[int]
364
+ HAS_ANY_END_MODIFICATIONS_FIELD_NUMBER: _ClassVar[int]
365
+ DEFLECTION_CHECK_DIRECTION_FIELD_NUMBER: _ClassVar[int]
366
+ DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_FIELD_NUMBER: _ClassVar[int]
367
+ DESIGN_SUPPORT_ON_MEMBER_START_FIELD_NUMBER: _ClassVar[int]
368
+ DESIGN_SUPPORT_ON_MEMBER_END_FIELD_NUMBER: _ClassVar[int]
369
+ DESIGN_SUPPORTS_ON_INTERNAL_NODES_FIELD_NUMBER: _ClassVar[int]
370
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
371
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
372
+ DEFLECTION_SEGMENTS_DEFINED_LENGTH_Y_AXIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
373
+ DEFLECTION_SEGMENTS_DEFINED_LENGTH_Z_AXIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
374
+ DEFLECTION_SEGMENTS_Y_AXIS_FIELD_NUMBER: _ClassVar[int]
375
+ DEFLECTION_SEGMENTS_Z_AXIS_FIELD_NUMBER: _ClassVar[int]
376
+ CONCRETE_LONGITUDINAL_REINFORCEMENT_SPAN_FIELD_NUMBER: _ClassVar[int]
377
+ CONCRETE_SHEAR_REINFORCEMENT_SPAN_FIELD_NUMBER: _ClassVar[int]
378
+ DESIGN_PROPERTIES_VIA_MEMBER_FIELD_NUMBER: _ClassVar[int]
379
+ DESIGN_PROPERTIES_VIA_PARENT_MEMBER_SET_FIELD_NUMBER: _ClassVar[int]
380
+ DESIGN_PROPERTIES_PARENT_MEMBER_SET_FIELD_NUMBER: _ClassVar[int]
381
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
382
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
383
+ no: int
384
+ type: MemberRepresentativeType
385
+ user_defined_name_enabled: bool
386
+ name: str
387
+ comment: str
388
+ number_of_members: int
389
+ total_length: float
390
+ total_volume: float
391
+ total_mass: float
392
+ total_surface_of_coating: float
393
+ nodes_on_member_from_start: _containers.RepeatedScalarFieldContainer[int]
394
+ is_deactivated_for_calculation: bool
395
+ line: int
396
+ section_distribution_type: MemberRepresentativeSectionDistributionType
397
+ reference_type: MemberRepresentativeReferenceType
398
+ nodes: _containers.RepeatedScalarFieldContainer[int]
399
+ node_start: int
400
+ node_end: int
401
+ analytical_length: float
402
+ analytical_volume: float
403
+ analytical_mass: float
404
+ analytical_surface_of_coating: float
405
+ analytical_center_of_gravity: _common_pb2.Vector3d
406
+ analytical_center_of_gravity_x: float
407
+ analytical_center_of_gravity_y: float
408
+ analytical_center_of_gravity_z: float
409
+ length: float
410
+ volume: float
411
+ mass: float
412
+ surface_of_coating: float
413
+ center_of_gravity: _common_pb2.Vector3d
414
+ center_of_gravity_x: float
415
+ center_of_gravity_y: float
416
+ center_of_gravity_z: float
417
+ member_representative: int
418
+ member_type_rib_alignment: MemberRepresentativeMemberTypeRibAlignment
419
+ member_rib_first_surface: int
420
+ member_rib_second_surface: int
421
+ member_rib_surface_assignment_autodetect: bool
422
+ member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled: bool
423
+ align_local_z_axis_to_local_z_axis_of_surface: bool
424
+ member_rib_shear_joint_between_web_and_flange: bool
425
+ member_rib_surface_roughness_classification: MemberRepresentativeMemberRibSurfaceRoughnessClassification
426
+ member_rib_reduction_of_joint_width: float
427
+ result_beam_integrate_stresses_and_forces: MemberRepresentativeResultBeamIntegrateStressesAndForces
428
+ flange_dimensions: ArrayOfMemberRepresentativeFlangeDimensions
429
+ synchronize_width_mode: bool
430
+ relative_ordinates_mode: bool
431
+ member_type_definable_stiffness: int
432
+ result_beam_y_z: float
433
+ result_beam_y_plus: float
434
+ result_beam_z_plus: float
435
+ result_beam_y_minus: float
436
+ result_beam_z_minus: float
437
+ result_beam_radius: float
438
+ result_beam_include_surfaces: _containers.RepeatedScalarFieldContainer[int]
439
+ result_beam_include_all_surfaces: bool
440
+ result_beam_include_solids: _containers.RepeatedScalarFieldContainer[int]
441
+ result_beam_include_all_solids: bool
442
+ result_beam_include_members: _containers.RepeatedScalarFieldContainer[int]
443
+ result_beam_include_all_members: bool
444
+ result_beam_exclude_surfaces: _containers.RepeatedScalarFieldContainer[int]
445
+ result_beam_exclude_solids: _containers.RepeatedScalarFieldContainer[int]
446
+ result_beam_exclude_members: _containers.RepeatedScalarFieldContainer[int]
447
+ projected_length: float
448
+ section_distance_from_start_is_defined_as_relative: bool
449
+ section_distance_from_start_absolute: float
450
+ section_distance_from_start_relative: float
451
+ section_distance_from_end_is_defined_as_relative: bool
452
+ section_distance_from_end_absolute: float
453
+ section_distance_from_end_relative: float
454
+ section_alignment: MemberRepresentativeSectionAlignment
455
+ grain_alignment: MemberRepresentativeGrainAlignment
456
+ is_curved: bool
457
+ curved_member_is_asymmetric_layout: bool
458
+ curved_member_is_cantilevers: bool
459
+ curved_member_cantilevers_type: MemberRepresentativeCurvedMemberCantileversType
460
+ curved_member_is_capped_with_loose_ridge_wedge: bool
461
+ curved_member_parameters: ArrayOfMemberRepresentativeCurvedMemberParametersAndChildItems
462
+ rotation_specification_type: MemberRepresentativeRotationSpecificationType
463
+ rotation_angle: float
464
+ rotation_help_node: int
465
+ rotation_plane_type: MemberRepresentativeRotationPlaneType
466
+ rotation_surface: int
467
+ rotation_surface_plane_type: MemberRepresentativeRotationSurfacePlaneType
468
+ is_rotated: bool
469
+ section_start: int
470
+ section_end: int
471
+ section_internal: int
472
+ section_material: int
473
+ members: _containers.RepeatedScalarFieldContainer[int]
474
+ member_hinge_start: int
475
+ member_hinge_end: int
476
+ member_eccentricity_start: int
477
+ member_eccentricity_end: int
478
+ support: int
479
+ member_transverse_stiffener: int
480
+ member_openings: int
481
+ member_nonlinearity: int
482
+ member_result_intermediate_point: int
483
+ concrete_effective_lengths: int
484
+ steel_effective_lengths: int
485
+ timber_effective_lengths: int
486
+ aluminum_effective_lengths: int
487
+ concrete_shear_reinforcement_spans: ArrayOfMemberRepresentativeConcreteShearReinforcementSpans
488
+ concrete_longitudinal_reinforcement_items: ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementItems
489
+ concrete_cover_user_defined_enabled: bool
490
+ concrete_cover_different_at_section_sides_enabled: bool
491
+ concrete_cover: float
492
+ concrete_cover_top: float
493
+ concrete_cover_bottom: float
494
+ concrete_cover_left: float
495
+ concrete_cover_right: float
496
+ concrete_cover_min: _containers.RepeatedScalarFieldContainer[int]
497
+ concrete_cover_min_top: _containers.RepeatedScalarFieldContainer[int]
498
+ concrete_cover_min_bottom: _containers.RepeatedScalarFieldContainer[int]
499
+ concrete_cover_min_left: _containers.RepeatedScalarFieldContainer[int]
500
+ concrete_cover_min_right: _containers.RepeatedScalarFieldContainer[int]
501
+ concrete_durability: int
502
+ concrete_durability_top: int
503
+ concrete_durability_bottom: int
504
+ concrete_durability_left: int
505
+ concrete_durability_right: int
506
+ steel_boundary_conditions: int
507
+ steel_member_local_section_reduction: int
508
+ steel_member_transverse_weld: int
509
+ timber_service_class: int
510
+ timber_moisture_class: int
511
+ timber_service_conditions: int
512
+ timber_member_local_section_reduction: int
513
+ aluminum_boundary_conditions: int
514
+ aluminum_member_local_section_reduction: int
515
+ aluminum_member_transverse_weld: int
516
+ stress_analysis_configuration: int
517
+ member_aluminum_design_uls_configuration: int
518
+ member_aluminum_design_sls_configuration: int
519
+ member_concrete_design_uls_configuration: int
520
+ member_concrete_design_sls_configuration: int
521
+ member_concrete_design_fr_configuration: int
522
+ member_concrete_design_seismic_configuration: int
523
+ member_steel_design_uls_configuration: int
524
+ member_steel_design_sls_configuration: int
525
+ member_steel_design_fr_configuration: int
526
+ member_timber_design_uls_configuration: int
527
+ member_timber_design_sls_configuration: int
528
+ member_timber_design_fr_configuration: int
529
+ end_modifications_member_start_extension: float
530
+ end_modifications_member_start_slope_y: float
531
+ end_modifications_member_start_slope_z: float
532
+ end_modifications_member_end_extension: float
533
+ end_modifications_member_end_slope_y: float
534
+ end_modifications_member_end_slope_z: float
535
+ has_any_end_modifications: bool
536
+ deflection_check_direction: MemberRepresentativeDeflectionCheckDirection
537
+ deflection_check_displacement_reference: MemberRepresentativeDeflectionCheckDisplacementReference
538
+ design_support_on_member_start: int
539
+ design_support_on_member_end: int
540
+ design_supports_on_internal_nodes: ArrayOfMemberRepresentativeDesignSupportsOnInternalNodes
541
+ is_generated: bool
542
+ generating_object_info: str
543
+ deflection_segments_defined_length_y_axis_enabled: bool
544
+ deflection_segments_defined_length_z_axis_enabled: bool
545
+ deflection_segments_y_axis: ArrayOfMemberRepresentativeDeflectionSegmentsYAxis
546
+ deflection_segments_z_axis: ArrayOfMemberRepresentativeDeflectionSegmentsZAxis
547
+ concrete_longitudinal_reinforcement_span: ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementSpan
548
+ concrete_shear_reinforcement_span: ArrayOfMemberRepresentativeConcreteShearReinforcementSpan
549
+ design_properties_via_member: bool
550
+ design_properties_via_parent_member_set: bool
551
+ design_properties_parent_member_set: int
552
+ id_for_export_import: str
553
+ metadata_for_export_import: str
554
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[MemberRepresentativeType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., number_of_members: _Optional[int] = ..., total_length: _Optional[float] = ..., total_volume: _Optional[float] = ..., total_mass: _Optional[float] = ..., total_surface_of_coating: _Optional[float] = ..., nodes_on_member_from_start: _Optional[_Iterable[int]] = ..., is_deactivated_for_calculation: bool = ..., line: _Optional[int] = ..., section_distribution_type: _Optional[_Union[MemberRepresentativeSectionDistributionType, str]] = ..., reference_type: _Optional[_Union[MemberRepresentativeReferenceType, str]] = ..., nodes: _Optional[_Iterable[int]] = ..., node_start: _Optional[int] = ..., node_end: _Optional[int] = ..., analytical_length: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_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] = ..., surface_of_coating: _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] = ..., member_type_rib_alignment: _Optional[_Union[MemberRepresentativeMemberTypeRibAlignment, str]] = ..., member_rib_first_surface: _Optional[int] = ..., member_rib_second_surface: _Optional[int] = ..., member_rib_surface_assignment_autodetect: bool = ..., member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled: 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[MemberRepresentativeMemberRibSurfaceRoughnessClassification, str]] = ..., member_rib_reduction_of_joint_width: _Optional[float] = ..., result_beam_integrate_stresses_and_forces: _Optional[_Union[MemberRepresentativeResultBeamIntegrateStressesAndForces, str]] = ..., flange_dimensions: _Optional[_Union[ArrayOfMemberRepresentativeFlangeDimensions, _Mapping]] = ..., synchronize_width_mode: bool = ..., relative_ordinates_mode: bool = ..., member_type_definable_stiffness: _Optional[int] = ..., 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_surfaces: _Optional[_Iterable[int]] = ..., result_beam_include_all_surfaces: bool = ..., result_beam_include_solids: _Optional[_Iterable[int]] = ..., result_beam_include_all_solids: bool = ..., result_beam_include_members: _Optional[_Iterable[int]] = ..., result_beam_include_all_members: bool = ..., 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[MemberRepresentativeSectionAlignment, str]] = ..., grain_alignment: _Optional[_Union[MemberRepresentativeGrainAlignment, str]] = ..., is_curved: bool = ..., curved_member_is_asymmetric_layout: bool = ..., curved_member_is_cantilevers: bool = ..., curved_member_cantilevers_type: _Optional[_Union[MemberRepresentativeCurvedMemberCantileversType, str]] = ..., curved_member_is_capped_with_loose_ridge_wedge: bool = ..., curved_member_parameters: _Optional[_Union[ArrayOfMemberRepresentativeCurvedMemberParametersAndChildItems, _Mapping]] = ..., rotation_specification_type: _Optional[_Union[MemberRepresentativeRotationSpecificationType, str]] = ..., rotation_angle: _Optional[float] = ..., rotation_help_node: _Optional[int] = ..., rotation_plane_type: _Optional[_Union[MemberRepresentativeRotationPlaneType, str]] = ..., rotation_surface: _Optional[int] = ..., rotation_surface_plane_type: _Optional[_Union[MemberRepresentativeRotationSurfacePlaneType, str]] = ..., is_rotated: bool = ..., section_start: _Optional[int] = ..., section_end: _Optional[int] = ..., section_internal: _Optional[int] = ..., section_material: _Optional[int] = ..., members: _Optional[_Iterable[int]] = ..., 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] = ..., concrete_effective_lengths: _Optional[int] = ..., steel_effective_lengths: _Optional[int] = ..., timber_effective_lengths: _Optional[int] = ..., aluminum_effective_lengths: _Optional[int] = ..., concrete_shear_reinforcement_spans: _Optional[_Union[ArrayOfMemberRepresentativeConcreteShearReinforcementSpans, _Mapping]] = ..., concrete_longitudinal_reinforcement_items: _Optional[_Union[ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementItems, _Mapping]] = ..., concrete_cover_user_defined_enabled: bool = ..., concrete_cover_different_at_section_sides_enabled: bool = ..., concrete_cover: _Optional[float] = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., concrete_cover_left: _Optional[float] = ..., concrete_cover_right: _Optional[float] = ..., concrete_cover_min: _Optional[_Iterable[int]] = ..., concrete_cover_min_top: _Optional[_Iterable[int]] = ..., concrete_cover_min_bottom: _Optional[_Iterable[int]] = ..., concrete_cover_min_left: _Optional[_Iterable[int]] = ..., concrete_cover_min_right: _Optional[_Iterable[int]] = ..., concrete_durability: _Optional[int] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., concrete_durability_left: _Optional[int] = ..., concrete_durability_right: _Optional[int] = ..., steel_boundary_conditions: _Optional[int] = ..., steel_member_local_section_reduction: _Optional[int] = ..., steel_member_transverse_weld: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., timber_member_local_section_reduction: _Optional[int] = ..., aluminum_boundary_conditions: _Optional[int] = ..., aluminum_member_local_section_reduction: _Optional[int] = ..., aluminum_member_transverse_weld: _Optional[int] = ..., stress_analysis_configuration: _Optional[int] = ..., member_aluminum_design_uls_configuration: _Optional[int] = ..., member_aluminum_design_sls_configuration: _Optional[int] = ..., 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] = ..., member_steel_design_uls_configuration: _Optional[int] = ..., member_steel_design_sls_configuration: _Optional[int] = ..., member_steel_design_fr_configuration: _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[MemberRepresentativeDeflectionCheckDirection, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[MemberRepresentativeDeflectionCheckDisplacementReference, str]] = ..., design_support_on_member_start: _Optional[int] = ..., design_support_on_member_end: _Optional[int] = ..., design_supports_on_internal_nodes: _Optional[_Union[ArrayOfMemberRepresentativeDesignSupportsOnInternalNodes, _Mapping]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., deflection_segments_defined_length_y_axis_enabled: bool = ..., deflection_segments_defined_length_z_axis_enabled: bool = ..., deflection_segments_y_axis: _Optional[_Union[ArrayOfMemberRepresentativeDeflectionSegmentsYAxis, _Mapping]] = ..., deflection_segments_z_axis: _Optional[_Union[ArrayOfMemberRepresentativeDeflectionSegmentsZAxis, _Mapping]] = ..., concrete_longitudinal_reinforcement_span: _Optional[_Union[ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementSpan, _Mapping]] = ..., concrete_shear_reinforcement_span: _Optional[_Union[ArrayOfMemberRepresentativeConcreteShearReinforcementSpan, _Mapping]] = ..., design_properties_via_member: bool = ..., design_properties_via_parent_member_set: bool = ..., design_properties_parent_member_set: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
555
+
556
+ class ArrayOfMemberRepresentativeFlangeDimensions(_message.Message):
557
+ __slots__ = ()
558
+ def __init__(self) -> None: ...
559
+
560
+ class ArrayOfMemberRepresentativeCurvedMemberParametersAndChildItems(_message.Message):
561
+ __slots__ = ()
562
+ def __init__(self) -> None: ...
563
+
564
+ class ArrayOfMemberRepresentativeConcreteShearReinforcementSpans(_message.Message):
565
+ __slots__ = ()
566
+ def __init__(self) -> None: ...
567
+
568
+ class ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementItems(_message.Message):
569
+ __slots__ = ()
570
+ def __init__(self) -> None: ...
571
+
572
+ class ArrayOfMemberRepresentativeDesignSupportsOnInternalNodes(_message.Message):
573
+ __slots__ = ()
574
+ def __init__(self) -> None: ...
575
+
576
+ class ArrayOfMemberRepresentativeDeflectionSegmentsYAxis(_message.Message):
577
+ __slots__ = ()
578
+ def __init__(self) -> None: ...
579
+
580
+ class ArrayOfMemberRepresentativeDeflectionSegmentsZAxis(_message.Message):
581
+ __slots__ = ()
582
+ def __init__(self) -> None: ...
583
+
584
+ class ArrayOfMemberRepresentativeConcreteLongitudinalReinforcementSpan(_message.Message):
585
+ __slots__ = ()
586
+ def __init__(self) -> None: ...
587
+
588
+ class ArrayOfMemberRepresentativeConcreteShearReinforcementSpan(_message.Message):
589
+ __slots__ = ()
590
+ def __init__(self) -> None: ...