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
@@ -9,18 +9,18 @@ from .all_pb2 import *
9
9
  from . import rsection_stresses
10
10
  from . import types_for_members
11
11
  from . import construction_stages
12
- from . import types_for_glass_design
13
12
  from . import concrete_design_objects
14
13
  from . import dynamic_loads
15
14
  from . import layout_and_drawing
16
15
  from . import types_for_lines
17
16
  from . import result_objects
17
+ from . import timber_design
18
18
  from . import mesh
19
- from . import types_for_concrete_design
20
- from . import types_for_foundations
19
+ from . import aluminum_design
21
20
  from . import loads
22
21
  from . import types_for_steel_joints
23
22
  from . import ifc_objects
23
+ from . import reinforcement
24
24
  from . import steel_joint_design_addon_objects
25
25
  from . import steel_design_objects
26
26
  from . import types_for_craneway_design
@@ -30,23 +30,25 @@ from . import geotechnical_analysis
30
30
  from . import loading
31
31
  from . import foundation_design_objects
32
32
  from . import types_for_special_objects
33
+ from . import types_for_wind_simulation
33
34
  from . import stress_analysis_objects
34
35
  from . import global_parameters
35
36
  from . import load_wizards
36
37
  from . import types_for_surfaces
37
- from . import types_for_timber_design
38
38
  from . import types_for_solids
39
39
  from . import structure_advanced
40
40
  from . import guide_objects
41
41
  from . import results
42
42
  from . import structure_core
43
+ from . import steel_design
43
44
  from . import building_model
44
45
  from . import component_design_objects
45
46
  from . import imperfections
46
47
  from . import aluminum_design_objects
47
- from . import types_for_aluminum_design
48
48
  from . import types_for_nodes
49
+ from . import concrete_foundations
49
50
  from . import base_data_objects
50
51
  from . import timber_design_objects
51
- from . import types_for_steel_design
52
+ from . import digital_twins
52
53
  from . import beam_panels
