dlubal.api 2.12.1__py3-none-any.whl → 2.12.3__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 (228) hide show
  1. dlubal/api/rfem/__init__.py +8 -6
  2. dlubal/api/rfem/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  3. dlubal/api/rfem/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  4. dlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  5. dlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  6. dlubal/api/rfem/application.py +17 -17
  7. dlubal/api/rfem/base_data_objects/terrain_pb2.py +8 -8
  8. dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +6 -2
  9. dlubal/api/rfem/base_data_pb2.py +69 -69
  10. dlubal/api/rfem/base_data_pb2.pyi +8 -2
  11. dlubal/api/rfem/concrete_design_objects/__init__.py +1 -0
  12. dlubal/api/rfem/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  13. dlubal/api/rfem/concrete_foundations/single_foundation_pb2.py +79 -0
  14. dlubal/api/rfem/digital_twins/__init__.py +1 -0
  15. dlubal/api/rfem/digital_twins/digital_twins/__init__.py +2 -0
  16. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.py +47 -0
  17. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  18. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  19. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  20. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +1 -1
  21. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +2 -2
  22. dlubal/api/rfem/glass_design/glass_composition_model_pb2.py +91 -0
  23. dlubal/api/rfem/guide_objects/visual_object_pb2.py +6 -6
  24. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +10 -2
  25. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  26. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  27. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +13 -13
  28. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +2 -0
  29. dlubal/api/rfem/loading/design_situation_pb2.py +12 -12
  30. dlubal/api/rfem/loading/design_situation_pb2.pyi +28 -2
  31. dlubal/api/rfem/loads/line_load_pb2.py +21 -21
  32. dlubal/api/rfem/loads/line_load_pb2.pyi +10 -2
  33. dlubal/api/rfem/loads/line_set_load_pb2.py +21 -21
  34. dlubal/api/rfem/loads/line_set_load_pb2.pyi +10 -2
  35. dlubal/api/rfem/loads/member_load_pb2.py +41 -41
  36. dlubal/api/rfem/loads/member_load_pb2.pyi +10 -2
  37. dlubal/api/rfem/loads/member_set_load_pb2.py +41 -41
  38. dlubal/api/rfem/loads/member_set_load_pb2.pyi +10 -2
  39. dlubal/api/rfem/loads/surface_load_pb2.py +27 -27
  40. dlubal/api/rfem/loads/surface_load_pb2.pyi +10 -2
  41. dlubal/api/rfem/loads/surface_set_load_pb2.py +27 -27
  42. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +10 -2
  43. dlubal/api/rfem/mesh/mesh_settings_pb2.py +7 -11
  44. dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +18 -76
  45. dlubal/api/rfem/object_type_pb2.py +2 -2
  46. dlubal/api/rfem/object_type_pb2.pyi +8 -0
  47. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/__init__.py +0 -1
  48. dlubal/api/rfem/reinforcement/concrete_durability_pb2.py +68 -0
  49. dlubal/api/rfem/reinforcement/punching_reinforcement_pb2.py +58 -0
  50. dlubal/api/rfem/reinforcement/reinforcement_direction_pb2.py +38 -0
  51. dlubal/api/rfem/reinforcement/surface_reinforcement_pb2.py +84 -0
  52. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/surface_reinforcement_pb2.pyi +183 -165
  53. dlubal/api/rfem/steel_design/steel_boundary_conditions_pb2.py +51 -0
  54. dlubal/api/rfem/steel_design/steel_effective_lengths_pb2.py +117 -0
  55. dlubal/api/rfem/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  56. dlubal/api/rfem/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  57. dlubal/api/rfem/structure_core/line_pb2.py +17 -17
  58. dlubal/api/rfem/structure_core/line_pb2.pyi +2 -0
  59. dlubal/api/rfem/structure_core/member_pb2.py +192 -190
  60. dlubal/api/rfem/structure_core/member_pb2.pyi +20 -2
  61. dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -286
  62. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +20 -2
  63. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -404
  64. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +20 -2
  65. dlubal/api/rfem/structure_core/solid_pb2.py +28 -28
  66. dlubal/api/rfem/structure_core/solid_pb2.pyi +10 -2
  67. dlubal/api/rfem/structure_core/surface_pb2.py +62 -62
  68. dlubal/api/rfem/structure_core/surface_pb2.pyi +14 -2
  69. dlubal/api/rfem/timber_design/timber_effective_lengths_pb2.py +105 -0
  70. dlubal/api/rfem/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  71. dlubal/api/rfem/timber_design/timber_moisture_class_pb2.py +38 -0
  72. dlubal/api/rfem/timber_design/timber_screw_type_pb2.py +38 -0
  73. dlubal/api/rfem/timber_design/timber_service_class_pb2.py +38 -0
  74. dlubal/api/rfem/timber_design/timber_service_conditions_pb2.py +42 -0
  75. dlubal/api/rfem/types_for_lines/line_support_pb2.py +1 -1
  76. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +14 -14
  77. dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
  78. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  79. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
  80. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  81. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
  82. dlubal/api/rsection/application.py +16 -0
  83. dlubal/api/rstab/__init__.py +7 -5
  84. dlubal/api/rstab/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  85. dlubal/api/rstab/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  86. dlubal/api/rstab/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  87. dlubal/api/rstab/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  88. dlubal/api/rstab/application.py +17 -17
  89. dlubal/api/rstab/base_data_objects/terrain_pb2.py +8 -8
  90. dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +6 -2
  91. dlubal/api/rstab/base_data_pb2.py +53 -53
  92. dlubal/api/rstab/base_data_pb2.pyi +8 -2
  93. dlubal/api/rstab/concrete_design_objects/__init__.py +1 -0
  94. dlubal/api/rstab/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  95. dlubal/api/{rfem/types_for_foundations → rstab/concrete_foundations}/single_foundation_pb2.py +12 -12
  96. dlubal/api/rstab/digital_twins/__init__.py +1 -0
  97. dlubal/api/rstab/digital_twins/digital_twins/__init__.py +2 -0
  98. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.py +47 -0
  99. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  100. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  101. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  102. dlubal/api/rstab/guide_objects/visual_object_pb2.py +6 -6
  103. dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +10 -2
  104. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  105. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  106. dlubal/api/rstab/loading/design_situation_pb2.py +12 -12
  107. dlubal/api/rstab/loading/design_situation_pb2.pyi +28 -2
  108. dlubal/api/rstab/loads/member_load_pb2.py +41 -41
  109. dlubal/api/rstab/loads/member_load_pb2.pyi +10 -2
  110. dlubal/api/rstab/loads/member_set_load_pb2.py +41 -41
  111. dlubal/api/rstab/loads/member_set_load_pb2.pyi +10 -2
  112. dlubal/api/rstab/object_type_pb2.py +2 -2
  113. dlubal/api/rstab/object_type_pb2.pyi +8 -0
  114. dlubal/api/rstab/reinforcement/__init__.py +1 -0
  115. dlubal/api/rstab/reinforcement/concrete_durability_pb2.py +68 -0
  116. dlubal/api/rstab/steel_design/steel_boundary_conditions_pb2.py +51 -0
  117. dlubal/api/rstab/steel_design/steel_effective_lengths_pb2.py +117 -0
  118. dlubal/api/rstab/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  119. dlubal/api/rstab/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  120. dlubal/api/rstab/structure_core/member_pb2.py +180 -178
  121. dlubal/api/rstab/structure_core/member_pb2.pyi +20 -2
  122. dlubal/api/rstab/structure_core/member_representative_pb2.py +276 -274
  123. dlubal/api/rstab/structure_core/member_representative_pb2.pyi +20 -2
  124. dlubal/api/rstab/structure_core/member_set_representative_pb2.py +396 -394
  125. dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +20 -2
  126. dlubal/api/rstab/timber_design/timber_effective_lengths_pb2.py +105 -0
  127. dlubal/api/rstab/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  128. dlubal/api/rstab/timber_design/timber_moisture_class_pb2.py +38 -0
  129. dlubal/api/rstab/timber_design/timber_screw_type_pb2.py +38 -0
  130. dlubal/api/rstab/timber_design/timber_service_class_pb2.py +38 -0
  131. dlubal/api/rstab/timber_design/timber_service_conditions_pb2.py +42 -0
  132. dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
  133. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  134. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
  135. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  136. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
  137. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/METADATA +2 -2
  138. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/RECORD +190 -168
  139. examples/rfem/column.py +1 -1
  140. examples/rfem/import_from_ifc.py +3 -3
  141. examples/rstab/column.py +7 -7
  142. examples/rstab/import_from_ifc.py +1 -1
  143. dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  144. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  145. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  146. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  147. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  148. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  149. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -58
  150. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -38
  151. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -80
  152. dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +0 -91
  153. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  154. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  155. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  156. dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  157. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  158. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  159. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  160. dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  161. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -38
  162. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  163. dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  164. dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  165. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  166. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  167. dlubal/api/rstab/types_for_concrete_design/__init__.py +0 -2
  168. dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  169. dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  170. dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +0 -79
  171. dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  172. dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  173. dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  174. dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  175. dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  176. dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  177. dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  178. dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  179. dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +0 -38
  180. dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  181. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  182. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  183. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  184. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  185. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  186. /dlubal/api/rfem/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  187. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  188. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  189. /dlubal/api/rfem/{types_for_glass_design → glass_design}/__init__.py +0 -0
  190. /dlubal/api/rfem/{types_for_glass_design → glass_design}/glass_composition_model_pb2.pyi +0 -0
  191. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  192. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/punching_reinforcement_pb2.pyi +0 -0
  193. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/reinforcement_direction_pb2.pyi +0 -0
  194. /dlubal/api/rfem/{types_for_steel_design → steel_design}/__init__.py +0 -0
  195. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  196. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  197. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  198. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  199. /dlubal/api/rfem/{types_for_timber_design → timber_design}/__init__.py +0 -0
  200. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  201. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  202. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  203. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  204. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  205. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  206. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  207. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  208. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  209. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  210. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  211. /dlubal/api/rstab/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  212. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  213. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  214. /dlubal/api/rstab/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  215. /dlubal/api/rstab/{types_for_steel_design → steel_design}/__init__.py +0 -0
  216. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  217. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  218. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  219. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  220. /dlubal/api/rstab/{types_for_timber_design → timber_design}/__init__.py +0 -0
  221. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  222. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  223. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  224. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  225. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  226. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  227. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/WHEEL +0 -0
  228. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,58 @@
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/reinforcement/punching_reinforcement.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/reinforcement/punching_reinforcement.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n:dlubal/api/rfem/reinforcement/punching_reinforcement.proto\x12\x1d\x64lubal.api.rfem.reinforcement\"\x91U\n\x15PunchingReinforcement\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12L\n\x04type\x18\x02 \x01(\x0e\x32\x39.dlubal.api.rfem.reinforcement.PunchingReinforcement.TypeH\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\r\n\x05nodes\x18\x05 \x03(\x05\x12\x15\n\x08material\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12_\n\x0eplacement_type\x18\x07 \x01(\x0e\x32\x42.dlubal.api.rfem.reinforcement.PunchingReinforcement.PlacementTypeH\x05\x88\x01\x01\x12_\n\x0e\x64istances_type\x18\x08 \x01(\x0e\x32\x42.dlubal.api.rfem.reinforcement.PunchingReinforcement.DistancesTypeH\x06\x88\x01\x01\x12V\n\tdirection\x18\t \x01(\x0e\x32>.dlubal.api.rfem.reinforcement.PunchingReinforcement.DirectionH\x07\x88\x01\x01\x12!\n\x14number_of_perimeters\x18\n \x01(\x05H\x08\x88\x01\x01\x12,\n\x1fnumber_of_perimeters_calculated\x18\x0b \x01(\x05H\t\x88\x01\x01\x12.\n!number_of_perimeters_auto_minimum\x18\x0c \x01(\x05H\n\x88\x01\x01\x12.\n!number_of_perimeters_auto_maximum\x18\r \x01(\x05H\x0b\x88\x01\x01\x12/\n\"number_of_perimeters_auto_priority\x18\x0e \x01(\x05H\x0c\x88\x01\x01\x12.\n!number_of_perimeters_auto_enabled\x18\x0f \x01(\x08H\r\x88\x01\x01\x12-\n number_of_legs_in_each_perimeter\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x38\n+number_of_legs_in_each_perimeter_calculated\x18\x11 \x01(\x05H\x0f\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_minimum\x18\x12 \x01(\x05H\x10\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_maximum\x18\x13 \x01(\x05H\x11\x88\x01\x01\x12;\n.number_of_legs_in_each_perimeter_auto_priority\x18\x14 \x01(\x05H\x12\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_enabled\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12n\n\x16perimeter_spacing_type\x18\x16 \x01(\x0e\x32I.dlubal.api.rfem.reinforcement.PunchingReinforcement.PerimeterSpacingTypeH\x14\x88\x01\x01\x12S\nFmultiple_static_depth_spacing_between_support_face_and_first_perimeter\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12^\nQmultiple_static_depth_spacing_between_support_face_and_first_perimeter_calculated\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_minimum\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_maximum\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x62\nUmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_increment\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\x61\nTmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_priority\x18\x1c \x01(\x05H\x1a\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_enabled\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12=\n0multiple_static_depth_spacing_between_perimeters\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12H\n;multiple_static_depth_spacing_between_perimeters_calculated\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_minimum\x18 \x01(\x01H\x1e\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_maximum\x18! \x01(\x01H\x1f\x88\x01\x01\x12L\n?multiple_static_depth_spacing_between_perimeters_auto_increment\x18\" \x01(\x01H \x88\x01\x01\x12K\n>multiple_static_depth_spacing_between_perimeters_auto_priority\x18# \x01(\x05H!\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_enabled\x18$ \x01(\x08H\"\x88\x01\x01\x12\x46\n9absolute_spacing_between_support_face_and_first_perimeter\x18% \x01(\x01H#\x88\x01\x01\x12Q\nDabsolute_spacing_between_support_face_and_first_perimeter_calculated\x18& \x01(\x01H$\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_minimum\x18\' \x01(\x01H%\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_maximum\x18( \x01(\x01H&\x88\x01\x01\x12U\nHabsolute_spacing_between_support_face_and_first_perimeter_auto_increment\x18) \x01(\x01H\'\x88\x01\x01\x12T\nGabsolute_spacing_between_support_face_and_first_perimeter_auto_priority\x18* \x01(\x05H(\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_enabled\x18+ \x01(\x08H)\x88\x01\x01\x12\x30\n#absolute_spacing_between_perimeters\x18, \x01(\x01H*\x88\x01\x01\x12;\n.absolute_spacing_between_perimeters_calculated\x18- \x01(\x01H+\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_minimum\x18. \x01(\x01H,\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_maximum\x18/ \x01(\x01H-\x88\x01\x01\x12?\n2absolute_spacing_between_perimeters_auto_increment\x18\x30 \x01(\x01H.\x88\x01\x01\x12>\n1absolute_spacing_between_perimeters_auto_priority\x18\x31 \x01(\x05H/\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_enabled\x18\x32 \x01(\x08H0\x88\x01\x01\x12\x1d\n\x10\x62\x65nd_up_diameter\x18\x33 \x01(\x01H1\x88\x01\x01\x12(\n\x1b\x62\x65nd_up_diameter_calculated\x18\x34 \x01(\x01H2\x88\x01\x01\x12%\n\x18\x62\x65nd_up_size_designation\x18\x35 \x01(\x01H3\x88\x01\x01\x12*\n\x1d\x62\x65nd_up_diameter_auto_minimum\x18\x36 \x01(\x01H4\x88\x01\x01\x12*\n\x1d\x62\x65nd_up_diameter_auto_maximum\x18\x37 \x01(\x01H5\x88\x01\x01\x12\x39\n,bend_up_diameter_auto_diameters_list_enabled\x18\x38 \x01(\x08H6\x88\x01\x01\x12,\n$bend_up_diameter_auto_diameters_list\x18\x39 \x03(\x01\x12+\n\x1e\x62\x65nd_up_diameter_auto_priority\x18: \x01(\x05H7\x88\x01\x01\x12\x89\x01\n%bend_up_size_designation_auto_minimum\x18; \x01(\x0e\x32U.dlubal.api.rfem.reinforcement.PunchingReinforcement.BendUpSizeDesignationAutoMinimumH8\x88\x01\x01\x12\x89\x01\n%bend_up_size_designation_auto_maximum\x18< \x01(\x0e\x32U.dlubal.api.rfem.reinforcement.PunchingReinforcement.BendUpSizeDesignationAutoMaximumH9\x88\x01\x01\x12\x97\x01\n/bend_up_size_designation_auto_designations_list\x18= \x03(\x0e\x32^.dlubal.api.rfem.reinforcement.PunchingReinforcement.BendUpSizeDesignationAutoDesignationsList\x12*\n\x1d\x62\x65nd_up_diameter_auto_enabled\x18> \x01(\x08H:\x88\x01\x01\x12\x1b\n\x0eperimeter_area\x18? \x01(\x01H;\x88\x01\x01\x12\x17\n\ntotal_area\x18@ \x01(\x01H<\x88\x01\x01\x12\x1e\n\x16integrated_in_surfaces\x18\x41 \x03(\x05\x12\x14\n\x07\x63omment\x18\x42 \x01(\tH=\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x43 \x01(\x08H>\x88\x01\x01\x12#\n\x16generating_object_info\x18\x44 \x01(\tH?\x88\x01\x01\x12\x83\x01\n\x1e\x64ifferent_placement_perimeters\x18\x45 \x01(\x0b\x32V.dlubal.api.rfem.reinforcement.PunchingReinforcement.DifferentPlacementPerimetersTableH@\x88\x01\x01\x12\x94\x01\n*different_placement_perimeter_spacing_type\x18\x46 \x01(\x0e\x32[.dlubal.api.rfem.reinforcement.PunchingReinforcement.DifferentPlacementPerimeterSpacingTypeHA\x88\x01\x01\x12\x1f\n\x12stud_head_diameter\x18G \x01(\x01HB\x88\x01\x01\x12\x1c\n\x0f\x62\x61se_rail_width\x18H \x01(\x01HC\x88\x01\x01\x12!\n\x14id_for_export_import\x18I \x01(\tHD\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18J \x01(\tHE\x88\x01\x01\x1a\x87\x01\n!DifferentPlacementPerimetersTable\x12\x62\n\x04rows\x18\x01 \x03(\x0b\x32T.dlubal.api.rfem.reinforcement.PunchingReinforcement.DifferentPlacementPerimetersRow\x1a\xf5\x01\n\x1f\x44ifferentPlacementPerimetersRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x1f\n\x12number_links_count\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x14\n\x07spacing\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x1f\n\x12reinforcement_area\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x15\n\x13_number_links_countB\n\n\x08_spacingB\x15\n\x13_reinforcement_area\"\xc7\x01\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x1a\n\x16TYPE_HEADED_SHEAR_STUD\x10\x05\x12$\n TYPE_HEADED_STUDS_WITH_BASE_RAIL\x10\x06\x12\x11\n\rTYPE_VERTICAL\x10\x01\x12\x1b\n\x17TYPE_VERTICAL_CROSSTIES\x10\x04\x12\x1f\n\x1bTYPE_VERTICAL_MULTIPLE_LEGS\x10\x03\x12\x1a\n\x16TYPE_VERTICAL_STIRRUPS\x10\x02\"D\n\rPlacementType\x12\x19\n\x15PLACEMENT_TYPE_RADIAL\x10\x00\x12\x18\n\x14PLACEMENT_TYPE_AXIAL\x10\x01\"I\n\rDistancesType\x12\x1a\n\x16\x44ISTANCES_TYPE_UNIFORM\x10\x00\x12\x1c\n\x18\x44ISTANCES_TYPE_DIFFERENT\x10\x01\"4\n\tDirection\x12\x14\n\x10\x44IRECTION_BOTTOM\x10\x00\x12\x11\n\rDIRECTION_TOP\x10\x01\"m\n\x14PerimeterSpacingType\x12\x30\n,PERIMETER_SPACING_TYPE_MULTIPLE_STATIC_DEPTH\x10\x00\x12#\n\x1fPERIMETER_SPACING_TYPE_ABSOLUTE\x10\x01\"U\n BendUpSizeDesignationAutoMinimum\x12\x31\n-BEND_UP_SIZE_DESIGNATION_AUTO_MINIMUM_UNKNOWN\x10\x00\"U\n BendUpSizeDesignationAutoMaximum\x12\x31\n-BEND_UP_SIZE_DESIGNATION_AUTO_MAXIMUM_UNKNOWN\x10\x00\"\xbd\x0c\n)BendUpSizeDesignationAutoDesignationsList\x12;\n7BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_UNKNOWN\x10\x00\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_1\x10\x01\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_10\x10\x0c\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_11\x10\r\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_12\x10\x0e\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_14\x10\x0f\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_16\x10\x10\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_18\x10\x11\x12;\n7BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_1p5\x10\x02\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_2\x10\x03\x12;\n7BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_2p5\x10\x04\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_3\x10\x05\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_4\x10\x06\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_5\x10\x07\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_6\x10\x08\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_7\x10\t\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_8\x10\n\x12\x39\n5BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_ACI_9\x10\x0b\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_10\x10\x12\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_15\x10\x13\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_20\x10\x14\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_25\x10\x15\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_30\x10\x16\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_35\x10\x17\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_45\x10\x18\x12:\n6BEND_UP_SIZE_DESIGNATION_AUTO_DESIGNATIONS_LIST_CSA_55\x10\x19\"\xa7\x01\n&DifferentPlacementPerimeterSpacingType\x12\x44\n@DIFFERENT_PLACEMENT_PERIMETER_SPACING_TYPE_MULTIPLE_STATIC_DEPTH\x10\x00\x12\x37\n3DIFFERENT_PLACEMENT_PERIMETER_SPACING_TYPE_ABSOLUTE\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_materialB\x11\n\x0f_placement_typeB\x11\n\x0f_distances_typeB\x0c\n\n_directionB\x17\n\x15_number_of_perimetersB\"\n _number_of_perimeters_calculatedB$\n\"_number_of_perimeters_auto_minimumB$\n\"_number_of_perimeters_auto_maximumB%\n#_number_of_perimeters_auto_priorityB$\n\"_number_of_perimeters_auto_enabledB#\n!_number_of_legs_in_each_perimeterB.\n,_number_of_legs_in_each_perimeter_calculatedB0\n._number_of_legs_in_each_perimeter_auto_minimumB0\n._number_of_legs_in_each_perimeter_auto_maximumB1\n/_number_of_legs_in_each_perimeter_auto_priorityB0\n._number_of_legs_in_each_perimeter_auto_enabledB\x19\n\x17_perimeter_spacing_typeBI\nG_multiple_static_depth_spacing_between_support_face_and_first_perimeterBT\nR_multiple_static_depth_spacing_between_support_face_and_first_perimeter_calculatedBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_minimumBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_maximumBX\nV_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_incrementBW\nU_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_priorityBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_enabledB3\n1_multiple_static_depth_spacing_between_perimetersB>\n<_multiple_static_depth_spacing_between_perimeters_calculatedB@\n>_multiple_static_depth_spacing_between_perimeters_auto_minimumB@\n>_multiple_static_depth_spacing_between_perimeters_auto_maximumBB\n@_multiple_static_depth_spacing_between_perimeters_auto_incrementBA\n?_multiple_static_depth_spacing_between_perimeters_auto_priorityB@\n>_multiple_static_depth_spacing_between_perimeters_auto_enabledB<\n:_absolute_spacing_between_support_face_and_first_perimeterBG\nE_absolute_spacing_between_support_face_and_first_perimeter_calculatedBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_minimumBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_maximumBK\nI_absolute_spacing_between_support_face_and_first_perimeter_auto_incrementBJ\nH_absolute_spacing_between_support_face_and_first_perimeter_auto_priorityBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_enabledB&\n$_absolute_spacing_between_perimetersB1\n/_absolute_spacing_between_perimeters_calculatedB3\n1_absolute_spacing_between_perimeters_auto_minimumB3\n1_absolute_spacing_between_perimeters_auto_maximumB5\n3_absolute_spacing_between_perimeters_auto_incrementB4\n2_absolute_spacing_between_perimeters_auto_priorityB3\n1_absolute_spacing_between_perimeters_auto_enabledB\x13\n\x11_bend_up_diameterB\x1e\n\x1c_bend_up_diameter_calculatedB\x1b\n\x19_bend_up_size_designationB \n\x1e_bend_up_diameter_auto_minimumB \n\x1e_bend_up_diameter_auto_maximumB/\n-_bend_up_diameter_auto_diameters_list_enabledB!\n\x1f_bend_up_diameter_auto_priorityB(\n&_bend_up_size_designation_auto_minimumB(\n&_bend_up_size_designation_auto_maximumB \n\x1e_bend_up_diameter_auto_enabledB\x11\n\x0f_perimeter_areaB\r\n\x0b_total_areaB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB!\n\x1f_different_placement_perimetersB-\n+_different_placement_perimeter_spacing_typeB\x15\n\x13_stud_head_diameterB\x12\n\x10_base_rail_widthB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.reinforcement.punching_reinforcement_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_PUNCHINGREINFORCEMENT']._serialized_start=94
35
+ _globals['_PUNCHINGREINFORCEMENT']._serialized_end=10991
36
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSTABLE']._serialized_start=4956
37
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSTABLE']._serialized_end=5091
38
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSROW']._serialized_start=5094
39
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSROW']._serialized_end=5339
40
+ _globals['_PUNCHINGREINFORCEMENT_TYPE']._serialized_start=5342
41
+ _globals['_PUNCHINGREINFORCEMENT_TYPE']._serialized_end=5541
42
+ _globals['_PUNCHINGREINFORCEMENT_PLACEMENTTYPE']._serialized_start=5543
43
+ _globals['_PUNCHINGREINFORCEMENT_PLACEMENTTYPE']._serialized_end=5611
44
+ _globals['_PUNCHINGREINFORCEMENT_DISTANCESTYPE']._serialized_start=5613
45
+ _globals['_PUNCHINGREINFORCEMENT_DISTANCESTYPE']._serialized_end=5686
46
+ _globals['_PUNCHINGREINFORCEMENT_DIRECTION']._serialized_start=5688
47
+ _globals['_PUNCHINGREINFORCEMENT_DIRECTION']._serialized_end=5740
48
+ _globals['_PUNCHINGREINFORCEMENT_PERIMETERSPACINGTYPE']._serialized_start=5742
49
+ _globals['_PUNCHINGREINFORCEMENT_PERIMETERSPACINGTYPE']._serialized_end=5851
50
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTOMINIMUM']._serialized_start=5853
51
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTOMINIMUM']._serialized_end=5938
52
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTOMAXIMUM']._serialized_start=5940
53
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTOMAXIMUM']._serialized_end=6025
54
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTODESIGNATIONSLIST']._serialized_start=6028
55
+ _globals['_PUNCHINGREINFORCEMENT_BENDUPSIZEDESIGNATIONAUTODESIGNATIONSLIST']._serialized_end=7625
56
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSPACINGTYPE']._serialized_start=7628
57
+ _globals['_PUNCHINGREINFORCEMENT_DIFFERENTPLACEMENTPERIMETERSPACINGTYPE']._serialized_end=7795
58
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
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/reinforcement/reinforcement_direction.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/reinforcement/reinforcement_direction.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n;dlubal/api/rfem/reinforcement/reinforcement_direction.proto\x12\x1d\x64lubal.api.rfem.reinforcement\"\xd1\x08\n\x16ReinforcementDirection\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\x05\x12{\n\x1creinforcement_direction_type\x18\x05 \x01(\x0e\x32P.dlubal.api.rfem.reinforcement.ReinforcementDirection.ReinforcementDirectionTypeH\x03\x88\x01\x01\x12&\n\x19\x66irst_reinforcement_angle\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\'\n\x1asecond_reinforcement_angle\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x36\n)second_reinforcement_angle_to_first_angle\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12(\n\x1bis_angle_to_first_direction\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x14\n\x07\x63omment\x18\n \x01(\tH\x08\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\t\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\n\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\x0b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\x0c\x88\x01\x01\"\xbc\x01\n\x1aReinforcementDirectionType\x12\x39\n5REINFORCEMENT_DIRECTION_TYPE_FIRST_REINFORCEMENT_IN_X\x10\x00\x12\x39\n5REINFORCEMENT_DIRECTION_TYPE_FIRST_REINFORCEMENT_IN_Y\x10\x01\x12(\n$REINFORCEMENT_DIRECTION_TYPE_ROTATED\x10\x02\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1f\n\x1d_reinforcement_direction_typeB\x1c\n\x1a_first_reinforcement_angleB\x1d\n\x1b_second_reinforcement_angleB,\n*_second_reinforcement_angle_to_first_angleB\x1e\n\x1c_is_angle_to_first_directionB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.reinforcement.reinforcement_direction_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_REINFORCEMENTDIRECTION']._serialized_start=95
35
+ _globals['_REINFORCEMENTDIRECTION']._serialized_end=1200
36
+ _globals['_REINFORCEMENTDIRECTION_REINFORCEMENTDIRECTIONTYPE']._serialized_start=682
37
+ _globals['_REINFORCEMENTDIRECTION_REINFORCEMENTDIRECTIONTYPE']._serialized_end=870
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,84 @@
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/reinforcement/surface_reinforcement.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/reinforcement/surface_reinforcement.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9dlubal/api/rfem/reinforcement/surface_reinforcement.proto\x12\x1d\x64lubal.api.rfem.reinforcement\"\xa4\x97\x01\n\x14SurfaceReinforcement\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\\\n\rlocation_type\x18\x02 \x01(\x0e\x32@.dlubal.api.rfem.reinforcement.SurfaceReinforcement.LocationTypeH\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x10\n\x08surfaces\x18\x05 \x03(\x05\x12\x15\n\x08material\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12`\n\x0f\x64\x65\x66inition_type\x18\x07 \x01(\x0e\x32\x42.dlubal.api.rfem.reinforcement.SurfaceReinforcement.DefinitionTypeH\x05\x88\x01\x01\x12\x17\n\nrebar_size\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12k\n\x15rebar_size_calculated\x18\t \x01(\x0e\x32G.dlubal.api.rfem.reinforcement.SurfaceReinforcement.RebarSizeCalculatedH\x07\x88\x01\x01\x12\x1b\n\x0erebar_diameter\x18\n \x01(\x01H\x08\x88\x01\x01\x12&\n\x19rebar_diameter_calculated\x18\x0b \x01(\x01H\t\x88\x01\x01\x12(\n\x1brebar_diameter_auto_enabled\x18\x0c \x01(\x08H\n\x88\x01\x01\x12n\n\x17rebar_size_auto_minimum\x18\r \x01(\x0e\x32H.dlubal.api.rfem.reinforcement.SurfaceReinforcement.RebarSizeAutoMinimumH\x0b\x88\x01\x01\x12(\n\x1brebar_diameter_auto_minimum\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12n\n\x17rebar_size_auto_maximum\x18\x0f \x01(\x0e\x32H.dlubal.api.rfem.reinforcement.SurfaceReinforcement.RebarSizeAutoMaximumH\r\x88\x01\x01\x12(\n\x1brebar_diameter_auto_maximum\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x32\n%rebar_diameter_auto_diameters_enabled\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12m\n\x19rebar_diameter_auto_sizes\x18\x12 \x03(\x0e\x32J.dlubal.api.rfem.reinforcement.SurfaceReinforcement.RebarDiameterAutoSizes\x12%\n\x1drebar_diameter_auto_diameters\x18\x13 \x03(\x01\x12)\n\x1crebar_diameter_auto_priority\x18\x14 \x01(\x05H\x10\x88\x01\x01\x12\x1a\n\rrebar_spacing\x18\x15 \x01(\x01H\x11\x88\x01\x01\x12%\n\x18rebar_spacing_calculated\x18\x16 \x01(\x01H\x12\x88\x01\x01\x12\'\n\x1arebar_spacing_auto_enabled\x18\x17 \x01(\x08H\x13\x88\x01\x01\x12\'\n\x1arebar_spacing_auto_minimum\x18\x18 \x01(\x01H\x14\x88\x01\x01\x12\'\n\x1arebar_spacing_auto_maximum\x18\x19 \x01(\x01H\x15\x88\x01\x01\x12)\n\x1crebar_spacing_auto_increment\x18\x1a \x01(\x01H\x16\x88\x01\x01\x12(\n\x1brebar_spacing_auto_priority\x18\x1b \x01(\x05H\x17\x88\x01\x01\x12\x19\n\x0cstirrup_size\x18\x1c \x01(\x01H\x18\x88\x01\x01\x12o\n\x17stirrup_size_calculated\x18\x1d \x01(\x0e\x32I.dlubal.api.rfem.reinforcement.SurfaceReinforcement.StirrupSizeCalculatedH\x19\x88\x01\x01\x12\x1d\n\x10stirrup_diameter\x18\x1e \x01(\x01H\x1a\x88\x01\x01\x12(\n\x1bstirrup_diameter_calculated\x18\x1f \x01(\x01H\x1b\x88\x01\x01\x12*\n\x1dstirrup_diameter_auto_enabled\x18 \x01(\x08H\x1c\x88\x01\x01\x12r\n\x19stirrup_size_auto_minimum\x18! \x01(\x0e\x32J.dlubal.api.rfem.reinforcement.SurfaceReinforcement.StirrupSizeAutoMinimumH\x1d\x88\x01\x01\x12*\n\x1dstirrup_diameter_auto_minimum\x18\" \x01(\x01H\x1e\x88\x01\x01\x12r\n\x19stirrup_size_auto_maximum\x18# \x01(\x0e\x32J.dlubal.api.rfem.reinforcement.SurfaceReinforcement.StirrupSizeAutoMaximumH\x1f\x88\x01\x01\x12*\n\x1dstirrup_diameter_auto_maximum\x18$ \x01(\x01H \x88\x01\x01\x12\x34\n\'stirrup_diameter_auto_diameters_enabled\x18% \x01(\x08H!\x88\x01\x01\x12q\n\x1bstirrup_diameter_auto_sizes\x18& \x03(\x0e\x32L.dlubal.api.rfem.reinforcement.SurfaceReinforcement.StirrupDiameterAutoSizes\x12\'\n\x1fstirrup_diameter_auto_diameters\x18\' \x03(\x01\x12+\n\x1estirrup_diameter_auto_priority\x18( \x01(\x05H\"\x88\x01\x01\x12\x1c\n\x0fstirrup_spacing\x18) \x01(\x01H#\x88\x01\x01\x12\'\n\x1astirrup_spacing_calculated\x18* \x01(\x01H$\x88\x01\x01\x12)\n\x1cstirrup_spacing_auto_enabled\x18+ \x01(\x08H%\x88\x01\x01\x12)\n\x1cstirrup_spacing_auto_minimum\x18, \x01(\x01H&\x88\x01\x01\x12)\n\x1cstirrup_spacing_auto_maximum\x18- \x01(\x01H\'\x88\x01\x01\x12+\n\x1estirrup_spacing_auto_increment\x18. \x01(\x01H(\x88\x01\x01\x12*\n\x1dstirrup_spacing_auto_priority\x18/ \x01(\x05H)\x88\x01\x01\x12\"\n\x15orthogonal_rebar_size\x18\x30 \x01(\x01H*\x88\x01\x01\x12\x80\x01\n orthogonal_rebar_size_calculated\x18\x31 \x01(\x0e\x32Q.dlubal.api.rfem.reinforcement.SurfaceReinforcement.OrthogonalRebarSizeCalculatedH+\x88\x01\x01\x12&\n\x19orthogonal_rebar_diameter\x18\x32 \x01(\x01H,\x88\x01\x01\x12\x31\n$orthogonal_rebar_diameter_calculated\x18\x33 \x01(\x01H-\x88\x01\x01\x12\x33\n&orthogonal_rebar_diameter_auto_enabled\x18\x34 \x01(\x08H.\x88\x01\x01\x12\x83\x01\n\"orthogonal_rebar_size_auto_minimum\x18\x35 \x01(\x0e\x32R.dlubal.api.rfem.reinforcement.SurfaceReinforcement.OrthogonalRebarSizeAutoMinimumH/\x88\x01\x01\x12\x33\n&orthogonal_rebar_diameter_auto_minimum\x18\x36 \x01(\x01H0\x88\x01\x01\x12\x83\x01\n\"orthogonal_rebar_size_auto_maximum\x18\x37 \x01(\x0e\x32R.dlubal.api.rfem.reinforcement.SurfaceReinforcement.OrthogonalRebarSizeAutoMaximumH1\x88\x01\x01\x12\x33\n&orthogonal_rebar_diameter_auto_maximum\x18\x38 \x01(\x01H2\x88\x01\x01\x12=\n0orthogonal_rebar_diameter_auto_diameters_enabled\x18\x39 \x01(\x08H3\x88\x01\x01\x12\x82\x01\n$orthogonal_rebar_diameter_auto_sizes\x18: \x03(\x0e\x32T.dlubal.api.rfem.reinforcement.SurfaceReinforcement.OrthogonalRebarDiameterAutoSizes\x12\x30\n(orthogonal_rebar_diameter_auto_diameters\x18; \x03(\x01\x12\x34\n\'orthogonal_rebar_diameter_auto_priority\x18< \x01(\x05H4\x88\x01\x01\x12%\n\x18orthogonal_rebar_spacing\x18= \x01(\x01H5\x88\x01\x01\x12\x30\n#orthogonal_rebar_spacing_calculated\x18> \x01(\x01H6\x88\x01\x01\x12\x32\n%orthogonal_rebar_spacing_auto_enabled\x18? \x01(\x08H7\x88\x01\x01\x12\x32\n%orthogonal_rebar_spacing_auto_minimum\x18@ \x01(\x01H8\x88\x01\x01\x12\x32\n%orthogonal_rebar_spacing_auto_maximum\x18\x41 \x01(\x01H9\x88\x01\x01\x12\x34\n\'orthogonal_rebar_spacing_auto_increment\x18\x42 \x01(\x01H:\x88\x01\x01\x12\x33\n&orthogonal_rebar_spacing_auto_priority\x18\x43 \x01(\x05H;\x88\x01\x01\x12\x65\n\x12mesh_product_range\x18\x44 \x01(\x0e\x32\x44.dlubal.api.rfem.reinforcement.SurfaceReinforcement.MeshProductRangeH<\x88\x01\x01\x12V\n\nmesh_shape\x18\x45 \x01(\x0e\x32=.dlubal.api.rfem.reinforcement.SurfaceReinforcement.MeshShapeH=\x88\x01\x01\x12\x16\n\tmesh_name\x18\x46 \x01(\tH>\x88\x01\x01\x12w\n\x1cnot_covered_first_rebar_size\x18G \x01(\x0e\x32L.dlubal.api.rfem.reinforcement.SurfaceReinforcement.NotCoveredFirstRebarSizeH?\x88\x01\x01\x12-\n not_covered_first_rebar_diameter\x18H \x01(\x01H@\x88\x01\x01\x12y\n\x1dnot_covered_second_rebar_size\x18I \x01(\x0e\x32M.dlubal.api.rfem.reinforcement.SurfaceReinforcement.NotCoveredSecondRebarSizeHA\x88\x01\x01\x12.\n!not_covered_second_rebar_diameter\x18J \x01(\x01HB\x88\x01\x01\x12\"\n\x15\x61lignment_top_enabled\x18K \x01(\x08HC\x88\x01\x01\x12%\n\x18\x61lignment_bottom_enabled\x18L \x01(\x08HD\x88\x01\x01\x12\x34\n\'additional_offset_to_concrete_cover_top\x18M \x01(\x01HE\x88\x01\x01\x12\x37\n*additional_offset_to_concrete_cover_bottom\x18N \x01(\x01HF\x88\x01\x01\x12y\n\x1creinforcement_direction_type\x18O \x01(\x0e\x32N.dlubal.api.rfem.reinforcement.SurfaceReinforcement.ReinforcementDirectionTypeHG\x88\x01\x01\x12}\n\x1e\x64\x65sign_reinforcement_direction\x18P \x01(\x0e\x32P.dlubal.api.rfem.reinforcement.SurfaceReinforcement.DesignReinforcementDirectionHH\x88\x01\x01\x12$\n\x17\x66irst_direction_point_1\x18Q \x01(\x01HI\x88\x01\x01\x12$\n\x17\x66irst_direction_point_2\x18R \x01(\x01HJ\x88\x01\x01\x12%\n\x18second_direction_point_1\x18S \x01(\x01HK\x88\x01\x01\x12%\n\x18second_direction_point_2\x18T \x01(\x01HL\x88\x01\x01\x12)\n\x1cprojection_coordinate_system\x18U \x01(\x05HM\x88\x01\x01\x12\x62\n\x10projection_plane\x18V \x01(\x0e\x32\x43.dlubal.api.rfem.reinforcement.SurfaceReinforcement.ProjectionPlaneHN\x88\x01\x01\x12#\n\x16reinforcement_area_as1\x18W \x01(\x01HO\x88\x01\x01\x12#\n\x16reinforcement_area_as2\x18X \x01(\x01HP\x88\x01\x01\x12\'\n\x1areinforcement_area_as1_top\x18Y \x01(\x01HQ\x88\x01\x01\x12*\n\x1dreinforcement_area_as1_bottom\x18Z \x01(\x01HR\x88\x01\x01\x12\'\n\x1areinforcement_area_as2_top\x18[ \x01(\x01HS\x88\x01\x01\x12*\n\x1dreinforcement_area_as2_bottom\x18\\ \x01(\x01HT\x88\x01\x01\x12$\n\x17reinforcement_area_as_i\x18] \x01(\x01HU\x88\x01\x01\x12,\n\x1freinforcement_area_as_i_plus_90\x18^ \x01(\x01HV\x88\x01\x01\x12(\n\x1breinforcement_area_as_i_top\x18_ \x01(\x01HW\x88\x01\x01\x12+\n\x1ereinforcement_area_as_i_bottom\x18` \x01(\x01HX\x88\x01\x01\x12\x30\n#reinforcement_area_as_i_plus_90_top\x18\x61 \x01(\x01HY\x88\x01\x01\x12\x33\n&reinforcement_area_as_i_plus_90_bottom\x18\x62 \x01(\x01HZ\x88\x01\x01\x12+\n\x1estirrup_reinforcement_area_asw\x18\x63 \x01(\x01H[\x88\x01\x01\x12\x1f\n\x12\x61\x63ting_region_from\x18\x64 \x01(\x01H\\\x88\x01\x01\x12\x1d\n\x10\x61\x63ting_region_to\x18\x65 \x01(\x01H]\x88\x01\x01\x12o\n\x17location_rectangle_type\x18\x66 \x01(\x0e\x32I.dlubal.api.rfem.reinforcement.SurfaceReinforcement.LocationRectangleTypeH^\x88\x01\x01\x12\x1d\n\x10location_first_x\x18g \x01(\x01H_\x88\x01\x01\x12\x1d\n\x10location_first_y\x18h \x01(\x01H`\x88\x01\x01\x12\x1e\n\x11location_second_x\x18i \x01(\x01Ha\x88\x01\x01\x12\x1e\n\x11location_second_y\x18j \x01(\x01Hb\x88\x01\x01\x12\x1e\n\x11location_center_x\x18k \x01(\x01Hc\x88\x01\x01\x12\x1e\n\x11location_center_y\x18l \x01(\x01Hd\x88\x01\x01\x12#\n\x16location_center_side_a\x18m \x01(\x01He\x88\x01\x01\x12#\n\x16location_center_side_b\x18n \x01(\x01Hf\x88\x01\x01\x12\x1e\n\x11location_rotation\x18o \x01(\x01Hg\x88\x01\x01\x12\x1c\n\x0flocation_radius\x18p \x01(\x01Hh\x88\x01\x01\x12\x63\n\x0epolygon_points\x18q \x01(\x0b\x32\x46.dlubal.api.rfem.reinforcement.SurfaceReinforcement.PolygonPointsTableHi\x88\x01\x01\x12\x14\n\x07\x63omment\x18r \x01(\tHj\x88\x01\x01\x12\x19\n\x0cis_generated\x18s \x01(\x08Hk\x88\x01\x01\x12#\n\x16generating_object_info\x18t \x01(\tHl\x88\x01\x01\x12!\n\x14id_for_export_import\x18u \x01(\tHm\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18v \x01(\tHn\x88\x01\x01\x1ah\n\x12PolygonPointsTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.reinforcement.SurfaceReinforcement.PolygonPointsRow\x1a\xe0\x01\n\x10PolygonPointsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x1d\n\x10\x66irst_coordinate\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x1e\n\x11second_coordinate\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x13\n\x11_first_coordinateB\x14\n\x12_second_coordinateB\n\n\x08_comment\"\xac\x01\n\x0cLocationType\x12\x19\n\x15LOCATION_TYPE_UNKNOWN\x10\x00\x12\x1f\n\x1bLOCATION_TYPE_FREE_CIRCULAR\x10\x03\x12\x1e\n\x1aLOCATION_TYPE_FREE_POLYGON\x10\x04\x12\"\n\x1eLOCATION_TYPE_FREE_RECTANGULAR\x10\x02\x12\x1c\n\x18LOCATION_TYPE_ON_SURFACE\x10\x01\"\xcd\x01\n\x0e\x44\x65\x66initionType\x12\x18\n\x14\x44\x45\x46INITION_TYPE_MESH\x10\x00\x12!\n\x1d\x44\x45\x46INITION_TYPE_REBAR_1_LAYER\x10\x01\x12\"\n\x1e\x44\x45\x46INITION_TYPE_REBAR_2_LAYERS\x10\x02\x12<\n8DEFINITION_TYPE_REBAR_NOT_COVERED_REQUIRED_REINFORCEMENT\x10\x04\x12\x1c\n\x18\x44\x45\x46INITION_TYPE_STIRRUPS\x10\x03\"\x83\x07\n\x13RebarSizeCalculated\x12!\n\x1dREBAR_SIZE_CALCULATED_UNKNOWN\x10\x00\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_1\x10\x01\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_10\x10\x0c\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_11\x10\r\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_12\x10\x0e\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_14\x10\x0f\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_16\x10\x10\x12 \n\x1cREBAR_SIZE_CALCULATED_ACI_18\x10\x11\x12!\n\x1dREBAR_SIZE_CALCULATED_ACI_1p5\x10\x02\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_2\x10\x03\x12!\n\x1dREBAR_SIZE_CALCULATED_ACI_2p5\x10\x04\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_3\x10\x05\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_4\x10\x06\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_5\x10\x07\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_6\x10\x08\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_7\x10\t\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_8\x10\n\x12\x1f\n\x1bREBAR_SIZE_CALCULATED_ACI_9\x10\x0b\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_10\x10\x12\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_15\x10\x13\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_20\x10\x14\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_25\x10\x15\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_30\x10\x16\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_35\x10\x17\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_45\x10\x18\x12 \n\x1cREBAR_SIZE_CALCULATED_CSA_55\x10\x19\";\n\x14RebarSizeAutoMinimum\x12#\n\x1fREBAR_SIZE_AUTO_MINIMUM_UNKNOWN\x10\x00\";\n\x14RebarSizeAutoMaximum\x12#\n\x1fREBAR_SIZE_AUTO_MAXIMUM_UNKNOWN\x10\x00\"\xee\x07\n\x16RebarDiameterAutoSizes\x12%\n!REBAR_DIAMETER_AUTO_SIZES_UNKNOWN\x10\x00\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_1\x10\x01\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_10\x10\x0c\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_11\x10\r\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_12\x10\x0e\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_14\x10\x0f\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_16\x10\x10\x12$\n REBAR_DIAMETER_AUTO_SIZES_ACI_18\x10\x11\x12%\n!REBAR_DIAMETER_AUTO_SIZES_ACI_1p5\x10\x02\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_2\x10\x03\x12%\n!REBAR_DIAMETER_AUTO_SIZES_ACI_2p5\x10\x04\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_3\x10\x05\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_4\x10\x06\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_5\x10\x07\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_6\x10\x08\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_7\x10\t\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_8\x10\n\x12#\n\x1fREBAR_DIAMETER_AUTO_SIZES_ACI_9\x10\x0b\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_10\x10\x12\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_15\x10\x13\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_20\x10\x14\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_25\x10\x15\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_30\x10\x16\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_35\x10\x17\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_45\x10\x18\x12$\n REBAR_DIAMETER_AUTO_SIZES_CSA_55\x10\x19\"\xb9\x07\n\x15StirrupSizeCalculated\x12#\n\x1fSTIRRUP_SIZE_CALCULATED_UNKNOWN\x10\x00\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_1\x10\x01\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_10\x10\x0c\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_11\x10\r\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_12\x10\x0e\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_14\x10\x0f\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_16\x10\x10\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_ACI_18\x10\x11\x12#\n\x1fSTIRRUP_SIZE_CALCULATED_ACI_1p5\x10\x02\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_2\x10\x03\x12#\n\x1fSTIRRUP_SIZE_CALCULATED_ACI_2p5\x10\x04\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_3\x10\x05\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_4\x10\x06\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_5\x10\x07\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_6\x10\x08\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_7\x10\t\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_8\x10\n\x12!\n\x1dSTIRRUP_SIZE_CALCULATED_ACI_9\x10\x0b\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_10\x10\x12\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_15\x10\x13\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_20\x10\x14\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_25\x10\x15\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_30\x10\x16\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_35\x10\x17\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_45\x10\x18\x12\"\n\x1eSTIRRUP_SIZE_CALCULATED_CSA_55\x10\x19\"?\n\x16StirrupSizeAutoMinimum\x12%\n!STIRRUP_SIZE_AUTO_MINIMUM_UNKNOWN\x10\x00\"?\n\x16StirrupSizeAutoMaximum\x12%\n!STIRRUP_SIZE_AUTO_MAXIMUM_UNKNOWN\x10\x00\"\xa4\x08\n\x18StirrupDiameterAutoSizes\x12\'\n#STIRRUP_DIAMETER_AUTO_SIZES_UNKNOWN\x10\x00\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_1\x10\x01\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_10\x10\x0c\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_11\x10\r\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_12\x10\x0e\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_14\x10\x0f\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_16\x10\x10\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_ACI_18\x10\x11\x12\'\n#STIRRUP_DIAMETER_AUTO_SIZES_ACI_1p5\x10\x02\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_2\x10\x03\x12\'\n#STIRRUP_DIAMETER_AUTO_SIZES_ACI_2p5\x10\x04\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_3\x10\x05\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_4\x10\x06\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_5\x10\x07\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_6\x10\x08\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_7\x10\t\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_8\x10\n\x12%\n!STIRRUP_DIAMETER_AUTO_SIZES_ACI_9\x10\x0b\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_10\x10\x12\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_15\x10\x13\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_20\x10\x14\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_25\x10\x15\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_30\x10\x16\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_35\x10\x17\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_45\x10\x18\x12&\n\"STIRRUP_DIAMETER_AUTO_SIZES_CSA_55\x10\x19\"\xab\t\n\x1dOrthogonalRebarSizeCalculated\x12,\n(ORTHOGONAL_REBAR_SIZE_CALCULATED_UNKNOWN\x10\x00\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_1\x10\x01\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_10\x10\x0c\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_11\x10\r\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_12\x10\x0e\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_14\x10\x0f\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_16\x10\x10\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_18\x10\x11\x12,\n(ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_1p5\x10\x02\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_2\x10\x03\x12,\n(ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_2p5\x10\x04\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_3\x10\x05\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_4\x10\x06\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_5\x10\x07\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_6\x10\x08\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_7\x10\t\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_8\x10\n\x12*\n&ORTHOGONAL_REBAR_SIZE_CALCULATED_ACI_9\x10\x0b\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_10\x10\x12\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_15\x10\x13\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_20\x10\x14\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_25\x10\x15\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_30\x10\x16\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_35\x10\x17\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_45\x10\x18\x12+\n\'ORTHOGONAL_REBAR_SIZE_CALCULATED_CSA_55\x10\x19\"P\n\x1eOrthogonalRebarSizeAutoMinimum\x12.\n*ORTHOGONAL_REBAR_SIZE_AUTO_MINIMUM_UNKNOWN\x10\x00\"P\n\x1eOrthogonalRebarSizeAutoMaximum\x12.\n*ORTHOGONAL_REBAR_SIZE_AUTO_MAXIMUM_UNKNOWN\x10\x00\"\x96\n\n OrthogonalRebarDiameterAutoSizes\x12\x30\n,ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_UNKNOWN\x10\x00\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_1\x10\x01\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_10\x10\x0c\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_11\x10\r\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_12\x10\x0e\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_14\x10\x0f\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_16\x10\x10\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_18\x10\x11\x12\x30\n,ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_1p5\x10\x02\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_2\x10\x03\x12\x30\n,ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_2p5\x10\x04\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_3\x10\x05\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_4\x10\x06\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_5\x10\x07\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_6\x10\x08\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_7\x10\t\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_8\x10\n\x12.\n*ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_ACI_9\x10\x0b\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_10\x10\x12\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_15\x10\x13\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_20\x10\x14\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_25\x10\x15\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_30\x10\x16\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_35\x10\x17\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_45\x10\x18\x12/\n+ORTHOGONAL_REBAR_DIAMETER_AUTO_SIZES_CSA_55\x10\x19\"\xe6\x03\n\x10MeshProductRange\x12\x1e\n\x1aMESH_PRODUCT_RANGE_UNKNOWN\x10\x00\x12\x38\n2MESH_PRODUCT_RANGE_MESHSTANDARD_AUSTRIA_2002_01_01\x10\xb3\x9c\x02\x12\x34\n.MESH_PRODUCT_RANGE_MESHSTANDARD_CZECH_REPUBLIC\x10\xb5\x9c\x02\x12,\n&MESH_PRODUCT_RANGE_MESHSTANDARD_FRANCE\x10\xc5\x9e\x02\x12\x38\n2MESH_PRODUCT_RANGE_MESHSTANDARD_GERMANY_1997_01_01\x10\xa5\x9c\x02\x12\x38\n2MESH_PRODUCT_RANGE_MESHSTANDARD_GERMANY_2001_10_01\x10\xa3\x9c\x02\x12\x38\n2MESH_PRODUCT_RANGE_MESHSTANDARD_GERMANY_2008_01_01\x10\xa4\x9c\x02\x12\x31\n+MESH_PRODUCT_RANGE_MESHSTANDARD_NETHERLANDS\x10\xb6\x9c\x02\x12\x33\n-MESH_PRODUCT_RANGE_MESHSTANDARD_UNITED_STATES\x10\xcf\x9c\x02\"\xd6\x06\n\tMeshShape\x12\x16\n\x12MESH_SHAPE_UNKNOWN\x10\x00\x12\"\n\x1dMESH_SHAPE_MESHSHAPE_AQS_MESH\x10\xcc\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_AQ_MESH\x10\xc8\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_AS_MESH\x10\xca\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_A_MESH\x10\xc7\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_B_MESH\x10\xcd\x01\x12\"\n\x1dMESH_SHAPE_MESHSHAPE_CQS_MESH\x10\xcb\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_CS_MESH\x10\xc9\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_E_MESH\x10\xce\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_G_MESH\x10\xcf\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_KA_MESH\x10\xd0\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_KD_MESH\x10\xd1\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_KH_MESH\x10\xd2\x01\x12!\n\x1cMESH_SHAPE_MESHSHAPE_KY_MESH\x10\xd3\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_K_MESH\x10\xc6\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_L_MESH\x10\xd4\x01\x12\x1d\n\x18MESH_SHAPE_MESHSHAPE_PAF\x10\xe0\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_P_MESH\x10\xd5\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_Q_MESH\x10\xc4\x01\x12\x1f\n\x1aMESH_SHAPE_MESHSHAPE_ROLLS\x10\xd8\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_R_MESH\x10\xc5\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_SHEETS\x10\xd9\x01\x12\x1c\n\x17MESH_SHAPE_MESHSHAPE_ST\x10\xe1\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_W_MESH\x10\xd6\x01\x12 \n\x1bMESH_SHAPE_MESHSHAPE_Z_MESH\x10\xd7\x01\"D\n\x18NotCoveredFirstRebarSize\x12(\n$NOT_COVERED_FIRST_REBAR_SIZE_UNKNOWN\x10\x00\"F\n\x19NotCoveredSecondRebarSize\x12)\n%NOT_COVERED_SECOND_REBAR_SIZE_UNKNOWN\x10\x00\"\x99\x01\n\x1aReinforcementDirectionType\x12\x42\n>REINFORCEMENT_DIRECTION_TYPE_IN_DESIGN_REINFORCEMENT_DIRECTION\x10\x00\x12\x37\n3REINFORCEMENT_DIRECTION_TYPE_PARALLEL_TO_TWO_POINTS\x10\x01\"r\n\x1c\x44\x65signReinforcementDirection\x12(\n$DESIGN_REINFORCEMENT_DIRECTION_A_S_1\x10\x00\x12(\n$DESIGN_REINFORCEMENT_DIRECTION_A_S_2\x10\x01\"n\n\x0fProjectionPlane\x12\x1d\n\x19PROJECTION_PLANE_XY_OR_UV\x10\x00\x12\x1d\n\x19PROJECTION_PLANE_XZ_OR_UW\x10\x02\x12\x1d\n\x19PROJECTION_PLANE_YZ_OR_VW\x10\x01\"p\n\x15LocationRectangleType\x12)\n%LOCATION_RECTANGLE_TYPE_CORNER_POINTS\x10\x00\x12,\n(LOCATION_RECTANGLE_TYPE_CENTER_AND_SIDES\x10\x01\x42\x05\n\x03_noB\x10\n\x0e_location_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_materialB\x12\n\x10_definition_typeB\r\n\x0b_rebar_sizeB\x18\n\x16_rebar_size_calculatedB\x11\n\x0f_rebar_diameterB\x1c\n\x1a_rebar_diameter_calculatedB\x1e\n\x1c_rebar_diameter_auto_enabledB\x1a\n\x18_rebar_size_auto_minimumB\x1e\n\x1c_rebar_diameter_auto_minimumB\x1a\n\x18_rebar_size_auto_maximumB\x1e\n\x1c_rebar_diameter_auto_maximumB(\n&_rebar_diameter_auto_diameters_enabledB\x1f\n\x1d_rebar_diameter_auto_priorityB\x10\n\x0e_rebar_spacingB\x1b\n\x19_rebar_spacing_calculatedB\x1d\n\x1b_rebar_spacing_auto_enabledB\x1d\n\x1b_rebar_spacing_auto_minimumB\x1d\n\x1b_rebar_spacing_auto_maximumB\x1f\n\x1d_rebar_spacing_auto_incrementB\x1e\n\x1c_rebar_spacing_auto_priorityB\x0f\n\r_stirrup_sizeB\x1a\n\x18_stirrup_size_calculatedB\x13\n\x11_stirrup_diameterB\x1e\n\x1c_stirrup_diameter_calculatedB \n\x1e_stirrup_diameter_auto_enabledB\x1c\n\x1a_stirrup_size_auto_minimumB \n\x1e_stirrup_diameter_auto_minimumB\x1c\n\x1a_stirrup_size_auto_maximumB \n\x1e_stirrup_diameter_auto_maximumB*\n(_stirrup_diameter_auto_diameters_enabledB!\n\x1f_stirrup_diameter_auto_priorityB\x12\n\x10_stirrup_spacingB\x1d\n\x1b_stirrup_spacing_calculatedB\x1f\n\x1d_stirrup_spacing_auto_enabledB\x1f\n\x1d_stirrup_spacing_auto_minimumB\x1f\n\x1d_stirrup_spacing_auto_maximumB!\n\x1f_stirrup_spacing_auto_incrementB \n\x1e_stirrup_spacing_auto_priorityB\x18\n\x16_orthogonal_rebar_sizeB#\n!_orthogonal_rebar_size_calculatedB\x1c\n\x1a_orthogonal_rebar_diameterB\'\n%_orthogonal_rebar_diameter_calculatedB)\n\'_orthogonal_rebar_diameter_auto_enabledB%\n#_orthogonal_rebar_size_auto_minimumB)\n\'_orthogonal_rebar_diameter_auto_minimumB%\n#_orthogonal_rebar_size_auto_maximumB)\n\'_orthogonal_rebar_diameter_auto_maximumB3\n1_orthogonal_rebar_diameter_auto_diameters_enabledB*\n(_orthogonal_rebar_diameter_auto_priorityB\x1b\n\x19_orthogonal_rebar_spacingB&\n$_orthogonal_rebar_spacing_calculatedB(\n&_orthogonal_rebar_spacing_auto_enabledB(\n&_orthogonal_rebar_spacing_auto_minimumB(\n&_orthogonal_rebar_spacing_auto_maximumB*\n(_orthogonal_rebar_spacing_auto_incrementB)\n\'_orthogonal_rebar_spacing_auto_priorityB\x15\n\x13_mesh_product_rangeB\r\n\x0b_mesh_shapeB\x0c\n\n_mesh_nameB\x1f\n\x1d_not_covered_first_rebar_sizeB#\n!_not_covered_first_rebar_diameterB \n\x1e_not_covered_second_rebar_sizeB$\n\"_not_covered_second_rebar_diameterB\x18\n\x16_alignment_top_enabledB\x1b\n\x19_alignment_bottom_enabledB*\n(_additional_offset_to_concrete_cover_topB-\n+_additional_offset_to_concrete_cover_bottomB\x1f\n\x1d_reinforcement_direction_typeB!\n\x1f_design_reinforcement_directionB\x1a\n\x18_first_direction_point_1B\x1a\n\x18_first_direction_point_2B\x1b\n\x19_second_direction_point_1B\x1b\n\x19_second_direction_point_2B\x1f\n\x1d_projection_coordinate_systemB\x13\n\x11_projection_planeB\x19\n\x17_reinforcement_area_as1B\x19\n\x17_reinforcement_area_as2B\x1d\n\x1b_reinforcement_area_as1_topB \n\x1e_reinforcement_area_as1_bottomB\x1d\n\x1b_reinforcement_area_as2_topB \n\x1e_reinforcement_area_as2_bottomB\x1a\n\x18_reinforcement_area_as_iB\"\n _reinforcement_area_as_i_plus_90B\x1e\n\x1c_reinforcement_area_as_i_topB!\n\x1f_reinforcement_area_as_i_bottomB&\n$_reinforcement_area_as_i_plus_90_topB)\n\'_reinforcement_area_as_i_plus_90_bottomB!\n\x1f_stirrup_reinforcement_area_aswB\x15\n\x13_acting_region_fromB\x13\n\x11_acting_region_toB\x1a\n\x18_location_rectangle_typeB\x13\n\x11_location_first_xB\x13\n\x11_location_first_yB\x14\n\x12_location_second_xB\x14\n\x12_location_second_yB\x14\n\x12_location_center_xB\x14\n\x12_location_center_yB\x19\n\x17_location_center_side_aB\x19\n\x17_location_center_side_bB\x14\n\x12_location_rotationB\x12\n\x10_location_radiusB\x11\n\x0f_polygon_pointsB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.reinforcement.surface_reinforcement_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACEREINFORCEMENT']._serialized_start=94
35
+ _globals['_SURFACEREINFORCEMENT']._serialized_end=19458
36
+ _globals['_SURFACEREINFORCEMENT_POLYGONPOINTSTABLE']._serialized_start=6574
37
+ _globals['_SURFACEREINFORCEMENT_POLYGONPOINTSTABLE']._serialized_end=6678
38
+ _globals['_SURFACEREINFORCEMENT_POLYGONPOINTSROW']._serialized_start=6681
39
+ _globals['_SURFACEREINFORCEMENT_POLYGONPOINTSROW']._serialized_end=6905
40
+ _globals['_SURFACEREINFORCEMENT_LOCATIONTYPE']._serialized_start=6908
41
+ _globals['_SURFACEREINFORCEMENT_LOCATIONTYPE']._serialized_end=7080
42
+ _globals['_SURFACEREINFORCEMENT_DEFINITIONTYPE']._serialized_start=7083
43
+ _globals['_SURFACEREINFORCEMENT_DEFINITIONTYPE']._serialized_end=7288
44
+ _globals['_SURFACEREINFORCEMENT_REBARSIZECALCULATED']._serialized_start=7291
45
+ _globals['_SURFACEREINFORCEMENT_REBARSIZECALCULATED']._serialized_end=8190
46
+ _globals['_SURFACEREINFORCEMENT_REBARSIZEAUTOMINIMUM']._serialized_start=8192
47
+ _globals['_SURFACEREINFORCEMENT_REBARSIZEAUTOMINIMUM']._serialized_end=8251
48
+ _globals['_SURFACEREINFORCEMENT_REBARSIZEAUTOMAXIMUM']._serialized_start=8253
49
+ _globals['_SURFACEREINFORCEMENT_REBARSIZEAUTOMAXIMUM']._serialized_end=8312
50
+ _globals['_SURFACEREINFORCEMENT_REBARDIAMETERAUTOSIZES']._serialized_start=8315
51
+ _globals['_SURFACEREINFORCEMENT_REBARDIAMETERAUTOSIZES']._serialized_end=9321
52
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZECALCULATED']._serialized_start=9324
53
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZECALCULATED']._serialized_end=10277
54
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZEAUTOMINIMUM']._serialized_start=10279
55
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZEAUTOMINIMUM']._serialized_end=10342
56
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZEAUTOMAXIMUM']._serialized_start=10344
57
+ _globals['_SURFACEREINFORCEMENT_STIRRUPSIZEAUTOMAXIMUM']._serialized_end=10407
58
+ _globals['_SURFACEREINFORCEMENT_STIRRUPDIAMETERAUTOSIZES']._serialized_start=10410
59
+ _globals['_SURFACEREINFORCEMENT_STIRRUPDIAMETERAUTOSIZES']._serialized_end=11470
60
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZECALCULATED']._serialized_start=11473
61
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZECALCULATED']._serialized_end=12668
62
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZEAUTOMINIMUM']._serialized_start=12670
63
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZEAUTOMINIMUM']._serialized_end=12750
64
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZEAUTOMAXIMUM']._serialized_start=12752
65
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARSIZEAUTOMAXIMUM']._serialized_end=12832
66
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARDIAMETERAUTOSIZES']._serialized_start=12835
67
+ _globals['_SURFACEREINFORCEMENT_ORTHOGONALREBARDIAMETERAUTOSIZES']._serialized_end=14137
68
+ _globals['_SURFACEREINFORCEMENT_MESHPRODUCTRANGE']._serialized_start=14140
69
+ _globals['_SURFACEREINFORCEMENT_MESHPRODUCTRANGE']._serialized_end=14626
70
+ _globals['_SURFACEREINFORCEMENT_MESHSHAPE']._serialized_start=14629
71
+ _globals['_SURFACEREINFORCEMENT_MESHSHAPE']._serialized_end=15483
72
+ _globals['_SURFACEREINFORCEMENT_NOTCOVEREDFIRSTREBARSIZE']._serialized_start=15485
73
+ _globals['_SURFACEREINFORCEMENT_NOTCOVEREDFIRSTREBARSIZE']._serialized_end=15553
74
+ _globals['_SURFACEREINFORCEMENT_NOTCOVEREDSECONDREBARSIZE']._serialized_start=15555
75
+ _globals['_SURFACEREINFORCEMENT_NOTCOVEREDSECONDREBARSIZE']._serialized_end=15625
76
+ _globals['_SURFACEREINFORCEMENT_REINFORCEMENTDIRECTIONTYPE']._serialized_start=15628
77
+ _globals['_SURFACEREINFORCEMENT_REINFORCEMENTDIRECTIONTYPE']._serialized_end=15781
78
+ _globals['_SURFACEREINFORCEMENT_DESIGNREINFORCEMENTDIRECTION']._serialized_start=15783
79
+ _globals['_SURFACEREINFORCEMENT_DESIGNREINFORCEMENTDIRECTION']._serialized_end=15897
80
+ _globals['_SURFACEREINFORCEMENT_PROJECTIONPLANE']._serialized_start=15899
81
+ _globals['_SURFACEREINFORCEMENT_PROJECTIONPLANE']._serialized_end=16009
82
+ _globals['_SURFACEREINFORCEMENT_LOCATIONRECTANGLETYPE']._serialized_start=16011
83
+ _globals['_SURFACEREINFORCEMENT_LOCATIONRECTANGLETYPE']._serialized_end=16123
84
+ # @@protoc_insertion_point(module_scope)