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,79 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/structure_core/member.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/structure_core/member.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+dlubal/api/rfem/structure_core/member.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xb1\x65\n\x06Member\x12\n\n\x02no\x18\x01 \x01(\x05\x12=\n\x04type\x18\x02 \x01(\x0e\x32*.dlubal.api.rfem.structure_core.MemberTypeH\x00\x88\x01\x01\x12+\n\x1eis_deactivated_for_calculation\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04line\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x65\n\x19section_distribution_type\x18\x05 \x01(\x0e\x32=.dlubal.api.rfem.structure_core.MemberSectionDistributionTypeH\x03\x88\x01\x01\x12P\n\x0ereference_type\x18\x06 \x01(\x0e\x32\x33.dlubal.api.rfem.structure_core.MemberReferenceTypeH\x04\x88\x01\x01\x12\r\n\x05nodes\x18\x07 \x03(\x05\x12\x17\n\nnode_start\x18\x08 \x01(\x05H\x05\x88\x01\x01\x12\x15\n\x08node_end\x18\t \x01(\x05H\x06\x88\x01\x01\x12\x1e\n\x11\x61nalytical_length\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1e\n\x11\x61nalytical_volume\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12*\n\x1d\x61nalytical_surface_of_coating\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_mass\x18\r \x01(\x01H\n\x88\x01\x01\x12\x1f\n\x12surface_of_coating\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x46\n\x1c\x61nalytical_center_of_gravity\x18\x0f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0c\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_x\x18\x10 \x01(\x01H\r\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_y\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_z\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x13\n\x06length\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12\x13\n\x06volume\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12\x11\n\x04mass\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x16 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x13\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\"\n\x15member_representative\x18\x1a \x01(\x05H\x17\x88\x01\x01\x12)\n\x1c\x64\x65sign_properties_via_member\x18\x1b \x01(\x08H\x18\x88\x01\x01\x12\x34\n\'design_properties_via_parent_member_set\x18\x1c \x01(\x08H\x19\x88\x01\x01\x12\x30\n#design_properties_parent_member_set\x18\x1d \x01(\x05H\x1a\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1e \x01(\tH\x1b\x88\x01\x01\x12\x64\n\x19member_type_rib_alignment\x18\x1f \x01(\x0e\x32<.dlubal.api.rfem.structure_core.MemberMemberTypeRibAlignmentH\x1c\x88\x01\x01\x12%\n\x18member_rib_first_surface\x18 \x01(\x05H\x1d\x88\x01\x01\x12&\n\x19member_rib_second_surface\x18! \x01(\x05H\x1e\x88\x01\x01\x12\x35\n(member_rib_surface_assignment_autodetect\x18\" \x01(\x08H\x1f\x88\x01\x01\x12:\n-align_local_z_axis_to_local_z_axis_of_surface\x18# \x01(\x08H \x88\x01\x01\x12:\n-member_rib_shear_joint_between_web_and_flange\x18$ \x01(\x08H!\x88\x01\x01\x12\x87\x01\n+member_rib_surface_roughness_classification\x18% \x01(\x0e\x32M.dlubal.api.rfem.structure_core.MemberMemberRibSurfaceRoughnessClassificationH\"\x88\x01\x01\x12\x30\n#member_rib_reduction_of_joint_width\x18& \x01(\x01H#\x88\x01\x01\x12]\n\x11\x66lange_dimensions\x18\' \x01(\x0b\x32=.dlubal.api.rfem.structure_core.ArrayOfMemberFlangeDimensionsH$\x88\x01\x01\x12#\n\x16synchronize_width_mode\x18( \x01(\x08H%\x88\x01\x01\x12$\n\x17relative_ordinates_mode\x18) \x01(\x08H&\x88\x01\x01\x12Y\nLmember_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabled\x18* \x01(\x08H\'\x88\x01\x01\x12,\n\x1fmember_type_definable_stiffness\x18+ \x01(\x05H(\x88\x01\x01\x12\x82\x01\n)result_beam_integrate_stresses_and_forces\x18, \x01(\x0e\x32J.dlubal.api.rfem.structure_core.MemberResultBeamIntegrateStressesAndForcesH)\x88\x01\x01\x12\x1c\n\x0fresult_beam_y_z\x18- \x01(\x01H*\x88\x01\x01\x12\x1f\n\x12result_beam_y_plus\x18. \x01(\x01H+\x88\x01\x01\x12\x1f\n\x12result_beam_z_plus\x18/ \x01(\x01H,\x88\x01\x01\x12 \n\x13result_beam_y_minus\x18\x30 \x01(\x01H-\x88\x01\x01\x12 \n\x13result_beam_z_minus\x18\x31 \x01(\x01H.\x88\x01\x01\x12\x1f\n\x12result_beam_radius\x18\x32 \x01(\x01H/\x88\x01\x01\x12-\n result_beam_include_all_surfaces\x18\x33 \x01(\x08H0\x88\x01\x01\x12$\n\x1cresult_beam_include_surfaces\x18\x34 \x03(\x05\x12+\n\x1eresult_beam_include_all_solids\x18\x35 \x01(\x08H1\x88\x01\x01\x12\"\n\x1aresult_beam_include_solids\x18\x36 \x03(\x05\x12,\n\x1fresult_beam_include_all_members\x18\x37 \x01(\x08H2\x88\x01\x01\x12#\n\x1bresult_beam_include_members\x18\x38 \x03(\x05\x12$\n\x1cresult_beam_exclude_surfaces\x18\x39 \x03(\x05\x12\"\n\x1aresult_beam_exclude_solids\x18: \x03(\x05\x12#\n\x1bresult_beam_exclude_members\x18; \x03(\x05\x12\x1d\n\x10projected_length\x18< \x01(\x01H3\x88\x01\x01\x12?\n2section_distance_from_start_is_defined_as_relative\x18= \x01(\x08H4\x88\x01\x01\x12\x31\n$section_distance_from_start_absolute\x18> \x01(\x01H5\x88\x01\x01\x12\x31\n$section_distance_from_start_relative\x18? \x01(\x01H6\x88\x01\x01\x12=\n0section_distance_from_end_is_defined_as_relative\x18@ \x01(\x08H7\x88\x01\x01\x12/\n\"section_distance_from_end_absolute\x18\x41 \x01(\x01H8\x88\x01\x01\x12/\n\"section_distance_from_end_relative\x18\x42 \x01(\x01H9\x88\x01\x01\x12V\n\x11section_alignment\x18\x43 \x01(\x0e\x32\x36.dlubal.api.rfem.structure_core.MemberSectionAlignmentH:\x88\x01\x01\x12\x1a\n\rsection_start\x18\x44 \x01(\x05H;\x88\x01\x01\x12\x18\n\x0bsection_end\x18\x45 \x01(\x05H<\x88\x01\x01\x12\x1d\n\x10section_internal\x18\x46 \x01(\x05H=\x88\x01\x01\x12\x1d\n\x10section_material\x18G \x01(\x05H>\x88\x01\x01\x12R\n\x0fgrain_alignment\x18H \x01(\x0e\x32\x34.dlubal.api.rfem.structure_core.MemberGrainAlignmentH?\x88\x01\x01\x12\x16\n\tis_curved\x18I \x01(\x08H@\x88\x01\x01\x12/\n\"curved_member_is_asymmetric_layout\x18J \x01(\x08HA\x88\x01\x01\x12)\n\x1c\x63urved_member_is_cantilevers\x18K \x01(\x08HB\x88\x01\x01\x12n\n\x1e\x63urved_member_cantilevers_type\x18L \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.MemberCurvedMemberCantileversTypeHC\x88\x01\x01\x12;\n.curved_member_is_capped_with_loose_ridge_wedge\x18M \x01(\x08HD\x88\x01\x01\x12w\n\x18\x63urved_member_parameters\x18N \x01(\x0b\x32P.dlubal.api.rfem.structure_core.ArrayOfMemberCurvedMemberParametersAndChildItemsHE\x88\x01\x01\x12i\n\x1brotation_specification_type\x18O \x01(\x0e\x32?.dlubal.api.rfem.structure_core.MemberRotationSpecificationTypeHF\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18P \x01(\x01HG\x88\x01\x01\x12\x1f\n\x12rotation_help_node\x18Q \x01(\x05HH\x88\x01\x01\x12Y\n\x13rotation_plane_type\x18R \x01(\x0e\x32\x37.dlubal.api.rfem.structure_core.MemberRotationPlaneTypeHI\x88\x01\x01\x12\x1d\n\x10rotation_surface\x18S \x01(\x05HJ\x88\x01\x01\x12h\n\x1brotation_surface_plane_type\x18T \x01(\x0e\x32>.dlubal.api.rfem.structure_core.MemberRotationSurfacePlaneTypeHK\x88\x01\x01\x12\x17\n\nis_rotated\x18U \x01(\x08HL\x88\x01\x01\x12\x1f\n\x12member_hinge_start\x18V \x01(\x05HM\x88\x01\x01\x12\x1d\n\x10member_hinge_end\x18W \x01(\x05HN\x88\x01\x01\x12&\n\x19member_eccentricity_start\x18X \x01(\x05HO\x88\x01\x01\x12$\n\x17member_eccentricity_end\x18Y \x01(\x05HP\x88\x01\x01\x12\x14\n\x07support\x18Z \x01(\x05HQ\x88\x01\x01\x12(\n\x1bmember_transverse_stiffener\x18[ \x01(\x05HR\x88\x01\x01\x12\x1c\n\x0fmember_openings\x18\\ \x01(\x05HS\x88\x01\x01\x12 \n\x13member_nonlinearity\x18] \x01(\x05HT\x88\x01\x01\x12-\n member_result_intermediate_point\x18^ \x01(\x05HU\x88\x01\x01\x12*\n\x1dstress_analysis_configuration\x18_ \x01(\x05HV\x88\x01\x01\x12\'\n\x1a\x61luminum_effective_lengths\x18` \x01(\x05HW\x88\x01\x01\x12)\n\x1c\x61luminum_boundary_conditions\x18\x61 \x01(\x05HX\x88\x01\x01\x12\x34\n\'aluminum_member_local_section_reduction\x18\x62 \x01(\x05HY\x88\x01\x01\x12,\n\x1f\x61luminum_member_transverse_weld\x18\x63 \x01(\x05HZ\x88\x01\x01\x12\x35\n(member_aluminum_design_uls_configuration\x18\x64 \x01(\x05H[\x88\x01\x01\x12\x35\n(member_aluminum_design_sls_configuration\x18\x65 \x01(\x05H\\\x88\x01\x01\x12\'\n\x1a\x63oncrete_effective_lengths\x18\x66 \x01(\x05H]\x88\x01\x01\x12\x30\n#concrete_cover_user_defined_enabled\x18g \x01(\x08H^\x88\x01\x01\x12\x1b\n\x0e\x63oncrete_cover\x18h \x01(\x01H_\x88\x01\x01\x12\x1f\n\x12\x63oncrete_cover_top\x18i \x01(\x01H`\x88\x01\x01\x12 \n\x13\x63oncrete_cover_left\x18j \x01(\x01Ha\x88\x01\x01\x12!\n\x14\x63oncrete_cover_right\x18k \x01(\x01Hb\x88\x01\x01\x12\"\n\x15\x63oncrete_cover_bottom\x18l \x01(\x01Hc\x88\x01\x01\x12\x1a\n\x12\x63oncrete_cover_min\x18m \x03(\x05\x12\x1e\n\x16\x63oncrete_cover_min_top\x18n \x03(\x05\x12\x1f\n\x17\x63oncrete_cover_min_left\x18o \x03(\x05\x12 \n\x18\x63oncrete_cover_min_right\x18p \x03(\x05\x12!\n\x19\x63oncrete_cover_min_bottom\x18q \x03(\x05\x12>\n1concrete_cover_different_at_section_sides_enabled\x18r \x01(\x08Hd\x88\x01\x01\x12 \n\x13\x63oncrete_durability\x18s \x01(\x05He\x88\x01\x01\x12$\n\x17\x63oncrete_durability_top\x18t \x01(\x05Hf\x88\x01\x01\x12%\n\x18\x63oncrete_durability_left\x18u \x01(\x05Hg\x88\x01\x01\x12&\n\x19\x63oncrete_durability_right\x18v \x01(\x05Hh\x88\x01\x01\x12\'\n\x1a\x63oncrete_durability_bottom\x18w \x01(\x05Hi\x88\x01\x01\x12}\n\"concrete_shear_reinforcement_spans\x18x \x01(\x0b\x32L.dlubal.api.rfem.structure_core.ArrayOfMemberConcreteShearReinforcementSpansHj\x88\x01\x01\x12\x8b\x01\n)concrete_longitudinal_reinforcement_items\x18y \x01(\x0b\x32S.dlubal.api.rfem.structure_core.ArrayOfMemberConcreteLongitudinalReinforcementItemsHk\x88\x01\x01\x12\x35\n(member_concrete_design_uls_configuration\x18z \x01(\x05Hl\x88\x01\x01\x12\x35\n(member_concrete_design_sls_configuration\x18{ \x01(\x05Hm\x88\x01\x01\x12\x34\n\'member_concrete_design_fr_configuration\x18| \x01(\x05Hn\x88\x01\x01\x12\x39\n,member_concrete_design_seismic_configuration\x18} \x01(\x05Ho\x88\x01\x01\x12$\n\x17steel_effective_lengths\x18~ \x01(\x05Hp\x88\x01\x01\x12&\n\x19steel_boundary_conditions\x18\x7f \x01(\x05Hq\x88\x01\x01\x12\x32\n$steel_member_local_section_reduction\x18\x80\x01 \x01(\x05Hr\x88\x01\x01\x12*\n\x1csteel_member_transverse_weld\x18\x81\x01 \x01(\x05Hs\x88\x01\x01\x12\x33\n%member_steel_design_uls_configuration\x18\x82\x01 \x01(\x05Ht\x88\x01\x01\x12\x33\n%member_steel_design_sls_configuration\x18\x83\x01 \x01(\x05Hu\x88\x01\x01\x12\x32\n$member_steel_design_fr_configuration\x18\x84\x01 \x01(\x05Hv\x88\x01\x01\x12&\n\x18timber_effective_lengths\x18\x85\x01 \x01(\x05Hw\x88\x01\x01\x12\"\n\x14timber_service_class\x18\x86\x01 \x01(\x05Hx\x88\x01\x01\x12#\n\x15timber_moisture_class\x18\x87\x01 \x01(\x05Hy\x88\x01\x01\x12\'\n\x19timber_service_conditions\x18\x88\x01 \x01(\x05Hz\x88\x01\x01\x12\x33\n%timber_member_local_section_reduction\x18\x89\x01 \x01(\x05H{\x88\x01\x01\x12\x34\n&member_timber_design_uls_configuration\x18\x8a\x01 \x01(\x05H|\x88\x01\x01\x12\x34\n&member_timber_design_sls_configuration\x18\x8b\x01 \x01(\x05H}\x88\x01\x01\x12\x33\n%member_timber_design_fr_configuration\x18\x8c\x01 \x01(\x05H~\x88\x01\x01\x12\x36\n(end_modifications_member_start_extension\x18\x8d\x01 \x01(\x01H\x7f\x88\x01\x01\x12\x35\n&end_modifications_member_start_slope_y\x18\x8e\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12\x35\n&end_modifications_member_start_slope_z\x18\x8f\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12\x35\n&end_modifications_member_end_extension\x18\x90\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x33\n$end_modifications_member_end_slope_y\x18\x91\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12\x33\n$end_modifications_member_end_slope_z\x18\x92\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12(\n\x19has_any_end_modifications\x18\x93\x01 \x01(\x08H\x85\x01\x88\x01\x01\x12i\n\x1a\x64\x65\x66lection_check_direction\x18\x94\x01 \x01(\x0e\x32>.dlubal.api.rfem.structure_core.MemberDeflectionCheckDirectionH\x86\x01\x88\x01\x01\x12\x82\x01\n\'deflection_check_displacement_reference\x18\x95\x01 \x01(\x0e\x32J.dlubal.api.rfem.structure_core.MemberDeflectionCheckDisplacementReferenceH\x87\x01\x88\x01\x01\x12o\n\x1a\x64\x65\x66lection_segments_z_axis\x18\x96\x01 \x01(\x0b\x32\x44.dlubal.api.rfem.structure_core.ArrayOfMemberDeflectionSegmentsZAxisH\x88\x01\x88\x01\x01\x12o\n\x1a\x64\x65\x66lection_segments_y_axis\x18\x97\x01 \x01(\x0b\x32\x44.dlubal.api.rfem.structure_core.ArrayOfMemberDeflectionSegmentsYAxisH\x89\x01\x88\x01\x01\x12-\n\x1e\x64\x65sign_support_on_member_start\x18\x98\x01 \x01(\x05H\x8a\x01\x88\x01\x01\x12+\n\x1c\x64\x65sign_support_on_member_end\x18\x99\x01 \x01(\x05H\x8b\x01\x88\x01\x01\x12|\n!design_supports_on_internal_nodes\x18\x9a\x01 \x01(\x0b\x32J.dlubal.api.rfem.structure_core.ArrayOfMemberDesignSupportsOnInternalNodesH\x8c\x01\x88\x01\x01\x12@\n1deflection_segments_defined_length_z_axis_enabled\x18\x9b\x01 \x01(\x08H\x8d\x01\x88\x01\x01\x12@\n1deflection_segments_defined_length_y_axis_enabled\x18\x9c\x01 \x01(\x08H\x8e\x01\x88\x01\x01\x12!\n\x12member_type_spring\x18\x9d\x01 \x01(\x05H\x8f\x01\x88\x01\x01\x12(\n\x19member_type_damper_spring\x18\x9e\x01 \x01(\x05H\x90\x01\x88\x01\x01\x12\x35\n&member_type_damper_damping_coefficient\x18\x9f\x01 \x01(\x01H\x91\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\xa0\x01 \x01(\tH\x92\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\xa1\x01 \x01(\x08H\x93\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xa2\x01 \x01(\tH\x94\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xa3\x01 \x01(\tH\x95\x01\x88\x01\x01\x42\x07\n\x05_typeB!\n\x1f_is_deactivated_for_calculationB\x07\n\x05_lineB\x1c\n\x1a_section_distribution_typeB\x11\n\x0f_reference_typeB\r\n\x0b_node_startB\x0b\n\t_node_endB\x14\n\x12_analytical_lengthB\x14\n\x12_analytical_volumeB \n\x1e_analytical_surface_of_coatingB\x12\n\x10_analytical_massB\x15\n\x13_surface_of_coatingB\x1f\n\x1d_analytical_center_of_gravityB!\n\x1f_analytical_center_of_gravity_xB!\n\x1f_analytical_center_of_gravity_yB!\n\x1f_analytical_center_of_gravity_zB\t\n\x07_lengthB\t\n\x07_volumeB\x07\n\x05_massB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x18\n\x16_member_representativeB\x1f\n\x1d_design_properties_via_memberB*\n(_design_properties_via_parent_member_setB&\n$_design_properties_parent_member_setB\n\n\x08_commentB\x1c\n\x1a_member_type_rib_alignmentB\x1b\n\x19_member_rib_first_surfaceB\x1c\n\x1a_member_rib_second_surfaceB+\n)_member_rib_surface_assignment_autodetectB0\n._align_local_z_axis_to_local_z_axis_of_surfaceB0\n._member_rib_shear_joint_between_web_and_flangeB.\n,_member_rib_surface_roughness_classificationB&\n$_member_rib_reduction_of_joint_widthB\x14\n\x12_flange_dimensionsB\x19\n\x17_synchronize_width_modeB\x1a\n\x18_relative_ordinates_modeBO\nM_member_rib_generating_longitudinal_reinforcement_items_from_surfaces_enabledB\"\n _member_type_definable_stiffnessB,\n*_result_beam_integrate_stresses_and_forcesB\x12\n\x10_result_beam_y_zB\x15\n\x13_result_beam_y_plusB\x15\n\x13_result_beam_z_plusB\x16\n\x14_result_beam_y_minusB\x16\n\x14_result_beam_z_minusB\x15\n\x13_result_beam_radiusB#\n!_result_beam_include_all_surfacesB!\n\x1f_result_beam_include_all_solidsB\"\n _result_beam_include_all_membersB\x13\n\x11_projected_lengthB5\n3_section_distance_from_start_is_defined_as_relativeB\'\n%_section_distance_from_start_absoluteB\'\n%_section_distance_from_start_relativeB3\n1_section_distance_from_end_is_defined_as_relativeB%\n#_section_distance_from_end_absoluteB%\n#_section_distance_from_end_relativeB\x14\n\x12_section_alignmentB\x10\n\x0e_section_startB\x0e\n\x0c_section_endB\x13\n\x11_section_internalB\x13\n\x11_section_materialB\x12\n\x10_grain_alignmentB\x0c\n\n_is_curvedB%\n#_curved_member_is_asymmetric_layoutB\x1f\n\x1d_curved_member_is_cantileversB!\n\x1f_curved_member_cantilevers_typeB1\n/_curved_member_is_capped_with_loose_ridge_wedgeB\x1b\n\x19_curved_member_parametersB\x1e\n\x1c_rotation_specification_typeB\x11\n\x0f_rotation_angleB\x15\n\x13_rotation_help_nodeB\x16\n\x14_rotation_plane_typeB\x13\n\x11_rotation_surfaceB\x1e\n\x1c_rotation_surface_plane_typeB\r\n\x0b_is_rotatedB\x15\n\x13_member_hinge_startB\x13\n\x11_member_hinge_endB\x1c\n\x1a_member_eccentricity_startB\x1a\n\x18_member_eccentricity_endB\n\n\x08_supportB\x1e\n\x1c_member_transverse_stiffenerB\x12\n\x10_member_openingsB\x16\n\x14_member_nonlinearityB#\n!_member_result_intermediate_pointB \n\x1e_stress_analysis_configurationB\x1d\n\x1b_aluminum_effective_lengthsB\x1f\n\x1d_aluminum_boundary_conditionsB*\n(_aluminum_member_local_section_reductionB\"\n _aluminum_member_transverse_weldB+\n)_member_aluminum_design_uls_configurationB+\n)_member_aluminum_design_sls_configurationB\x1d\n\x1b_concrete_effective_lengthsB&\n$_concrete_cover_user_defined_enabledB\x11\n\x0f_concrete_coverB\x15\n\x13_concrete_cover_topB\x16\n\x14_concrete_cover_leftB\x17\n\x15_concrete_cover_rightB\x18\n\x16_concrete_cover_bottomB4\n2_concrete_cover_different_at_section_sides_enabledB\x16\n\x14_concrete_durabilityB\x1a\n\x18_concrete_durability_topB\x1b\n\x19_concrete_durability_leftB\x1c\n\x1a_concrete_durability_rightB\x1d\n\x1b_concrete_durability_bottomB%\n#_concrete_shear_reinforcement_spansB,\n*_concrete_longitudinal_reinforcement_itemsB+\n)_member_concrete_design_uls_configurationB+\n)_member_concrete_design_sls_configurationB*\n(_member_concrete_design_fr_configurationB/\n-_member_concrete_design_seismic_configurationB\x1a\n\x18_steel_effective_lengthsB\x1c\n\x1a_steel_boundary_conditionsB\'\n%_steel_member_local_section_reductionB\x1f\n\x1d_steel_member_transverse_weldB(\n&_member_steel_design_uls_configurationB(\n&_member_steel_design_sls_configurationB\'\n%_member_steel_design_fr_configurationB\x1b\n\x19_timber_effective_lengthsB\x17\n\x15_timber_service_classB\x18\n\x16_timber_moisture_classB\x1c\n\x1a_timber_service_conditionsB(\n&_timber_member_local_section_reductionB)\n\'_member_timber_design_uls_configurationB)\n\'_member_timber_design_sls_configurationB(\n&_member_timber_design_fr_configurationB+\n)_end_modifications_member_start_extensionB)\n\'_end_modifications_member_start_slope_yB)\n\'_end_modifications_member_start_slope_zB)\n\'_end_modifications_member_end_extensionB\'\n%_end_modifications_member_end_slope_yB\'\n%_end_modifications_member_end_slope_zB\x1c\n\x1a_has_any_end_modificationsB\x1d\n\x1b_deflection_check_directionB*\n(_deflection_check_displacement_referenceB\x1d\n\x1b_deflection_segments_z_axisB\x1d\n\x1b_deflection_segments_y_axisB!\n\x1f_design_support_on_member_startB\x1f\n\x1d_design_support_on_member_endB$\n\"_design_supports_on_internal_nodesB4\n2_deflection_segments_defined_length_z_axis_enabledB4\n2_deflection_segments_defined_length_y_axis_enabledB\x15\n\x13_member_type_springB\x1c\n\x1a_member_type_damper_springB)\n\'_member_type_damper_damping_coefficientB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x1f\n\x1d\x41rrayOfMemberFlangeDimensions\"2\n0ArrayOfMemberCurvedMemberParametersAndChildItems\".\n,ArrayOfMemberConcreteShearReinforcementSpans\"5\n3ArrayOfMemberConcreteLongitudinalReinforcementItems\"&\n$ArrayOfMemberDeflectionSegmentsZAxis\"&\n$ArrayOfMemberDeflectionSegmentsYAxis\",\n*ArrayOfMemberDesignSupportsOnInternalNodes*\xf6\x04\n\nMemberType\x12\x17\n\x13MEMBER_TYPE_UNKNOWN\x10\x00\x12\x14\n\x10MEMBER_TYPE_BEAM\x10\x01\x12\x18\n\x14MEMBER_TYPE_BUCKLING\x10\x08\x12\x15\n\x11MEMBER_TYPE_CABLE\x10\t\x12\x1b\n\x17MEMBER_TYPE_COMPRESSION\x10\x07\x12$\n MEMBER_TYPE_COUPLING_HINGE_HINGE\x10\x15\x12$\n MEMBER_TYPE_COUPLING_HINGE_RIGID\x10\x14\x12$\n MEMBER_TYPE_COUPLING_RIGID_HINGE\x10\x13\x12$\n MEMBER_TYPE_COUPLING_RIGID_RIGID\x10\x12\x12\x16\n\x12MEMBER_TYPE_DAMPER\x10\x17\x12#\n\x1fMEMBER_TYPE_DEFINABLE_STIFFNESS\x10\x11\x12\x15\n\x11MEMBER_TYPE_JOIST\x10\r\x12\x14\n\x10MEMBER_TYPE_PILE\x10\x0e\x12\x1b\n\x17MEMBER_TYPE_RESULT_BEAM\x10\x0b\x12\x1b\n\x17MEMBER_TYPE_RESULT_LINE\x10\x0c\x12\x13\n\x0fMEMBER_TYPE_RIB\x10\x03\x12\x15\n\x11MEMBER_TYPE_RIGID\x10\x02\x12\x16\n\x12MEMBER_TYPE_SPRING\x10\x16\x12\x1d\n\x19MEMBER_TYPE_SURFACE_MODEL\x10\x10\x12\x17\n\x13MEMBER_TYPE_TENSION\x10\x06\x12\x15\n\x11MEMBER_TYPE_TRUSS\x10\x04\x12\x1c\n\x18MEMBER_TYPE_TRUSS_ONLY_N\x10\x05*\xd0\x06\n\x1dMemberSectionDistributionType\x12,\n(MEMBER_SECTION_DISTRIBUTION_TYPE_UNIFORM\x10\x00\x12+\n\'MEMBER_SECTION_DISTRIBUTION_TYPE_CURVED\x10\x07\x12\x38\n4MEMBER_SECTION_DISTRIBUTION_TYPE_FISH_BEAM_PARABOLIC\x10\r\x12+\n\'MEMBER_SECTION_DISTRIBUTION_TYPE_LINEAR\x10\x01\x12)\n%MEMBER_SECTION_DISTRIBUTION_TYPE_NONE\x10\x05\x12\x39\n5MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_BOTH_SIDES\x10\x08\x12<\n8MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_END_OF_MEMBER\x10\n\x12>\n:MEMBER_SECTION_DISTRIBUTION_TYPE_OFFSET_AT_START_OF_MEMBER\x10\t\x12O\nKMEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_CONSTANT_HEIGHT\x10\x0b\x12O\nKMEMBER_SECTION_DISTRIBUTION_TYPE_PITCHED_CAMBERED_BEAM_WITH_VARIABLE_HEIGHT\x10\x0c\x12+\n\'MEMBER_SECTION_DISTRIBUTION_TYPE_SADDLE\x10\x06\x12:\n6MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_BOTH_SIDES\x10\x02\x12=\n9MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_END_OF_MEMBER\x10\x04\x12?\n;MEMBER_SECTION_DISTRIBUTION_TYPE_TAPERED_AT_START_OF_MEMBER\x10\x03*\x8c\x01\n\x13MemberReferenceType\x12\x1b\n\x17MEMBER_REFERENCE_TYPE_L\x10\x00\x12\x1c\n\x18MEMBER_REFERENCE_TYPE_XY\x10\x01\x12\x1c\n\x18MEMBER_REFERENCE_TYPE_XZ\x10\x02\x12\x1c\n\x18MEMBER_REFERENCE_TYPE_YZ\x10\x03*\x89\x02\n\x1cMemberMemberTypeRibAlignment\x12\x37\n3MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_NEGATIVE\x10\x00\x12,\n(MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_CENTRIC\x10\x01\x12\x37\n3MEMBER_MEMBER_TYPE_RIB_ALIGNMENT_ON_Z_SIDE_POSITIVE\x10\x02\x12I\nEMEMBER_MEMBER_TYPE_RIB_ALIGNMENT_USER_DEFINED_VIA_MEMBER_ECCENTRICITY\x10\x03*\xb1\x02\n-MemberMemberRibSurfaceRoughnessClassification\x12?\n;MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_INDENTED\x10\x00\x12<\n8MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_ROUGH\x10\x01\x12=\n9MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_SMOOTH\x10\x02\x12\x42\n>MEMBER_MEMBER_RIB_SURFACE_ROUGHNESS_CLASSIFICATION_VERY_SMOOTH\x10\x03*\xde\x02\n*MemberResultBeamIntegrateStressesAndForces\x12L\nHMEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_QUADRATIC\x10\x00\x12P\nLMEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_FROM_LISTED_INCLUDE_OBJECTS\x10\x03\x12J\nFMEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CUBOID_GENERAL\x10\x01\x12\x44\n@MEMBER_RESULT_BEAM_INTEGRATE_STRESSES_AND_FORCES_WITHIN_CYLINDER\x10\x02*\x85\x01\n\x16MemberSectionAlignment\x12 \n\x1cMEMBER_SECTION_ALIGNMENT_TOP\x10\x00\x12#\n\x1fMEMBER_SECTION_ALIGNMENT_BOTTOM\x10\x02\x12$\n MEMBER_SECTION_ALIGNMENT_CENTRIC\x10\x01*}\n\x14MemberGrainAlignment\x12\x1e\n\x1aMEMBER_GRAIN_ALIGNMENT_TOP\x10\x00\x12!\n\x1dMEMBER_GRAIN_ALIGNMENT_BOTTOM\x10\x02\x12\"\n\x1eMEMBER_GRAIN_ALIGNMENT_CENTRIC\x10\x01*\xf0\x01\n!MemberCurvedMemberCantileversType\x12\x34\n0MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_HORIZONTAL\x10\x00\x12\x30\n,MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_OFFSET\x10\x03\x12\x32\n.MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_PARALLEL\x10\x01\x12/\n+MEMBER_CURVED_MEMBER_CANTILEVERS_TYPE_TAPER\x10\x02*\xe1\x01\n\x1fMemberRotationSpecificationType\x12/\n+MEMBER_ROTATION_SPECIFICATION_TYPE_BY_ANGLE\x10\x00\x12-\n)MEMBER_ROTATION_SPECIFICATION_TYPE_INSIDE\x10\x02\x12.\n*MEMBER_ROTATION_SPECIFICATION_TYPE_SURFACE\x10\x03\x12.\n*MEMBER_ROTATION_SPECIFICATION_TYPE_TO_NODE\x10\x01*}\n\x17MemberRotationPlaneType\x12\x30\n,MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XY\x10\x00\x12\x30\n,MEMBER_ROTATION_PLANE_TYPE_ROTATION_PLANE_XZ\x10\x01*\x94\x01\n\x1eMemberRotationSurfacePlaneType\x12\x38\n4MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XY\x10\x00\x12\x38\n4MEMBER_ROTATION_SURFACE_PLANE_TYPE_ROTATION_PLANE_XZ\x10\x01*\xb8\x03\n\x1eMemberDeflectionCheckDirection\x12\x32\n.MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z\x10\x00\x12<\n8MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Y\x10\x05\x12<\n8MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z\x10\x04\x12\x42\n>MEMBER_DEFLECTION_CHECK_DIRECTION_AUXILIARY_LOCAL_AXIS_Z_AND_Y\x10\x06\x12\x32\n.MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Y\x10\x01\x12\x38\n4MEMBER_DEFLECTION_CHECK_DIRECTION_LOCAL_AXIS_Z_AND_Y\x10\x02\x12\x34\n0MEMBER_DEFLECTION_CHECK_DIRECTION_RESULTING_AXIS\x10\x03*\xc5\x01\n*MemberDeflectionCheckDisplacementReference\x12H\nDMEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_SEGMENT_ENDS\x10\x00\x12M\nIMEMBER_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_UNDEFORMED_SYSTEM\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.member_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_MEMBERTYPE']._serialized_start=13406
36
+ _globals['_MEMBERTYPE']._serialized_end=14036
37
+ _globals['_MEMBERSECTIONDISTRIBUTIONTYPE']._serialized_start=14039
38
+ _globals['_MEMBERSECTIONDISTRIBUTIONTYPE']._serialized_end=14887
39
+ _globals['_MEMBERREFERENCETYPE']._serialized_start=14890
40
+ _globals['_MEMBERREFERENCETYPE']._serialized_end=15030
41
+ _globals['_MEMBERMEMBERTYPERIBALIGNMENT']._serialized_start=15033
42
+ _globals['_MEMBERMEMBERTYPERIBALIGNMENT']._serialized_end=15298
43
+ _globals['_MEMBERMEMBERRIBSURFACEROUGHNESSCLASSIFICATION']._serialized_start=15301
44
+ _globals['_MEMBERMEMBERRIBSURFACEROUGHNESSCLASSIFICATION']._serialized_end=15606
45
+ _globals['_MEMBERRESULTBEAMINTEGRATESTRESSESANDFORCES']._serialized_start=15609
46
+ _globals['_MEMBERRESULTBEAMINTEGRATESTRESSESANDFORCES']._serialized_end=15959
47
+ _globals['_MEMBERSECTIONALIGNMENT']._serialized_start=15962
48
+ _globals['_MEMBERSECTIONALIGNMENT']._serialized_end=16095
49
+ _globals['_MEMBERGRAINALIGNMENT']._serialized_start=16097
50
+ _globals['_MEMBERGRAINALIGNMENT']._serialized_end=16222
51
+ _globals['_MEMBERCURVEDMEMBERCANTILEVERSTYPE']._serialized_start=16225
52
+ _globals['_MEMBERCURVEDMEMBERCANTILEVERSTYPE']._serialized_end=16465
53
+ _globals['_MEMBERROTATIONSPECIFICATIONTYPE']._serialized_start=16468
54
+ _globals['_MEMBERROTATIONSPECIFICATIONTYPE']._serialized_end=16693
55
+ _globals['_MEMBERROTATIONPLANETYPE']._serialized_start=16695
56
+ _globals['_MEMBERROTATIONPLANETYPE']._serialized_end=16820
57
+ _globals['_MEMBERROTATIONSURFACEPLANETYPE']._serialized_start=16823
58
+ _globals['_MEMBERROTATIONSURFACEPLANETYPE']._serialized_end=16971
59
+ _globals['_MEMBERDEFLECTIONCHECKDIRECTION']._serialized_start=16974
60
+ _globals['_MEMBERDEFLECTIONCHECKDIRECTION']._serialized_end=17414
61
+ _globals['_MEMBERDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_start=17417
62
+ _globals['_MEMBERDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_end=17614
63
+ _globals['_MEMBER']._serialized_start=112
64
+ _globals['_MEMBER']._serialized_end=13089
65
+ _globals['_ARRAYOFMEMBERFLANGEDIMENSIONS']._serialized_start=13091
66
+ _globals['_ARRAYOFMEMBERFLANGEDIMENSIONS']._serialized_end=13122
67
+ _globals['_ARRAYOFMEMBERCURVEDMEMBERPARAMETERSANDCHILDITEMS']._serialized_start=13124
68
+ _globals['_ARRAYOFMEMBERCURVEDMEMBERPARAMETERSANDCHILDITEMS']._serialized_end=13174
69
+ _globals['_ARRAYOFMEMBERCONCRETESHEARREINFORCEMENTSPANS']._serialized_start=13176
70
+ _globals['_ARRAYOFMEMBERCONCRETESHEARREINFORCEMENTSPANS']._serialized_end=13222
71
+ _globals['_ARRAYOFMEMBERCONCRETELONGITUDINALREINFORCEMENTITEMS']._serialized_start=13224
72
+ _globals['_ARRAYOFMEMBERCONCRETELONGITUDINALREINFORCEMENTITEMS']._serialized_end=13277
73
+ _globals['_ARRAYOFMEMBERDEFLECTIONSEGMENTSZAXIS']._serialized_start=13279
74
+ _globals['_ARRAYOFMEMBERDEFLECTIONSEGMENTSZAXIS']._serialized_end=13317
75
+ _globals['_ARRAYOFMEMBERDEFLECTIONSEGMENTSYAXIS']._serialized_start=13319
76
+ _globals['_ARRAYOFMEMBERDEFLECTIONSEGMENTSYAXIS']._serialized_end=13357
77
+ _globals['_ARRAYOFMEMBERDESIGNSUPPORTSONINTERNALNODES']._serialized_start=13359
78
+ _globals['_ARRAYOFMEMBERDESIGNSUPPORTSONINTERNALNODES']._serialized_end=13403
79
+ # @@protoc_insertion_point(module_scope)