54
+ from . import glass_design
@@ -0,0 +1,51 @@
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/aluminum_design/aluminum_boundary_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/rfem/aluminum_design/aluminum_boundary_conditions.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nBdlubal/api/rfem/aluminum_design/aluminum_boundary_conditions.proto\x12\x1f\x64lubal.api.rfem.aluminum_design\x1a\x1e\x64lubal/api/common/common.proto\"\xb0#\n\x1a\x41luminumBoundaryConditions\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12h\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32J.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.DefinitionTypeH\x01\x88\x01\x01\x12Q\n\x11\x63oordinate_system\x18\x03 \x01(\x0b\x32\x31.dlubal.api.common.CoordinateSystemRepresentationH\x02\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x11\n\x04name\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x05\x88\x01\x01\x12\x0f\n\x07members\x18\x07 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x08 \x03(\x05\x12\x12\n\ndeep_beams\x18\t \x03(\x05\x12\x13\n\x0bshear_walls\x18\n \x03(\x05\x12k\n\x0enodal_supports\x18\x0b \x01(\x0b\x32N.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.NodalSupportsTableH\x06\x88\x01\x01\x12i\n\rmember_hinges\x18\x0c \x01(\x0b\x32M.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.MemberHingesTableH\x07\x88\x01\x01\x12\x1f\n\x12intermediate_nodes\x18\r \x01(\x08H\x08\x88\x01\x01\x12*\n\x1d\x64ifferent_properties_supports\x18\x0e \x01(\x08H\t\x88\x01\x01\x12(\n\x1b\x64ifferent_properties_hinges\x18\x0f \x01(\x08H\n\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x10 \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16generating_object_info\x18\x11 \x01(\tH\x0c\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x0e\x88\x01\x01\x1ap\n\x12NodalSupportsTable\x12Z\n\x04rows\x18\x01 \x03(\x0b\x32L.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.NodalSupportsRow\x1a\xd0\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\x12\x18\n\x0bnode_seq_no\x18\x03 \x01(\tH\x02\x88\x01\x01\x12s\n\x0csupport_type\x18\x04 \x01(\x0e\x32X.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.NodalSupportsRow.SupportTypeH\x03\x88\x01\x01\x12\x19\n\x0csupport_in_x\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12\x19\n\x0csupport_in_y\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12\x19\n\x0csupport_in_z\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\x1e\n\x11restraint_about_x\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11restraint_about_y\x18\t \x01(\x08H\x08\x88\x01\x01\x12\x1e\n\x11restraint_about_z\x18\n \x01(\x08H\t\x88\x01\x01\x12\x1e\n\x11restraint_warping\x18\x0b \x01(\x08H\n\x88\x01\x01\x12\x15\n\x08rotation\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12\x1d\n\x10rotation_about_x\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\x1d\n\x10rotation_about_y\x18\x0e \x01(\x01H\r\x88\x01\x01\x12\x1d\n\x10rotation_about_z\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13support_spring_in_x\x18\x10 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13support_spring_in_y\x18\x11 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13support_spring_in_z\x18\x12 \x01(\x01H\x11\x88\x01\x01\x12%\n\x18restraint_spring_about_x\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12%\n\x18restraint_spring_about_y\x18\x14 \x01(\x01H\x13\x88\x01\x01\x12%\n\x18restraint_spring_about_z\x18\x15 \x01(\x01H\x14\x88\x01\x01\x12%\n\x18restraint_spring_warping\x18\x16 \x01(\x01H\x15\x88\x01\x01\x12\x80\x01\n\x13\x65\x63\x63\x65ntricity_type_z\x18\x17 \x01(\x0e\x32^.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.NodalSupportsRow.EccentricityTypeZH\x16\x88\x01\x01\x12\x1b\n\x0e\x65\x63\x63\x65ntricity_x\x18\x18 \x01(\x01H\x17\x88\x01\x01\x12\x1b\n\x0e\x65\x63\x63\x65ntricity_y\x18\x19 \x01(\x01H\x18\x88\x01\x01\x12\x1b\n\x0e\x65\x63\x63\x65ntricity_z\x18\x1a \x01(\x01H\x19\x88\x01\x01\x12\r\n\x05nodes\x18\x1b \x03(\x05\"\xc3\x02\n\x0bSupportType\x12\x15\n\x11SUPPORT_TYPE_NONE\x10\x00\x12\x1a\n\x16SUPPORT_TYPE_FIXED_ALL\x10\x07\x12\x1b\n\x17SUPPORT_TYPE_FIXED_IN_Y\x10\x01\x12\'\n#SUPPORT_TYPE_FIXED_IN_Y_AND_TORSION\x10\x03\x12\x33\n/SUPPORT_TYPE_FIXED_IN_Y_AND_TORSION_AND_WARPING\x10\x06\x12\'\n#SUPPORT_TYPE_FIXED_IN_Y_AND_WARPING\x10\x04\x12\x1d\n\x19SUPPORT_TYPE_INDIVIDUALLY\x10\x08\x12\x18\n\x14SUPPORT_TYPE_TORSION\x10\x02\x12$\n SUPPORT_TYPE_TORSION_AND_WARPING\x10\x05\"\xef\x01\n\x11\x45\x63\x63\x65ntricityTypeZ\x12.\n*ECCENTRICITY_TYPE_Z_ECCENTRICITY_TYPE_NONE\x10\x00\x12\x39\n5ECCENTRICITY_TYPE_Z_ECCENTRICITY_TYPE_AT_LOWER_FLANGE\x10\x02\x12\x39\n5ECCENTRICITY_TYPE_Z_ECCENTRICITY_TYPE_AT_UPPER_FLANGE\x10\x01\x12\x34\n0ECCENTRICITY_TYPE_Z_ECCENTRICITY_TYPE_USER_VALUE\x10\x03\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0e\n\x0c_node_seq_noB\x0f\n\r_support_typeB\x0f\n\r_support_in_xB\x0f\n\r_support_in_yB\x0f\n\r_support_in_zB\x14\n\x12_restraint_about_xB\x14\n\x12_restraint_about_yB\x14\n\x12_restraint_about_zB\x14\n\x12_restraint_warpingB\x0b\n\t_rotationB\x13\n\x11_rotation_about_xB\x13\n\x11_rotation_about_yB\x13\n\x11_rotation_about_zB\x16\n\x14_support_spring_in_xB\x16\n\x14_support_spring_in_yB\x16\n\x14_support_spring_in_zB\x1b\n\x19_restraint_spring_about_xB\x1b\n\x19_restraint_spring_about_yB\x1b\n\x19_restraint_spring_about_zB\x1b\n\x19_restraint_spring_warpingB\x16\n\x14_eccentricity_type_zB\x11\n\x0f_eccentricity_xB\x11\n\x0f_eccentricity_yB\x11\n\x0f_eccentricity_z\x1an\n\x11MemberHingesTable\x12Y\n\x04rows\x18\x01 \x03(\x0b\x32K.dlubal.api.rfem.aluminum_design.AluminumBoundaryConditions.MemberHingesRow\x1a\x86\x07\n\x0fMemberHingesRow\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\x18\n\x0bnode_seq_no\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x19\n\x0crelease_in_x\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x19\n\x0crelease_in_y\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12\x19\n\x0crelease_in_z\x18\x06 \x01(\x08H\x05\x88\x01\x01\x12\x1c\n\x0frelease_about_x\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12\x1c\n\x0frelease_about_y\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12\x1c\n\x0frelease_about_z\x18\t \x01(\x08H\x08\x88\x01\x01\x12\x1c\n\x0frelease_warping\x18\n \x01(\x08H\t\x88\x01\x01\x12 \n\x13release_spring_in_x\x18\x0b \x01(\x01H\n\x88\x01\x01\x12 \n\x13release_spring_in_y\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12 \n\x13release_spring_in_z\x18\r \x01(\x01H\x0c\x88\x01\x01\x12#\n\x16release_spring_about_x\x18\x0e \x01(\x01H\r\x88\x01\x01\x12#\n\x16release_spring_about_y\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12#\n\x16release_spring_about_z\x18\x10 \x01(\x01H\x0f\x88\x01\x01\x12#\n\x16release_spring_warping\x18\x11 \x01(\x01H\x10\x88\x01\x01\x12\r\n\x05nodes\x18\x12 \x03(\x05\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0e\n\x0c_node_seq_noB\x0f\n\r_release_in_xB\x0f\n\r_release_in_yB\x0f\n\r_release_in_zB\x12\n\x10_release_about_xB\x12\n\x10_release_about_yB\x12\n\x10_release_about_zB\x12\n\x10_release_warpingB\x16\n\x14_release_spring_in_xB\x16\n\x14_release_spring_in_yB\x16\n\x14_release_spring_in_zB\x19\n\x17_release_spring_about_xB\x19\n\x17_release_spring_about_yB\x19\n\x17_release_spring_about_zB\x19\n\x17_release_spring_warping\"E\n\x0e\x44\x65\x66initionType\x12\x1b\n\x17\x44\x45\x46INITION_TYPE_UNKNOWN\x10\x00\x12\x16\n\x12\x44\x45\x46INITION_TYPE_2D\x10\x01\x42\x05\n\x03_noB\x12\n\x10_definition_typeB\x14\n\x12_coordinate_systemB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x11\n\x0f_nodal_supportsB\x10\n\x0e_member_hingesB\x15\n\x13_intermediate_nodesB \n\x1e_different_properties_supportsB\x1e\n\x1c_different_properties_hingesB\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')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.aluminum_design.aluminum_boundary_conditions_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_ALUMINUMBOUNDARYCONDITIONS']._serialized_start=136
36
+ _globals['_ALUMINUMBOUNDARYCONDITIONS']._serialized_end=4664
37
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSTABLE']._serialized_start=1007
38
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSTABLE']._serialized_end=1119
39
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW']._serialized_start=1122
40
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW']._serialized_end=3250
41
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=2145
42
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=2468
43
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW_ECCENTRICITYTYPEZ']._serialized_start=2471
44
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_NODALSUPPORTSROW_ECCENTRICITYTYPEZ']._serialized_end=2710
45
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_MEMBERHINGESTABLE']._serialized_start=3252
46
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_MEMBERHINGESTABLE']._serialized_end=3362
47
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_MEMBERHINGESROW']._serialized_start=3365
48
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_MEMBERHINGESROW']._serialized_end=4267
49
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_DEFINITIONTYPE']._serialized_start=4269
50
+ _globals['_ALUMINUMBOUNDARYCONDITIONS_DEFINITIONTYPE']._serialized_end=4338
51
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,91 @@
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/aluminum_design/aluminum_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/aluminum_design/aluminum_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/aluminum_design/aluminum_effective_lengths.proto\x12\x1f\x64lubal.api.rfem.aluminum_design\x1a\x1f\x64lubal/api/rfem/object_id.proto\"\xa1S\n\x18\x41luminumEffectiveLengths\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\x1f\n\x12torsional_buckling\x18\t \x01(\x08H\x06\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\n \x01(\x08H\x07\x88\x01\x01\x12z\n\x1a\x62uckling_factor_value_type\x18\x0b \x01(\x0e\x32Q.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.BucklingFactorValueTypeH\x08\x88\x01\x01\x12#\n\x16principal_section_axes\x18\x0c \x01(\x08H\t\x88\x01\x01\x12#\n\x16geometric_section_axes\x18\r \x01(\x08H\n\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12i\n\x0enodal_supports\x18\x10 \x01(\x0b\x32L.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsTableH\r\x88\x01\x01\x12\\\n\x07\x66\x61\x63tors\x18\x11 \x01(\x0b\x32\x46.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.FactorsTableH\x0e\x88\x01\x01\x12\\\n\x07lengths\x18\x12 \x01(\x0b\x32\x46.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.LengthsTableH\x0f\x88\x01\x01\x12\x1f\n\x12intermediate_nodes\x18\x13 \x01(\x08H\x10\x88\x01\x01\x12!\n\x14\x64ifferent_properties\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12(\n\x1b\x66\x61\x63tors_definition_absolute\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12\x33\n&import_from_stability_analysis_enabled\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12>\n1stability_import_data_factors_definition_absolute\x18\x17 \x01(\x08H\x14\x88\x01\x01\x12+\n\x1estability_import_data_member_y\x18\x18 \x01(\x05H\x15\x88\x01\x01\x12G\n\x1fstability_import_data_loading_y\x18\x19 \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x16\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_y\x18\x1a \x01(\x05H\x17\x88\x01\x01\x12+\n\x1estability_import_data_member_z\x18\x1b \x01(\x05H\x18\x88\x01\x01\x12G\n\x1fstability_import_data_loading_z\x18\x1c \x01(\x0b\x32\x19.dlubal.api.rfem.ObjectIdH\x19\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_z\x18\x1d \x01(\x05H\x1a\x88\x01\x01\x12\x85\x01\n\x1dstability_import_data_factors\x18\x1e \x01(\x0b\x32Y.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.StabilityImportDataFactorsTableH\x1b\x88\x01\x01\x12\x85\x01\n\x1dstability_import_data_lengths\x18\x1f \x01(\x0b\x32Y.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.StabilityImportDataLengthsTableH\x1c\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_y\x18 \x01(\x08H\x1d\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_z\x18! \x01(\x08H\x1e\x88\x01\x01\x12w\n\x18\x64\x65termination_mcr_europe\x18\" \x01(\x0e\x32P.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationMcrEuropeH\x1f\x88\x01\x01\x12o\n\x14\x64\x65termination_me_adm\x18# \x01(\x0e\x32L.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationMeAdmH \x88\x01\x01\x12o\n\x14\x64\x65termination_cb_adm\x18$ \x01(\x0e\x32L.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationCbAdmH!\x88\x01\x01\x12\x1a\n\rcb_factor_adm\x18% \x01(\x01H\"\x88\x01\x01\x12\x85\x01\n determination_cb_member_type_adm\x18& \x01(\x0e\x32V.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationCbMemberTypeAdmH#\x88\x01\x01\x12s\n\x16\x64\x65termination_mcr_gb50\x18\' \x01(\x0e\x32N.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationMcrGb50H$\x88\x01\x01\x12w\n\x18\x64\x65termination_me_csas157\x18( \x01(\x0e\x32P.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationMeCsas157H%\x88\x01\x01\x12}\n\x1b\x64\x65termination_omega_csas157\x18) \x01(\x0e\x32S.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.DeterminationOmegaCsas157H&\x88\x01\x01\x12!\n\x14omega_factor_csas157\x18* \x01(\x01H\'\x88\x01\x01\x12^\n\x0bmember_type\x18+ \x01(\x0e\x32\x44.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.MemberTypeH(\x88\x01\x01\x12\x63\n\x0emember_type_yy\x18, \x01(\x0e\x32\x46.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.MemberTypeYyH)\x88\x01\x01\x12\x63\n\x0emember_type_zz\x18- \x01(\x0e\x32\x46.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.MemberTypeZzH*\x88\x01\x01\x12!\n\x14id_for_export_import\x18. \x01(\tH+\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18/ \x01(\tH,\x88\x01\x01\x1an\n\x12NodalSupportsTable\x12X\n\x04rows\x18\x01 \x03(\x0b\x32J.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsRow\x1a\xf5\x12\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\x12q\n\x0csupport_type\x18\x03 \x01(\x0e\x32V.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.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{\n\x11\x65\x63\x63\x65ntricity_type\x18\x06 \x01(\x0e\x32[.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.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\x12%\n\x18restraint_spring_warping\x18\n \x01(\x01H\t\x88\x01\x01\x12p\n\x0csupport_in_y\x18\x0b \x01(\x0e\x32U.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsRow.SupportInYH\n\x88\x01\x01\x12z\n\x11restraint_about_x\x18\x0c \x01(\x0e\x32Z.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsRow.RestraintAboutXH\x0b\x88\x01\x01\x12z\n\x11restraint_about_z\x18\r \x01(\x0e\x32Z.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsRow.RestraintAboutZH\x0c\x88\x01\x01\x12{\n\x11restraint_warping\x18\x0e \x01(\x0e\x32[.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.NodalSupportsRow.RestraintWarpingH\r\x88\x01\x01\x12\r\n\x05nodes\x18\x0f \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\"\x92\x01\n\x10RestraintWarping\x12\'\n#RESTRAINT_WARPING_SUPPORT_STATUS_NO\x10\x00\x12+\n\'RESTRAINT_WARPING_SUPPORT_STATUS_SPRING\x10\x01\x12(\n$RESTRAINT_WARPING_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\x1b\n\x19_restraint_spring_warpingB\x0f\n\r_support_in_yB\x14\n\x12_restraint_about_xB\x14\n\x12_restraint_about_zB\x14\n\x12_restraint_warping\x1a\x62\n\x0c\x46\x61\x63torsTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.FactorsRow\x1a\x8e\x05\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\x13\x66lexural_buckling_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x66lexural_buckling_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x1f\n\x12torsional_buckling\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\t \x01(\x01H\x08\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\n \x01(\x01H\t\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x0b \x01(\x01H\n\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x16\n\x14_flexural_buckling_yB\x16\n\x14_flexural_buckling_zB\x15\n\x13_torsional_bucklingB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1a\x62\n\x0cLengthsTable\x12R\n\x04rows\x18\x01 \x03(\x0b\x32\x44.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.LengthsRow\x1a\x8e\x05\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\x13\x66lexural_buckling_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x66lexural_buckling_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x1f\n\x12torsional_buckling\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12+\n\x1elateral_torsional_buckling_top\x18\t \x01(\x01H\x08\x88\x01\x01\x12.\n!lateral_torsional_buckling_bottom\x18\n \x01(\x01H\t\x88\x01\x01\x12\x1c\n\x0f\x63ritical_moment\x18\x0b \x01(\x01H\n\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x16\n\x14_flexural_buckling_yB\x16\n\x14_flexural_buckling_zB\x15\n\x13_torsional_bucklingB\x1d\n\x1b_lateral_torsional_bucklingB!\n\x1f_lateral_torsional_buckling_topB$\n\"_lateral_torsional_buckling_bottomB\x12\n\x10_critical_moment\x1a\x88\x01\n\x1fStabilityImportDataFactorsTable\x12\x65\n\x04rows\x18\x01 \x03(\x0b\x32W.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.StabilityImportDataFactorsRow\x1a\xc9\x02\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\x12 \n\x13\x66lexural_buckling_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x66lexural_buckling_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x16\n\x14_flexural_buckling_yB\x16\n\x14_flexural_buckling_z\x1a\x88\x01\n\x1fStabilityImportDataLengthsTable\x12\x65\n\x04rows\x18\x01 \x03(\x0b\x32W.dlubal.api.rfem.aluminum_design.AluminumEffectiveLengths.StabilityImportDataLengthsRow\x1a\xc9\x02\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\x12 \n\x13\x66lexural_buckling_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x66lexural_buckling_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_flexural_buckling_uB\x16\n\x14_flexural_buckling_vB\x16\n\x14_flexural_buckling_yB\x16\n\x14_flexural_buckling_z\"q\n\x17\x42ucklingFactorValueType\x12*\n&BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL\x10\x00\x12*\n&BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED\x10\x01\"l\n\x16\x44\x65terminationMcrEurope\x12\'\n#DETERMINATION_MCR_EUROPE_EIGENVALUE\x10\x00\x12)\n%DETERMINATION_MCR_EUROPE_USER_DEFINED\x10\x01\"\x92\x01\n\x12\x44\x65terminationMeAdm\x12*\n&DETERMINATION_ME_ADM_EIGENVALUE_METHOD\x10\x00\x12)\n%DETERMINATION_ME_ADM_ACC_TO_CHAPTER_F\x10\x02\x12%\n!DETERMINATION_ME_ADM_USER_DEFINED\x10\x01\"\x96\x01\n\x12\x44\x65terminationCbAdm\x12$\n DETERMINATION_CB_ADM_BASIC_VALUE\x10\x00\x12\x33\n/DETERMINATION_CB_ADM_AUTOMATICALLY_ACC_TO_F_4_1\x10\x01\x12%\n!DETERMINATION_CB_ADM_USER_DEFINED\x10\x02\"z\n\x1c\x44\x65terminationCbMemberTypeAdm\x12)\n%DETERMINATION_CB_MEMBER_TYPE_ADM_BEAM\x10\x00\x12/\n+DETERMINATION_CB_MEMBER_TYPE_ADM_CANTILEVER\x10\x01\"m\n\x14\x44\x65terminationMcrGb50\x12,\n(DETERMINATION_MCR_GB50_EIGENVALUE_METHOD\x10\x00\x12\'\n#DETERMINATION_MCR_GB50_USER_DEFINED\x10\x01\"\xa5\x01\n\x16\x44\x65terminationMeCsas157\x12.\n*DETERMINATION_ME_CSAS157_EIGENVALUE_METHOD\x10\x00\x12\x30\n,DETERMINATION_ME_CSAS157_ACC_TO_CHAPTER_11_3\x10\x02\x12)\n%DETERMINATION_ME_CSAS157_USER_DEFINED\x10\x01\"\xb3\x01\n\x19\x44\x65terminationOmegaCsas157\x12+\n\'DETERMINATION_OMEGA_CSAS157_BASIC_VALUE\x10\x00\x12;\n7DETERMINATION_OMEGA_CSAS157_AUTOMATICALLY_ACC_TO_11_3_1\x10\x01\x12,\n(DETERMINATION_OMEGA_CSAS157_USER_DEFINED\x10\x02\">\n\nMemberType\x12\x14\n\x10MEMBER_TYPE_BEAM\x10\x00\x12\x1a\n\x16MEMBER_TYPE_CANTILEVER\x10\x01\"F\n\x0cMemberTypeYy\x12\x17\n\x13MEMBER_TYPE_YY_BEAM\x10\x00\x12\x1d\n\x19MEMBER_TYPE_YY_CANTILEVER\x10\x01\"F\n\x0cMemberTypeZz\x12\x17\n\x13MEMBER_TYPE_ZZ_BEAM\x10\x00\x12\x1d\n\x19MEMBER_TYPE_ZZ_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\x15\n\x13_torsional_bucklingB\x1d\n\x1b_lateral_torsional_bucklingB\x1d\n\x1b_buckling_factor_value_typeB\x19\n\x17_principal_section_axesB\x19\n\x17_geometric_section_axesB\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)\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\x1b\n\x19_determination_mcr_europeB\x17\n\x15_determination_me_admB\x17\n\x15_determination_cb_admB\x10\n\x0e_cb_factor_admB#\n!_determination_cb_member_type_admB\x19\n\x17_determination_mcr_gb50B\x1b\n\x19_determination_me_csas157B\x1e\n\x1c_determination_omega_csas157B\x17\n\x15_omega_factor_csas157B\x0e\n\x0c_member_typeB\x11\n\x0f_member_type_yyB\x11\n\x0f_member_type_zzB\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.aluminum_design.aluminum_effective_lengths_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_ALUMINUMEFFECTIVELENGTHS']._serialized_start=135
36
+ _globals['_ALUMINUMEFFECTIVELENGTHS']._serialized_end=10792
37
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_start=3232
38
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSTABLE']._serialized_end=3342
39
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_start=3345
40
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW']._serialized_end=5766
41
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_start=4359
42
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTTYPE']._serialized_end=4740
43
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_start=4743
44
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_ECCENTRICITYTYPE']._serialized_end=4901
45
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_start=4903
46
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_SUPPORTINY']._serialized_end=5028
47
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_start=5031
48
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTX']._serialized_end=5176
49
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_start=5179
50
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTABOUTZ']._serialized_end=5324
51
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTWARPING']._serialized_start=5327
52
+ _globals['_ALUMINUMEFFECTIVELENGTHS_NODALSUPPORTSROW_RESTRAINTWARPING']._serialized_end=5473
53
+ _globals['_ALUMINUMEFFECTIVELENGTHS_FACTORSTABLE']._serialized_start=5768
54
+ _globals['_ALUMINUMEFFECTIVELENGTHS_FACTORSTABLE']._serialized_end=5866
55
+ _globals['_ALUMINUMEFFECTIVELENGTHS_FACTORSROW']._serialized_start=5869
56
+ _globals['_ALUMINUMEFFECTIVELENGTHS_FACTORSROW']._serialized_end=6523
57
+ _globals['_ALUMINUMEFFECTIVELENGTHS_LENGTHSTABLE']._serialized_start=6525
58
+ _globals['_ALUMINUMEFFECTIVELENGTHS_LENGTHSTABLE']._serialized_end=6623
59
+ _globals['_ALUMINUMEFFECTIVELENGTHS_LENGTHSROW']._serialized_start=6626
60
+ _globals['_ALUMINUMEFFECTIVELENGTHS_LENGTHSROW']._serialized_end=7280
61
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_start=7283
62
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSTABLE']._serialized_end=7419
63
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_start=7422
64
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATAFACTORSROW']._serialized_end=7751
65
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_start=7754
66
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSTABLE']._serialized_end=7890
67
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_start=7893
68
+ _globals['_ALUMINUMEFFECTIVELENGTHS_STABILITYIMPORTDATALENGTHSROW']._serialized_end=8222
69
+ _globals['_ALUMINUMEFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_start=8224
70
+ _globals['_ALUMINUMEFFECTIVELENGTHS_BUCKLINGFACTORVALUETYPE']._serialized_end=8337
71
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMCREUROPE']._serialized_start=8339
72
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMCREUROPE']._serialized_end=8447
73
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMEADM']._serialized_start=8450
74
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMEADM']._serialized_end=8596
75
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONCBADM']._serialized_start=8599
76
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONCBADM']._serialized_end=8749
77
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONCBMEMBERTYPEADM']._serialized_start=8751
78
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONCBMEMBERTYPEADM']._serialized_end=8873
79
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMCRGB50']._serialized_start=8875
80
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMCRGB50']._serialized_end=8984
81
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMECSAS157']._serialized_start=8987
82
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONMECSAS157']._serialized_end=9152
83
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONOMEGACSAS157']._serialized_start=9155
84
+ _globals['_ALUMINUMEFFECTIVELENGTHS_DETERMINATIONOMEGACSAS157']._serialized_end=9334
85
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPE']._serialized_start=9336
86
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPE']._serialized_end=9398
87
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPEYY']._serialized_start=9400
88
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPEYY']._serialized_end=9470
89
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPEZZ']._serialized_start=9472
90
+ _globals['_ALUMINUMEFFECTIVELENGTHS_MEMBERTYPEZZ']._serialized_end=9542
91
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,47 @@
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/aluminum_design/aluminum_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/aluminum_design/aluminum_member_local_section_reduction.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nMdlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction.proto\x12\x1f\x64lubal.api.rfem.aluminum_design\x1a\x1e\x64lubal/api/common/common.proto\"\xc7+\n#AluminumMemberLocalSectionReduction\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\x12m\n\ncomponents\x18\x08 \x01(\x0b\x32T.dlubal.api.rfem.aluminum_design.AluminumMemberLocalSectionReduction.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\x1as\n\x0f\x43omponentsTable\x12`\n\x04rows\x18\x01 \x03(\x0b\x32R.dlubal.api.rfem.aluminum_design.AluminumMemberLocalSectionReduction.ComponentsRow\x1a\xd1%\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}\n\x0ereduction_type\x18\x03 \x01(\x0e\x32`.dlubal.api.rfem.aluminum_design.AluminumMemberLocalSectionReduction.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\x9d\x01\n\x1fmultiple_offset_definition_type\x18\x08 \x01(\x0e\x32o.dlubal.api.rfem.aluminum_design.AluminumMemberLocalSectionReduction.ComponentsRow.MultipleOffsetDefinitionTypeH\x07\x88\x01\x01\x12\x1c\n\x0fmultiple_offset\x18\t \x01(\x01H\x08\x88\x01\x01\x12\x90\x01\n\x18\x66\x61stener_definition_type\x18\n \x01(\x0e\x32i.dlubal.api.rfem.aluminum_design.AluminumMemberLocalSectionReduction.ComponentsRow.FastenerDefinitionTypeH\t\x88\x01\x01\x12\x1a\n\rarea_csa_s157\x18\x0b \x01(\tH\n\x88\x01\x01\x12\x31\n\ngross_area\x18\x0c \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x0b\x88\x01\x01\x12\x1b\n\x0ereduction_area\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\"\n\x15reduction_area_factor\x18\x0e \x01(\x01H\r\x88\x01\x01\x12/\n\x08net_area\x18\x0f \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x0e\x88\x01\x01\x12,\n\x1f\x65lastic_section_modulus_about_y\x18\x10 \x01(\tH\x0f\x88\x01\x01\x12@\n\x19\x65lastic_section_modulus_y\x18\x11 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x10\x88\x01\x01\x12\x30\n#elastic_section_modulus_reduction_y\x18\x12 \x01(\x01H\x11\x88\x01\x01\x12\x37\n*elastic_section_modulus_reduction_factor_y\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12\x44\n\x1dnet_elastic_section_modulus_y\x18\x14 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x13\x88\x01\x01\x12,\n\x1fplastic_section_modulus_about_y\x18\x15 \x01(\tH\x14\x88\x01\x01\x12@\n\x19plastic_section_modulus_y\x18\x16 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x15\x88\x01\x01\x12\x30\n#plastic_section_modulus_reduction_y\x18\x17 \x01(\x01H\x16\x88\x01\x01\x12\x37\n*plastic_section_modulus_reduction_factor_y\x18\x18 \x01(\x01H\x17\x88\x01\x01\x12\x44\n\x1dnet_plastic_section_modulus_y\x18\x19 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x18\x88\x01\x01\x12,\n\x1f\x65lastic_section_modulus_about_z\x18\x1a \x01(\tH\x19\x88\x01\x01\x12@\n\x19\x65lastic_section_modulus_z\x18\x1b \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x1a\x88\x01\x01\x12\x30\n#elastic_section_modulus_reduction_z\x18\x1c \x01(\x01H\x1b\x88\x01\x01\x12\x37\n*elastic_section_modulus_reduction_factor_z\x18\x1d \x01(\x01H\x1c\x88\x01\x01\x12\x44\n\x1dnet_elastic_section_modulus_z\x18\x1e \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x1d\x88\x01\x01\x12,\n\x1fplastic_section_modulus_about_z\x18\x1f \x01(\tH\x1e\x88\x01\x01\x12@\n\x19plastic_section_modulus_z\x18 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x1f\x88\x01\x01\x12\x30\n#plastic_section_modulus_reduction_z\x18! \x01(\x01H \x88\x01\x01\x12\x37\n*plastic_section_modulus_reduction_factor_z\x18\" \x01(\x01H!\x88\x01\x01\x12\x44\n\x1dnet_plastic_section_modulus_z\x18# \x01(\x0b\x32\x18.dlubal.api.common.ValueH\"\x88\x01\x01\x12\"\n\x15shear_lag_factor_aisc\x18$ \x01(\x01H#\x88\x01\x01\x12,\n\x1f\x63onsider_shear_lag_effect_is800\x18% \x01(\x08H$\x88\x01\x01\x12)\n\x1creduction_factor_alpha_is800\x18& \x01(\x01H%\x88\x01\x01\x12\x31\n$consider_correction_factor_kt_as4100\x18\' \x01(\x08H&\x88\x01\x01\x12(\n\x1b\x63orrection_factor_kt_as4100\x18( \x01(\x01H\'\x88\x01\x01\x12/\n\"calculate_short_connection_gb50017\x18) \x01(\x08H(\x88\x01\x01\x12.\n!calculate_long_connection_gb50017\x18* \x01(\x08H)\x88\x01\x01\x12*\n\x1d\x63\x61lculate_empty_holes_gb50017\x18+ \x01(\x08H*\x88\x01\x01\x12\x33\n&consider_effective_area_factor_gb50017\x18, \x01(\x08H+\x88\x01\x01\x12\x33\n&parameter_effective_factor_eta_gb50017\x18- \x01(\x01H,\x88\x01\x01\x12*\n\x1d\x63onnection_eccentricity_y_adm\x18. \x01(\x01H-\x88\x01\x01\x12*\n\x1d\x63onnection_eccentricity_z_adm\x18/ \x01(\x01H.\x88\x01\x01\x12\"\n\x15\x63onnection_length_adm\x18\x30 \x01(\x01H/\x88\x01\x01\x12,\n\x1fshear_lag_user_defined_csa_s157\x18\x31 \x01(\x08H0\x88\x01\x01\x12&\n\x19shear_lag_factor_csa_s157\x18\x32 \x01(\x01H1\x88\x01\x01\x12\x31\n$shear_lag_fastener_position_csa_s157\x18\x33 \x01(\x08H2\x88\x01\x01\x12\x37\n*shear_lag_connection_eccentricity_csa_s157\x18\x34 \x01(\x01H3\x88\x01\x01\x12\x34\n\'shear_lag_length_of_connection_csa_s157\x18\x35 \x01(\x01H4\x88\x01\x01\"j\n\rReductionType\x12\x1a\n\x16REDUCTION_TYPE_UNKNOWN\x10\x00\x12=\n9REDUCTION_TYPE_REDUCTION_COMPONENT_TYPE_DESIGN_PARAMETERS\x10\x04\"z\n\x1cMultipleOffsetDefinitionType\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_ABSOLUTE\x10\x00\x12,\n(MULTIPLE_OFFSET_DEFINITION_TYPE_RELATIVE\x10\x01\"f\n\x16\x46\x61stenerDefinitionType\x12%\n!FASTENER_DEFINITION_TYPE_ABSOLUTE\x10\x00\x12%\n!FASTENER_DEFINITION_TYPE_RELATIVE\x10\x01\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\x1b\n\x19_fastener_definition_typeB\x10\n\x0e_area_csa_s157B\r\n\x0b_gross_areaB\x11\n\x0f_reduction_areaB\x18\n\x16_reduction_area_factorB\x0b\n\t_net_areaB\"\n _elastic_section_modulus_about_yB\x1c\n\x1a_elastic_section_modulus_yB&\n$_elastic_section_modulus_reduction_yB-\n+_elastic_section_modulus_reduction_factor_yB \n\x1e_net_elastic_section_modulus_yB\"\n _plastic_section_modulus_about_yB\x1c\n\x1a_plastic_section_modulus_yB&\n$_plastic_section_modulus_reduction_yB-\n+_plastic_section_modulus_reduction_factor_yB \n\x1e_net_plastic_section_modulus_yB\"\n _elastic_section_modulus_about_zB\x1c\n\x1a_elastic_section_modulus_zB&\n$_elastic_section_modulus_reduction_zB-\n+_elastic_section_modulus_reduction_factor_zB \n\x1e_net_elastic_section_modulus_zB\"\n _plastic_section_modulus_about_zB\x1c\n\x1a_plastic_section_modulus_zB&\n$_plastic_section_modulus_reduction_zB-\n+_plastic_section_modulus_reduction_factor_zB \n\x1e_net_plastic_section_modulus_zB\x18\n\x16_shear_lag_factor_aiscB\"\n _consider_shear_lag_effect_is800B\x1f\n\x1d_reduction_factor_alpha_is800B\'\n%_consider_correction_factor_kt_as4100B\x1e\n\x1c_correction_factor_kt_as4100B%\n#_calculate_short_connection_gb50017B$\n\"_calculate_long_connection_gb50017B \n\x1e_calculate_empty_holes_gb50017B)\n\'_consider_effective_area_factor_gb50017B)\n\'_parameter_effective_factor_eta_gb50017B \n\x1e_connection_eccentricity_y_admB \n\x1e_connection_eccentricity_z_admB\x18\n\x16_connection_length_admB\"\n _shear_lag_user_defined_csa_s157B\x1c\n\x1a_shear_lag_factor_csa_s157B\'\n%_shear_lag_fastener_position_csa_s157B-\n+_shear_lag_connection_eccentricity_csa_s157B*\n(_shear_lag_length_of_connection_csa_s157B\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')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.aluminum_design.aluminum_member_local_section_reduction_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION']._serialized_start=147
36
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION']._serialized_end=5722
37
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_start=614
38
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSTABLE']._serialized_end=729
39
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_start=732
40
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW']._serialized_end=5549
41
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_start=3537
42
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_REDUCTIONTYPE']._serialized_end=3643
43
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_start=3645
44
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_end=3767
45
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_FASTENERDEFINITIONTYPE']._serialized_start=3769
46
+ _globals['_ALUMINUMMEMBERLOCALSECTIONREDUCTION_COMPONENTSROW_FASTENERDEFINITIONTYPE']._serialized_end=3871
47
+ # @@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/aluminum_design/aluminum_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/rfem/aluminum_design/aluminum_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'\nEdlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld.proto\x12\x1f\x64lubal.api.rfem.aluminum_design\"\xa3\x12\n\x1c\x41luminumMemberTransverseWeld\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\x12\x66\n\ncomponents\x18\x08 \x01(\x0b\x32M.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.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\x1al\n\x0f\x43omponentsTable\x12Y\n\x04rows\x18\x01 \x03(\x0b\x32K.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.ComponentsRow\x1a\xc2\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\x12l\n\tweld_type\x18\x03 \x01(\x0e\x32T.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.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\x96\x01\n\x1fmultiple_offset_definition_type\x18\x08 \x01(\x0e\x32h.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.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\x12x\n\x10method_ec_or_adm\x18\x0b \x01(\x0e\x32Y.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.ComponentsRow.MethodEcOrAdmH\n\x88\x01\x01\x12l\n\tmethod_gb\x18\x0c \x01(\x0e\x32T.dlubal.api.rfem.aluminum_design.AluminumMemberTransverseWeld.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.rfem.aluminum_design.aluminum_member_transverse_weld_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD']._serialized_start=107
35
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD']._serialized_end=2446
36
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSTABLE']._serialized_start=560
37
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSTABLE']._serialized_end=668
38
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW']._serialized_start=671
39
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW']._serialized_end=2273
40
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_WELDTYPE']._serialized_start=1466
41
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_WELDTYPE']._serialized_end=1558
42
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_start=1560
43
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_MULTIPLEOFFSETDEFINITIONTYPE']._serialized_end=1682
44
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODECORADM']._serialized_start=1684
45
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODECORADM']._serialized_end=1781
46
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODGB']._serialized_start=1784
47
+ _globals['_ALUMINUMMEMBERTRANSVERSEWELD_COMPONENTSROW_METHODGB']._serialized_end=2005
48
+ # @@protoc_insertion_point(module_scope)
@@ -122,11 +122,11 @@ class Application:
122
122
  # Functions using packing
123
123
  def get_object(self, obj, model_id: ModelId | None = None):
124
124
  """
125
- Retrieves a single object from the model using its number.
125
+ Retrieves a single object from the model.
126
126
 
127
127
  Args:
128
128
  obj (obj):
129
- An object to be retrieved defined by its number. See :ref:`rfem_objects`.
129
+ An object to be retrieved.
130
130
  model_id (:ref:`common_model_id_ModelId` | None):
131
131
  Unique identifier of the model. If None, the active model is used.
132
132
 
@@ -142,7 +142,7 @@ class Application:
142
142
 
143
143
  Args:
144
144
  objs (list[obj]):
145
- A list of model objects to retrieve. See :ref:`rfem_objects`.
145
+ A list of model objects to retrieve.
146
146
  only_selected (bool, optional):
147
147
  If True, only returns objects from the list that are currently selected in the model.
148
148
  model_id (:ref:`common_model_id_ModelId` | None):
@@ -165,7 +165,7 @@ class Application:
165
165
 
166
166
  Args:
167
167
  obj (obj):
168
- An object to be created. See :ref:`rfem_objects`.
168
+ An object to be created.
169
169
  model_id (:ref:`common_model_id_ModelId` | None):
170
170
  Unique identifier of the model. If None, the active model is used.
171
171
 
@@ -180,7 +180,7 @@ class Application:
180
180
 
181
181
  Args:
182
182
  objs (list[obj]):
183
- A list of objects to be created. See :ref:`rfem_objects`.
183
+ A list of objects to be created.
184
184
  model_id (:ref:`common_model_id_ModelId` | None):
185
185
  Unique identifier of the model. If None, the active model is used.
186
186
 
@@ -195,7 +195,7 @@ class Application:
195
195
 
196
196
  Args:
197
197
  obj (obj):
198
- An object to be updated. See :ref:`rfem_objects`.
198
+ An object to be updated.
199
199
  model_id (:ref:`common_model_id_ModelId` | None):
200
200
  Unique identifier of the model. If None, the active model is used.
201
201
 
@@ -210,7 +210,7 @@ class Application:
210
210
 
211
211
  Args:
212
212
  objs (list[obj]):
213
- A list of objects to be updated. See :ref:`rfem_objects`.
213
+ A list of objects to be updated.
214
214
  model_id (:ref:`common_model_id_ModelId` | None):
215
215
  Unique identifier of the model. If None, the active model is used.
216
216
 
@@ -225,7 +225,7 @@ class Application:
225
225
 
226
226
  Args:
227
227
  obj (obj):
228
- An object to be deleted defined by its number. See :ref:`rfem_objects`.
228
+ An object to be deleted.
229
229
  model_id (:ref:`common_model_id_ModelId` | None):
230
230
  Unique identifier of the model. If None, the active model is used.
231
231
 
@@ -240,7 +240,7 @@ class Application:
240
240
 
241
241
  Args:
242
242
  objs (list[obj]):
243
- A list of objects to be deleted. See :ref:`rfem_objects`.
243
+ A list of objects to be deleted.
244
244
  model_id (:ref:`common_model_id_ModelId` | None):
245
245
  Unique identifier of the model. If None, the active model is used.
246
246
 
@@ -255,7 +255,7 @@ class Application:
255
255
 
256
256
  Args:
257
257
  objs (list[obj]):
258
- A list of objects to be selected. See :ref:`rfem_objects`.
258
+ A list of objects to be selected.
259
259
  model_id (:ref:`common_model_id_ModelId` | None):
260
260
  Unique identifier of the model. If None, the active model is used.
261
261
 
@@ -277,9 +277,9 @@ class Application:
277
277
  filters (:ref:`rfem_results_results_query_ResultsFilter` | None):
278
278
  One or more filters to return only relevant results.
279
279
  member_axes_system (:ref:`rfem_results_settings_result_settings_MemberAxesSystem` | None):
280
- The axes system to use for member results.
280
+ The axes system to use for member results. If not provided, it defaults to ``MEMBER_AXES_SYSTEM_MEMBER_AXES_X_Y_Z``.
281
281
  support_coordinate_system (:ref:`rfem_results_settings_result_settings_CoordinateSystem` | None):
282
- The coordinate system to use for support results.
282
+ The coordinate system to use for support results. If not provided, it defaults to ``COORDINATE_SYSTEM_LOCAL``.
283
283
  model_id (:ref:`common_model_id_ModelId` | None):
284
284
  Unique identifier of the model. If None, the active model is used.
285
285
 
@@ -326,9 +326,9 @@ class Application:
326
326
  loading (:ref:`rfem_object_id_ObjectId`):
327
327
  Reference to the loading (e.g., load case, combination, etc.).
328
328
  member_axes_system (:ref:`rfem_results_settings_result_settings_MemberAxesSystem` | None):
329
- The axes system to use for member results.
329
+ The axes system to use for member results. If not provided, it defaults to ``MEMBER_AXES_SYSTEM_MEMBER_AXES_X_Y_Z``.
330
330
  support_coordinate_system (:ref:`rfem_results_settings_result_settings_CoordinateSystem` | None):
331
- The coordinate system to use for support results.
331
+ The coordinate system to use for support results. If not provided, it defaults to ``COORDINATE_SYSTEM_LOCAL``.
332
332
  model_id (:ref:`common_model_id_ModelId` | None):
333
333
  Unique identifier of the model. If None, the active model is used.
334
334
 
@@ -358,14 +358,14 @@ class Application:
358
358
 
359
359
  return convert_table_data_to_table(table_data=results, warning=warning)
360
360
 
361
- def convert_objects(self, *, convert_into: ConvertObjectInto, objects: list, model_id: ModelId | None = None):
361
+ def convert_objects(self, *, convert_into: ConvertObjectInto, objs: list, model_id: ModelId | None = None):
362
362
  """
363
363
  Converts specified objects into a different type.
364
364
 
365
365
  Args:
366
366
  convert_into (:ref:`common_common_messages_ConvertObjectInto`):
367
367
  Specifies the target conversion type.
368
- objects (list):
368
+ objs (list):
369
369
  Objects to be converted.
370
370
  model_id (:ref:`common_model_id_ModelId` | None):
371
371
  Unique identifier of the model. If None, the active model is used.
@@ -373,7 +373,7 @@ class Application:
373
373
  Returns:
374
374
  None
375
375
  """
376
- request = ConvertObjectsRequest(convert_into=convert_into, objects=pack_object_list(objects, model_id))
376
+ request = ConvertObjectsRequest(convert_into=convert_into, objects=pack_object_list(objs, model_id))
377
377
  self.stub.convert_objects_impl(request)
378
378
 
379
379
  def import_from(self, *, filepath: str, import_attributes: google.protobuf.any_pb2.Any, model_id: ModelId | None = None):
@@ -24,7 +24,7 @@ _sym_db = _symbol_database.Default()
24
24
 
25
25
 
26
26
 
27
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/dlubal/api/rfem/base_data_objects/terrain.proto\x12!dlubal.api.rfem.base_data_objects\"\xf9\x08\n\x07Terrain\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x42\n\x04type\x18\x02 \x01(\x0e\x32/.dlubal.api.rfem.base_data_objects.Terrain.TypeH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_x\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x63\x65nter_of_terrain_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x1e\n\x11rotation_around_Z\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1f\n\x12\x63onsider_boreholes\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\t \x01(\x05H\x08\x88\x01\x01\x12S\n\rterrain_table\x18\n \x01(\x0b\x32\x37.dlubal.api.rfem.base_data_objects.Terrain.TerrainTableH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0b \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0c \x01(\tH\x0b\x88\x01\x01\x1aX\n\x0cTerrainTable\x12H\n\x04rows\x18\x01 \x03(\x0b\x32:.dlubal.api.rfem.base_data_objects.Terrain.TerrainTableRow\x1a\xbf\x01\n\x0fTerrainTableRow\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\x15\n\x08global_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08global_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x15\n\x08global_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_global_xB\x0b\n\t_global_yB\x0b\n\t_global_z\"\x85\x01\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x12\n\x0eTYPE_BOREHOLES\x10\x05\x12\x19\n\x15TYPE_HORIZONTAL_PLANE\x10\x02\x12\x17\n\x13TYPE_INCLINED_PLANE\x10\x03\x12\x13\n\x0fTYPE_NO_TERRAIN\x10\x01\x12\x0e\n\nTYPE_TABLE\x10\x04\x42\x05\n\x03_noB\x07\n\x05_typeB\n\n\x08_commentB\x18\n\x16_bounding_box_offset_xB\x18\n\x16_bounding_box_offset_yB\x16\n\x14_center_of_terrain_zB\x14\n\x12_rotation_around_ZB\x15\n\x13_consider_boreholesB\x14\n\x12_coordinate_systemB\x10\n\x0e_terrain_tableB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/dlubal/api/rfem/base_data_objects/terrain.proto\x12!dlubal.api.rfem.base_data_objects\"\xc1\t\n\x07Terrain\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x42\n\x04type\x18\x02 \x01(\x0e\x32/.dlubal.api.rfem.base_data_objects.Terrain.TypeH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_x\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x63\x65nter_of_terrain_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x1e\n\x11rotation_around_Z\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1f\n\x12\x63onsider_boreholes\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\t \x01(\x05H\x08\x88\x01\x01\x12S\n\rterrain_table\x18\n \x01(\x0b\x32\x37.dlubal.api.rfem.base_data_objects.Terrain.TerrainTableH\t\x88\x01\x01\x12\x17\n\nifc_object\x18\x0b \x01(\x05H\n\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0c \x01(\tH\x0b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\r \x01(\tH\x0c\x88\x01\x01\x1aX\n\x0cTerrainTable\x12H\n\x04rows\x18\x01 \x03(\x0b\x32:.dlubal.api.rfem.base_data_objects.Terrain.TerrainTableRow\x1a\xbf\x01\n\x0fTerrainTableRow\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\x15\n\x08global_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08global_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x15\n\x08global_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_global_xB\x0b\n\t_global_yB\x0b\n\t_global_z\"\xa5\x01\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x12\n\x0eTYPE_BOREHOLES\x10\x05\x12\x19\n\x15TYPE_HORIZONTAL_PLANE\x10\x02\x12\x1e\n\x1aTYPE_IFC_FILE_MODEL_OBJECT\x10\x06\x12\x17\n\x13TYPE_INCLINED_PLANE\x10\x03\x12\x13\n\x0fTYPE_NO_TERRAIN\x10\x01\x12\x0e\n\nTYPE_TABLE\x10\x04\x42\x05\n\x03_noB\x07\n\x05_typeB\n\n\x08_commentB\x18\n\x16_bounding_box_offset_xB\x18\n\x16_bounding_box_offset_yB\x16\n\x14_center_of_terrain_zB\x14\n\x12_rotation_around_ZB\x15\n\x13_consider_boreholesB\x14\n\x12_coordinate_systemB\x10\n\x0e_terrain_tableB\r\n\x0b_ifc_objectB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
28
 
29
29
  _globals = globals()
30
30
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -32,11 +32,11 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.base_data_o
32
32
  if not _descriptor._USE_C_DESCRIPTORS:
33
33
  DESCRIPTOR._loaded_options = None
34
34
  _globals['_TERRAIN']._serialized_start=87
35
- _globals['_TERRAIN']._serialized_end=1232
36
- _globals['_TERRAIN_TERRAINTABLE']._serialized_start=569
37
- _globals['_TERRAIN_TERRAINTABLE']._serialized_end=657
38
- _globals['_TERRAIN_TERRAINTABLEROW']._serialized_start=660
39
- _globals['_TERRAIN_TERRAINTABLEROW']._serialized_end=851
40
- _globals['_TERRAIN_TYPE']._serialized_start=854
41
- _globals['_TERRAIN_TYPE']._serialized_end=987
35
+ _globals['_TERRAIN']._serialized_end=1304
36
+ _globals['_TERRAIN_TERRAINTABLE']._serialized_start=594
37
+ _globals['_TERRAIN_TERRAINTABLE']._serialized_end=682
38
+ _globals['_TERRAIN_TERRAINTABLEROW']._serialized_start=685
39
+ _globals['_TERRAIN_TERRAINTABLEROW']._serialized_end=876
40
+ _globals['_TERRAIN_TYPE']._serialized_start=879
41
+ _globals['_TERRAIN_TYPE']._serialized_end=1044
42
42
  # @@protoc_insertion_point(module_scope)
@@ -7,18 +7,20 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
7
7
  DESCRIPTOR: _descriptor.FileDescriptor
8
8
 
9
9
  class Terrain(_message.Message):
10
- __slots__ = ("no", "type", "comment", "bounding_box_offset_x", "bounding_box_offset_y", "center_of_terrain_z", "rotation_around_Z", "consider_boreholes", "coordinate_system", "terrain_table", "id_for_export_import", "metadata_for_export_import")
10
+ __slots__ = ("no", "type", "comment", "bounding_box_offset_x", "bounding_box_offset_y", "center_of_terrain_z", "rotation_around_Z", "consider_boreholes", "coordinate_system", "terrain_table", "ifc_object", "id_for_export_import", "metadata_for_export_import")
11
11
  class Type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
12
  __slots__ = ()
13
13
  TYPE_UNKNOWN: _ClassVar[Terrain.Type]
14
14
  TYPE_BOREHOLES: _ClassVar[Terrain.Type]
15
15
  TYPE_HORIZONTAL_PLANE: _ClassVar[Terrain.Type]
16
+ TYPE_IFC_FILE_MODEL_OBJECT: _ClassVar[Terrain.Type]
16
17
  TYPE_INCLINED_PLANE: _ClassVar[Terrain.Type]
17
18
  TYPE_NO_TERRAIN: _ClassVar[Terrain.Type]
18
19
  TYPE_TABLE: _ClassVar[Terrain.Type]
19
20
  TYPE_UNKNOWN: Terrain.Type
20
21
  TYPE_BOREHOLES: Terrain.Type
21
22
  TYPE_HORIZONTAL_PLANE: Terrain.Type
23
+ TYPE_IFC_FILE_MODEL_OBJECT: Terrain.Type
22
24
  TYPE_INCLINED_PLANE: Terrain.Type
23
25
  TYPE_NO_TERRAIN: Terrain.Type
24
26
  TYPE_TABLE: Terrain.Type
@@ -50,6 +52,7 @@ class Terrain(_message.Message):
50
52
  CONSIDER_BOREHOLES_FIELD_NUMBER: _ClassVar[int]
51
53
  COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
52
54
  TERRAIN_TABLE_FIELD_NUMBER: _ClassVar[int]
55
+ IFC_OBJECT_FIELD_NUMBER: _ClassVar[int]
53
56
  ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
54
57
  METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
58
  no: int
@@ -62,6 +65,7 @@ class Terrain(_message.Message):
62
65
  consider_boreholes: bool
63
66
  coordinate_system: int
64
67
  terrain_table: Terrain.TerrainTable
68
+ ifc_object: int
65
69
  id_for_export_import: str
66
70
  metadata_for_export_import: str
67
- def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[Terrain.Type, str]] = ..., comment: _Optional[str] = ..., bounding_box_offset_x: _Optional[float] = ..., bounding_box_offset_y: _Optional[float] = ..., center_of_terrain_z: _Optional[float] = ..., rotation_around_Z: _Optional[float] = ..., consider_boreholes: bool = ..., coordinate_system: _Optional[int] = ..., terrain_table: _Optional[_Union[Terrain.TerrainTable, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
71
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[Terrain.Type, str]] = ..., comment: _Optional[str] = ..., bounding_box_offset_x: _Optional[float] = ..., bounding_box_offset_y: _Optional[float] = ..., center_of_terrain_z: _Optional[float] = ..., rotation_around_Z: _Optional[float] = ..., consider_boreholes: bool = ..., coordinate_system: _Optional[int] = ..., terrain_table: _Optional[_Union[Terrain.TerrainTable, _Mapping]] = ..., ifc_object: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...