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
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,dlubal/api/rfem/structure_core/surface.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xe1\x96\x01\n\x07Surface\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12G\n\x08geometry\x18\x02 \x01(\x0e\x32\x30.dlubal.api.rfem.structure_core.Surface.GeometryH\x01\x88\x01\x01\x12?\n\x04type\x18\x03 \x01(\x0e\x32,.dlubal.api.rfem.structure_core.Surface.TypeH\x02\x88\x01\x01\x12\x16\n\x0e\x62oundary_lines\x18\x04 \x03(\x05\x12\x16\n\tthickness\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x15\n\x08material\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_area\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1e\n\x11\x61nalytical_volume\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_mass\x18\n \x01(\x01H\x08\x88\x01\x01\x12\x46\n\x1c\x61nalytical_center_of_gravity\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_x\x18\x0c \x01(\x01H\n\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_y\x18\r \x01(\x01H\x0b\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_z\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x11\n\x04\x61rea\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06volume\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x11\n\x04mass\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x12 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x10\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x15\n\x08position\x18\x16 \x01(\tH\x14\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x17 \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cgrid_enabled\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12#\n\x16\x61\x63tivate_load_transfer\x18\x19 \x01(\x08H\x17\x88\x01\x01\x12+\n\x1eis_deactivated_for_calculation\x18\x1a \x01(\x08H\x18\x88\x01\x01\x12)\n\x1cis_surface_cells_deactivated\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1c \x01(\tH\x1a\x88\x01\x01\x12*\n\x1d\x64\x65sign_properties_via_surface\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12\x35\n(design_properties_via_parent_surface_set\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x31\n$design_properties_parent_surface_set\x18\x1f \x01(\x05H\x1d\x88\x01\x01\x12%\n\x18is_active_in_compression\x18 \x01(\x08H\x1e\x88\x01\x01\x12\x63\n\x17load_transfer_direction\x18! \x01(\x0e\x32=.dlubal.api.rfem.structure_core.Surface.LoadTransferDirectionH\x1f\x88\x01\x01\x12&\n\x19is_surface_weight_enabled\x18\" \x01(\x08H \x88\x01\x01\x12\x36\n)is_advanced_distribution_settings_enabled\x18# \x01(\x08H!\x88\x01\x01\x12\x1b\n\x0esurface_weight\x18$ \x01(\x01H\"\x88\x01\x01\x12\x1d\n\x10smoothing_factor\x18% \x01(\x01H#\x88\x01\x01\x12\x19\n\x0cstripe_width\x18& \x01(\x01H$\x88\x01\x01\x12&\n\x19minimum_number_of_stripes\x18\' \x01(\x05H%\x88\x01\x01\x12)\n\x1c\x63onsider_member_eccentricity\x18( \x01(\x08H&\x88\x01\x01\x12*\n\x1d\x63onsider_section_distribution\x18) \x01(\x08H\'\x88\x01\x01\x12X\n\x11load_distribution\x18* \x01(\x0e\x32\x38.dlubal.api.rfem.structure_core.Surface.LoadDistributionH(\x88\x01\x01\x12+\n\x1eneglect_equilibrium_of_moments\x18+ \x01(\x08H)\x88\x01\x01\x12.\n!neglect_defined_surface_stiffness\x18, \x01(\x08H*\x88\x01\x01\x12\x18\n\x10\x65xcluded_members\x18- \x03(\x05\x12$\n\x1c\x65xcluded_parallel_to_members\x18. \x03(\x05\x12\x16\n\x0e\x65xcluded_lines\x18/ \x03(\x05\x12\"\n\x1a\x65xcluded_parallel_to_lines\x18\x30 \x03(\x05\x12\x16\n\x0e\x65xcluded_nodes\x18\x31 \x03(\x05\x12\x16\n\x0eloaded_members\x18\x32 \x03(\x05\x12\x14\n\x0cloaded_lines\x18\x33 \x03(\x05\x12\x14\n\x0cloaded_nodes\x18\x34 \x03(\x05\x12p\n\x1eload_distribution_factor_table\x18\x35 \x01(\x0b\x32\x43.dlubal.api.rfem.structure_core.Surface.LoadDistributionFactorTableH+\x88\x01\x01\x12\x35\n(nurbs_control_point_count_in_direction_u\x18\x37 \x01(\x05H,\x88\x01\x01\x12\x35\n(nurbs_control_point_count_in_direction_v\x18\x38 \x01(\x05H-\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_u\x18\x39 \x01(\x05H.\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_v\x18: \x01(\x05H/\x88\x01\x01\x12m\n\x14nurbs_control_points\x18; \x01(\x0b\x32J.dlubal.api.rfem.structure_core.Surface.SurfaceNurbsControlPointsRowsTableH0\x88\x01\x01\x12%\n\x18quadrangle_corner_node_1\x18< \x01(\x05H1\x88\x01\x01\x12%\n\x18quadrangle_corner_node_2\x18= \x01(\x05H2\x88\x01\x01\x12%\n\x18quadrangle_corner_node_3\x18> \x01(\x05H3\x88\x01\x01\x12%\n\x18quadrangle_corner_node_4\x18? \x01(\x05H4\x88\x01\x01\x12\x1f\n\x17quadrangle_corner_nodes\x18@ \x03(\x05\x12k\n\x1bquadrangle_preferable_shape\x18\x41 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.Surface.QuadranglePreferableShapeH5\x88\x01\x01\x12\x18\n\x0bpipe_radius\x18\x42 \x01(\x01H6\x88\x01\x01\x12\x1c\n\x0fpipe_radius_end\x18\x43 \x01(\x01H7\x88\x01\x01\x12 \n\x13pipe_use_radius_end\x18\x44 \x01(\x08H8\x88\x01\x01\x12\x1d\n\x10pipe_center_line\x18\x45 \x01(\x05H9\x88\x01\x01\x12\x1c\n\x14pipe_generated_lines\x18\x46 \x03(\x05\x12>\n1min_curv_spline_reference_plane_coordinate_system\x18G \x01(\x05H:\x88\x01\x01\x12\x91\x01\n0min_curv_spline_reference_work_plane_orientation\x18H \x01(\x0e\x32R.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceWorkPlaneOrientationH;\x88\x01\x01\x12q\n\x1fmin_curv_spline_definition_type\x18I \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.Surface.MinCurvSplineDefinitionTypeH<\x88\x01\x01\x12/\n\"min_curv_spline_grid_x_point_count\x18J \x01(\x05H=\x88\x01\x01\x12/\n\"min_curv_spline_grid_y_point_count\x18K \x01(\x05H>\x88\x01\x01\x12\x30\n(min_curv_spline_reference_boundary_lines\x18L \x03(\x05\x12\x8d\x01\n+min_curv_spline_reference_probe_coordinates\x18M \x01(\x0b\x32S.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceProbeCoordinatesTableH?\x88\x01\x01\x12\x87\x01\n(min_curv_spline_global_probe_coordinates\x18N \x01(\x0b\x32P.dlubal.api.rfem.structure_core.Surface.MinCurvSplineGlobalProbeCoordinatesTableH@\x88\x01\x01\x12\x1c\n\x0fhas_line_hinges\x18O \x01(\x08HA\x88\x01\x01\x12\x14\n\x07support\x18P \x01(\x05HB\x88\x01\x01\x12\x19\n\x0c\x65\x63\x63\x65ntricity\x18Q \x01(\x05HC\x88\x01\x01\x12\x1c\n\x0fmesh_refinement\x18R \x01(\x05HD\x88\x01\x01\x12N\n\x0cmeshing_type\x18S \x01(\x0e\x32\x33.dlubal.api.rfem.structure_core.Surface.MeshingTypeHE\x88\x01\x01\x12\x7f\n&input_axes_rotation_specification_type\x18T \x01(\x0e\x32J.dlubal.api.rfem.structure_core.Surface.InputAxesRotationSpecificationTypeHF\x88\x01\x01\x12(\n\x1binput_axes_angular_rotation\x18U \x01(\x01HG\x88\x01\x01\x12S\n\x0finput_axes_axis\x18V \x01(\x0e\x32\x35.dlubal.api.rfem.structure_core.Surface.InputAxesAxisHH\x88\x01\x01\x12\x18\n\x10input_axes_lines\x18W \x03(\x05\x12<\n\x12input_axes_point_1\x18X \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHI\x88\x01\x01\x12!\n\x14input_axes_point_1_x\x18Y \x01(\x01HJ\x88\x01\x01\x12!\n\x14input_axes_point_1_y\x18Z \x01(\x01HK\x88\x01\x01\x12!\n\x14input_axes_point_1_z\x18[ \x01(\x01HL\x88\x01\x01\x12<\n\x12input_axes_point_2\x18\\ \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHM\x88\x01\x01\x12!\n\x14input_axes_point_2_x\x18] \x01(\x01HN\x88\x01\x01\x12!\n\x14input_axes_point_2_y\x18^ \x01(\x01HO\x88\x01\x01\x12!\n\x14input_axes_point_2_z\x18_ \x01(\x01HP\x88\x01\x01\x12)\n\x1cinput_axes_coordinate_system\x18` \x01(\x05HQ\x88\x01\x01\x12\x81\x01\n\'result_axes_rotation_specification_type\x18\x61 \x01(\x0e\x32K.dlubal.api.rfem.structure_core.Surface.ResultAxesRotationSpecificationTypeHR\x88\x01\x01\x12\x1c\n\x0freversed_normal\x18\x62 \x01(\x08HS\x88\x01\x01\x12H\n\tgrid_type\x18\x63 \x01(\x0e\x32\x30.dlubal.api.rfem.structure_core.Surface.GridTypeHT\x88\x01\x01\x12\x35\n\x0bgrid_origin\x18\x64 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHU\x88\x01\x01\x12\x1a\n\rgrid_origin_x\x18\x65 \x01(\x01HV\x88\x01\x01\x12\x1a\n\rgrid_origin_y\x18\x66 \x01(\x01HW\x88\x01\x01\x12\x1a\n\rgrid_origin_z\x18g \x01(\x01HX\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_x\x18h \x01(\x05HY\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_x\x18i \x01(\x05HZ\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_y\x18j \x01(\x05H[\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_y\x18k \x01(\x05H\\\x88\x01\x01\x12%\n\x18grid_numbering_increment\x18l \x01(\x05H]\x88\x01\x01\x12\x1f\n\x12grid_point_count_r\x18m \x01(\x05H^\x88\x01\x01\x12\x1c\n\x0fgrid_distance_x\x18n \x01(\x01H_\x88\x01\x01\x12\x1c\n\x0fgrid_distance_y\x18o \x01(\x01H`\x88\x01\x01\x12\x1c\n\x0fgrid_distance_r\x18p \x01(\x01Ha\x88\x01\x01\x12 \n\x13grid_rotation_alpha\x18q \x01(\x01Hb\x88\x01\x01\x12\x1f\n\x12grid_rotation_beta\x18r \x01(\x01Hc\x88\x01\x01\x12\x1d\n\x10grid_angle_gamma\x18s \x01(\x01Hd\x88\x01\x01\x12%\n\x18grid_adapt_automatically\x18t \x01(\x08He\x88\x01\x01\x12\x31\n$auto_detection_of_integrated_objects\x18u \x01(\x08Hf\x88\x01\x01\x12\x18\n\x10integrated_nodes\x18v \x03(\x05\x12\x18\n\x10integrated_lines\x18w \x03(\x05\x12\x1b\n\x13integrated_openings\x18x \x03(\x05\x12#\n\x16has_integrated_objects\x18y \x01(\x08Hg\x88\x01\x01\x12$\n\x17has_input_axes_rotation\x18z \x01(\x08Hh\x88\x01\x01\x12%\n\x18has_result_axes_rotation\x18{ \x01(\x08Hi\x88\x01\x01\x12\x33\n&surface_steel_design_uls_configuration\x18| \x01(\x05Hj\x88\x01\x01\x12\x33\n&surface_steel_design_sls_configuration\x18} \x01(\x05Hk\x88\x01\x01\x12\x34\n\'surface_timber_design_uls_configuration\x18~ \x01(\x05Hl\x88\x01\x01\x12\x34\n\'surface_timber_design_sls_configuration\x18\x7f \x01(\x05Hm\x88\x01\x01\x12\x34\n&surface_timber_design_fr_configuration\x18\x80\x01 \x01(\x05Hn\x88\x01\x01\x12\"\n\x14timber_service_class\x18\x81\x01 \x01(\x05Ho\x88\x01\x01\x12#\n\x15timber_moisture_class\x18\x82\x01 \x01(\x05Hp\x88\x01\x01\x12\'\n\x19timber_service_conditions\x18\x83\x01 \x01(\x05Hq\x88\x01\x01\x12\x37\n)surface_aluminum_design_uls_configuration\x18\x84\x01 \x01(\x05Hr\x88\x01\x01\x12\x37\n)surface_aluminum_design_sls_configuration\x18\x85\x01 \x01(\x05Hs\x88\x01\x01\x12\x34\n&surface_glass_design_uls_configuration\x18\x86\x01 \x01(\x05Ht\x88\x01\x01\x12\x34\n&surface_glass_design_sls_configuration\x18\x87\x01 \x01(\x05Hu\x88\x01\x01\x12\x1f\n\x16surface_reinforcements\x18\x88\x01 \x03(\x05\x12\x34\n&is_user_defined_concrete_cover_enabled\x18\x89\x01 \x01(\x08Hv\x88\x01\x01\x12 \n\x12\x63oncrete_cover_top\x18\x8a\x01 \x01(\x01Hw\x88\x01\x01\x12#\n\x15\x63oncrete_cover_bottom\x18\x8b\x01 \x01(\x01Hx\x88\x01\x01\x12-\n\x1fuser_defined_concrete_cover_top\x18\x8c\x01 \x01(\x01Hy\x88\x01\x01\x12\x30\n\"user_defined_concrete_cover_bottom\x18\x8d\x01 \x01(\x01Hz\x88\x01\x01\x12%\n\x17\x63oncrete_durability_top\x18\x8e\x01 \x01(\x05H{\x88\x01\x01\x12(\n\x1a\x63oncrete_durability_bottom\x18\x8f\x01 \x01(\x05H|\x88\x01\x01\x12)\n\x1breinforcement_direction_top\x18\x90\x01 \x01(\x05H}\x88\x01\x01\x12,\n\x1ereinforcement_direction_bottom\x18\x91\x01 \x01(\x05H~\x88\x01\x01\x12o\n\x1d\x64\x65\x66lection_check_surface_type\x18\x92\x01 \x01(\x0e\x32\x42.dlubal.api.rfem.structure_core.Surface.DeflectionCheckSurfaceTypeH\x7f\x88\x01\x01\x12\x90\x01\n.deflection_check_double_supported_surface_type\x18\x93\x01 \x01(\x0e\x32Q.dlubal.api.rfem.structure_core.Surface.DeflectionCheckDoubleSupportedSurfaceTypeH\x80\x01\x88\x01\x01\x12\x84\x01\n\'deflection_check_displacement_reference\x18\x94\x01 \x01(\x0e\x32L.dlubal.api.rfem.structure_core.Surface.DeflectionCheckDisplacementReferenceH\x81\x01\x88\x01\x01\x12\x32\n#deflection_check_reference_length_z\x18\x95\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x99\x01\n3deflection_check_reference_length_z_definition_type\x18\x96\x01 \x01(\x0e\x32U.dlubal.api.rfem.structure_core.Surface.DeflectionCheckReferenceLengthZDefinitionTypeH\x83\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_1\x18\x97\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x84\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_x\x18\x98\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_y\x18\x99\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_z\x18\x9a\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_2\x18\x9b\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x88\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_x\x18\x9c\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_y\x18\x9d\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_z\x18\x9e\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_3\x18\x9f\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x8c\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_x\x18\xa0\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_y\x18\xa1\x01 \x01(\x01H\x8e\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_z\x18\xa2\x01 \x01(\x01H\x8f\x01\x88\x01\x01\x12m\n\x1bsurface_reinforcement_table\x18\xa3\x01 \x01(\x0b\x32\x41.dlubal.api.rfem.structure_core.Surface.SurfaceReinforcementTableH\x90\x01\x88\x01\x01\x12\x38\n)surface_concrete_design_uls_configuration\x18\xa4\x01 \x01(\x05H\x91\x01\x88\x01\x01\x12\x38\n)surface_concrete_design_sls_configuration\x18\xa5\x01 \x01(\x05H\x92\x01\x88\x01\x01\x12\x37\n(surface_concrete_design_fr_configuration\x18\xa6\x01 \x01(\x05H\x93\x01\x88\x01\x01\x12<\n-surface_concrete_design_seismic_configuration\x18\xa7\x01 \x01(\x05H\x94\x01\x88\x01\x01\x12$\n\x15rotated_boundary_line\x18\xa8\x01 \x01(\x05H\x95\x01\x88\x01\x01\x12(\n\x19rotated_angle_of_rotation\x18\xa9\x01 \x01(\x01H\x96\x01\x88\x01\x01\x12;\n\x0frotated_point_p\x18\xaa\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x97\x01\x88\x01\x01\x12 \n\x11rotated_point_p_x\x18\xab\x01 \x01(\x01H\x98\x01\x88\x01\x01\x12 \n\x11rotated_point_p_y\x18\xac\x01 \x01(\x01H\x99\x01\x88\x01\x01\x12 \n\x11rotated_point_p_z\x18\xad\x01 \x01(\x01H\x9a\x01\x88\x01\x01\x12;\n\x0frotated_point_r\x18\xae\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x9b\x01\x88\x01\x01\x12 \n\x11rotated_point_r_x\x18\xaf\x01 \x01(\x01H\x9c\x01\x88\x01\x01\x12 \n\x11rotated_point_r_y\x18\xb0\x01 \x01(\x01H\x9d\x01\x88\x01\x01\x12 \n\x11rotated_point_r_z\x18\xb1\x01 \x01(\x01H\x9e\x01\x88\x01\x01\x12 \n\x17rotated_generated_lines\x18\xb2\x01 \x03(\x05\x12,\n\x1dstress_analysis_configuration\x18\xb3\x01 \x01(\x05H\x9f\x01\x88\x01\x01\x12r\n\x1bsurface_releases_assignment\x18\xb4\x01 \x01(\x0b\x32\x46.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentTableH\xa0\x01\x88\x01\x01\x12\x64\n\x12\x62im_ifc_properties\x18\xb5\x01 \x01(\x0b\x32\x41.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableH\xa1\x01\x88\x01\x01\x12\x1b\n\x0cparent_layer\x18\xb6\x01 \x01(\x05H\xa2\x01\x88\x01\x01\x12(\n\x19is_locked_by_parent_layer\x18\xb7\x01 \x01(\x08H\xa3\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\xb8\x01 \x01(\x08H\xa4\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xb9\x01 \x01(\tH\xa5\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xba\x01 \x01(\tH\xa6\x01\x88\x01\x01\x1as\n\x1bLoadDistributionFactorTable\x12T\n\x04rows\x18\x01 \x03(\x0b\x32\x46.dlubal.api.rfem.structure_core.Surface.LoadDistributionFactorTableRow\x1a\xde\x01\n\x1eLoadDistributionFactorTableRow\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\r\n\x05lines\x18\x03 \x03(\x05\x12\x0f\n\x07members\x18\x04 \x03(\x05\x12 \n\x13\x64istribution_factor\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x03\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_distribution_factorB\n\n\x08_comment\x1a$\n\"SurfaceNurbsControlPointsRowsTable\x1a\x8e\x01\n+MinCurvSplineReferenceProbeCoordinatesTable\x12_\n\x04rows\x18\x01 \x03(\x0b\x32Q.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceProbeCoordinatesRow\x1a\xf1\x01\n)MinCurvSplineReferenceProbeCoordinatesRow\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\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\x1a\x88\x01\n(MinCurvSplineGlobalProbeCoordinatesTable\x12\\\n\x04rows\x18\x01 \x03(\x0b\x32N.dlubal.api.rfem.structure_core.Surface.MinCurvSplineGlobalProbeCoordinatesRow\x1a\xee\x01\n&MinCurvSplineGlobalProbeCoordinatesRow\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\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\x1ao\n\x19SurfaceReinforcementTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.SurfaceReinforcementTableRow\x1a\x9e\x01\n\x1cSurfaceReinforcementTableRow\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\"\n\x15surface_reinforcement\x18\x03 \x01(\x05H\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x18\n\x16_surface_reinforcement\x1at\n\x1eSurfaceReleasesAssignmentTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentRow\x1a\xa3\x04\n\x1cSurfaceReleasesAssignmentRow\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\x12\x61ssigned_object_no\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x13\n\x06\x61\x63tive\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x17\n\nrelease_no\x18\x05 \x01(\x05H\x04\x88\x01\x01\x12s\n\x10release_location\x18\x06 \x01(\x0e\x32T.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentRow.ReleaseLocationH\x05\x88\x01\x01\x12\x1d\n\x10released_objects\x18\x07 \x01(\tH\x06\x88\x01\x01\x12\x1e\n\x11generated_objects\x18\x08 \x01(\tH\x07\x88\x01\x01\"M\n\x0fReleaseLocation\x12\x1b\n\x17RELEASE_LOCATION_ORIGIN\x10\x00\x12\x1d\n\x19RELEASE_LOCATION_RELEASED\x10\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x15\n\x13_assigned_object_noB\t\n\x07_activeB\r\n\x0b_release_noB\x13\n\x11_release_locationB\x13\n\x11_released_objectsB\x14\n\x12_generated_objects\x1ao\n\x19\x42imIfcPropertiesTreeTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableRow\x1a\xc6\x01\n\x1c\x42imIfcPropertiesTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\tH\x02\x88\x01\x01\x12R\n\x04rows\x18\x04 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableRowB\x06\n\x04_keyB\x07\n\x05_nameB\x08\n\x06_value\"\xc7\x01\n\x08Geometry\x12\x14\n\x10GEOMETRY_UNKNOWN\x10\x00\x12%\n!GEOMETRY_MINIMUM_CURVATURE_SPLINE\x10\x07\x12\x12\n\x0eGEOMETRY_NURBS\x10\x03\x12\x11\n\rGEOMETRY_PIPE\x10\x06\x12\x12\n\x0eGEOMETRY_PLANE\x10\x01\x12\x17\n\x13GEOMETRY_QUADRANGLE\x10\x02\x12\x14\n\x10GEOMETRY_ROTATED\x10\x05\x12\x14\n\x10GEOMETRY_TRIMMED\x10\x04\"\x90\x02\n\x04Type\x12\x11\n\rTYPE_STANDARD\x10\x00\x12\x0e\n\nTYPE_FLOOR\x10\x08\x12\x18\n\x14TYPE_FLOOR_DIAPHRAGM\x10\t\x12!\n\x1dTYPE_FLOOR_FLEXIBLE_DIAPHRAGM\x10\x0b\x12\x18\n\x14TYPE_FLOOR_SEMIRIGID\x10\n\x12\x14\n\x10TYPE_GROUNDWATER\x10\x07\x12\x16\n\x12TYPE_LOAD_TRANSFER\x10\x06\x12\x11\n\rTYPE_MEMBRANE\x10\x03\x12\x0e\n\nTYPE_RIGID\x10\x02\x12!\n\x1dTYPE_WITHOUT_MEMBRANE_TENSION\x10\x05\x12\x1a\n\x16TYPE_WITHOUT_THICKNESS\x10\x01\"\xa7\x01\n\x15LoadTransferDirection\x12 \n\x1cLOAD_TRANSFER_DIRECTION_IN_X\x10\x00\x12#\n\x1fLOAD_TRANSFER_DIRECTION_IN_BOTH\x10\x02\x12 \n\x1cLOAD_TRANSFER_DIRECTION_IN_Y\x10\x01\x12%\n!LOAD_TRANSFER_DIRECTION_ISOTROPIC\x10\x03\"W\n\x10LoadDistribution\x12\x1d\n\x19LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12$\n LOAD_DISTRIBUTION_VARYING_LINEAR\x10\x01\"j\n\x19QuadranglePreferableShape\x12\'\n#QUADRANGLE_PREFERABLE_SHAPE_ROTATED\x10\x00\x12$\n QUADRANGLE_PREFERABLE_SHAPE_PIPE\x10\x01\"\xd7\x01\n*MinCurvSplineReferenceWorkPlaneOrientation\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XY\x10\x00\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XZ\x10\x02\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_YZ\x10\x01\"a\n\x1bMinCurvSplineDefinitionType\x12\x42\n>MIN_CURV_SPLINE_DEFINITION_TYPE_REFERENCE_PLANE_BOUNDARY_LINES\x10\x00\"c\n\x0bMeshingType\x12$\n MESHING_TYPE_USE_GLOBAL_SETTINGS\x10\x00\x12\x15\n\x11MESHING_TYPE_FREE\x10\x02\x12\x17\n\x13MESHING_TYPE_MAPPED\x10\x01\"\xa5\x02\n\"InputAxesRotationSpecificationType\x12;\n7INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION\x10\x00\x12:\n6INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT\x10\x02\x12H\nDINPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM\x10\x03\x12<\n8INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES\x10\x01\"=\n\rInputAxesAxis\x12\x15\n\x11INPUT_AXES_AXIS_X\x10\x00\x12\x15\n\x11INPUT_AXES_AXIS_Y\x10\x01\"j\n#ResultAxesRotationSpecificationType\x12\x43\n?RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES\x10\x00\"8\n\x08GridType\x12\x17\n\x13GRID_TYPE_CARTESIAN\x10\x00\x12\x13\n\x0fGRID_TYPE_POLAR\x10\x01\"~\n\x1a\x44\x65\x66lectionCheckSurfaceType\x12\x32\n.DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED\x10\x00\x12,\n(DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER\x10\x01\"\xaa\x01\n)DeflectionCheckDoubleSupportedSurfaceType\x12:\n6DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_GENERAL\x10\x00\x12\x41\n=DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_WALK_ON_DESIGN\x10\x01\"\xf6\x01\n$DeflectionCheckDisplacementReference\x12Q\nMDEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE\x10\x00\x12<\n8DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE\x10\x01\x12=\n9DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM\x10\x02\"\x95\x02\n-DeflectionCheckReferenceLengthZDefinitionType\x12@\n<DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY\x10\x00\x12P\nLDEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE\x10\x01\x12P\nLDEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE\x10\x02\x42\x05\n\x03_noB\x0b\n\t_geometryB\x07\n\x05_typeB\x0c\n\n_thicknessB\x0b\n\t_materialB\x19\n\x17_generating_object_infoB\x12\n\x10_analytical_areaB\x14\n\x12_analytical_volumeB\x12\n\x10_analytical_massB\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\x07\n\x05_areaB\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\x0b\n\t_positionB\x11\n\x0f_position_shortB\x0f\n\r_grid_enabledB\x19\n\x17_activate_load_transferB!\n\x1f_is_deactivated_for_calculationB\x1f\n\x1d_is_surface_cells_deactivatedB\n\n\x08_commentB \n\x1e_design_properties_via_surfaceB+\n)_design_properties_via_parent_surface_setB\'\n%_design_properties_parent_surface_setB\x1b\n\x19_is_active_in_compressionB\x1a\n\x18_load_transfer_directionB\x1c\n\x1a_is_surface_weight_enabledB,\n*_is_advanced_distribution_settings_enabledB\x11\n\x0f_surface_weightB\x13\n\x11_smoothing_factorB\x0f\n\r_stripe_widthB\x1c\n\x1a_minimum_number_of_stripesB\x1f\n\x1d_consider_member_eccentricityB \n\x1e_consider_section_distributionB\x14\n\x12_load_distributionB!\n\x1f_neglect_equilibrium_of_momentsB$\n\"_neglect_defined_surface_stiffnessB!\n\x1f_load_distribution_factor_tableB+\n)_nurbs_control_point_count_in_direction_uB+\n)_nurbs_control_point_count_in_direction_vB\x1d\n\x1b_nurbs_order_in_direction_uB\x1d\n\x1b_nurbs_order_in_direction_vB\x17\n\x15_nurbs_control_pointsB\x1b\n\x19_quadrangle_corner_node_1B\x1b\n\x19_quadrangle_corner_node_2B\x1b\n\x19_quadrangle_corner_node_3B\x1b\n\x19_quadrangle_corner_node_4B\x1e\n\x1c_quadrangle_preferable_shapeB\x0e\n\x0c_pipe_radiusB\x12\n\x10_pipe_radius_endB\x16\n\x14_pipe_use_radius_endB\x13\n\x11_pipe_center_lineB4\n2_min_curv_spline_reference_plane_coordinate_systemB3\n1_min_curv_spline_reference_work_plane_orientationB\"\n _min_curv_spline_definition_typeB%\n#_min_curv_spline_grid_x_point_countB%\n#_min_curv_spline_grid_y_point_countB.\n,_min_curv_spline_reference_probe_coordinatesB+\n)_min_curv_spline_global_probe_coordinatesB\x12\n\x10_has_line_hingesB\n\n\x08_supportB\x0f\n\r_eccentricityB\x12\n\x10_mesh_refinementB\x0f\n\r_meshing_typeB)\n\'_input_axes_rotation_specification_typeB\x1e\n\x1c_input_axes_angular_rotationB\x12\n\x10_input_axes_axisB\x15\n\x13_input_axes_point_1B\x17\n\x15_input_axes_point_1_xB\x17\n\x15_input_axes_point_1_yB\x17\n\x15_input_axes_point_1_zB\x15\n\x13_input_axes_point_2B\x17\n\x15_input_axes_point_2_xB\x17\n\x15_input_axes_point_2_yB\x17\n\x15_input_axes_point_2_zB\x1f\n\x1d_input_axes_coordinate_systemB*\n(_result_axes_rotation_specification_typeB\x12\n\x10_reversed_normalB\x0c\n\n_grid_typeB\x0e\n\x0c_grid_originB\x10\n\x0e_grid_origin_xB\x10\n\x0e_grid_origin_yB\x10\n\x0e_grid_origin_zB\x1e\n\x1c_grid_point_count_negative_xB\x1e\n\x1c_grid_point_count_positive_xB\x1e\n\x1c_grid_point_count_negative_yB\x1e\n\x1c_grid_point_count_positive_yB\x1b\n\x19_grid_numbering_incrementB\x15\n\x13_grid_point_count_rB\x12\n\x10_grid_distance_xB\x12\n\x10_grid_distance_yB\x12\n\x10_grid_distance_rB\x16\n\x14_grid_rotation_alphaB\x15\n\x13_grid_rotation_betaB\x13\n\x11_grid_angle_gammaB\x1b\n\x19_grid_adapt_automaticallyB\'\n%_auto_detection_of_integrated_objectsB\x19\n\x17_has_integrated_objectsB\x1a\n\x18_has_input_axes_rotationB\x1b\n\x19_has_result_axes_rotationB)\n\'_surface_steel_design_uls_configurationB)\n\'_surface_steel_design_sls_configurationB*\n(_surface_timber_design_uls_configurationB*\n(_surface_timber_design_sls_configurationB)\n\'_surface_timber_design_fr_configurationB\x17\n\x15_timber_service_classB\x18\n\x16_timber_moisture_classB\x1c\n\x1a_timber_service_conditionsB,\n*_surface_aluminum_design_uls_configurationB,\n*_surface_aluminum_design_sls_configurationB)\n\'_surface_glass_design_uls_configurationB)\n\'_surface_glass_design_sls_configurationB)\n\'_is_user_defined_concrete_cover_enabledB\x15\n\x13_concrete_cover_topB\x18\n\x16_concrete_cover_bottomB\"\n _user_defined_concrete_cover_topB%\n#_user_defined_concrete_cover_bottomB\x1a\n\x18_concrete_durability_topB\x1d\n\x1b_concrete_durability_bottomB\x1e\n\x1c_reinforcement_direction_topB!\n\x1f_reinforcement_direction_bottomB \n\x1e_deflection_check_surface_typeB1\n/_deflection_check_double_supported_surface_typeB*\n(_deflection_check_displacement_referenceB&\n$_deflection_check_reference_length_zB6\n4_deflection_check_reference_length_z_definition_typeB+\n)_deflection_check_reference_plane_point_1B-\n+_deflection_check_reference_plane_point_1_xB-\n+_deflection_check_reference_plane_point_1_yB-\n+_deflection_check_reference_plane_point_1_zB+\n)_deflection_check_reference_plane_point_2B-\n+_deflection_check_reference_plane_point_2_xB-\n+_deflection_check_reference_plane_point_2_yB-\n+_deflection_check_reference_plane_point_2_zB+\n)_deflection_check_reference_plane_point_3B-\n+_deflection_check_reference_plane_point_3_xB-\n+_deflection_check_reference_plane_point_3_yB-\n+_deflection_check_reference_plane_point_3_zB\x1e\n\x1c_surface_reinforcement_tableB,\n*_surface_concrete_design_uls_configurationB,\n*_surface_concrete_design_sls_configurationB+\n)_surface_concrete_design_fr_configurationB0\n._surface_concrete_design_seismic_configurationB\x18\n\x16_rotated_boundary_lineB\x1c\n\x1a_rotated_angle_of_rotationB\x12\n\x10_rotated_point_pB\x14\n\x12_rotated_point_p_xB\x14\n\x12_rotated_point_p_yB\x14\n\x12_rotated_point_p_zB\x12\n\x10_rotated_point_rB\x14\n\x12_rotated_point_r_xB\x14\n\x12_rotated_point_r_yB\x14\n\x12_rotated_point_r_zB \n\x1e_stress_analysis_configurationB\x1e\n\x1c_surface_releases_assignmentB\x15\n\x13_bim_ifc_propertiesB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,dlubal/api/rfem/structure_core/surface.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xe3\x9b\x01\n\x07Surface\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12G\n\x08geometry\x18\x02 \x01(\x0e\x32\x30.dlubal.api.rfem.structure_core.Surface.GeometryH\x01\x88\x01\x01\x12?\n\x04type\x18\x03 \x01(\x0e\x32,.dlubal.api.rfem.structure_core.Surface.TypeH\x02\x88\x01\x01\x12\x16\n\x0e\x62oundary_lines\x18\x04 \x03(\x05\x12\x16\n\tthickness\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x15\n\x08material\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_area\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1e\n\x11\x61nalytical_volume\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_mass\x18\n \x01(\x01H\x08\x88\x01\x01\x12\x46\n\x1c\x61nalytical_center_of_gravity\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_x\x18\x0c \x01(\x01H\n\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_y\x18\r \x01(\x01H\x0b\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_z\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x11\n\x04\x61rea\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06volume\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x11\n\x04mass\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x12 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x10\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x15\n\x08position\x18\x16 \x01(\tH\x14\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x17 \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cgrid_enabled\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12#\n\x16\x61\x63tivate_load_transfer\x18\x19 \x01(\x08H\x17\x88\x01\x01\x12+\n\x1eis_deactivated_for_calculation\x18\x1a \x01(\x08H\x18\x88\x01\x01\x12)\n\x1cis_surface_cells_deactivated\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1c \x01(\tH\x1a\x88\x01\x01\x12*\n\x1d\x64\x65sign_properties_via_surface\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12\x35\n(design_properties_via_parent_surface_set\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x31\n$design_properties_parent_surface_set\x18\x1f \x01(\x05H\x1d\x88\x01\x01\x12%\n\x18is_active_in_compression\x18 \x01(\x08H\x1e\x88\x01\x01\x12\x63\n\x17load_transfer_direction\x18! \x01(\x0e\x32=.dlubal.api.rfem.structure_core.Surface.LoadTransferDirectionH\x1f\x88\x01\x01\x12&\n\x19is_surface_weight_enabled\x18\" \x01(\x08H \x88\x01\x01\x12\x36\n)is_advanced_distribution_settings_enabled\x18# \x01(\x08H!\x88\x01\x01\x12\x1b\n\x0esurface_weight\x18$ \x01(\x01H\"\x88\x01\x01\x12\x1d\n\x10smoothing_factor\x18% \x01(\x01H#\x88\x01\x01\x12\x19\n\x0cstripe_width\x18& \x01(\x01H$\x88\x01\x01\x12&\n\x19minimum_number_of_stripes\x18\' \x01(\x05H%\x88\x01\x01\x12)\n\x1c\x63onsider_member_eccentricity\x18( \x01(\x08H&\x88\x01\x01\x12*\n\x1d\x63onsider_section_distribution\x18) \x01(\x08H\'\x88\x01\x01\x12X\n\x11load_distribution\x18* \x01(\x0e\x32\x38.dlubal.api.rfem.structure_core.Surface.LoadDistributionH(\x88\x01\x01\x12+\n\x1eneglect_equilibrium_of_moments\x18+ \x01(\x08H)\x88\x01\x01\x12.\n!neglect_defined_surface_stiffness\x18, \x01(\x08H*\x88\x01\x01\x12\x18\n\x10\x65xcluded_members\x18- \x03(\x05\x12$\n\x1c\x65xcluded_parallel_to_members\x18. \x03(\x05\x12\x16\n\x0e\x65xcluded_lines\x18/ \x03(\x05\x12\"\n\x1a\x65xcluded_parallel_to_lines\x18\x30 \x03(\x05\x12\x16\n\x0e\x65xcluded_nodes\x18\x31 \x03(\x05\x12\x16\n\x0eloaded_members\x18\x32 \x03(\x05\x12\x14\n\x0cloaded_lines\x18\x33 \x03(\x05\x12\x14\n\x0cloaded_nodes\x18\x34 \x03(\x05\x12p\n\x1eload_distribution_factor_table\x18\x35 \x01(\x0b\x32\x43.dlubal.api.rfem.structure_core.Surface.LoadDistributionFactorTableH+\x88\x01\x01\x12\x35\n(nurbs_control_point_count_in_direction_u\x18\x37 \x01(\x05H,\x88\x01\x01\x12\x35\n(nurbs_control_point_count_in_direction_v\x18\x38 \x01(\x05H-\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_u\x18\x39 \x01(\x05H.\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_v\x18: \x01(\x05H/\x88\x01\x01\x12m\n\x14nurbs_control_points\x18; \x01(\x0b\x32J.dlubal.api.rfem.structure_core.Surface.SurfaceNurbsControlPointsRowsTableH0\x88\x01\x01\x12%\n\x18quadrangle_corner_node_1\x18< \x01(\x05H1\x88\x01\x01\x12%\n\x18quadrangle_corner_node_2\x18= \x01(\x05H2\x88\x01\x01\x12%\n\x18quadrangle_corner_node_3\x18> \x01(\x05H3\x88\x01\x01\x12%\n\x18quadrangle_corner_node_4\x18? \x01(\x05H4\x88\x01\x01\x12\x1f\n\x17quadrangle_corner_nodes\x18@ \x03(\x05\x12k\n\x1bquadrangle_preferable_shape\x18\x41 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.Surface.QuadranglePreferableShapeH5\x88\x01\x01\x12\x18\n\x0bpipe_radius\x18\x42 \x01(\x01H6\x88\x01\x01\x12\x1c\n\x0fpipe_radius_end\x18\x43 \x01(\x01H7\x88\x01\x01\x12 \n\x13pipe_use_radius_end\x18\x44 \x01(\x08H8\x88\x01\x01\x12\x1d\n\x10pipe_center_line\x18\x45 \x01(\x05H9\x88\x01\x01\x12\x1c\n\x14pipe_generated_lines\x18\x46 \x03(\x05\x12>\n1min_curv_spline_reference_plane_coordinate_system\x18G \x01(\x05H:\x88\x01\x01\x12\x91\x01\n0min_curv_spline_reference_work_plane_orientation\x18H \x01(\x0e\x32R.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceWorkPlaneOrientationH;\x88\x01\x01\x12q\n\x1fmin_curv_spline_definition_type\x18I \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.Surface.MinCurvSplineDefinitionTypeH<\x88\x01\x01\x12/\n\"min_curv_spline_grid_x_point_count\x18J \x01(\x05H=\x88\x01\x01\x12/\n\"min_curv_spline_grid_y_point_count\x18K \x01(\x05H>\x88\x01\x01\x12\x30\n(min_curv_spline_reference_boundary_lines\x18L \x03(\x05\x12\x8d\x01\n+min_curv_spline_reference_probe_coordinates\x18M \x01(\x0b\x32S.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceProbeCoordinatesTableH?\x88\x01\x01\x12\x87\x01\n(min_curv_spline_global_probe_coordinates\x18N \x01(\x0b\x32P.dlubal.api.rfem.structure_core.Surface.MinCurvSplineGlobalProbeCoordinatesTableH@\x88\x01\x01\x12\x1c\n\x0fhas_line_hinges\x18O \x01(\x08HA\x88\x01\x01\x12\x14\n\x07support\x18P \x01(\x05HB\x88\x01\x01\x12\x19\n\x0c\x65\x63\x63\x65ntricity\x18Q \x01(\x05HC\x88\x01\x01\x12\x1c\n\x0fmesh_refinement\x18R \x01(\x05HD\x88\x01\x01\x12N\n\x0cmeshing_type\x18S \x01(\x0e\x32\x33.dlubal.api.rfem.structure_core.Surface.MeshingTypeHE\x88\x01\x01\x12\x7f\n&input_axes_rotation_specification_type\x18T \x01(\x0e\x32J.dlubal.api.rfem.structure_core.Surface.InputAxesRotationSpecificationTypeHF\x88\x01\x01\x12(\n\x1binput_axes_angular_rotation\x18U \x01(\x01HG\x88\x01\x01\x12S\n\x0finput_axes_axis\x18V \x01(\x0e\x32\x35.dlubal.api.rfem.structure_core.Surface.InputAxesAxisHH\x88\x01\x01\x12\x18\n\x10input_axes_lines\x18W \x03(\x05\x12<\n\x12input_axes_point_1\x18X \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHI\x88\x01\x01\x12!\n\x14input_axes_point_1_x\x18Y \x01(\x01HJ\x88\x01\x01\x12!\n\x14input_axes_point_1_y\x18Z \x01(\x01HK\x88\x01\x01\x12!\n\x14input_axes_point_1_z\x18[ \x01(\x01HL\x88\x01\x01\x12<\n\x12input_axes_point_2\x18\\ \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHM\x88\x01\x01\x12!\n\x14input_axes_point_2_x\x18] \x01(\x01HN\x88\x01\x01\x12!\n\x14input_axes_point_2_y\x18^ \x01(\x01HO\x88\x01\x01\x12!\n\x14input_axes_point_2_z\x18_ \x01(\x01HP\x88\x01\x01\x12)\n\x1cinput_axes_coordinate_system\x18` \x01(\x05HQ\x88\x01\x01\x12\x81\x01\n\'result_axes_rotation_specification_type\x18\x61 \x01(\x0e\x32K.dlubal.api.rfem.structure_core.Surface.ResultAxesRotationSpecificationTypeHR\x88\x01\x01\x12\x1c\n\x0freversed_normal\x18\x62 \x01(\x08HS\x88\x01\x01\x12H\n\tgrid_type\x18\x63 \x01(\x0e\x32\x30.dlubal.api.rfem.structure_core.Surface.GridTypeHT\x88\x01\x01\x12\x35\n\x0bgrid_origin\x18\x64 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHU\x88\x01\x01\x12\x1a\n\rgrid_origin_x\x18\x65 \x01(\x01HV\x88\x01\x01\x12\x1a\n\rgrid_origin_y\x18\x66 \x01(\x01HW\x88\x01\x01\x12\x1a\n\rgrid_origin_z\x18g \x01(\x01HX\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_x\x18h \x01(\x05HY\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_x\x18i \x01(\x05HZ\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_y\x18j \x01(\x05H[\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_y\x18k \x01(\x05H\\\x88\x01\x01\x12%\n\x18grid_numbering_increment\x18l \x01(\x05H]\x88\x01\x01\x12\x1f\n\x12grid_point_count_r\x18m \x01(\x05H^\x88\x01\x01\x12\x1c\n\x0fgrid_distance_x\x18n \x01(\x01H_\x88\x01\x01\x12\x1c\n\x0fgrid_distance_y\x18o \x01(\x01H`\x88\x01\x01\x12\x1c\n\x0fgrid_distance_r\x18p \x01(\x01Ha\x88\x01\x01\x12 \n\x13grid_rotation_alpha\x18q \x01(\x01Hb\x88\x01\x01\x12\x1f\n\x12grid_rotation_beta\x18r \x01(\x01Hc\x88\x01\x01\x12\x1d\n\x10grid_angle_gamma\x18s \x01(\x01Hd\x88\x01\x01\x12%\n\x18grid_adapt_automatically\x18t \x01(\x08He\x88\x01\x01\x12\x31\n$auto_detection_of_integrated_objects\x18u \x01(\x08Hf\x88\x01\x01\x12\x18\n\x10integrated_nodes\x18v \x03(\x05\x12\x18\n\x10integrated_lines\x18w \x03(\x05\x12\x1b\n\x13integrated_openings\x18x \x03(\x05\x12#\n\x16has_integrated_objects\x18y \x01(\x08Hg\x88\x01\x01\x12$\n\x17has_input_axes_rotation\x18z \x01(\x08Hh\x88\x01\x01\x12%\n\x18has_result_axes_rotation\x18{ \x01(\x08Hi\x88\x01\x01\x12\x33\n&surface_steel_design_uls_configuration\x18| \x01(\x05Hj\x88\x01\x01\x12\x33\n&surface_steel_design_sls_configuration\x18} \x01(\x05Hk\x88\x01\x01\x12\x34\n\'surface_timber_design_uls_configuration\x18~ \x01(\x05Hl\x88\x01\x01\x12\x34\n\'surface_timber_design_sls_configuration\x18\x7f \x01(\x05Hm\x88\x01\x01\x12\x34\n&surface_timber_design_fr_configuration\x18\x80\x01 \x01(\x05Hn\x88\x01\x01\x12\"\n\x14timber_service_class\x18\x81\x01 \x01(\x05Ho\x88\x01\x01\x12#\n\x15timber_moisture_class\x18\x82\x01 \x01(\x05Hp\x88\x01\x01\x12\'\n\x19timber_service_conditions\x18\x83\x01 \x01(\x05Hq\x88\x01\x01\x12\x37\n)surface_aluminum_design_uls_configuration\x18\x84\x01 \x01(\x05Hr\x88\x01\x01\x12\x37\n)surface_aluminum_design_sls_configuration\x18\x85\x01 \x01(\x05Hs\x88\x01\x01\x12\x34\n&surface_glass_design_uls_configuration\x18\x86\x01 \x01(\x05Ht\x88\x01\x01\x12\x34\n&surface_glass_design_sls_configuration\x18\x87\x01 \x01(\x05Hu\x88\x01\x01\x12\x1f\n\x16surface_reinforcements\x18\x88\x01 \x03(\x05\x12\x34\n&is_user_defined_concrete_cover_enabled\x18\x89\x01 \x01(\x08Hv\x88\x01\x01\x12 \n\x12\x63oncrete_cover_top\x18\x8a\x01 \x01(\x01Hw\x88\x01\x01\x12#\n\x15\x63oncrete_cover_bottom\x18\x8b\x01 \x01(\x01Hx\x88\x01\x01\x12-\n\x1fuser_defined_concrete_cover_top\x18\x8c\x01 \x01(\x01Hy\x88\x01\x01\x12\x30\n\"user_defined_concrete_cover_bottom\x18\x8d\x01 \x01(\x01Hz\x88\x01\x01\x12%\n\x17\x63oncrete_durability_top\x18\x8e\x01 \x01(\x05H{\x88\x01\x01\x12(\n\x1a\x63oncrete_durability_bottom\x18\x8f\x01 \x01(\x05H|\x88\x01\x01\x12)\n\x1breinforcement_direction_top\x18\x90\x01 \x01(\x05H}\x88\x01\x01\x12,\n\x1ereinforcement_direction_bottom\x18\x91\x01 \x01(\x05H~\x88\x01\x01\x12o\n\x1d\x64\x65\x66lection_check_surface_type\x18\x92\x01 \x01(\x0e\x32\x42.dlubal.api.rfem.structure_core.Surface.DeflectionCheckSurfaceTypeH\x7f\x88\x01\x01\x12\x90\x01\n.deflection_check_double_supported_surface_type\x18\x93\x01 \x01(\x0e\x32Q.dlubal.api.rfem.structure_core.Surface.DeflectionCheckDoubleSupportedSurfaceTypeH\x80\x01\x88\x01\x01\x12\x84\x01\n\'deflection_check_displacement_reference\x18\x94\x01 \x01(\x0e\x32L.dlubal.api.rfem.structure_core.Surface.DeflectionCheckDisplacementReferenceH\x81\x01\x88\x01\x01\x12\x32\n#deflection_check_reference_length_z\x18\x95\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x99\x01\n3deflection_check_reference_length_z_definition_type\x18\x96\x01 \x01(\x0e\x32U.dlubal.api.rfem.structure_core.Surface.DeflectionCheckReferenceLengthZDefinitionTypeH\x83\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_1\x18\x97\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x84\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_x\x18\x98\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_y\x18\x99\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_1_z\x18\x9a\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_2\x18\x9b\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x88\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_x\x18\x9c\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_y\x18\x9d\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_2_z\x18\x9e\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12T\n(deflection_check_reference_plane_point_3\x18\x9f\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x8c\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_x\x18\xa0\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_y\x18\xa1\x01 \x01(\x01H\x8e\x01\x88\x01\x01\x12\x39\n*deflection_check_reference_plane_point_3_z\x18\xa2\x01 \x01(\x01H\x8f\x01\x88\x01\x01\x12m\n\x1bsurface_reinforcement_table\x18\xa3\x01 \x01(\x0b\x32\x41.dlubal.api.rfem.structure_core.Surface.SurfaceReinforcementTableH\x90\x01\x88\x01\x01\x12\x38\n)surface_concrete_design_uls_configuration\x18\xa4\x01 \x01(\x05H\x91\x01\x88\x01\x01\x12\x38\n)surface_concrete_design_sls_configuration\x18\xa5\x01 \x01(\x05H\x92\x01\x88\x01\x01\x12\x37\n(surface_concrete_design_fr_configuration\x18\xa6\x01 \x01(\x05H\x93\x01\x88\x01\x01\x12<\n-surface_concrete_design_seismic_configuration\x18\xa7\x01 \x01(\x05H\x94\x01\x88\x01\x01\x12$\n\x15rotated_boundary_line\x18\xa8\x01 \x01(\x05H\x95\x01\x88\x01\x01\x12(\n\x19rotated_angle_of_rotation\x18\xa9\x01 \x01(\x01H\x96\x01\x88\x01\x01\x12;\n\x0frotated_point_p\x18\xaa\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x97\x01\x88\x01\x01\x12 \n\x11rotated_point_p_x\x18\xab\x01 \x01(\x01H\x98\x01\x88\x01\x01\x12 \n\x11rotated_point_p_y\x18\xac\x01 \x01(\x01H\x99\x01\x88\x01\x01\x12 \n\x11rotated_point_p_z\x18\xad\x01 \x01(\x01H\x9a\x01\x88\x01\x01\x12;\n\x0frotated_point_r\x18\xae\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x9b\x01\x88\x01\x01\x12 \n\x11rotated_point_r_x\x18\xaf\x01 \x01(\x01H\x9c\x01\x88\x01\x01\x12 \n\x11rotated_point_r_y\x18\xb0\x01 \x01(\x01H\x9d\x01\x88\x01\x01\x12 \n\x11rotated_point_r_z\x18\xb1\x01 \x01(\x01H\x9e\x01\x88\x01\x01\x12 \n\x17rotated_generated_lines\x18\xb2\x01 \x03(\x05\x12\x37\n(wind_simulation_enable_specific_settings\x18\xb3\x01 \x01(\x08H\x9f\x01\x88\x01\x01\x12.\n\x1fwind_simulation_shrink_wrapping\x18\xb4\x01 \x01(\x05H\xa0\x01\x88\x01\x01\x12\x39\n*wind_simulation_roughness_and_permeability\x18\xb5\x01 \x01(\x05H\xa1\x01\x88\x01\x01\x12\x37\n(wind_simulation_exclude_from_wind_tunnel\x18\xb6\x01 \x01(\x08H\xa2\x01\x88\x01\x01\x12?\n0wind_simulation_consider_surface_thickness_above\x18\xb7\x01 \x01(\x08H\xa3\x01\x88\x01\x01\x12\x45\n6wind_simulation_consider_surface_thickness_above_value\x18\xb8\x01 \x01(\x01H\xa4\x01\x88\x01\x01\x12,\n\x1dstress_analysis_configuration\x18\xb9\x01 \x01(\x05H\xa5\x01\x88\x01\x01\x12r\n\x1bsurface_releases_assignment\x18\xba\x01 \x01(\x0b\x32\x46.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentTableH\xa6\x01\x88\x01\x01\x12\x64\n\x12\x62im_ifc_properties\x18\xbb\x01 \x01(\x0b\x32\x41.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableH\xa7\x01\x88\x01\x01\x12\x1b\n\x0cparent_layer\x18\xbc\x01 \x01(\x05H\xa8\x01\x88\x01\x01\x12(\n\x19is_locked_by_parent_layer\x18\xbd\x01 \x01(\x08H\xa9\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\xbe\x01 \x01(\x08H\xaa\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xbf\x01 \x01(\tH\xab\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xc0\x01 \x01(\tH\xac\x01\x88\x01\x01\x1as\n\x1bLoadDistributionFactorTable\x12T\n\x04rows\x18\x01 \x03(\x0b\x32\x46.dlubal.api.rfem.structure_core.Surface.LoadDistributionFactorTableRow\x1a\xde\x01\n\x1eLoadDistributionFactorTableRow\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\r\n\x05lines\x18\x03 \x03(\x05\x12\x0f\n\x07members\x18\x04 \x03(\x05\x12 \n\x13\x64istribution_factor\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x03\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_distribution_factorB\n\n\x08_comment\x1a$\n\"SurfaceNurbsControlPointsRowsTable\x1a\x8e\x01\n+MinCurvSplineReferenceProbeCoordinatesTable\x12_\n\x04rows\x18\x01 \x03(\x0b\x32Q.dlubal.api.rfem.structure_core.Surface.MinCurvSplineReferenceProbeCoordinatesRow\x1a\xf1\x01\n)MinCurvSplineReferenceProbeCoordinatesRow\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\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\x1a\x88\x01\n(MinCurvSplineGlobalProbeCoordinatesTable\x12\\\n\x04rows\x18\x01 \x03(\x0b\x32N.dlubal.api.rfem.structure_core.Surface.MinCurvSplineGlobalProbeCoordinatesRow\x1a\xee\x01\n&MinCurvSplineGlobalProbeCoordinatesRow\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\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\x1ao\n\x19SurfaceReinforcementTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.SurfaceReinforcementTableRow\x1a\x9e\x01\n\x1cSurfaceReinforcementTableRow\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\"\n\x15surface_reinforcement\x18\x03 \x01(\x05H\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x18\n\x16_surface_reinforcement\x1at\n\x1eSurfaceReleasesAssignmentTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentRow\x1a\xa3\x04\n\x1cSurfaceReleasesAssignmentRow\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\x12\x61ssigned_object_no\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x13\n\x06\x61\x63tive\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x17\n\nrelease_no\x18\x05 \x01(\x05H\x04\x88\x01\x01\x12s\n\x10release_location\x18\x06 \x01(\x0e\x32T.dlubal.api.rfem.structure_core.Surface.SurfaceReleasesAssignmentRow.ReleaseLocationH\x05\x88\x01\x01\x12\x1d\n\x10released_objects\x18\x07 \x01(\tH\x06\x88\x01\x01\x12\x1e\n\x11generated_objects\x18\x08 \x01(\tH\x07\x88\x01\x01\"M\n\x0fReleaseLocation\x12\x1b\n\x17RELEASE_LOCATION_ORIGIN\x10\x00\x12\x1d\n\x19RELEASE_LOCATION_RELEASED\x10\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x15\n\x13_assigned_object_noB\t\n\x07_activeB\r\n\x0b_release_noB\x13\n\x11_release_locationB\x13\n\x11_released_objectsB\x14\n\x12_generated_objects\x1ao\n\x19\x42imIfcPropertiesTreeTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableRow\x1a\xc6\x01\n\x1c\x42imIfcPropertiesTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\tH\x02\x88\x01\x01\x12R\n\x04rows\x18\x04 \x03(\x0b\x32\x44.dlubal.api.rfem.structure_core.Surface.BimIfcPropertiesTreeTableRowB\x06\n\x04_keyB\x07\n\x05_nameB\x08\n\x06_value\"\xc7\x01\n\x08Geometry\x12\x14\n\x10GEOMETRY_UNKNOWN\x10\x00\x12%\n!GEOMETRY_MINIMUM_CURVATURE_SPLINE\x10\x07\x12\x12\n\x0eGEOMETRY_NURBS\x10\x03\x12\x11\n\rGEOMETRY_PIPE\x10\x06\x12\x12\n\x0eGEOMETRY_PLANE\x10\x01\x12\x17\n\x13GEOMETRY_QUADRANGLE\x10\x02\x12\x14\n\x10GEOMETRY_ROTATED\x10\x05\x12\x14\n\x10GEOMETRY_TRIMMED\x10\x04\"\x90\x02\n\x04Type\x12\x11\n\rTYPE_STANDARD\x10\x00\x12\x0e\n\nTYPE_FLOOR\x10\x08\x12\x18\n\x14TYPE_FLOOR_DIAPHRAGM\x10\t\x12!\n\x1dTYPE_FLOOR_FLEXIBLE_DIAPHRAGM\x10\x0b\x12\x18\n\x14TYPE_FLOOR_SEMIRIGID\x10\n\x12\x14\n\x10TYPE_GROUNDWATER\x10\x07\x12\x16\n\x12TYPE_LOAD_TRANSFER\x10\x06\x12\x11\n\rTYPE_MEMBRANE\x10\x03\x12\x0e\n\nTYPE_RIGID\x10\x02\x12!\n\x1dTYPE_WITHOUT_MEMBRANE_TENSION\x10\x05\x12\x1a\n\x16TYPE_WITHOUT_THICKNESS\x10\x01\"\xa7\x01\n\x15LoadTransferDirection\x12 \n\x1cLOAD_TRANSFER_DIRECTION_IN_X\x10\x00\x12#\n\x1fLOAD_TRANSFER_DIRECTION_IN_BOTH\x10\x02\x12 \n\x1cLOAD_TRANSFER_DIRECTION_IN_Y\x10\x01\x12%\n!LOAD_TRANSFER_DIRECTION_ISOTROPIC\x10\x03\"W\n\x10LoadDistribution\x12\x1d\n\x19LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12$\n LOAD_DISTRIBUTION_VARYING_LINEAR\x10\x01\"j\n\x19QuadranglePreferableShape\x12\'\n#QUADRANGLE_PREFERABLE_SHAPE_ROTATED\x10\x00\x12$\n QUADRANGLE_PREFERABLE_SHAPE_PIPE\x10\x01\"\xd7\x01\n*MinCurvSplineReferenceWorkPlaneOrientation\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XY\x10\x00\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XZ\x10\x02\x12\x37\n3MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_YZ\x10\x01\"a\n\x1bMinCurvSplineDefinitionType\x12\x42\n>MIN_CURV_SPLINE_DEFINITION_TYPE_REFERENCE_PLANE_BOUNDARY_LINES\x10\x00\"c\n\x0bMeshingType\x12$\n MESHING_TYPE_USE_GLOBAL_SETTINGS\x10\x00\x12\x15\n\x11MESHING_TYPE_FREE\x10\x02\x12\x17\n\x13MESHING_TYPE_MAPPED\x10\x01\"\xa5\x02\n\"InputAxesRotationSpecificationType\x12;\n7INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION\x10\x00\x12:\n6INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT\x10\x02\x12H\nDINPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM\x10\x03\x12<\n8INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES\x10\x01\"=\n\rInputAxesAxis\x12\x15\n\x11INPUT_AXES_AXIS_X\x10\x00\x12\x15\n\x11INPUT_AXES_AXIS_Y\x10\x01\"j\n#ResultAxesRotationSpecificationType\x12\x43\n?RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES\x10\x00\"8\n\x08GridType\x12\x17\n\x13GRID_TYPE_CARTESIAN\x10\x00\x12\x13\n\x0fGRID_TYPE_POLAR\x10\x01\"~\n\x1a\x44\x65\x66lectionCheckSurfaceType\x12\x32\n.DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED\x10\x00\x12,\n(DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER\x10\x01\"\xaa\x01\n)DeflectionCheckDoubleSupportedSurfaceType\x12:\n6DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_GENERAL\x10\x00\x12\x41\n=DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_WALK_ON_DESIGN\x10\x01\"\xf6\x01\n$DeflectionCheckDisplacementReference\x12Q\nMDEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE\x10\x00\x12<\n8DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE\x10\x01\x12=\n9DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM\x10\x02\"\x95\x02\n-DeflectionCheckReferenceLengthZDefinitionType\x12@\n<DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY\x10\x00\x12P\nLDEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE\x10\x01\x12P\nLDEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE\x10\x02\x42\x05\n\x03_noB\x0b\n\t_geometryB\x07\n\x05_typeB\x0c\n\n_thicknessB\x0b\n\t_materialB\x19\n\x17_generating_object_infoB\x12\n\x10_analytical_areaB\x14\n\x12_analytical_volumeB\x12\n\x10_analytical_massB\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\x07\n\x05_areaB\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\x0b\n\t_positionB\x11\n\x0f_position_shortB\x0f\n\r_grid_enabledB\x19\n\x17_activate_load_transferB!\n\x1f_is_deactivated_for_calculationB\x1f\n\x1d_is_surface_cells_deactivatedB\n\n\x08_commentB \n\x1e_design_properties_via_surfaceB+\n)_design_properties_via_parent_surface_setB\'\n%_design_properties_parent_surface_setB\x1b\n\x19_is_active_in_compressionB\x1a\n\x18_load_transfer_directionB\x1c\n\x1a_is_surface_weight_enabledB,\n*_is_advanced_distribution_settings_enabledB\x11\n\x0f_surface_weightB\x13\n\x11_smoothing_factorB\x0f\n\r_stripe_widthB\x1c\n\x1a_minimum_number_of_stripesB\x1f\n\x1d_consider_member_eccentricityB \n\x1e_consider_section_distributionB\x14\n\x12_load_distributionB!\n\x1f_neglect_equilibrium_of_momentsB$\n\"_neglect_defined_surface_stiffnessB!\n\x1f_load_distribution_factor_tableB+\n)_nurbs_control_point_count_in_direction_uB+\n)_nurbs_control_point_count_in_direction_vB\x1d\n\x1b_nurbs_order_in_direction_uB\x1d\n\x1b_nurbs_order_in_direction_vB\x17\n\x15_nurbs_control_pointsB\x1b\n\x19_quadrangle_corner_node_1B\x1b\n\x19_quadrangle_corner_node_2B\x1b\n\x19_quadrangle_corner_node_3B\x1b\n\x19_quadrangle_corner_node_4B\x1e\n\x1c_quadrangle_preferable_shapeB\x0e\n\x0c_pipe_radiusB\x12\n\x10_pipe_radius_endB\x16\n\x14_pipe_use_radius_endB\x13\n\x11_pipe_center_lineB4\n2_min_curv_spline_reference_plane_coordinate_systemB3\n1_min_curv_spline_reference_work_plane_orientationB\"\n _min_curv_spline_definition_typeB%\n#_min_curv_spline_grid_x_point_countB%\n#_min_curv_spline_grid_y_point_countB.\n,_min_curv_spline_reference_probe_coordinatesB+\n)_min_curv_spline_global_probe_coordinatesB\x12\n\x10_has_line_hingesB\n\n\x08_supportB\x0f\n\r_eccentricityB\x12\n\x10_mesh_refinementB\x0f\n\r_meshing_typeB)\n\'_input_axes_rotation_specification_typeB\x1e\n\x1c_input_axes_angular_rotationB\x12\n\x10_input_axes_axisB\x15\n\x13_input_axes_point_1B\x17\n\x15_input_axes_point_1_xB\x17\n\x15_input_axes_point_1_yB\x17\n\x15_input_axes_point_1_zB\x15\n\x13_input_axes_point_2B\x17\n\x15_input_axes_point_2_xB\x17\n\x15_input_axes_point_2_yB\x17\n\x15_input_axes_point_2_zB\x1f\n\x1d_input_axes_coordinate_systemB*\n(_result_axes_rotation_specification_typeB\x12\n\x10_reversed_normalB\x0c\n\n_grid_typeB\x0e\n\x0c_grid_originB\x10\n\x0e_grid_origin_xB\x10\n\x0e_grid_origin_yB\x10\n\x0e_grid_origin_zB\x1e\n\x1c_grid_point_count_negative_xB\x1e\n\x1c_grid_point_count_positive_xB\x1e\n\x1c_grid_point_count_negative_yB\x1e\n\x1c_grid_point_count_positive_yB\x1b\n\x19_grid_numbering_incrementB\x15\n\x13_grid_point_count_rB\x12\n\x10_grid_distance_xB\x12\n\x10_grid_distance_yB\x12\n\x10_grid_distance_rB\x16\n\x14_grid_rotation_alphaB\x15\n\x13_grid_rotation_betaB\x13\n\x11_grid_angle_gammaB\x1b\n\x19_grid_adapt_automaticallyB\'\n%_auto_detection_of_integrated_objectsB\x19\n\x17_has_integrated_objectsB\x1a\n\x18_has_input_axes_rotationB\x1b\n\x19_has_result_axes_rotationB)\n\'_surface_steel_design_uls_configurationB)\n\'_surface_steel_design_sls_configurationB*\n(_surface_timber_design_uls_configurationB*\n(_surface_timber_design_sls_configurationB)\n\'_surface_timber_design_fr_configurationB\x17\n\x15_timber_service_classB\x18\n\x16_timber_moisture_classB\x1c\n\x1a_timber_service_conditionsB,\n*_surface_aluminum_design_uls_configurationB,\n*_surface_aluminum_design_sls_configurationB)\n\'_surface_glass_design_uls_configurationB)\n\'_surface_glass_design_sls_configurationB)\n\'_is_user_defined_concrete_cover_enabledB\x15\n\x13_concrete_cover_topB\x18\n\x16_concrete_cover_bottomB\"\n _user_defined_concrete_cover_topB%\n#_user_defined_concrete_cover_bottomB\x1a\n\x18_concrete_durability_topB\x1d\n\x1b_concrete_durability_bottomB\x1e\n\x1c_reinforcement_direction_topB!\n\x1f_reinforcement_direction_bottomB \n\x1e_deflection_check_surface_typeB1\n/_deflection_check_double_supported_surface_typeB*\n(_deflection_check_displacement_referenceB&\n$_deflection_check_reference_length_zB6\n4_deflection_check_reference_length_z_definition_typeB+\n)_deflection_check_reference_plane_point_1B-\n+_deflection_check_reference_plane_point_1_xB-\n+_deflection_check_reference_plane_point_1_yB-\n+_deflection_check_reference_plane_point_1_zB+\n)_deflection_check_reference_plane_point_2B-\n+_deflection_check_reference_plane_point_2_xB-\n+_deflection_check_reference_plane_point_2_yB-\n+_deflection_check_reference_plane_point_2_zB+\n)_deflection_check_reference_plane_point_3B-\n+_deflection_check_reference_plane_point_3_xB-\n+_deflection_check_reference_plane_point_3_yB-\n+_deflection_check_reference_plane_point_3_zB\x1e\n\x1c_surface_reinforcement_tableB,\n*_surface_concrete_design_uls_configurationB,\n*_surface_concrete_design_sls_configurationB+\n)_surface_concrete_design_fr_configurationB0\n._surface_concrete_design_seismic_configurationB\x18\n\x16_rotated_boundary_lineB\x1c\n\x1a_rotated_angle_of_rotationB\x12\n\x10_rotated_point_pB\x14\n\x12_rotated_point_p_xB\x14\n\x12_rotated_point_p_yB\x14\n\x12_rotated_point_p_zB\x12\n\x10_rotated_point_rB\x14\n\x12_rotated_point_r_xB\x14\n\x12_rotated_point_r_yB\x14\n\x12_rotated_point_r_zB+\n)_wind_simulation_enable_specific_settingsB\"\n _wind_simulation_shrink_wrappingB-\n+_wind_simulation_roughness_and_permeabilityB+\n)_wind_simulation_exclude_from_wind_tunnelB3\n1_wind_simulation_consider_surface_thickness_aboveB9\n7_wind_simulation_consider_surface_thickness_above_valueB \n\x1e_stress_analysis_configurationB\x1e\n\x1c_surface_releases_assignmentB\x15\n\x13_bim_ifc_propertiesB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -33,65 +33,65 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_c
33
33
  if not _descriptor._USE_C_DESCRIPTORS:
34
34
  DESCRIPTOR._loaded_options = None
35
35
  _globals['_SURFACE']._serialized_start=114
36
- _globals['_SURFACE']._serialized_end=19411
37
- _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLE']._serialized_start=9344
38
- _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLE']._serialized_end=9459
39
- _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLEROW']._serialized_start=9462
40
- _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLEROW']._serialized_end=9684
41
- _globals['_SURFACE_SURFACENURBSCONTROLPOINTSROWSTABLE']._serialized_start=9686
42
- _globals['_SURFACE_SURFACENURBSCONTROLPOINTSROWSTABLE']._serialized_end=9722
43
- _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESTABLE']._serialized_start=9725
44
- _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESTABLE']._serialized_end=9867
45
- _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESROW']._serialized_start=9870
46
- _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESROW']._serialized_end=10111
47
- _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESTABLE']._serialized_start=10114
48
- _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESTABLE']._serialized_end=10250
49
- _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESROW']._serialized_start=10253
50
- _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESROW']._serialized_end=10491
51
- _globals['_SURFACE_SURFACEREINFORCEMENTTABLE']._serialized_start=10493
52
- _globals['_SURFACE_SURFACEREINFORCEMENTTABLE']._serialized_end=10604
53
- _globals['_SURFACE_SURFACEREINFORCEMENTTABLEROW']._serialized_start=10607
54
- _globals['_SURFACE_SURFACEREINFORCEMENTTABLEROW']._serialized_end=10765
55
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTTABLE']._serialized_start=10767
56
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTTABLE']._serialized_end=10883
57
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW']._serialized_start=10886
58
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW']._serialized_end=11433
59
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW_RELEASELOCATION']._serialized_start=11220
60
- _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW_RELEASELOCATION']._serialized_end=11297
61
- _globals['_SURFACE_BIMIFCPROPERTIESTREETABLE']._serialized_start=11435
62
- _globals['_SURFACE_BIMIFCPROPERTIESTREETABLE']._serialized_end=11546
63
- _globals['_SURFACE_BIMIFCPROPERTIESTREETABLEROW']._serialized_start=11549
64
- _globals['_SURFACE_BIMIFCPROPERTIESTREETABLEROW']._serialized_end=11747
65
- _globals['_SURFACE_GEOMETRY']._serialized_start=11750
66
- _globals['_SURFACE_GEOMETRY']._serialized_end=11949
67
- _globals['_SURFACE_TYPE']._serialized_start=11952
68
- _globals['_SURFACE_TYPE']._serialized_end=12224
69
- _globals['_SURFACE_LOADTRANSFERDIRECTION']._serialized_start=12227
70
- _globals['_SURFACE_LOADTRANSFERDIRECTION']._serialized_end=12394
71
- _globals['_SURFACE_LOADDISTRIBUTION']._serialized_start=12396
72
- _globals['_SURFACE_LOADDISTRIBUTION']._serialized_end=12483
73
- _globals['_SURFACE_QUADRANGLEPREFERABLESHAPE']._serialized_start=12485
74
- _globals['_SURFACE_QUADRANGLEPREFERABLESHAPE']._serialized_end=12591
75
- _globals['_SURFACE_MINCURVSPLINEREFERENCEWORKPLANEORIENTATION']._serialized_start=12594
76
- _globals['_SURFACE_MINCURVSPLINEREFERENCEWORKPLANEORIENTATION']._serialized_end=12809
77
- _globals['_SURFACE_MINCURVSPLINEDEFINITIONTYPE']._serialized_start=12811
78
- _globals['_SURFACE_MINCURVSPLINEDEFINITIONTYPE']._serialized_end=12908
79
- _globals['_SURFACE_MESHINGTYPE']._serialized_start=12910
80
- _globals['_SURFACE_MESHINGTYPE']._serialized_end=13009
81
- _globals['_SURFACE_INPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=13012
82
- _globals['_SURFACE_INPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13305
83
- _globals['_SURFACE_INPUTAXESAXIS']._serialized_start=13307
84
- _globals['_SURFACE_INPUTAXESAXIS']._serialized_end=13368
85
- _globals['_SURFACE_RESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=13370
86
- _globals['_SURFACE_RESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13476
87
- _globals['_SURFACE_GRIDTYPE']._serialized_start=13478
88
- _globals['_SURFACE_GRIDTYPE']._serialized_end=13534
89
- _globals['_SURFACE_DEFLECTIONCHECKSURFACETYPE']._serialized_start=13536
90
- _globals['_SURFACE_DEFLECTIONCHECKSURFACETYPE']._serialized_end=13662
91
- _globals['_SURFACE_DEFLECTIONCHECKDOUBLESUPPORTEDSURFACETYPE']._serialized_start=13665
92
- _globals['_SURFACE_DEFLECTIONCHECKDOUBLESUPPORTEDSURFACETYPE']._serialized_end=13835
93
- _globals['_SURFACE_DEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_start=13838
94
- _globals['_SURFACE_DEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_end=14084
95
- _globals['_SURFACE_DEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_start=14087
96
- _globals['_SURFACE_DEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_end=14364
36
+ _globals['_SURFACE']._serialized_end=20053
37
+ _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLE']._serialized_start=9701
38
+ _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLE']._serialized_end=9816
39
+ _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLEROW']._serialized_start=9819
40
+ _globals['_SURFACE_LOADDISTRIBUTIONFACTORTABLEROW']._serialized_end=10041
41
+ _globals['_SURFACE_SURFACENURBSCONTROLPOINTSROWSTABLE']._serialized_start=10043
42
+ _globals['_SURFACE_SURFACENURBSCONTROLPOINTSROWSTABLE']._serialized_end=10079
43
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESTABLE']._serialized_start=10082
44
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESTABLE']._serialized_end=10224
45
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESROW']._serialized_start=10227
46
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEPROBECOORDINATESROW']._serialized_end=10468
47
+ _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESTABLE']._serialized_start=10471
48
+ _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESTABLE']._serialized_end=10607
49
+ _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESROW']._serialized_start=10610
50
+ _globals['_SURFACE_MINCURVSPLINEGLOBALPROBECOORDINATESROW']._serialized_end=10848
51
+ _globals['_SURFACE_SURFACEREINFORCEMENTTABLE']._serialized_start=10850
52
+ _globals['_SURFACE_SURFACEREINFORCEMENTTABLE']._serialized_end=10961
53
+ _globals['_SURFACE_SURFACEREINFORCEMENTTABLEROW']._serialized_start=10964
54
+ _globals['_SURFACE_SURFACEREINFORCEMENTTABLEROW']._serialized_end=11122
55
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTTABLE']._serialized_start=11124
56
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTTABLE']._serialized_end=11240
57
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW']._serialized_start=11243
58
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW']._serialized_end=11790
59
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW_RELEASELOCATION']._serialized_start=11577
60
+ _globals['_SURFACE_SURFACERELEASESASSIGNMENTROW_RELEASELOCATION']._serialized_end=11654
61
+ _globals['_SURFACE_BIMIFCPROPERTIESTREETABLE']._serialized_start=11792
62
+ _globals['_SURFACE_BIMIFCPROPERTIESTREETABLE']._serialized_end=11903
63
+ _globals['_SURFACE_BIMIFCPROPERTIESTREETABLEROW']._serialized_start=11906
64
+ _globals['_SURFACE_BIMIFCPROPERTIESTREETABLEROW']._serialized_end=12104
65
+ _globals['_SURFACE_GEOMETRY']._serialized_start=12107
66
+ _globals['_SURFACE_GEOMETRY']._serialized_end=12306
67
+ _globals['_SURFACE_TYPE']._serialized_start=12309
68
+ _globals['_SURFACE_TYPE']._serialized_end=12581
69
+ _globals['_SURFACE_LOADTRANSFERDIRECTION']._serialized_start=12584
70
+ _globals['_SURFACE_LOADTRANSFERDIRECTION']._serialized_end=12751
71
+ _globals['_SURFACE_LOADDISTRIBUTION']._serialized_start=12753
72
+ _globals['_SURFACE_LOADDISTRIBUTION']._serialized_end=12840
73
+ _globals['_SURFACE_QUADRANGLEPREFERABLESHAPE']._serialized_start=12842
74
+ _globals['_SURFACE_QUADRANGLEPREFERABLESHAPE']._serialized_end=12948
75
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEWORKPLANEORIENTATION']._serialized_start=12951
76
+ _globals['_SURFACE_MINCURVSPLINEREFERENCEWORKPLANEORIENTATION']._serialized_end=13166
77
+ _globals['_SURFACE_MINCURVSPLINEDEFINITIONTYPE']._serialized_start=13168
78
+ _globals['_SURFACE_MINCURVSPLINEDEFINITIONTYPE']._serialized_end=13265
79
+ _globals['_SURFACE_MESHINGTYPE']._serialized_start=13267
80
+ _globals['_SURFACE_MESHINGTYPE']._serialized_end=13366
81
+ _globals['_SURFACE_INPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=13369
82
+ _globals['_SURFACE_INPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13662
83
+ _globals['_SURFACE_INPUTAXESAXIS']._serialized_start=13664
84
+ _globals['_SURFACE_INPUTAXESAXIS']._serialized_end=13725
85
+ _globals['_SURFACE_RESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=13727
86
+ _globals['_SURFACE_RESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13833
87
+ _globals['_SURFACE_GRIDTYPE']._serialized_start=13835
88
+ _globals['_SURFACE_GRIDTYPE']._serialized_end=13891
89
+ _globals['_SURFACE_DEFLECTIONCHECKSURFACETYPE']._serialized_start=13893
90
+ _globals['_SURFACE_DEFLECTIONCHECKSURFACETYPE']._serialized_end=14019
91
+ _globals['_SURFACE_DEFLECTIONCHECKDOUBLESUPPORTEDSURFACETYPE']._serialized_start=14022
92
+ _globals['_SURFACE_DEFLECTIONCHECKDOUBLESUPPORTEDSURFACETYPE']._serialized_end=14192
93
+ _globals['_SURFACE_DEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_start=14195
94
+ _globals['_SURFACE_DEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_end=14441
95
+ _globals['_SURFACE_DEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_start=14444
96
+ _globals['_SURFACE_DEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_end=14721
97
97
  # @@protoc_insertion_point(module_scope)
@@ -8,7 +8,7 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
8
8
  DESCRIPTOR: _descriptor.FileDescriptor
9
9
 
10
10
  class Surface(_message.Message):
11
- __slots__ = ("no", "geometry", "type", "boundary_lines", "thickness", "material", "generating_object_info", "analytical_area", "analytical_volume", "analytical_mass", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "grid_enabled", "activate_load_transfer", "is_deactivated_for_calculation", "is_surface_cells_deactivated", "comment", "design_properties_via_surface", "design_properties_via_parent_surface_set", "design_properties_parent_surface_set", "is_active_in_compression", "load_transfer_direction", "is_surface_weight_enabled", "is_advanced_distribution_settings_enabled", "surface_weight", "smoothing_factor", "stripe_width", "minimum_number_of_stripes", "consider_member_eccentricity", "consider_section_distribution", "load_distribution", "neglect_equilibrium_of_moments", "neglect_defined_surface_stiffness", "excluded_members", "excluded_parallel_to_members", "excluded_lines", "excluded_parallel_to_lines", "excluded_nodes", "loaded_members", "loaded_lines", "loaded_nodes", "load_distribution_factor_table", "nurbs_control_point_count_in_direction_u", "nurbs_control_point_count_in_direction_v", "nurbs_order_in_direction_u", "nurbs_order_in_direction_v", "nurbs_control_points", "quadrangle_corner_node_1", "quadrangle_corner_node_2", "quadrangle_corner_node_3", "quadrangle_corner_node_4", "quadrangle_corner_nodes", "quadrangle_preferable_shape", "pipe_radius", "pipe_radius_end", "pipe_use_radius_end", "pipe_center_line", "pipe_generated_lines", "min_curv_spline_reference_plane_coordinate_system", "min_curv_spline_reference_work_plane_orientation", "min_curv_spline_definition_type", "min_curv_spline_grid_x_point_count", "min_curv_spline_grid_y_point_count", "min_curv_spline_reference_boundary_lines", "min_curv_spline_reference_probe_coordinates", "min_curv_spline_global_probe_coordinates", "has_line_hinges", "support", "eccentricity", "mesh_refinement", "meshing_type", "input_axes_rotation_specification_type", "input_axes_angular_rotation", "input_axes_axis", "input_axes_lines", "input_axes_point_1", "input_axes_point_1_x", "input_axes_point_1_y", "input_axes_point_1_z", "input_axes_point_2", "input_axes_point_2_x", "input_axes_point_2_y", "input_axes_point_2_z", "input_axes_coordinate_system", "result_axes_rotation_specification_type", "reversed_normal", "grid_type", "grid_origin", "grid_origin_x", "grid_origin_y", "grid_origin_z", "grid_point_count_negative_x", "grid_point_count_positive_x", "grid_point_count_negative_y", "grid_point_count_positive_y", "grid_numbering_increment", "grid_point_count_r", "grid_distance_x", "grid_distance_y", "grid_distance_r", "grid_rotation_alpha", "grid_rotation_beta", "grid_angle_gamma", "grid_adapt_automatically", "auto_detection_of_integrated_objects", "integrated_nodes", "integrated_lines", "integrated_openings", "has_integrated_objects", "has_input_axes_rotation", "has_result_axes_rotation", "surface_steel_design_uls_configuration", "surface_steel_design_sls_configuration", "surface_timber_design_uls_configuration", "surface_timber_design_sls_configuration", "surface_timber_design_fr_configuration", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "surface_aluminum_design_uls_configuration", "surface_aluminum_design_sls_configuration", "surface_glass_design_uls_configuration", "surface_glass_design_sls_configuration", "surface_reinforcements", "is_user_defined_concrete_cover_enabled", "concrete_cover_top", "concrete_cover_bottom", "user_defined_concrete_cover_top", "user_defined_concrete_cover_bottom", "concrete_durability_top", "concrete_durability_bottom", "reinforcement_direction_top", "reinforcement_direction_bottom", "deflection_check_surface_type", "deflection_check_double_supported_surface_type", "deflection_check_displacement_reference", "deflection_check_reference_length_z", "deflection_check_reference_length_z_definition_type", "deflection_check_reference_plane_point_1", "deflection_check_reference_plane_point_1_x", "deflection_check_reference_plane_point_1_y", "deflection_check_reference_plane_point_1_z", "deflection_check_reference_plane_point_2", "deflection_check_reference_plane_point_2_x", "deflection_check_reference_plane_point_2_y", "deflection_check_reference_plane_point_2_z", "deflection_check_reference_plane_point_3", "deflection_check_reference_plane_point_3_x", "deflection_check_reference_plane_point_3_y", "deflection_check_reference_plane_point_3_z", "surface_reinforcement_table", "surface_concrete_design_uls_configuration", "surface_concrete_design_sls_configuration", "surface_concrete_design_fr_configuration", "surface_concrete_design_seismic_configuration", "rotated_boundary_line", "rotated_angle_of_rotation", "rotated_point_p", "rotated_point_p_x", "rotated_point_p_y", "rotated_point_p_z", "rotated_point_r", "rotated_point_r_x", "rotated_point_r_y", "rotated_point_r_z", "rotated_generated_lines", "stress_analysis_configuration", "surface_releases_assignment", "bim_ifc_properties", "parent_layer", "is_locked_by_parent_layer", "is_generated", "id_for_export_import", "metadata_for_export_import")
11
+ __slots__ = ("no", "geometry", "type", "boundary_lines", "thickness", "material", "generating_object_info", "analytical_area", "analytical_volume", "analytical_mass", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "grid_enabled", "activate_load_transfer", "is_deactivated_for_calculation", "is_surface_cells_deactivated", "comment", "design_properties_via_surface", "design_properties_via_parent_surface_set", "design_properties_parent_surface_set", "is_active_in_compression", "load_transfer_direction", "is_surface_weight_enabled", "is_advanced_distribution_settings_enabled", "surface_weight", "smoothing_factor", "stripe_width", "minimum_number_of_stripes", "consider_member_eccentricity", "consider_section_distribution", "load_distribution", "neglect_equilibrium_of_moments", "neglect_defined_surface_stiffness", "excluded_members", "excluded_parallel_to_members", "excluded_lines", "excluded_parallel_to_lines", "excluded_nodes", "loaded_members", "loaded_lines", "loaded_nodes", "load_distribution_factor_table", "nurbs_control_point_count_in_direction_u", "nurbs_control_point_count_in_direction_v", "nurbs_order_in_direction_u", "nurbs_order_in_direction_v", "nurbs_control_points", "quadrangle_corner_node_1", "quadrangle_corner_node_2", "quadrangle_corner_node_3", "quadrangle_corner_node_4", "quadrangle_corner_nodes", "quadrangle_preferable_shape", "pipe_radius", "pipe_radius_end", "pipe_use_radius_end", "pipe_center_line", "pipe_generated_lines", "min_curv_spline_reference_plane_coordinate_system", "min_curv_spline_reference_work_plane_orientation", "min_curv_spline_definition_type", "min_curv_spline_grid_x_point_count", "min_curv_spline_grid_y_point_count", "min_curv_spline_reference_boundary_lines", "min_curv_spline_reference_probe_coordinates", "min_curv_spline_global_probe_coordinates", "has_line_hinges", "support", "eccentricity", "mesh_refinement", "meshing_type", "input_axes_rotation_specification_type", "input_axes_angular_rotation", "input_axes_axis", "input_axes_lines", "input_axes_point_1", "input_axes_point_1_x", "input_axes_point_1_y", "input_axes_point_1_z", "input_axes_point_2", "input_axes_point_2_x", "input_axes_point_2_y", "input_axes_point_2_z", "input_axes_coordinate_system", "result_axes_rotation_specification_type", "reversed_normal", "grid_type", "grid_origin", "grid_origin_x", "grid_origin_y", "grid_origin_z", "grid_point_count_negative_x", "grid_point_count_positive_x", "grid_point_count_negative_y", "grid_point_count_positive_y", "grid_numbering_increment", "grid_point_count_r", "grid_distance_x", "grid_distance_y", "grid_distance_r", "grid_rotation_alpha", "grid_rotation_beta", "grid_angle_gamma", "grid_adapt_automatically", "auto_detection_of_integrated_objects", "integrated_nodes", "integrated_lines", "integrated_openings", "has_integrated_objects", "has_input_axes_rotation", "has_result_axes_rotation", "surface_steel_design_uls_configuration", "surface_steel_design_sls_configuration", "surface_timber_design_uls_configuration", "surface_timber_design_sls_configuration", "surface_timber_design_fr_configuration", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "surface_aluminum_design_uls_configuration", "surface_aluminum_design_sls_configuration", "surface_glass_design_uls_configuration", "surface_glass_design_sls_configuration", "surface_reinforcements", "is_user_defined_concrete_cover_enabled", "concrete_cover_top", "concrete_cover_bottom", "user_defined_concrete_cover_top", "user_defined_concrete_cover_bottom", "concrete_durability_top", "concrete_durability_bottom", "reinforcement_direction_top", "reinforcement_direction_bottom", "deflection_check_surface_type", "deflection_check_double_supported_surface_type", "deflection_check_displacement_reference", "deflection_check_reference_length_z", "deflection_check_reference_length_z_definition_type", "deflection_check_reference_plane_point_1", "deflection_check_reference_plane_point_1_x", "deflection_check_reference_plane_point_1_y", "deflection_check_reference_plane_point_1_z", "deflection_check_reference_plane_point_2", "deflection_check_reference_plane_point_2_x", "deflection_check_reference_plane_point_2_y", "deflection_check_reference_plane_point_2_z", "deflection_check_reference_plane_point_3", "deflection_check_reference_plane_point_3_x", "deflection_check_reference_plane_point_3_y", "deflection_check_reference_plane_point_3_z", "surface_reinforcement_table", "surface_concrete_design_uls_configuration", "surface_concrete_design_sls_configuration", "surface_concrete_design_fr_configuration", "surface_concrete_design_seismic_configuration", "rotated_boundary_line", "rotated_angle_of_rotation", "rotated_point_p", "rotated_point_p_x", "rotated_point_p_y", "rotated_point_p_z", "rotated_point_r", "rotated_point_r_x", "rotated_point_r_y", "rotated_point_r_z", "rotated_generated_lines", "wind_simulation_enable_specific_settings", "wind_simulation_shrink_wrapping", "wind_simulation_roughness_and_permeability", "wind_simulation_exclude_from_wind_tunnel", "wind_simulation_consider_surface_thickness_above", "wind_simulation_consider_surface_thickness_above_value", "stress_analysis_configuration", "surface_releases_assignment", "bim_ifc_properties", "parent_layer", "is_locked_by_parent_layer", "is_generated", "id_for_export_import", "metadata_for_export_import")
12
12
  class Geometry(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
13
13
  __slots__ = ()
14
14
  GEOMETRY_UNKNOWN: _ClassVar[Surface.Geometry]
@@ -443,6 +443,12 @@ class Surface(_message.Message):
443
443
  ROTATED_POINT_R_Y_FIELD_NUMBER: _ClassVar[int]
444
444
  ROTATED_POINT_R_Z_FIELD_NUMBER: _ClassVar[int]
445
445
  ROTATED_GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
446
+ WIND_SIMULATION_ENABLE_SPECIFIC_SETTINGS_FIELD_NUMBER: _ClassVar[int]
447
+ WIND_SIMULATION_SHRINK_WRAPPING_FIELD_NUMBER: _ClassVar[int]
448
+ WIND_SIMULATION_ROUGHNESS_AND_PERMEABILITY_FIELD_NUMBER: _ClassVar[int]
449
+ WIND_SIMULATION_EXCLUDE_FROM_WIND_TUNNEL_FIELD_NUMBER: _ClassVar[int]
450
+ WIND_SIMULATION_CONSIDER_SURFACE_THICKNESS_ABOVE_FIELD_NUMBER: _ClassVar[int]
451
+ WIND_SIMULATION_CONSIDER_SURFACE_THICKNESS_ABOVE_VALUE_FIELD_NUMBER: _ClassVar[int]
446
452
  STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
447
453
  SURFACE_RELEASES_ASSIGNMENT_FIELD_NUMBER: _ClassVar[int]
448
454
  BIM_IFC_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
@@ -628,6 +634,12 @@ class Surface(_message.Message):
628
634
  rotated_point_r_y: float
629
635
  rotated_point_r_z: float
630
636
  rotated_generated_lines: _containers.RepeatedScalarFieldContainer[int]
637
+ wind_simulation_enable_specific_settings: bool
638
+ wind_simulation_shrink_wrapping: int
639
+ wind_simulation_roughness_and_permeability: int
640
+ wind_simulation_exclude_from_wind_tunnel: bool
641
+ wind_simulation_consider_surface_thickness_above: bool
642
+ wind_simulation_consider_surface_thickness_above_value: float
631
643
  stress_analysis_configuration: int
632
644
  surface_releases_assignment: Surface.SurfaceReleasesAssignmentTable
633
645
  bim_ifc_properties: Surface.BimIfcPropertiesTreeTable
@@ -636,4 +648,4 @@ class Surface(_message.Message):
636
648
  is_generated: bool
637
649
  id_for_export_import: str
638
650
  metadata_for_export_import: str
639
- def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[Surface.Geometry, str]] = ..., type: _Optional[_Union[Surface.Type, str]] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., thickness: _Optional[int] = ..., material: _Optional[int] = ..., generating_object_info: _Optional[str] = ..., analytical_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., grid_enabled: bool = ..., activate_load_transfer: bool = ..., is_deactivated_for_calculation: bool = ..., is_surface_cells_deactivated: bool = ..., comment: _Optional[str] = ..., design_properties_via_surface: bool = ..., design_properties_via_parent_surface_set: bool = ..., design_properties_parent_surface_set: _Optional[int] = ..., is_active_in_compression: bool = ..., load_transfer_direction: _Optional[_Union[Surface.LoadTransferDirection, str]] = ..., is_surface_weight_enabled: bool = ..., is_advanced_distribution_settings_enabled: bool = ..., surface_weight: _Optional[float] = ..., smoothing_factor: _Optional[float] = ..., stripe_width: _Optional[float] = ..., minimum_number_of_stripes: _Optional[int] = ..., consider_member_eccentricity: bool = ..., consider_section_distribution: bool = ..., load_distribution: _Optional[_Union[Surface.LoadDistribution, str]] = ..., neglect_equilibrium_of_moments: bool = ..., neglect_defined_surface_stiffness: bool = ..., excluded_members: _Optional[_Iterable[int]] = ..., excluded_parallel_to_members: _Optional[_Iterable[int]] = ..., excluded_lines: _Optional[_Iterable[int]] = ..., excluded_parallel_to_lines: _Optional[_Iterable[int]] = ..., excluded_nodes: _Optional[_Iterable[int]] = ..., loaded_members: _Optional[_Iterable[int]] = ..., loaded_lines: _Optional[_Iterable[int]] = ..., loaded_nodes: _Optional[_Iterable[int]] = ..., load_distribution_factor_table: _Optional[_Union[Surface.LoadDistributionFactorTable, _Mapping]] = ..., nurbs_control_point_count_in_direction_u: _Optional[int] = ..., nurbs_control_point_count_in_direction_v: _Optional[int] = ..., nurbs_order_in_direction_u: _Optional[int] = ..., nurbs_order_in_direction_v: _Optional[int] = ..., nurbs_control_points: _Optional[_Union[Surface.SurfaceNurbsControlPointsRowsTable, _Mapping]] = ..., quadrangle_corner_node_1: _Optional[int] = ..., quadrangle_corner_node_2: _Optional[int] = ..., quadrangle_corner_node_3: _Optional[int] = ..., quadrangle_corner_node_4: _Optional[int] = ..., quadrangle_corner_nodes: _Optional[_Iterable[int]] = ..., quadrangle_preferable_shape: _Optional[_Union[Surface.QuadranglePreferableShape, str]] = ..., pipe_radius: _Optional[float] = ..., pipe_radius_end: _Optional[float] = ..., pipe_use_radius_end: bool = ..., pipe_center_line: _Optional[int] = ..., pipe_generated_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_plane_coordinate_system: _Optional[int] = ..., min_curv_spline_reference_work_plane_orientation: _Optional[_Union[Surface.MinCurvSplineReferenceWorkPlaneOrientation, str]] = ..., min_curv_spline_definition_type: _Optional[_Union[Surface.MinCurvSplineDefinitionType, str]] = ..., min_curv_spline_grid_x_point_count: _Optional[int] = ..., min_curv_spline_grid_y_point_count: _Optional[int] = ..., min_curv_spline_reference_boundary_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineReferenceProbeCoordinatesTable, _Mapping]] = ..., min_curv_spline_global_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineGlobalProbeCoordinatesTable, _Mapping]] = ..., has_line_hinges: bool = ..., support: _Optional[int] = ..., eccentricity: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., meshing_type: _Optional[_Union[Surface.MeshingType, str]] = ..., input_axes_rotation_specification_type: _Optional[_Union[Surface.InputAxesRotationSpecificationType, str]] = ..., input_axes_angular_rotation: _Optional[float] = ..., input_axes_axis: _Optional[_Union[Surface.InputAxesAxis, str]] = ..., input_axes_lines: _Optional[_Iterable[int]] = ..., input_axes_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_1_x: _Optional[float] = ..., input_axes_point_1_y: _Optional[float] = ..., input_axes_point_1_z: _Optional[float] = ..., input_axes_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_2_x: _Optional[float] = ..., input_axes_point_2_y: _Optional[float] = ..., input_axes_point_2_z: _Optional[float] = ..., input_axes_coordinate_system: _Optional[int] = ..., result_axes_rotation_specification_type: _Optional[_Union[Surface.ResultAxesRotationSpecificationType, str]] = ..., reversed_normal: bool = ..., grid_type: _Optional[_Union[Surface.GridType, str]] = ..., grid_origin: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., grid_origin_x: _Optional[float] = ..., grid_origin_y: _Optional[float] = ..., grid_origin_z: _Optional[float] = ..., grid_point_count_negative_x: _Optional[int] = ..., grid_point_count_positive_x: _Optional[int] = ..., grid_point_count_negative_y: _Optional[int] = ..., grid_point_count_positive_y: _Optional[int] = ..., grid_numbering_increment: _Optional[int] = ..., grid_point_count_r: _Optional[int] = ..., grid_distance_x: _Optional[float] = ..., grid_distance_y: _Optional[float] = ..., grid_distance_r: _Optional[float] = ..., grid_rotation_alpha: _Optional[float] = ..., grid_rotation_beta: _Optional[float] = ..., grid_angle_gamma: _Optional[float] = ..., grid_adapt_automatically: bool = ..., auto_detection_of_integrated_objects: bool = ..., integrated_nodes: _Optional[_Iterable[int]] = ..., integrated_lines: _Optional[_Iterable[int]] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., has_integrated_objects: bool = ..., has_input_axes_rotation: bool = ..., has_result_axes_rotation: bool = ..., surface_steel_design_uls_configuration: _Optional[int] = ..., surface_steel_design_sls_configuration: _Optional[int] = ..., surface_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., surface_aluminum_design_uls_configuration: _Optional[int] = ..., surface_aluminum_design_sls_configuration: _Optional[int] = ..., surface_glass_design_uls_configuration: _Optional[int] = ..., surface_glass_design_sls_configuration: _Optional[int] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., is_user_defined_concrete_cover_enabled: bool = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., user_defined_concrete_cover_top: _Optional[float] = ..., user_defined_concrete_cover_bottom: _Optional[float] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., reinforcement_direction_top: _Optional[int] = ..., reinforcement_direction_bottom: _Optional[int] = ..., deflection_check_surface_type: _Optional[_Union[Surface.DeflectionCheckSurfaceType, str]] = ..., deflection_check_double_supported_surface_type: _Optional[_Union[Surface.DeflectionCheckDoubleSupportedSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[Surface.DeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[Surface.DeflectionCheckReferenceLengthZDefinitionType, str]] = ..., deflection_check_reference_plane_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_1_x: _Optional[float] = ..., deflection_check_reference_plane_point_1_y: _Optional[float] = ..., deflection_check_reference_plane_point_1_z: _Optional[float] = ..., deflection_check_reference_plane_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_2_x: _Optional[float] = ..., deflection_check_reference_plane_point_2_y: _Optional[float] = ..., deflection_check_reference_plane_point_2_z: _Optional[float] = ..., deflection_check_reference_plane_point_3: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_3_x: _Optional[float] = ..., deflection_check_reference_plane_point_3_y: _Optional[float] = ..., deflection_check_reference_plane_point_3_z: _Optional[float] = ..., surface_reinforcement_table: _Optional[_Union[Surface.SurfaceReinforcementTable, _Mapping]] = ..., surface_concrete_design_uls_configuration: _Optional[int] = ..., surface_concrete_design_sls_configuration: _Optional[int] = ..., surface_concrete_design_fr_configuration: _Optional[int] = ..., surface_concrete_design_seismic_configuration: _Optional[int] = ..., rotated_boundary_line: _Optional[int] = ..., rotated_angle_of_rotation: _Optional[float] = ..., rotated_point_p: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_p_x: _Optional[float] = ..., rotated_point_p_y: _Optional[float] = ..., rotated_point_p_z: _Optional[float] = ..., rotated_point_r: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_r_x: _Optional[float] = ..., rotated_point_r_y: _Optional[float] = ..., rotated_point_r_z: _Optional[float] = ..., rotated_generated_lines: _Optional[_Iterable[int]] = ..., stress_analysis_configuration: _Optional[int] = ..., surface_releases_assignment: _Optional[_Union[Surface.SurfaceReleasesAssignmentTable, _Mapping]] = ..., bim_ifc_properties: _Optional[_Union[Surface.BimIfcPropertiesTreeTable, _Mapping]] = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
651
+ def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[Surface.Geometry, str]] = ..., type: _Optional[_Union[Surface.Type, str]] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., thickness: _Optional[int] = ..., material: _Optional[int] = ..., generating_object_info: _Optional[str] = ..., analytical_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., grid_enabled: bool = ..., activate_load_transfer: bool = ..., is_deactivated_for_calculation: bool = ..., is_surface_cells_deactivated: bool = ..., comment: _Optional[str] = ..., design_properties_via_surface: bool = ..., design_properties_via_parent_surface_set: bool = ..., design_properties_parent_surface_set: _Optional[int] = ..., is_active_in_compression: bool = ..., load_transfer_direction: _Optional[_Union[Surface.LoadTransferDirection, str]] = ..., is_surface_weight_enabled: bool = ..., is_advanced_distribution_settings_enabled: bool = ..., surface_weight: _Optional[float] = ..., smoothing_factor: _Optional[float] = ..., stripe_width: _Optional[float] = ..., minimum_number_of_stripes: _Optional[int] = ..., consider_member_eccentricity: bool = ..., consider_section_distribution: bool = ..., load_distribution: _Optional[_Union[Surface.LoadDistribution, str]] = ..., neglect_equilibrium_of_moments: bool = ..., neglect_defined_surface_stiffness: bool = ..., excluded_members: _Optional[_Iterable[int]] = ..., excluded_parallel_to_members: _Optional[_Iterable[int]] = ..., excluded_lines: _Optional[_Iterable[int]] = ..., excluded_parallel_to_lines: _Optional[_Iterable[int]] = ..., excluded_nodes: _Optional[_Iterable[int]] = ..., loaded_members: _Optional[_Iterable[int]] = ..., loaded_lines: _Optional[_Iterable[int]] = ..., loaded_nodes: _Optional[_Iterable[int]] = ..., load_distribution_factor_table: _Optional[_Union[Surface.LoadDistributionFactorTable, _Mapping]] = ..., nurbs_control_point_count_in_direction_u: _Optional[int] = ..., nurbs_control_point_count_in_direction_v: _Optional[int] = ..., nurbs_order_in_direction_u: _Optional[int] = ..., nurbs_order_in_direction_v: _Optional[int] = ..., nurbs_control_points: _Optional[_Union[Surface.SurfaceNurbsControlPointsRowsTable, _Mapping]] = ..., quadrangle_corner_node_1: _Optional[int] = ..., quadrangle_corner_node_2: _Optional[int] = ..., quadrangle_corner_node_3: _Optional[int] = ..., quadrangle_corner_node_4: _Optional[int] = ..., quadrangle_corner_nodes: _Optional[_Iterable[int]] = ..., quadrangle_preferable_shape: _Optional[_Union[Surface.QuadranglePreferableShape, str]] = ..., pipe_radius: _Optional[float] = ..., pipe_radius_end: _Optional[float] = ..., pipe_use_radius_end: bool = ..., pipe_center_line: _Optional[int] = ..., pipe_generated_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_plane_coordinate_system: _Optional[int] = ..., min_curv_spline_reference_work_plane_orientation: _Optional[_Union[Surface.MinCurvSplineReferenceWorkPlaneOrientation, str]] = ..., min_curv_spline_definition_type: _Optional[_Union[Surface.MinCurvSplineDefinitionType, str]] = ..., min_curv_spline_grid_x_point_count: _Optional[int] = ..., min_curv_spline_grid_y_point_count: _Optional[int] = ..., min_curv_spline_reference_boundary_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineReferenceProbeCoordinatesTable, _Mapping]] = ..., min_curv_spline_global_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineGlobalProbeCoordinatesTable, _Mapping]] = ..., has_line_hinges: bool = ..., support: _Optional[int] = ..., eccentricity: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., meshing_type: _Optional[_Union[Surface.MeshingType, str]] = ..., input_axes_rotation_specification_type: _Optional[_Union[Surface.InputAxesRotationSpecificationType, str]] = ..., input_axes_angular_rotation: _Optional[float] = ..., input_axes_axis: _Optional[_Union[Surface.InputAxesAxis, str]] = ..., input_axes_lines: _Optional[_Iterable[int]] = ..., input_axes_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_1_x: _Optional[float] = ..., input_axes_point_1_y: _Optional[float] = ..., input_axes_point_1_z: _Optional[float] = ..., input_axes_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_2_x: _Optional[float] = ..., input_axes_point_2_y: _Optional[float] = ..., input_axes_point_2_z: _Optional[float] = ..., input_axes_coordinate_system: _Optional[int] = ..., result_axes_rotation_specification_type: _Optional[_Union[Surface.ResultAxesRotationSpecificationType, str]] = ..., reversed_normal: bool = ..., grid_type: _Optional[_Union[Surface.GridType, str]] = ..., grid_origin: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., grid_origin_x: _Optional[float] = ..., grid_origin_y: _Optional[float] = ..., grid_origin_z: _Optional[float] = ..., grid_point_count_negative_x: _Optional[int] = ..., grid_point_count_positive_x: _Optional[int] = ..., grid_point_count_negative_y: _Optional[int] = ..., grid_point_count_positive_y: _Optional[int] = ..., grid_numbering_increment: _Optional[int] = ..., grid_point_count_r: _Optional[int] = ..., grid_distance_x: _Optional[float] = ..., grid_distance_y: _Optional[float] = ..., grid_distance_r: _Optional[float] = ..., grid_rotation_alpha: _Optional[float] = ..., grid_rotation_beta: _Optional[float] = ..., grid_angle_gamma: _Optional[float] = ..., grid_adapt_automatically: bool = ..., auto_detection_of_integrated_objects: bool = ..., integrated_nodes: _Optional[_Iterable[int]] = ..., integrated_lines: _Optional[_Iterable[int]] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., has_integrated_objects: bool = ..., has_input_axes_rotation: bool = ..., has_result_axes_rotation: bool = ..., surface_steel_design_uls_configuration: _Optional[int] = ..., surface_steel_design_sls_configuration: _Optional[int] = ..., surface_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., surface_aluminum_design_uls_configuration: _Optional[int] = ..., surface_aluminum_design_sls_configuration: _Optional[int] = ..., surface_glass_design_uls_configuration: _Optional[int] = ..., surface_glass_design_sls_configuration: _Optional[int] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., is_user_defined_concrete_cover_enabled: bool = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., user_defined_concrete_cover_top: _Optional[float] = ..., user_defined_concrete_cover_bottom: _Optional[float] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., reinforcement_direction_top: _Optional[int] = ..., reinforcement_direction_bottom: _Optional[int] = ..., deflection_check_surface_type: _Optional[_Union[Surface.DeflectionCheckSurfaceType, str]] = ..., deflection_check_double_supported_surface_type: _Optional[_Union[Surface.DeflectionCheckDoubleSupportedSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[Surface.DeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[Surface.DeflectionCheckReferenceLengthZDefinitionType, str]] = ..., deflection_check_reference_plane_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_1_x: _Optional[float] = ..., deflection_check_reference_plane_point_1_y: _Optional[float] = ..., deflection_check_reference_plane_point_1_z: _Optional[float] = ..., deflection_check_reference_plane_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_2_x: _Optional[float] = ..., deflection_check_reference_plane_point_2_y: _Optional[float] = ..., deflection_check_reference_plane_point_2_z: _Optional[float] = ..., deflection_check_reference_plane_point_3: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_3_x: _Optional[float] = ..., deflection_check_reference_plane_point_3_y: _Optional[float] = ..., deflection_check_reference_plane_point_3_z: _Optional[float] = ..., surface_reinforcement_table: _Optional[_Union[Surface.SurfaceReinforcementTable, _Mapping]] = ..., surface_concrete_design_uls_configuration: _Optional[int] = ..., surface_concrete_design_sls_configuration: _Optional[int] = ..., surface_concrete_design_fr_configuration: _Optional[int] = ..., surface_concrete_design_seismic_configuration: _Optional[int] = ..., rotated_boundary_line: _Optional[int] = ..., rotated_angle_of_rotation: _Optional[float] = ..., rotated_point_p: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_p_x: _Optional[float] = ..., rotated_point_p_y: _Optional[float] = ..., rotated_point_p_z: _Optional[float] = ..., rotated_point_r: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_r_x: _Optional[float] = ..., rotated_point_r_y: _Optional[float] = ..., rotated_point_r_z: _Optional[float] = ..., rotated_generated_lines: _Optional[_Iterable[int]] = ..., wind_simulation_enable_specific_settings: bool = ..., wind_simulation_shrink_wrapping: _Optional[int] = ..., wind_simulation_roughness_and_permeability: _Optional[int] = ..., wind_simulation_exclude_from_wind_tunnel: bool = ..., wind_simulation_consider_surface_thickness_above: bool = ..., wind_simulation_consider_surface_thickness_above_value: _Optional[float] = ..., stress_analysis_configuration: _Optional[int] = ..., surface_releases_assignment: _Optional[_Union[Surface.SurfaceReleasesAssignmentTable, _Mapping]] = ..., bim_ifc_properties: _Optional[_Union[Surface.BimIfcPropertiesTreeTable, _Mapping]] = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,105 @@
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/timber_design/timber_effective_lengths.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/timber_design/timber_effective_lengths.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.rfem import object_id_pb2 as dlubal_dot_api_dot_rfem_dot_object__id__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n<dlubal/api/rfem/timber_design/timber_effective_lengths.proto\x12\x1d\x64lubal.api.rfem.timber_design\x1a\x1f\x64lubal/api/rfem/object_id.proto\"\xc7h\n\x16TimberEffectiveLengths\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\x14\n\x07\x63omment\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x0f\n\x07members\x18\x05 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x06 \x03(\x05\x12&\n\x19\x66lexural_buckling_about_y\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12&\n\x19\x66lexural_buckling_about_z\x18\x08 \x01(\x08H\x05\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\t \x01(\x08H\x06\x88\x01\x01\x12v\n\x1a\x62uckling_factor_value_type\x18\n \x01(\x0e\x32M.dlubal.api.rfem.timber_design.TimberEffectiveLengths.BucklingFactorValueTypeH\x07\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\x08\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\t\x88\x01\x01\x12\x65\n\x0enodal_supports\x18\r \x01(\x0b\x32H.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsTableH\n\x88\x01\x01\x12X\n\x07\x66\x61\x63tors\x18\x0e \x01(\x0b\x32\x42.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FactorsTableH\x0b\x88\x01\x01\x12X\n\x07lengths\x18\x0f \x01(\x0b\x32\x42.dlubal.api.rfem.timber_design.TimberEffectiveLengths.LengthsTableH\x0c\x88\x01\x01\x12\x1f\n\x12intermediate_nodes\x18\x10 \x01(\x08H\r\x88\x01\x01\x12!\n\x14\x64ifferent_properties\x18\x11 \x01(\x08H\x0e\x88\x01\x01\x12(\n\x1b\x66\x61\x63tors_definition_absolute\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12{\n\x1a\x66ire_design_nodal_supports\x18\x13 \x01(\x0b\x32R.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsTableH\x10\x88\x01\x01\x12n\n\x13\x66ire_design_factors\x18\x14 \x01(\x0b\x32L.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignFactorsTableH\x11\x88\x01\x01\x12n\n\x13\x66ire_design_lengths\x18\x15 \x01(\x0b\x32L.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignLengthsTableH\x12\x88\x01\x01\x12+\n\x1e\x66ire_design_intermediate_nodes\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12-\n fire_design_different_properties\x18\x17 \x01(\x08H\x14\x88\x01\x01\x12\x34\n\'fire_design_factors_definition_absolute\x18\x18 \x01(\x08H\x15\x88\x01\x01\x12\x33\n&fire_design_different_buckling_factors\x18\x19 \x01(\x08H\x16\x88\x01\x01\x12\x33\n&import_from_stability_analysis_enabled\x18\x1a \x01(\x08H\x17\x88\x01\x01\x12>\n1stability_import_data_factors_definition_absolute\x18\x1b \x01(\x08H\x18\x88\x01\x01\x12+\n\x1estability_import_data_member_y\x18\x1c \x01(\x05H\x19\x88\x01\x01\x12G\n\x1fstability_import_data_loading_y\x18\x1d \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x1a\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_y\x18\x1e \x01(\x05H\x1b\x88\x01\x01\x12+\n\x1estability_import_data_member_z\x18\x1f \x01(\x05H\x1c\x88\x01\x01\x12G\n\x1fstability_import_data_loading_z\x18 \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x1d\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_z\x18! \x01(\x05H\x1e\x88\x01\x01\x12\x81\x01\n\x1dstability_import_data_factors\x18\" \x01(\x0b\x32U.dlubal.api.rfem.timber_design.TimberEffectiveLengths.StabilityImportDataFactorsTableH\x1f\x88\x01\x01\x12\x81\x01\n\x1dstability_import_data_lengths\x18# \x01(\x0b\x32U.dlubal.api.rfem.timber_design.TimberEffectiveLengths.StabilityImportDataLengthsTableH \x88\x01\x01\x12\x31\n$stability_import_data_user_defined_y\x18$ \x01(\x08H!\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_z\x18% \x01(\x08H\"\x88\x01\x01\x12h\n\x12\x64\x65termination_type\x18& \x01(\x0e\x32G.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationTypeH#\x88\x01\x01\x12\x80\x01\n\x1f\x64\x65termination_omega2_sans_10163\x18\' \x01(\x0e\x32R.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationOmega2Sans10163H$\x88\x01\x01\x12%\n\x18\x66\x61\x63tor_omega2_sans_10163\x18( \x01(\x01H%\x88\x01\x01\x12\x80\x01\n\x1f\x64\x65termination_omega3_sans_10163\x18) \x01(\x0e\x32R.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationOmega3Sans10163H&\x88\x01\x01\x12%\n\x18\x66\x61\x63tor_omega3_sans_10163\x18* \x01(\x01H\'\x88\x01\x01\x12{\n\x1d\x64\x65termination_beta_e_nbr_7190\x18+ \x01(\x0e\x32O.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationBetaENbr7190H(\x88\x01\x01\x12#\n\x16\x66\x61\x63tor_beta_e_nbr_7190\x18, \x01(\x01H)\x88\x01\x01\x12}\n\x1e\x64\x65termination_gamma_f_nbr_7190\x18- \x01(\x0e\x32P.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationGammaFNbr7190H*\x88\x01\x01\x12$\n\x17\x66\x61\x63tor_gamma_f_nbr_7190\x18. \x01(\x01H+\x88\x01\x01\x12{\n\x1d\x64\x65termination_cb_csa_o86_2024\x18/ \x01(\x0e\x32O.dlubal.api.rfem.timber_design.TimberEffectiveLengths.DeterminationCbCsaO862024H,\x88\x01\x01\x12#\n\x16\x66\x61\x63tor_cb_csa_o86_2024\x18\x30 \x01(\x01H-\x88\x01\x01\x12Z\n\x0bmember_type\x18\x31 \x01(\x0e\x32@.dlubal.api.rfem.timber_design.TimberEffectiveLengths.MemberTypeH.\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x32 \x01(\tH/\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x33 \x01(\tH0\x88\x01\x01\x1aj\n\x12NodalSupportsTable\x12T\n\x04rows\x18\x01 \x03(\x0b\x32\x46.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow\x1a\xf5\x0f\n\x10NodalSupportsRow\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\x12m\n\x0csupport_type\x18\x03 \x01(\x0e\x32R.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow.SupportTypeH\x02\x88\x01\x01\x12\x19\n\x0csupport_in_z\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12 \n\x13support_spring_in_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12w\n\x11\x65\x63\x63\x65ntricity_type\x18\x06 \x01(\x0e\x32W.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow.EccentricityTypeH\x05\x88\x01\x01\x12\x1c\n\x0f\x65\x63\x63\x65ntricity_ez\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12%\n\x18restraint_spring_about_x\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12%\n\x18restraint_spring_about_z\x18\t \x01(\x01H\x08\x88\x01\x01\x12l\n\x0csupport_in_y\x18\n \x01(\x0e\x32Q.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow.SupportInYH\t\x88\x01\x01\x12v\n\x11restraint_about_x\x18\x0b \x01(\x0e\x32V.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow.RestraintAboutXH\n\x88\x01\x01\x12v\n\x11restraint_about_z\x18\x0c \x01(\x0e\x32V.dlubal.api.rfem.timber_design.TimberEffectiveLengths.NodalSupportsRow.RestraintAboutZH\x0b\x88\x01\x01\x12\r\n\x05nodes\x18\r \x03(\x05\"\xfd\x02\n\x0bSupportType\x12\x15\n\x11SUPPORT_TYPE_NONE\x10\x00\x12\x1a\n\x16SUPPORT_TYPE_FIXED_ALL\x10\x08\x12\x1b\n\x17SUPPORT_TYPE_FIXED_IN_Y\x10\x02\x12\x1b\n\x17SUPPORT_TYPE_FIXED_IN_Z\x10\x01\x12\'\n#SUPPORT_TYPE_FIXED_IN_Z_AND_TORSION\x10\x04\x12\x33\n/SUPPORT_TYPE_FIXED_IN_Z_AND_TORSION_AND_WARPING\x10\x06\x12)\n%SUPPORT_TYPE_FIXED_IN_Z_Y_AND_TORSION\x10\x05\x12\x35\n1SUPPORT_TYPE_FIXED_IN_Z_Y_AND_TORSION_AND_WARPING\x10\x07\x12\x1d\n\x19SUPPORT_TYPE_INDIVIDUALLY\x10\t\x12\"\n\x1eSUPPORT_TYPE_RESTRAINT_ABOUT_X\x10\x03\"\x9e\x01\n\x10\x45\x63\x63\x65ntricityType\x12\x1a\n\x16\x45\x43\x43\x45NTRICITY_TYPE_NONE\x10\x00\x12%\n!ECCENTRICITY_TYPE_AT_LOWER_FLANGE\x10\x02\x12%\n!ECCENTRICITY_TYPE_AT_UPPER_FLANGE\x10\x01\x12 \n\x1c\x45\x43\x43\x45NTRICITY_TYPE_USER_VALUE\x10\x03\"}\n\nSupportInY\x12\"\n\x1eSUPPORT_IN_Y_SUPPORT_STATUS_NO\x10\x00\x12&\n\"SUPPORT_IN_Y_SUPPORT_STATUS_SPRING\x10\x01\x12#\n\x1fSUPPORT_IN_Y_SUPPORT_STATUS_YES\x10\x02\"\x91\x01\n\x0fRestraintAboutX\x12\'\n#RESTRAINT_ABOUT_X_SUPPORT_STATUS_NO\x10\x00\x12+\n\'RESTRAINT_ABOUT_X_SUPPORT_STATUS_SPRING\x10\x01\x12(\n$RESTRAINT_ABOUT_X_SUPPORT_STATUS_YES\x10\x02\"\x91\x01\n\x0fRestraintAboutZ\x12\'\n#RESTRAINT_ABOUT_Z_SUPPORT_STATUS_NO\x10\x00\x12+\n\'RESTRAINT_ABOUT_Z_SUPPORT_STATUS_SPRING\x10\x01\x12(\n$RESTRAINT_ABOUT_Z_SUPPORT_STATUS_YES\x10\x02\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_support_typeB\x0f\n\r_support_in_zB\x16\n\x14_support_spring_in_yB\x14\n\x12_eccentricity_typeB\x12\n\x10_eccentricity_ezB\x1b\n\x19_restraint_spring_about_xB\x1b\n\x19_restraint_spring_about_zB\x0f\n\r_support_in_yB\x14\n\x12_restraint_about_xB\x14\n\x12_restraint_about_z\x1a^\n\x0c\x46\x61\x63torsTable\x12N\n\x04rows\x18\x01 \x03(\x0b\x32@.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FactorsRow\x1a\xe2\x03\n\nFactorsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x08 \x01(\x01H\x07\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1a^\n\x0cLengthsTable\x12N\n\x04rows\x18\x01 \x03(\x0b\x32@.dlubal.api.rfem.timber_design.TimberEffectiveLengths.LengthsRow\x1a\xe2\x03\n\nLengthsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x08 \x01(\x01H\x07\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1a~\n\x1c\x46ireDesignNodalSupportsTable\x12^\n\x04rows\x18\x01 \x03(\x0b\x32P.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow\x1a\xb4\x10\n\x1a\x46ireDesignNodalSupportsRow\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\x12w\n\x0csupport_type\x18\x03 \x01(\x0e\x32\\.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.SupportTypeH\x02\x88\x01\x01\x12\x19\n\x0csupport_in_z\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12 \n\x13support_spring_in_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x81\x01\n\x11\x65\x63\x63\x65ntricity_type\x18\x06 \x01(\x0e\x32\x61.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.EccentricityTypeH\x05\x88\x01\x01\x12\x1c\n\x0f\x65\x63\x63\x65ntricity_ez\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12%\n\x18restraint_spring_about_x\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12%\n\x18restraint_spring_about_z\x18\t \x01(\x01H\x08\x88\x01\x01\x12v\n\x0csupport_in_y\x18\n \x01(\x0e\x32[.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.SupportInYH\t\x88\x01\x01\x12\x80\x01\n\x11restraint_about_x\x18\x0b \x01(\x0e\x32`.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.RestraintAboutXH\n\x88\x01\x01\x12\x80\x01\n\x11restraint_about_z\x18\x0c \x01(\x0e\x32`.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.RestraintAboutZH\x0b\x88\x01\x01\x12\r\n\x05nodes\x18\r \x03(\x05\"\xfd\x02\n\x0bSupportType\x12\x15\n\x11SUPPORT_TYPE_NONE\x10\x00\x12\x1a\n\x16SUPPORT_TYPE_FIXED_ALL\x10\x08\x12\x1b\n\x17SUPPORT_TYPE_FIXED_IN_Y\x10\x02\x12\x1b\n\x17SUPPORT_TYPE_FIXED_IN_Z\x10\x01\x12\'\n#SUPPORT_TYPE_FIXED_IN_Z_AND_TORSION\x10\x04\x12\x33\n/SUPPORT_TYPE_FIXED_IN_Z_AND_TORSION_AND_WARPING\x10\x06\x12)\n%SUPPORT_TYPE_FIXED_IN_Z_Y_AND_TORSION\x10\x05\x12\x35\n1SUPPORT_TYPE_FIXED_IN_Z_Y_AND_TORSION_AND_WARPING\x10\x07\x12\x1d\n\x19SUPPORT_TYPE_INDIVIDUALLY\x10\t\x12\"\n\x1eSUPPORT_TYPE_RESTRAINT_ABOUT_X\x10\x03\"\x9e\x01\n\x10\x45\x63\x63\x65ntricityType\x12\x1a\n\x16\x45\x43\x43\x45NTRICITY_TYPE_NONE\x10\x00\x12%\n!ECCENTRICITY_TYPE_AT_LOWER_FLANGE\x10\x02\x12%\n!ECCENTRICITY_TYPE_AT_UPPER_FLANGE\x10\x01\x12 \n\x1c\x45\x43\x43\x45NTRICITY_TYPE_USER_VALUE\x10\x03\"}\n\nSupportInY\x12\"\n\x1eSUPPORT_IN_Y_SUPPORT_STATUS_NO\x10\x00\x12&\n\"SUPPORT_IN_Y_SUPPORT_STATUS_SPRING\x10\x01\x12#\n\x1fSUPPORT_IN_Y_SUPPORT_STATUS_YES\x10\x02\"\x91\x01\n\x0fRestraintAboutX\x12\'\n#RESTRAINT_ABOUT_X_SUPPORT_STATUS_NO\x10\x00\x12+\n\'RESTRAINT_ABOUT_X_SUPPORT_STATUS_SPRING\x10\x01\x12(\n$RESTRAINT_ABOUT_X_SUPPORT_STATUS_YES\x10\x02\"\x91\x01\n\x0fRestraintAboutZ\x12\'\n#RESTRAINT_ABOUT_Z_SUPPORT_STATUS_NO\x10\x00\x12+\n\'RESTRAINT_ABOUT_Z_SUPPORT_STATUS_SPRING\x10\x01\x12(\n$RESTRAINT_ABOUT_Z_SUPPORT_STATUS_YES\x10\x02\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_support_typeB\x0f\n\r_support_in_zB\x16\n\x14_support_spring_in_yB\x14\n\x12_eccentricity_typeB\x12\n\x10_eccentricity_ezB\x1b\n\x19_restraint_spring_about_xB\x1b\n\x19_restraint_spring_about_zB\x0f\n\r_support_in_yB\x14\n\x12_restraint_about_xB\x14\n\x12_restraint_about_z\x1ar\n\x16\x46ireDesignFactorsTable\x12X\n\x04rows\x18\x01 \x03(\x0b\x32J.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignFactorsRow\x1a\xec\x03\n\x14\x46ireDesignFactorsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x08 \x01(\x01H\x07\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1ar\n\x16\x46ireDesignLengthsTable\x12X\n\x04rows\x18\x01 \x03(\x0b\x32J.dlubal.api.rfem.timber_design.TimberEffectiveLengths.FireDesignLengthsRow\x1a\xec\x03\n\x14\x46ireDesignLengthsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x08 \x01(\x01H\x07\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1a\x84\x01\n\x1fStabilityImportDataFactorsTable\x12\x61\n\x04rows\x18\x01 \x03(\x0b\x32S.dlubal.api.rfem.timber_design.TimberEffectiveLengths.StabilityImportDataFactorsRow\x1a\xd5\x01\n\x1dStabilityImportDataFactorsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_v\x1a\x84\x01\n\x1fStabilityImportDataLengthsTable\x12\x61\n\x04rows\x18\x01 \x03(\x0b\x32S.dlubal.api.rfem.timber_design.TimberEffectiveLengths.StabilityImportDataLengthsRow\x1a\xd5\x01\n\x1dStabilityImportDataLengthsRow\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 \n\x13\x66lexural_buckling_u\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x66lexural_buckling_v\x18\x04 \x01(\x01H\x03\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_v\"q\n\x17\x42ucklingFactorValueType\x12*\n&BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL\x10\x00\x12*\n&BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED\x10\x01\"\x85\x01\n\x11\x44\x65terminationType\x12!\n\x1d\x44\x45TERMINATION_TYPE_ANALYTICAL\x10\x00\x12(\n$DETERMINATION_TYPE_EIGENVALUE_SOLVER\x10\x01\x12#\n\x1f\x44\x45TERMINATION_TYPE_USER_DEFINED\x10\x02\"\xbd\x01\n\x1c\x44\x65terminationOmega2Sans10163\x12/\n+DETERMINATION_OMEGA2_SANS_10163_BASIC_VALUE\x10\x00\x12:\n6DETERMINATION_OMEGA2_SANS_10163_ACC_TO_EQUATION_13_6_1\x10\x01\x12\x30\n,DETERMINATION_OMEGA2_SANS_10163_USER_DEFINED\x10\x02\"\x81\x01\n\x1c\x44\x65terminationOmega3Sans10163\x12/\n+DETERMINATION_OMEGA3_SANS_10163_BASIC_VALUE\x10\x00\x12\x30\n,DETERMINATION_OMEGA3_SANS_10163_USER_DEFINED\x10\x01\"z\n\x19\x44\x65terminationBetaENbr7190\x12-\n)DETERMINATION_BETA_E_NBR_7190_BASIC_VALUE\x10\x00\x12.\n*DETERMINATION_BETA_E_NBR_7190_USER_DEFINED\x10\x01\"}\n\x1a\x44\x65terminationGammaFNbr7190\x12.\n*DETERMINATION_GAMMA_F_NBR_7190_BASIC_VALUE\x10\x00\x12/\n+DETERMINATION_GAMMA_F_NBR_7190_USER_DEFINED\x10\x01\"\xe9\x01\n\x19\x44\x65terminationCbCsaO862024\x12-\n)DETERMINATION_CB_CSA_O86_2024_BASIC_VALUE\x10\x00\x12;\n7DETERMINATION_CB_CSA_O86_2024_ACC_TO_EQUATION_7_5_6_4_4\x10\x01\x12\x30\n,DETERMINATION_CB_CSA_O86_2024_ACC_TO_TAB_7_4\x10\x02\x12.\n*DETERMINATION_CB_CSA_O86_2024_USER_DEFINED\x10\x03\">\n\nMemberType\x12\x14\n\x10MEMBER_TYPE_BEAM\x10\x00\x12\x1a\n\x16MEMBER_TYPE_CANTILEVER\x10\x01\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x1c\n\x1a_flexural_buckling_about_yB\x1c\n\x1a_flexural_buckling_about_zB\x1d\n\x1b_lateral_torsional_bucklingB\x1d\n\x1b_buckling_factor_value_typeB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x11\n\x0f_nodal_supportsB\n\n\x08_factorsB\n\n\x08_lengthsB\x15\n\x13_intermediate_nodesB\x17\n\x15_different_propertiesB\x1e\n\x1c_factors_definition_absoluteB\x1d\n\x1b_fire_design_nodal_supportsB\x16\n\x14_fire_design_factorsB\x16\n\x14_fire_design_lengthsB!\n\x1f_fire_design_intermediate_nodesB#\n!_fire_design_different_propertiesB*\n(_fire_design_factors_definition_absoluteB)\n\'_fire_design_different_buckling_factorsB)\n\'_import_from_stability_analysis_enabledB4\n2_stability_import_data_factors_definition_absoluteB!\n\x1f_stability_import_data_member_yB\"\n _stability_import_data_loading_yB&\n$_stability_import_data_mode_number_yB!\n\x1f_stability_import_data_member_zB\"\n _stability_import_data_loading_zB&\n$_stability_import_data_mode_number_zB \n\x1e_stability_import_data_factorsB \n\x1e_stability_import_data_lengthsB\'\n%_stability_import_data_user_defined_yB\'\n%_stability_import_data_user_defined_zB\x15\n\x13_determination_typeB\"\n _determination_omega2_sans_10163B\x1b\n\x19_factor_omega2_sans_10163B\"\n _determination_omega3_sans_10163B\x1b\n\x19_factor_omega3_sans_10163B \n\x1e_determination_beta_e_nbr_7190B\x19\n\x17_factor_beta_e_nbr_7190B!\n\x1f_determination_gamma_f_nbr_7190B\x1a\n\x18_factor_gamma_f_nbr_7190B \n\x1e_determination_cb_csa_o86_2024B\x19\n\x17_factor_cb_csa_o86_2024B\x0e\n\x0c_member_typeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.timber_design.timber_effective_lengths_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_TIMBEREFFECTIVELENGTHS']._serialized_start=129
36
+ _globals['_TIMBEREFFECTIVELENGTHS']._serialized_end=13512
37
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_start=3459
38
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_end=3565
39
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_start=3568
40
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_end=5605
41
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=4398
42
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=4779
43
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_start=4782
44
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_end=4940
45
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_start=4942
46
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_end=5067
47
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_start=5070
48
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_end=5215
49
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_start=5218
50
+ _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_end=5363
51
+ _globals['_TIMBEREFFECTIVELENGTHS_FACTORSTABLE']._serialized_start=5607
52
+ _globals['_TIMBEREFFECTIVELENGTHS_FACTORSTABLE']._serialized_end=5701
53
+ _globals['_TIMBEREFFECTIVELENGTHS_FACTORSROW']._serialized_start=5704
54
+ _globals['_TIMBEREFFECTIVELENGTHS_FACTORSROW']._serialized_end=6186
55
+ _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSTABLE']._serialized_start=6188
56
+ _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSTABLE']._serialized_end=6282
57
+ _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSROW']._serialized_start=6285
58
+ _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSROW']._serialized_end=6767
59
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSTABLE']._serialized_start=6769
60
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSTABLE']._serialized_end=6895
61
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW']._serialized_start=6898
62
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW']._serialized_end=8998
63
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=4398
64
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=4779
65
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_start=4782
66
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_end=4940
67
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTINY']._serialized_start=4942
68
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTINY']._serialized_end=5067
69
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_start=5070
70
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_end=5215
71
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_start=5218
72
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_end=5363
73
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSTABLE']._serialized_start=9000
74
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSTABLE']._serialized_end=9114
75
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSROW']._serialized_start=9117
76
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSROW']._serialized_end=9609
77
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSTABLE']._serialized_start=9611
78
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSTABLE']._serialized_end=9725
79
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSROW']._serialized_start=9728
80
+ _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSROW']._serialized_end=10220
81
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_start=10223
82
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_end=10355
83
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_start=10358
84
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_end=10571
85
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_start=10574
86
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_end=10706
87
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_start=10709
88
+ _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_end=10922
89
+ _globals['_TIMBEREFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_start=10924
90
+ _globals['_TIMBEREFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_end=11037
91
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONTYPE']._serialized_start=11040
92
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONTYPE']._serialized_end=11173
93
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA2SANS10163']._serialized_start=11176
94
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA2SANS10163']._serialized_end=11365
95
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA3SANS10163']._serialized_start=11368
96
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA3SANS10163']._serialized_end=11497
97
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONBETAENBR7190']._serialized_start=11499
98
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONBETAENBR7190']._serialized_end=11621
99
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONGAMMAFNBR7190']._serialized_start=11623
100
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONGAMMAFNBR7190']._serialized_end=11748
101
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONCBCSAO862024']._serialized_start=11751
102
+ _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONCBCSAO862024']._serialized_end=11984
103
+ _globals['_TIMBEREFFECTIVELENGTHS_MEMBERTYPE']._serialized_start=11986
104
+ _globals['_TIMBEREFFECTIVELENGTHS_MEMBERTYPE']._serialized_end=12048
105
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,48 @@
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/timber_design/timber_member_local_section_reduction.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/timber_design/timber_member_local_section_reduction.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'\nIdlubal/api/rfem/timber_design/timber_member_local_section_reduction.proto\x12\x1d\x64lubal.api.rfem.timber_design\"\xd9\x16\n!TimberMemberLocalSectionReduction\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\x0f\n\x07members\x18\x04 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x05 \x03(\x05\x12\x12\n\ndeep_beams\x18\x06 \x03(\x05\x12\x13\n\x0bshear_walls\x18\x07 \x03(\x05\x12i\n\ncomponents\x18\x08 \x01(\x0b\x32P.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsTableH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\t \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\n \x01(\tH\x05\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0b \x01(\tH\x06\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0c \x01(\tH\x07\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\r \x01(\tH\x08\x88\x01\x01\x1ao\n\x0f\x43omponentsTable\x12\\\n\x04rows\x18\x01 \x03(\x0b\x32N.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsRow\x1a\xed\x10\n\rComponentsRow\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\x12y\n\x0ereduction_type\x18\x03 \x01(\x0e\x32\\.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsRow.ReductionTypeH\x02\x88\x01\x01\x12\x15\n\x08position\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x15\n\x08multiple\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12\x11\n\x04note\x18\x06 \x01(\tH\x05\x88\x01\x01\x12\x1c\n\x0fmultiple_number\x18\x07 \x01(\x05H\x06\x88\x01\x01\x12\x99\x01\n\x1fmultiple_offset_definition_type\x18\x08 \x01(\x0e\x32k.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsRow.MultipleOffsetDefinitionTypeH\x07\x88\x01\x01\x12\x1c\n\x0fmultiple_offset\x18\t \x01(\x01H\x08\x88\x01\x01\x12\x13\n\x06length\x18\n \x01(\x01H\t\x88\x01\x01\x12t\n\x0borientation\x18\x0b \x01(\x0e\x32Z.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsRow.OrientationH\n\x88\x01\x01\x12\x12\n\x05\x64\x65pth\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12p\n\tdirection\x18\r \x01(\x0e\x32X.dlubal.api.rfem.timber_design.TimberMemberLocalSectionReduction.ComponentsRow.DirectionH\x0c\x88\x01\x01\x12\x16\n\tstability\x18\x0e \x01(\x08H\r\x88\x01\x01\x12\x18\n\x0b\x66ire_design\x18\x0f \x01(\x08H\x0e\x88\x01\x01\x12\x1e\n\x11\x66ire_exposure_top\x18\x10 \x01(\x08H\x0f\x88\x01\x01\x12\x1f\n\x12\x66ire_exposure_left\x18\x11 \x01(\x08H\x10\x88\x01\x01\x12 \n\x13\x66ire_exposure_right\x18\x12 \x01(\x08H\x11\x88\x01\x01\x12!\n\x14\x66ire_exposure_bottom\x18\x13 \x01(\x08H\x12\x88\x01\x01\x12\x14\n\x07support\x18\x14 \x01(\x08H\x13\x88\x01\x01\x12\x1d\n\x10support_distance\x18\x15 \x01(\x01H\x14\x88\x01\x01\x12&\n\x19stiffening_elements_apply\x18\x16 \x01(\x08H\x15\x88\x01\x01\x12\'\n\x1astiffening_elements_number\x18\x17 \x01(\x05H\x16\x88\x01\x01\x12\'\n\x1astiffening_elements_object\x18\x18 \x01(\x05H\x17\x88\x01\x01\"\xd4\x01\n\rReductionType\x12\x1a\n\x16REDUCTION_TYPE_UNKNOWN\x10\x00\x12\x35\n1REDUCTION_TYPE_REDUCTION_COMPONENT_TYPE_END_NOTCH\x10\x07\x12\x37\n3REDUCTION_TYPE_REDUCTION_COMPONENT_TYPE_INNER_NOTCH\x10\x06\x12\x37\n3REDUCTION_TYPE_REDUCTION_COMPONENT_TYPE_START_NOTCH\x10\x05\"z\n\x1cMultipleOffsetDefinitionType\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_ABSOLUTE\x10\x00\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_RELATIVE\x10\x01\"W\n\x0bOrientation\x12#\n\x1fORIENTATION_E_ORIENTATION_DEPTH\x10\x00\x12#\n\x1fORIENTATION_E_ORIENTATION_WIDTH\x10\x01\"\xb3\x01\n\tDirection\x12(\n$DIRECTION_E_DIRECTION_DEPTH_POSITIVE\x10\x00\x12(\n$DIRECTION_E_DIRECTION_DEPTH_NEGATIVE\x10\x01\x12(\n$DIRECTION_E_DIRECTION_WIDTH_NEGATIVE\x10\x03\x12(\n$DIRECTION_E_DIRECTION_WIDTH_POSITIVE\x10\x02\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x11\n\x0f_reduction_typeB\x0b\n\t_positionB\x0b\n\t_multipleB\x07\n\x05_noteB\x12\n\x10_multiple_numberB\"\n _multiple_offset_definition_typeB\x12\n\x10_multiple_offsetB\t\n\x07_lengthB\x0e\n\x0c_orientationB\x08\n\x06_depthB\x0c\n\n_directionB\x0c\n\n_stabilityB\x0e\n\x0c_fire_designB\x14\n\x12_fire_exposure_topB\x15\n\x13_fire_exposure_leftB\x16\n\x14_fire_exposure_rightB\x17\n\x15_fire_exposure_bottomB\n\n\x08_supportB\x13\n\x11_support_distanceB\x1c\n\x1a_stiffening_elements_applyB\x1d\n\x1b_stiffening_elements_numberB\x1d\n\x1b_stiffening_elements_objectB\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_componentsB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB\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.timber_design.timber_member_local_section_reduction_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION']._serialized_start=109
35
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION']._serialized_end=3014
36
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_start=570
37
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_end=681
38
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_start=684
39
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_end=2841
40
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_start=1781
41
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_end=1993
42
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_start=1995
43
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_end=2117
44
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_ORIENTATION']._serialized_start=2119
45
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_ORIENTATION']._serialized_end=2206
46
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_DIRECTION']._serialized_start=2209
47
+ _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_DIRECTION']._serialized_end=2388
48
+ # @@protoc_insertion_point(module_scope)