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
@@ -1,48 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld.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/rstab/types_for_steel_design/steel_member_transverse_weld.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'\nJdlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld.proto\x12\'dlubal.api.rstab.types_for_steel_design\"\x95\x12\n\x19SteelMemberTransverseWeld\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\x12k\n\ncomponents\x18\x06 \x01(\x0b\x32R.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsTableH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x06\x88\x01\x01\x12!\n\x14id_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0b \x01(\tH\x08\x88\x01\x01\x1aq\n\x0f\x43omponentsTable\x12^\n\x04rows\x18\x01 \x03(\x0b\x32P.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsRow\x1a\xd6\x0c\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\x12q\n\tweld_type\x18\x03 \x01(\x0e\x32Y.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsRow.WeldTypeH\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\x9b\x01\n\x1fmultiple_offset_definition_type\x18\x08 \x01(\x0e\x32m.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsRow.MultipleOffsetDefinitionTypeH\x07\x88\x01\x01\x12\x1c\n\x0fmultiple_offset\x18\t \x01(\x01H\x08\x88\x01\x01\x12\x11\n\x04size\x18\n \x01(\x01H\t\x88\x01\x01\x12}\n\x10method_ec_or_adm\x18\x0b \x01(\x0e\x32^.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsRow.MethodEcOrAdmH\n\x88\x01\x01\x12q\n\tmethod_gb\x18\x0c \x01(\x0e\x32Y.dlubal.api.rstab.types_for_steel_design.SteelMemberTransverseWeld.ComponentsRow.MethodGbH\x0b\x88\x01\x01\x12!\n\x14number_of_heat_paths\x18\r \x01(\x05H\x0c\x88\x01\x01\x12;\n.temperature_of_material_between_welding_cycles\x18\x0e \x01(\x01H\r\x88\x01\x01\"\\\n\x08WeldType\x12&\n\"WELD_TYPE_WELD_COMPONENT_TYPE_BUTT\x10\x00\x12(\n$WELD_TYPE_WELD_COMPONENT_TYPE_FILLET\x10\x01\"z\n\x1cMultipleOffsetDefinitionType\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_ABSOLUTE\x10\x00\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_RELATIVE\x10\x01\"a\n\rMethodEcOrAdm\x12\'\n#METHOD_EC_OR_ADM_WELDING_METHOD_TIG\x10\x00\x12\'\n#METHOD_EC_OR_ADM_WELDING_METHOD_MIG\x10\x01\"\xdd\x01\n\x08MethodGb\x12!\n\x1dMETHOD_GB_WELDING_METHOD_SMAW\x10\x00\x12!\n\x1dMETHOD_GB_WELDING_METHOD_FCAW\x10\x01\x12#\n\x1fMETHOD_GB_WELDING_METHOD_FCAW_S\x10\x04\x12!\n\x1dMETHOD_GB_WELDING_METHOD_GMAW\x10\x03\x12!\n\x1dMETHOD_GB_WELDING_METHOD_GTAW\x10\x05\x12 \n\x1cMETHOD_GB_WELDING_METHOD_SAW\x10\x02\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0c\n\n_weld_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\x07\n\x05_sizeB\x13\n\x11_method_ec_or_admB\x0c\n\n_method_gbB\x17\n\x15_number_of_heat_pathsB1\n/_temperature_of_material_between_welding_cyclesB\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.rstab.types_for_steel_design.steel_member_transverse_weld_pb2', _globals)
32
- if not _descriptor._USE_C_DESCRIPTORS:
33
- DESCRIPTOR._loaded_options = None
34
- _globals['_STEELMEMBERTRANSVERSEWELD']._serialized_start=120
35
- _globals['_STEELMEMBERTRANSVERSEWELD']._serialized_end=2445
36
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSTABLE']._serialized_start=534
37
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSTABLE']._serialized_end=647
38
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW']._serialized_start=650
39
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW']._serialized_end=2272
40
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_WELDTYPE']._serialized_start=1465
41
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_WELDTYPE']._serialized_end=1557
42
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_start=1559
43
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_end=1681
44
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODECORADM']._serialized_start=1683
45
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODECORADM']._serialized_end=1780
46
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODGB']._serialized_start=1783
47
- _globals['_STEELMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODGB']._serialized_end=2004
48
- # @@protoc_insertion_point(module_scope)
@@ -1,105 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_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/rstab/types_for_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.rstab import object_id_pb2 as dlubal_dot_api_dot_rstab_dot_object__id__pb2
26
-
27
-
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nGdlubal/api/rstab/types_for_timber_design/timber_effective_lengths.proto\x12(dlubal.api.rstab.types_for_timber_design\x1a dlubal/api/rstab/object_id.proto\"\xcak\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\x12\x81\x01\n\x1a\x62uckling_factor_value_type\x18\n \x01(\x0e\x32X.dlubal.api.rstab.types_for_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\x12p\n\x0enodal_supports\x18\r \x01(\x0b\x32S.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.NodalSupportsTableH\n\x88\x01\x01\x12\x63\n\x07\x66\x61\x63tors\x18\x0e \x01(\x0b\x32M.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FactorsTableH\x0b\x88\x01\x01\x12\x63\n\x07lengths\x18\x0f \x01(\x0b\x32M.dlubal.api.rstab.types_for_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\x86\x01\n\x1a\x66ire_design_nodal_supports\x18\x13 \x01(\x0b\x32].dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FireDesignNodalSupportsTableH\x10\x88\x01\x01\x12y\n\x13\x66ire_design_factors\x18\x14 \x01(\x0b\x32W.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FireDesignFactorsTableH\x11\x88\x01\x01\x12y\n\x13\x66ire_design_lengths\x18\x15 \x01(\x0b\x32W.dlubal.api.rstab.types_for_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\x12H\n\x1fstability_import_data_loading_y\x18\x1d \x01(\x0b\x32\x1a.dlubal.api.rstab.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\x12H\n\x1fstability_import_data_loading_z\x18 \x01(\x0b\x32\x1a.dlubal.api.rstab.ObjectIdH\x1d\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_z\x18! \x01(\x05H\x1e\x88\x01\x01\x12\x8c\x01\n\x1dstability_import_data_factors\x18\" \x01(\x0b\x32`.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.StabilityImportDataFactorsTableH\x1f\x88\x01\x01\x12\x8c\x01\n\x1dstability_import_data_lengths\x18# \x01(\x0b\x32`.dlubal.api.rstab.types_for_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\x12s\n\x12\x64\x65termination_type\x18& \x01(\x0e\x32R.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationTypeH#\x88\x01\x01\x12\x8b\x01\n\x1f\x64\x65termination_omega2_sans_10163\x18\' \x01(\x0e\x32].dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationOmega2Sans10163H$\x88\x01\x01\x12%\n\x18\x66\x61\x63tor_omega2_sans_10163\x18( \x01(\x01H%\x88\x01\x01\x12\x8b\x01\n\x1f\x64\x65termination_omega3_sans_10163\x18) \x01(\x0e\x32].dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationOmega3Sans10163H&\x88\x01\x01\x12%\n\x18\x66\x61\x63tor_omega3_sans_10163\x18* \x01(\x01H\'\x88\x01\x01\x12\x86\x01\n\x1d\x64\x65termination_beta_e_nbr_7190\x18+ \x01(\x0e\x32Z.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationBetaENbr7190H(\x88\x01\x01\x12#\n\x16\x66\x61\x63tor_beta_e_nbr_7190\x18, \x01(\x01H)\x88\x01\x01\x12\x88\x01\n\x1e\x64\x65termination_gamma_f_nbr_7190\x18- \x01(\x0e\x32[.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationGammaFNbr7190H*\x88\x01\x01\x12$\n\x17\x66\x61\x63tor_gamma_f_nbr_7190\x18. \x01(\x01H+\x88\x01\x01\x12\x86\x01\n\x1d\x64\x65termination_cb_csa_o86_2024\x18/ \x01(\x0e\x32Z.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.DeterminationCbCsaO862024H,\x88\x01\x01\x12#\n\x16\x66\x61\x63tor_cb_csa_o86_2024\x18\x30 \x01(\x01H-\x88\x01\x01\x12\x65\n\x0bmember_type\x18\x31 \x01(\x0e\x32K.dlubal.api.rstab.types_for_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\x1au\n\x12NodalSupportsTable\x12_\n\x04rows\x18\x01 \x03(\x0b\x32Q.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.NodalSupportsRow\x1a\xaf\x10\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\x12x\n\x0csupport_type\x18\x03 \x01(\x0e\x32].dlubal.api.rstab.types_for_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\x12\x82\x01\n\x11\x65\x63\x63\x65ntricity_type\x18\x06 \x01(\x0e\x32\x62.dlubal.api.rstab.types_for_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\x12w\n\x0csupport_in_y\x18\n \x01(\x0e\x32\\.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.NodalSupportsRow.SupportInYH\t\x88\x01\x01\x12\x81\x01\n\x11restraint_about_x\x18\x0b \x01(\x0e\x32\x61.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.NodalSupportsRow.RestraintAboutXH\n\x88\x01\x01\x12\x81\x01\n\x11restraint_about_z\x18\x0c \x01(\x0e\x32\x61.dlubal.api.rstab.types_for_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\x1ai\n\x0c\x46\x61\x63torsTable\x12Y\n\x04rows\x18\x01 \x03(\x0b\x32K.dlubal.api.rstab.types_for_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\x1ai\n\x0cLengthsTable\x12Y\n\x04rows\x18\x01 \x03(\x0b\x32K.dlubal.api.rstab.types_for_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\x89\x01\n\x1c\x46ireDesignNodalSupportsTable\x12i\n\x04rows\x18\x01 \x03(\x0b\x32[.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow\x1a\xed\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\x12\x82\x01\n\x0csupport_type\x18\x03 \x01(\x0e\x32g.dlubal.api.rstab.types_for_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\x8c\x01\n\x11\x65\x63\x63\x65ntricity_type\x18\x06 \x01(\x0e\x32l.dlubal.api.rstab.types_for_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\x12\x81\x01\n\x0csupport_in_y\x18\n \x01(\x0e\x32\x66.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.SupportInYH\t\x88\x01\x01\x12\x8b\x01\n\x11restraint_about_x\x18\x0b \x01(\x0e\x32k.dlubal.api.rstab.types_for_timber_design.TimberEffectiveLengths.FireDesignNodalSupportsRow.RestraintAboutXH\n\x88\x01\x01\x12\x8b\x01\n\x11restraint_about_z\x18\x0c \x01(\x0e\x32k.dlubal.api.rstab.types_for_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\x1a}\n\x16\x46ireDesignFactorsTable\x12\x63\n\x04rows\x18\x01 \x03(\x0b\x32U.dlubal.api.rstab.types_for_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\x1a}\n\x16\x46ireDesignLengthsTable\x12\x63\n\x04rows\x18\x01 \x03(\x0b\x32U.dlubal.api.rstab.types_for_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\x8f\x01\n\x1fStabilityImportDataFactorsTable\x12l\n\x04rows\x18\x01 \x03(\x0b\x32^.dlubal.api.rstab.types_for_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\x8f\x01\n\x1fStabilityImportDataLengthsTable\x12l\n\x04rows\x18\x01 \x03(\x0b\x32^.dlubal.api.rstab.types_for_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.rstab.types_for_timber_design.timber_effective_lengths_pb2', _globals)
33
- if not _descriptor._USE_C_DESCRIPTORS:
34
- DESCRIPTOR._loaded_options = None
35
- _globals['_TIMBEREFFECTIVELENGTHS']._serialized_start=152
36
- _globals['_TIMBEREFFECTIVELENGTHS']._serialized_end=13922
37
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_start=3665
38
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_end=3782
39
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_start=3785
40
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_end=5880
41
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=4673
42
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=5054
43
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_start=5057
44
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_end=5215
45
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_start=5217
46
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_end=5342
47
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_start=5345
48
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_end=5490
49
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_start=5493
50
- _globals['_TIMBEREFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_end=5638
51
- _globals['_TIMBEREFFECTIVELENGTHS_FACTORSTABLE']._serialized_start=5882
52
- _globals['_TIMBEREFFECTIVELENGTHS_FACTORSTABLE']._serialized_end=5987
53
- _globals['_TIMBEREFFECTIVELENGTHS_FACTORSROW']._serialized_start=5990
54
- _globals['_TIMBEREFFECTIVELENGTHS_FACTORSROW']._serialized_end=6472
55
- _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSTABLE']._serialized_start=6474
56
- _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSTABLE']._serialized_end=6579
57
- _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSROW']._serialized_start=6582
58
- _globals['_TIMBEREFFECTIVELENGTHS_LENGTHSROW']._serialized_end=7064
59
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSTABLE']._serialized_start=7067
60
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSTABLE']._serialized_end=7204
61
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW']._serialized_start=7207
62
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW']._serialized_end=9364
63
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=4673
64
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=5054
65
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_start=5057
66
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_end=5215
67
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTINY']._serialized_start=5217
68
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_SUPPORTINY']._serialized_end=5342
69
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_start=5345
70
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_end=5490
71
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_start=5493
72
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNNODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_end=5638
73
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSTABLE']._serialized_start=9366
74
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSTABLE']._serialized_end=9491
75
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSROW']._serialized_start=9494
76
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNFACTORSROW']._serialized_end=9986
77
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSTABLE']._serialized_start=9988
78
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSTABLE']._serialized_end=10113
79
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSROW']._serialized_start=10116
80
- _globals['_TIMBEREFFECTIVELENGTHS_FIREDESIGNLENGTHSROW']._serialized_end=10608
81
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_start=10611
82
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_end=10754
83
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_start=10757
84
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_end=10970
85
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_start=10973
86
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_end=11116
87
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_start=11119
88
- _globals['_TIMBEREFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_end=11332
89
- _globals['_TIMBEREFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_start=11334
90
- _globals['_TIMBEREFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_end=11447
91
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONTYPE']._serialized_start=11450
92
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONTYPE']._serialized_end=11583
93
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA2SANS10163']._serialized_start=11586
94
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA2SANS10163']._serialized_end=11775
95
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA3SANS10163']._serialized_start=11778
96
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONOMEGA3SANS10163']._serialized_end=11907
97
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONBETAENBR7190']._serialized_start=11909
98
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONBETAENBR7190']._serialized_end=12031
99
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONGAMMAFNBR7190']._serialized_start=12033
100
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONGAMMAFNBR7190']._serialized_end=12158
101
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONCBCSAO862024']._serialized_start=12161
102
- _globals['_TIMBEREFFECTIVELENGTHS_DETERMINATIONCBCSAO862024']._serialized_end=12394
103
- _globals['_TIMBEREFFECTIVELENGTHS_MEMBERTYPE']._serialized_start=12396
104
- _globals['_TIMBEREFFECTIVELENGTHS_MEMBERTYPE']._serialized_end=12458
105
- # @@protoc_insertion_point(module_scope)
@@ -1,48 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_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/rstab/types_for_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'\nTdlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction.proto\x12(dlubal.api.rstab.types_for_timber_design\"\xf3\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\x12t\n\ncomponents\x18\x06 \x01(\x0b\x32[.dlubal.api.rstab.types_for_timber_design.TimberMemberLocalSectionReduction.ComponentsTableH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x06\x88\x01\x01\x12!\n\x14id_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0b \x01(\tH\x08\x88\x01\x01\x1az\n\x0f\x43omponentsTable\x12g\n\x04rows\x18\x01 \x03(\x0b\x32Y.dlubal.api.rstab.types_for_timber_design.TimberMemberLocalSectionReduction.ComponentsRow\x1a\x9a\x11\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\x12\x84\x01\n\x0ereduction_type\x18\x03 \x01(\x0e\x32g.dlubal.api.rstab.types_for_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\xa4\x01\n\x1fmultiple_offset_definition_type\x18\x08 \x01(\x0e\x32v.dlubal.api.rstab.types_for_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\x12\x7f\n\x0borientation\x18\x0b \x01(\x0e\x32\x65.dlubal.api.rstab.types_for_timber_design.TimberMemberLocalSectionReduction.ComponentsRow.OrientationH\n\x88\x01\x01\x12\x12\n\x05\x64\x65pth\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12{\n\tdirection\x18\r \x01(\x0e\x32\x63.dlubal.api.rstab.types_for_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.rstab.types_for_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=131
35
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION']._serialized_end=3062
36
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_start=562
37
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_end=684
38
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_start=687
39
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_end=2889
40
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_start=1829
41
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_end=2041
42
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_start=2043
43
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_end=2165
44
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_ORIENTATION']._serialized_start=2167
45
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_ORIENTATION']._serialized_end=2254
46
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_DIRECTION']._serialized_start=2257
47
- _globals['_TIMBERMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_DIRECTION']._serialized_end=2436
48
- # @@protoc_insertion_point(module_scope)
@@ -1,38 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_timber_design/timber_moisture_class.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/rstab/types_for_timber_design/timber_moisture_class.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'\nDdlubal/api/rstab/types_for_timber_design/timber_moisture_class.proto\x12(dlubal.api.rstab.types_for_timber_design\"\x81\x05\n\x13TimberMoistureClass\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 \n\x13\x61ssigned_to_objects\x18\x06 \x01(\tH\x03\x88\x01\x01\x12h\n\x0emoisture_class\x18\x07 \x01(\x0e\x32K.dlubal.api.rstab.types_for_timber_design.TimberMoistureClass.MoistureClassH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\"m\n\rMoistureClass\x12\x1a\n\x16MOISTURE_CLASS_UNKNOWN\x10\x00\x12\x14\n\x10MOISTURE_CLASS_1\x10\x01\x12\x14\n\x10MOISTURE_CLASS_2\x10\x02\x12\x14\n\x10MOISTURE_CLASS_3\x10\x03\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x16\n\x14_assigned_to_objectsB\x11\n\x0f_moisture_classB\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.rstab.types_for_timber_design.timber_moisture_class_pb2', _globals)
32
- if not _descriptor._USE_C_DESCRIPTORS:
33
- DESCRIPTOR._loaded_options = None
34
- _globals['_TIMBERMOISTURECLASS']._serialized_start=115
35
- _globals['_TIMBERMOISTURECLASS']._serialized_end=756
36
- _globals['_TIMBERMOISTURECLASS_MOISTURECLASS']._serialized_start=490
37
- _globals['_TIMBERMOISTURECLASS_MOISTURECLASS']._serialized_end=599
38
- # @@protoc_insertion_point(module_scope)
@@ -1,38 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_timber_design/timber_screw_type.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/rstab/types_for_timber_design/timber_screw_type.proto'
19
- )
20
- # @@protoc_insertion_point(imports)
21
-
22
- _sym_db = _symbol_database.Default()
23
-
24
-
25
-
26
-
27
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n@dlubal/api/rstab/types_for_timber_design/timber_screw_type.proto\x12(dlubal.api.rstab.types_for_timber_design\"\xd0\n\n\x0fTimberScrewType\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\\\n\nscrew_type\x18\x04 \x01(\x0e\x32\x43.dlubal.api.rstab.types_for_timber_design.TimberScrewType.ScrewTypeH\x03\x88\x01\x01\x12\x1b\n\x0eouter_diameter\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x1a\n\rcore_diameter\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x19\n\x0cscrew_length\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1a\n\rthread_length\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0f\x65lastic_modulus\x18\t \x01(\x01H\x08\x88\x01\x01\x12\x1b\n\x0eyield_strength\x18\n \x01(\x01H\t\x88\x01\x01\x12,\n\x1f\x63haracteristic_tensile_strength\x18\x0b \x01(\x01H\n\x88\x01\x01\x12/\n\"characteristic_withdrawal_strength\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12\x1e\n\x11reference_density\x18\r \x01(\x01H\x0c\x88\x01\x01\x12$\n\x17minimum_screw_spacing_1\x18\x0e \x01(\x01H\r\x88\x01\x01\x12$\n\x17minimum_screw_spacing_2\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12*\n\x1dminimum_screw_edge_distance_1\x18\x10 \x01(\x01H\x0f\x88\x01\x01\x12*\n\x1dminimum_screw_edge_distance_2\x18\x11 \x01(\x01H\x10\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x12 \x01(\tH\x11\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x13 \x01(\x08H\x12\x88\x01\x01\x12#\n\x16generating_object_info\x18\x14 \x01(\tH\x13\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x15 \x01(\tH\x14\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x16 \x01(\tH\x15\x88\x01\x01\"*\n\tScrewType\x12\x1d\n\x19SCREW_TYPE_FULLY_THREADED\x10\x00\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_screw_typeB\x11\n\x0f_outer_diameterB\x10\n\x0e_core_diameterB\x0f\n\r_screw_lengthB\x10\n\x0e_thread_lengthB\x12\n\x10_elastic_modulusB\x11\n\x0f_yield_strengthB\"\n _characteristic_tensile_strengthB%\n#_characteristic_withdrawal_strengthB\x14\n\x12_reference_densityB\x1a\n\x18_minimum_screw_spacing_1B\x1a\n\x18_minimum_screw_spacing_2B \n\x1e_minimum_screw_edge_distance_1B \n\x1e_minimum_screw_edge_distance_2B\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
-
29
- _globals = globals()
30
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rstab.types_for_timber_design.timber_screw_type_pb2', _globals)
32
- if not _descriptor._USE_C_DESCRIPTORS:
33
- DESCRIPTOR._loaded_options = None
34
- _globals['_TIMBERSCREWTYPE']._serialized_start=111
35
- _globals['_TIMBERSCREWTYPE']._serialized_end=1471
36
- _globals['_TIMBERSCREWTYPE_SCREWTYPE']._serialized_start=924
37
- _globals['_TIMBERSCREWTYPE_SCREWTYPE']._serialized_end=966
38
- # @@protoc_insertion_point(module_scope)
@@ -1,38 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_timber_design/timber_service_class.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/rstab/types_for_timber_design/timber_service_class.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'\nCdlubal/api/rstab/types_for_timber_design/timber_service_class.proto\x12(dlubal.api.rstab.types_for_timber_design\"\xf7\x04\n\x12TimberServiceClass\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 \n\x13\x61ssigned_to_objects\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x65\n\rservice_class\x18\x07 \x01(\x0e\x32I.dlubal.api.rstab.types_for_timber_design.TimberServiceClass.ServiceClassH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\"h\n\x0cServiceClass\x12\x19\n\x15SERVICE_CLASS_UNKNOWN\x10\x00\x12\x13\n\x0fSERVICE_CLASS_1\x10\x01\x12\x13\n\x0fSERVICE_CLASS_2\x10\x02\x12\x13\n\x0fSERVICE_CLASS_3\x10\x03\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x16\n\x14_assigned_to_objectsB\x10\n\x0e_service_classB\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.rstab.types_for_timber_design.timber_service_class_pb2', _globals)
32
- if not _descriptor._USE_C_DESCRIPTORS:
33
- DESCRIPTOR._loaded_options = None
34
- _globals['_TIMBERSERVICECLASS']._serialized_start=114
35
- _globals['_TIMBERSERVICECLASS']._serialized_end=745
36
- _globals['_TIMBERSERVICECLASS_SERVICECLASS']._serialized_start=485
37
- _globals['_TIMBERSERVICECLASS_SERVICECLASS']._serialized_end=589
38
- # @@protoc_insertion_point(module_scope)
@@ -1,42 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: dlubal/api/rstab/types_for_timber_design/timber_service_conditions.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/rstab/types_for_timber_design/timber_service_conditions.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'\nHdlubal/api/rstab/types_for_timber_design/timber_service_conditions.proto\x12(dlubal.api.rstab.types_for_timber_design\"\x9e\x13\n\x17TimberServiceConditions\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 \n\x13\x61ssigned_to_objects\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x83\x01\n\x1amoisture_service_condition\x18\x07 \x01(\x0e\x32Z.dlubal.api.rstab.types_for_timber_design.TimberServiceConditions.MoistureServiceConditionH\x04\x88\x01\x01\x12\x63\n\ttreatment\x18\x08 \x01(\x0e\x32K.dlubal.api.rstab.types_for_timber_design.TimberServiceConditions.TreatmentH\x05\x88\x01\x01\x12g\n\x0btemperature\x18\t \x01(\x0e\x32M.dlubal.api.rstab.types_for_timber_design.TimberServiceConditions.TemperatureH\x06\x88\x01\x01\x12 \n\x13outdoor_environment\x18\n \x01(\x08H\x07\x88\x01\x01\x12\x32\n%long_term_high_temperature_of_surface\x18\x0b \x01(\x08H\x08\x88\x01\x01\x12,\n\x1fpermanent_load_design_situation\x18\x0c \x01(\x08H\t\x88\x01\x01\x12\x1e\n\x11timber_structures\x18\r \x01(\x08H\n\x88\x01\x01\x12\x33\n&short_term_construction_or_maintenance\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12(\n\x1btimber_is_point_impregnated\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12$\n\x17member_pressure_treated\x18\x10 \x01(\x08H\r\x88\x01\x01\x12)\n\x1c\x65quilibrium_moisture_content\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12%\n\x18user_defined_temperature\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12=\n0impregnation_with_flame_retardant_under_pressure\x18\x13 \x01(\x08H\x10\x88\x01\x01\x12\x1f\n\x12pressure_treatment\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12\x1e\n\x11recombined_timber\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x16 \x01(\tH\x13\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x17 \x01(\tH\x14\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x18 \x01(\tH\x15\x88\x01\x01\"\xaf\x02\n\x18MoistureServiceCondition\x12&\n\"MOISTURE_SERVICE_CONDITION_UNKNOWN\x10\x00\x12\"\n\x1eMOISTURE_SERVICE_CONDITION_DRY\x10\x01\x12$\n MOISTURE_SERVICE_CONDITION_MOIST\x10\x03\x12)\n%MOISTURE_SERVICE_CONDITION_RATHER_DRY\x10\x05\x12)\n%MOISTURE_SERVICE_CONDITION_RATHER_WET\x10\x06\x12\'\n#MOISTURE_SERVICE_CONDITION_VERY_DRY\x10\x04\x12\"\n\x1eMOISTURE_SERVICE_CONDITION_WET\x10\x02\"p\n\tTreatment\x12\x15\n\x11TREATMENT_UNKNOWN\x10\x00\x12\x1c\n\x18TREATMENT_FIRE_RETARDANT\x10\x03\x12\x12\n\x0eTREATMENT_NONE\x10\x01\x12\x1a\n\x16TREATMENT_PRESERVATIVE\x10\x02\"\xcf\x02\n\x0bTemperature\x12\x17\n\x13TEMPERATURE_UNKNOWN\x10\x00\x12\x1b\n\x17TEMPERATURE_EQUAL_TO_50\x10\x06\x12!\n\x1dTEMPERATURE_LESS_OR_EQUAL_100\x10\x01\x12 \n\x1cTEMPERATURE_LESS_OR_EQUAL_35\x10\x04\x12\x1d\n\x19TEMPERATURE_RANGE_100_125\x10\x02\x12\x1d\n\x19TEMPERATURE_RANGE_125_150\x10\x03\x12\x1b\n\x17TEMPERATURE_RANGE_35_50\x10\x05\x12\"\n\x1eTEMPERATURE_TEMPERATURE_ZONE_1\x10\x07\x12\"\n\x1eTEMPERATURE_TEMPERATURE_ZONE_2\x10\x08\x12\"\n\x1eTEMPERATURE_TEMPERATURE_ZONE_3\x10\tB\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x16\n\x14_assigned_to_objectsB\x1d\n\x1b_moisture_service_conditionB\x0c\n\n_treatmentB\x0e\n\x0c_temperatureB\x16\n\x14_outdoor_environmentB(\n&_long_term_high_temperature_of_surfaceB\"\n _permanent_load_design_situationB\x14\n\x12_timber_structuresB)\n\'_short_term_construction_or_maintenanceB\x1e\n\x1c_timber_is_point_impregnatedB\x1a\n\x18_member_pressure_treatedB\x1f\n\x1d_equilibrium_moisture_contentB\x1b\n\x19_user_defined_temperatureB3\n1_impregnation_with_flame_retardant_under_pressureB\x15\n\x13_pressure_treatmentB\x14\n\x12_recombined_timberB\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.rstab.types_for_timber_design.timber_service_conditions_pb2', _globals)
32
- if not _descriptor._USE_C_DESCRIPTORS:
33
- DESCRIPTOR._loaded_options = None
34
- _globals['_TIMBERSERVICECONDITIONS']._serialized_start=119
35
- _globals['_TIMBERSERVICECONDITIONS']._serialized_end=2581
36
- _globals['_TIMBERSERVICECONDITIONS_MOISTURESERVICECONDITION']._serialized_start=1240
37
- _globals['_TIMBERSERVICECONDITIONS_MOISTURESERVICECONDITION']._serialized_end=1543
38
- _globals['_TIMBERSERVICECONDITIONS_TREATMENT']._serialized_start=1545
39
- _globals['_TIMBERSERVICECONDITIONS_TREATMENT']._serialized_end=1657
40
- _globals['_TIMBERSERVICECONDITIONS_TEMPERATURE']._serialized_start=1660
41
- _globals['_TIMBERSERVICECONDITIONS_TEMPERATURE']._serialized_end=1995
42
- # @@protoc_insertion_point(module_scope)