dlubal.api 0.1.293714a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dlubal.api might be problematic. Click here for more details.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,269 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class ConcreteDurabilityNoRiskOfCorrosionOrAttack(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ CONCRETE_DURABILITY_NO_RISK_OF_CORROSION_OR_ATTACK_VERY_DRY: _ClassVar[ConcreteDurabilityNoRiskOfCorrosionOrAttack]
12
+
13
+ class ConcreteDurabilityCorrosionInducedByCarbonation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
14
+ __slots__ = ()
15
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_DRY_OR_PERMANENTLY_WET: _ClassVar[ConcreteDurabilityCorrosionInducedByCarbonation]
16
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_CYCLIC_WET_AND_DRY: _ClassVar[ConcreteDurabilityCorrosionInducedByCarbonation]
17
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_MODERATE_HUMIDITY: _ClassVar[ConcreteDurabilityCorrosionInducedByCarbonation]
18
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_WET_RARELY_DRY: _ClassVar[ConcreteDurabilityCorrosionInducedByCarbonation]
19
+
20
+ class ConcreteDurabilityCorrosionInducedByChlorides(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_MODERATE_HUMIDITY: _ClassVar[ConcreteDurabilityCorrosionInducedByChlorides]
23
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_CYCLIC_WET_AND_DRY: _ClassVar[ConcreteDurabilityCorrosionInducedByChlorides]
24
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_WET_RARELY_DRY: _ClassVar[ConcreteDurabilityCorrosionInducedByChlorides]
25
+
26
+ class ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
27
+ __slots__ = ()
28
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_EXPOSED_TO_AIRBORNE_SALT: _ClassVar[ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater]
29
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_PERMANENTLY_SUBMERGED: _ClassVar[ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater]
30
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_TIDAL_SPLASH_AND_SPRAY_ZONES: _ClassVar[ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater]
31
+
32
+ class ConcreteDurabilityFreezeThawAttack(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
33
+ __slots__ = ()
34
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_MODERATE_WATER_SATURATION_NO_DEICING: _ClassVar[ConcreteDurabilityFreezeThawAttack]
35
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_HIGH_WATER_SATURATION_DEICING: _ClassVar[ConcreteDurabilityFreezeThawAttack]
36
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_HIGH_WATER_SATURATION_NO_DEICING: _ClassVar[ConcreteDurabilityFreezeThawAttack]
37
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_MODERATE_WATER_SATURATION_DEICING: _ClassVar[ConcreteDurabilityFreezeThawAttack]
38
+
39
+ class ConcreteDurabilityChemicalAttack(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
40
+ __slots__ = ()
41
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_SLIGHTLY_AGGRESSIVE: _ClassVar[ConcreteDurabilityChemicalAttack]
42
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_HIGHLY_AGGRESSIVE: _ClassVar[ConcreteDurabilityChemicalAttack]
43
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_MODERATELY_AGGRESSIVE: _ClassVar[ConcreteDurabilityChemicalAttack]
44
+
45
+ class ConcreteDurabilityConcreteCorrosionInducedByWear(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
46
+ __slots__ = ()
47
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_MODERATE: _ClassVar[ConcreteDurabilityConcreteCorrosionInducedByWear]
48
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_HIGH: _ClassVar[ConcreteDurabilityConcreteCorrosionInducedByWear]
49
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_VERY_HIGH: _ClassVar[ConcreteDurabilityConcreteCorrosionInducedByWear]
50
+
51
+ class ConcreteDurabilityStructuralClassType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
52
+ __slots__ = ()
53
+ CONCRETE_DURABILITY_STRUCTURAL_CLASS_TYPE_STANDARD: _ClassVar[ConcreteDurabilityStructuralClassType]
54
+ CONCRETE_DURABILITY_STRUCTURAL_CLASS_TYPE_DEFINED: _ClassVar[ConcreteDurabilityStructuralClassType]
55
+
56
+ class ConcreteDurabilityUserdefinedStructuralClass(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
57
+ __slots__ = ()
58
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_UNKNOWN: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
59
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S1: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
60
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S2: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
61
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S3: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
62
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S4: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
63
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S5: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
64
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S6: _ClassVar[ConcreteDurabilityUserdefinedStructuralClass]
65
+
66
+ class ConcreteDurabilityDesignWorkingLife(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
67
+ __slots__ = ()
68
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_50_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
69
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_100_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
70
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_20_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
71
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_25_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
72
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_30_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
73
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_75_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
74
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_80_YEARS: _ClassVar[ConcreteDurabilityDesignWorkingLife]
75
+
76
+ class ConcreteDurabilityMaximumEquivalentWaterToCementRatio(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
77
+ __slots__ = ()
78
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_350: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
79
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_000: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
80
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_400: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
81
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_450: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
82
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_500: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
83
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_550: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
84
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_600: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
85
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_900: _ClassVar[ConcreteDurabilityMaximumEquivalentWaterToCementRatio]
86
+
87
+ class ConcreteDurabilityIncreaseOfMinimumConcreteCoverType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
88
+ __slots__ = ()
89
+ CONCRETE_DURABILITY_INCREASE_OF_MINIMUM_CONCRETE_COVER_TYPE_STANDARD: _ClassVar[ConcreteDurabilityIncreaseOfMinimumConcreteCoverType]
90
+ CONCRETE_DURABILITY_INCREASE_OF_MINIMUM_CONCRETE_COVER_TYPE_DEFINED: _ClassVar[ConcreteDurabilityIncreaseOfMinimumConcreteCoverType]
91
+
92
+ class ConcreteDurabilityStainlessSteelType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
93
+ __slots__ = ()
94
+ CONCRETE_DURABILITY_STAINLESS_STEEL_TYPE_STANDARD: _ClassVar[ConcreteDurabilityStainlessSteelType]
95
+ CONCRETE_DURABILITY_STAINLESS_STEEL_TYPE_DEFINED: _ClassVar[ConcreteDurabilityStainlessSteelType]
96
+
97
+ class ConcreteDurabilityAdditionalProtectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
98
+ __slots__ = ()
99
+ CONCRETE_DURABILITY_ADDITIONAL_PROTECTION_TYPE_STANDARD: _ClassVar[ConcreteDurabilityAdditionalProtectionType]
100
+ CONCRETE_DURABILITY_ADDITIONAL_PROTECTION_TYPE_DEFINED: _ClassVar[ConcreteDurabilityAdditionalProtectionType]
101
+
102
+ class ConcreteDurabilityAllowanceOfDeviationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
103
+ __slots__ = ()
104
+ CONCRETE_DURABILITY_ALLOWANCE_OF_DEVIATION_TYPE_STANDARD: _ClassVar[ConcreteDurabilityAllowanceOfDeviationType]
105
+ CONCRETE_DURABILITY_ALLOWANCE_OF_DEVIATION_TYPE_DEFINED: _ClassVar[ConcreteDurabilityAllowanceOfDeviationType]
106
+
107
+ class ConcreteDurabilityConcreteCast(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
108
+ __slots__ = ()
109
+ CONCRETE_DURABILITY_CONCRETE_CAST_AGAINST_PREPARED_GROUND: _ClassVar[ConcreteDurabilityConcreteCast]
110
+ CONCRETE_DURABILITY_CONCRETE_CAST_DIRECTLY_AGAINST_SOIL: _ClassVar[ConcreteDurabilityConcreteCast]
111
+ CONCRETE_DURABILITY_NO_RISK_OF_CORROSION_OR_ATTACK_VERY_DRY: ConcreteDurabilityNoRiskOfCorrosionOrAttack
112
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_DRY_OR_PERMANENTLY_WET: ConcreteDurabilityCorrosionInducedByCarbonation
113
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_CYCLIC_WET_AND_DRY: ConcreteDurabilityCorrosionInducedByCarbonation
114
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_MODERATE_HUMIDITY: ConcreteDurabilityCorrosionInducedByCarbonation
115
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CARBONATION_WET_RARELY_DRY: ConcreteDurabilityCorrosionInducedByCarbonation
116
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_MODERATE_HUMIDITY: ConcreteDurabilityCorrosionInducedByChlorides
117
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_CYCLIC_WET_AND_DRY: ConcreteDurabilityCorrosionInducedByChlorides
118
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_WET_RARELY_DRY: ConcreteDurabilityCorrosionInducedByChlorides
119
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_EXPOSED_TO_AIRBORNE_SALT: ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater
120
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_PERMANENTLY_SUBMERGED: ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater
121
+ CONCRETE_DURABILITY_CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_TIDAL_SPLASH_AND_SPRAY_ZONES: ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater
122
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_MODERATE_WATER_SATURATION_NO_DEICING: ConcreteDurabilityFreezeThawAttack
123
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_HIGH_WATER_SATURATION_DEICING: ConcreteDurabilityFreezeThawAttack
124
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_HIGH_WATER_SATURATION_NO_DEICING: ConcreteDurabilityFreezeThawAttack
125
+ CONCRETE_DURABILITY_FREEZE_THAW_ATTACK_MODERATE_WATER_SATURATION_DEICING: ConcreteDurabilityFreezeThawAttack
126
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_SLIGHTLY_AGGRESSIVE: ConcreteDurabilityChemicalAttack
127
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_HIGHLY_AGGRESSIVE: ConcreteDurabilityChemicalAttack
128
+ CONCRETE_DURABILITY_CHEMICAL_ATTACK_MODERATELY_AGGRESSIVE: ConcreteDurabilityChemicalAttack
129
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_MODERATE: ConcreteDurabilityConcreteCorrosionInducedByWear
130
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_HIGH: ConcreteDurabilityConcreteCorrosionInducedByWear
131
+ CONCRETE_DURABILITY_CONCRETE_CORROSION_INDUCED_BY_WEAR_VERY_HIGH: ConcreteDurabilityConcreteCorrosionInducedByWear
132
+ CONCRETE_DURABILITY_STRUCTURAL_CLASS_TYPE_STANDARD: ConcreteDurabilityStructuralClassType
133
+ CONCRETE_DURABILITY_STRUCTURAL_CLASS_TYPE_DEFINED: ConcreteDurabilityStructuralClassType
134
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_UNKNOWN: ConcreteDurabilityUserdefinedStructuralClass
135
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S1: ConcreteDurabilityUserdefinedStructuralClass
136
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S2: ConcreteDurabilityUserdefinedStructuralClass
137
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S3: ConcreteDurabilityUserdefinedStructuralClass
138
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S4: ConcreteDurabilityUserdefinedStructuralClass
139
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S5: ConcreteDurabilityUserdefinedStructuralClass
140
+ CONCRETE_DURABILITY_USERDEFINED_STRUCTURAL_CLASS_S6: ConcreteDurabilityUserdefinedStructuralClass
141
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_50_YEARS: ConcreteDurabilityDesignWorkingLife
142
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_100_YEARS: ConcreteDurabilityDesignWorkingLife
143
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_20_YEARS: ConcreteDurabilityDesignWorkingLife
144
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_25_YEARS: ConcreteDurabilityDesignWorkingLife
145
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_30_YEARS: ConcreteDurabilityDesignWorkingLife
146
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_75_YEARS: ConcreteDurabilityDesignWorkingLife
147
+ CONCRETE_DURABILITY_DESIGN_WORKING_LIFE_80_YEARS: ConcreteDurabilityDesignWorkingLife
148
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_350: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
149
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_000: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
150
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_400: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
151
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_450: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
152
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_500: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
153
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_550: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
154
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_600: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
155
+ CONCRETE_DURABILITY_MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_0_900: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
156
+ CONCRETE_DURABILITY_INCREASE_OF_MINIMUM_CONCRETE_COVER_TYPE_STANDARD: ConcreteDurabilityIncreaseOfMinimumConcreteCoverType
157
+ CONCRETE_DURABILITY_INCREASE_OF_MINIMUM_CONCRETE_COVER_TYPE_DEFINED: ConcreteDurabilityIncreaseOfMinimumConcreteCoverType
158
+ CONCRETE_DURABILITY_STAINLESS_STEEL_TYPE_STANDARD: ConcreteDurabilityStainlessSteelType
159
+ CONCRETE_DURABILITY_STAINLESS_STEEL_TYPE_DEFINED: ConcreteDurabilityStainlessSteelType
160
+ CONCRETE_DURABILITY_ADDITIONAL_PROTECTION_TYPE_STANDARD: ConcreteDurabilityAdditionalProtectionType
161
+ CONCRETE_DURABILITY_ADDITIONAL_PROTECTION_TYPE_DEFINED: ConcreteDurabilityAdditionalProtectionType
162
+ CONCRETE_DURABILITY_ALLOWANCE_OF_DEVIATION_TYPE_STANDARD: ConcreteDurabilityAllowanceOfDeviationType
163
+ CONCRETE_DURABILITY_ALLOWANCE_OF_DEVIATION_TYPE_DEFINED: ConcreteDurabilityAllowanceOfDeviationType
164
+ CONCRETE_DURABILITY_CONCRETE_CAST_AGAINST_PREPARED_GROUND: ConcreteDurabilityConcreteCast
165
+ CONCRETE_DURABILITY_CONCRETE_CAST_DIRECTLY_AGAINST_SOIL: ConcreteDurabilityConcreteCast
166
+
167
+ class ConcreteDurability(_message.Message):
168
+ __slots__ = ("no", "user_defined_name_enabled", "name", "members", "member_sets", "surfaces", "no_risk_of_corrosion_or_attack_enabled", "no_risk_of_corrosion_or_attack", "corrosion_induced_by_carbonation_enabled", "corrosion_induced_by_carbonation", "corrosion_induced_by_chlorides_enabled", "corrosion_induced_by_chlorides", "corrosion_induced_by_chlorides_from_sea_water_enabled", "corrosion_induced_by_chlorides_from_sea_water", "freeze_thaw_attack_enabled", "freeze_thaw_attack", "chemical_attack_enabled", "chemical_attack", "concrete_corrosion_induced_by_wear_enabled", "concrete_corrosion_induced_by_wear", "structural_class_type", "userdefined_structural_class", "design_working_life", "increase_design_working_life_from_50_to_100_years_enabled", "position_of_reinforcement_not_affected_by_construction_process_enabled", "special_quality_control_of_production_enabled", "nature_of_binder_without_fly_ash_enabled", "air_entrainment_of_more_than_4_percent_enabled", "compact_coating_enabled", "adequate_cement_enabled", "maximum_equivalent_water_to_cement_ratio", "strength_class_of_the_concrete_enabled", "increase_of_minimum_concrete_cover_type", "increase_of_minimum_concrete_cover_factor", "stainless_steel_enabled", "stainless_steel_type", "stainless_steel_factor", "additional_protection_enabled", "additional_protection_type", "additional_protection_factor", "allowance_of_deviation_type", "userdefined_allowance_of_deviation_factor", "relaxed_quality_control_enabled", "concrete_cast_enabled", "concrete_cast", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
169
+ NO_FIELD_NUMBER: _ClassVar[int]
170
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
171
+ NAME_FIELD_NUMBER: _ClassVar[int]
172
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
173
+ MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
174
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
175
+ NO_RISK_OF_CORROSION_OR_ATTACK_ENABLED_FIELD_NUMBER: _ClassVar[int]
176
+ NO_RISK_OF_CORROSION_OR_ATTACK_FIELD_NUMBER: _ClassVar[int]
177
+ CORROSION_INDUCED_BY_CARBONATION_ENABLED_FIELD_NUMBER: _ClassVar[int]
178
+ CORROSION_INDUCED_BY_CARBONATION_FIELD_NUMBER: _ClassVar[int]
179
+ CORROSION_INDUCED_BY_CHLORIDES_ENABLED_FIELD_NUMBER: _ClassVar[int]
180
+ CORROSION_INDUCED_BY_CHLORIDES_FIELD_NUMBER: _ClassVar[int]
181
+ CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_ENABLED_FIELD_NUMBER: _ClassVar[int]
182
+ CORROSION_INDUCED_BY_CHLORIDES_FROM_SEA_WATER_FIELD_NUMBER: _ClassVar[int]
183
+ FREEZE_THAW_ATTACK_ENABLED_FIELD_NUMBER: _ClassVar[int]
184
+ FREEZE_THAW_ATTACK_FIELD_NUMBER: _ClassVar[int]
185
+ CHEMICAL_ATTACK_ENABLED_FIELD_NUMBER: _ClassVar[int]
186
+ CHEMICAL_ATTACK_FIELD_NUMBER: _ClassVar[int]
187
+ CONCRETE_CORROSION_INDUCED_BY_WEAR_ENABLED_FIELD_NUMBER: _ClassVar[int]
188
+ CONCRETE_CORROSION_INDUCED_BY_WEAR_FIELD_NUMBER: _ClassVar[int]
189
+ STRUCTURAL_CLASS_TYPE_FIELD_NUMBER: _ClassVar[int]
190
+ USERDEFINED_STRUCTURAL_CLASS_FIELD_NUMBER: _ClassVar[int]
191
+ DESIGN_WORKING_LIFE_FIELD_NUMBER: _ClassVar[int]
192
+ INCREASE_DESIGN_WORKING_LIFE_FROM_50_TO_100_YEARS_ENABLED_FIELD_NUMBER: _ClassVar[int]
193
+ POSITION_OF_REINFORCEMENT_NOT_AFFECTED_BY_CONSTRUCTION_PROCESS_ENABLED_FIELD_NUMBER: _ClassVar[int]
194
+ SPECIAL_QUALITY_CONTROL_OF_PRODUCTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
195
+ NATURE_OF_BINDER_WITHOUT_FLY_ASH_ENABLED_FIELD_NUMBER: _ClassVar[int]
196
+ AIR_ENTRAINMENT_OF_MORE_THAN_4_PERCENT_ENABLED_FIELD_NUMBER: _ClassVar[int]
197
+ COMPACT_COATING_ENABLED_FIELD_NUMBER: _ClassVar[int]
198
+ ADEQUATE_CEMENT_ENABLED_FIELD_NUMBER: _ClassVar[int]
199
+ MAXIMUM_EQUIVALENT_WATER_TO_CEMENT_RATIO_FIELD_NUMBER: _ClassVar[int]
200
+ STRENGTH_CLASS_OF_THE_CONCRETE_ENABLED_FIELD_NUMBER: _ClassVar[int]
201
+ INCREASE_OF_MINIMUM_CONCRETE_COVER_TYPE_FIELD_NUMBER: _ClassVar[int]
202
+ INCREASE_OF_MINIMUM_CONCRETE_COVER_FACTOR_FIELD_NUMBER: _ClassVar[int]
203
+ STAINLESS_STEEL_ENABLED_FIELD_NUMBER: _ClassVar[int]
204
+ STAINLESS_STEEL_TYPE_FIELD_NUMBER: _ClassVar[int]
205
+ STAINLESS_STEEL_FACTOR_FIELD_NUMBER: _ClassVar[int]
206
+ ADDITIONAL_PROTECTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
207
+ ADDITIONAL_PROTECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
208
+ ADDITIONAL_PROTECTION_FACTOR_FIELD_NUMBER: _ClassVar[int]
209
+ ALLOWANCE_OF_DEVIATION_TYPE_FIELD_NUMBER: _ClassVar[int]
210
+ USERDEFINED_ALLOWANCE_OF_DEVIATION_FACTOR_FIELD_NUMBER: _ClassVar[int]
211
+ RELAXED_QUALITY_CONTROL_ENABLED_FIELD_NUMBER: _ClassVar[int]
212
+ CONCRETE_CAST_ENABLED_FIELD_NUMBER: _ClassVar[int]
213
+ CONCRETE_CAST_FIELD_NUMBER: _ClassVar[int]
214
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
215
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
216
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
217
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
218
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
219
+ no: int
220
+ user_defined_name_enabled: bool
221
+ name: str
222
+ members: _containers.RepeatedScalarFieldContainer[int]
223
+ member_sets: _containers.RepeatedScalarFieldContainer[int]
224
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
225
+ no_risk_of_corrosion_or_attack_enabled: bool
226
+ no_risk_of_corrosion_or_attack: ConcreteDurabilityNoRiskOfCorrosionOrAttack
227
+ corrosion_induced_by_carbonation_enabled: bool
228
+ corrosion_induced_by_carbonation: ConcreteDurabilityCorrosionInducedByCarbonation
229
+ corrosion_induced_by_chlorides_enabled: bool
230
+ corrosion_induced_by_chlorides: ConcreteDurabilityCorrosionInducedByChlorides
231
+ corrosion_induced_by_chlorides_from_sea_water_enabled: bool
232
+ corrosion_induced_by_chlorides_from_sea_water: ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater
233
+ freeze_thaw_attack_enabled: bool
234
+ freeze_thaw_attack: ConcreteDurabilityFreezeThawAttack
235
+ chemical_attack_enabled: bool
236
+ chemical_attack: ConcreteDurabilityChemicalAttack
237
+ concrete_corrosion_induced_by_wear_enabled: bool
238
+ concrete_corrosion_induced_by_wear: ConcreteDurabilityConcreteCorrosionInducedByWear
239
+ structural_class_type: ConcreteDurabilityStructuralClassType
240
+ userdefined_structural_class: ConcreteDurabilityUserdefinedStructuralClass
241
+ design_working_life: ConcreteDurabilityDesignWorkingLife
242
+ increase_design_working_life_from_50_to_100_years_enabled: bool
243
+ position_of_reinforcement_not_affected_by_construction_process_enabled: bool
244
+ special_quality_control_of_production_enabled: bool
245
+ nature_of_binder_without_fly_ash_enabled: bool
246
+ air_entrainment_of_more_than_4_percent_enabled: bool
247
+ compact_coating_enabled: bool
248
+ adequate_cement_enabled: bool
249
+ maximum_equivalent_water_to_cement_ratio: ConcreteDurabilityMaximumEquivalentWaterToCementRatio
250
+ strength_class_of_the_concrete_enabled: bool
251
+ increase_of_minimum_concrete_cover_type: ConcreteDurabilityIncreaseOfMinimumConcreteCoverType
252
+ increase_of_minimum_concrete_cover_factor: float
253
+ stainless_steel_enabled: bool
254
+ stainless_steel_type: ConcreteDurabilityStainlessSteelType
255
+ stainless_steel_factor: float
256
+ additional_protection_enabled: bool
257
+ additional_protection_type: ConcreteDurabilityAdditionalProtectionType
258
+ additional_protection_factor: float
259
+ allowance_of_deviation_type: ConcreteDurabilityAllowanceOfDeviationType
260
+ userdefined_allowance_of_deviation_factor: float
261
+ relaxed_quality_control_enabled: bool
262
+ concrete_cast_enabled: bool
263
+ concrete_cast: ConcreteDurabilityConcreteCast
264
+ comment: str
265
+ is_generated: bool
266
+ generating_object_info: str
267
+ id_for_export_import: str
268
+ metadata_for_export_import: str
269
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., member_sets: _Optional[_Iterable[int]] = ..., surfaces: _Optional[_Iterable[int]] = ..., no_risk_of_corrosion_or_attack_enabled: bool = ..., no_risk_of_corrosion_or_attack: _Optional[_Union[ConcreteDurabilityNoRiskOfCorrosionOrAttack, str]] = ..., corrosion_induced_by_carbonation_enabled: bool = ..., corrosion_induced_by_carbonation: _Optional[_Union[ConcreteDurabilityCorrosionInducedByCarbonation, str]] = ..., corrosion_induced_by_chlorides_enabled: bool = ..., corrosion_induced_by_chlorides: _Optional[_Union[ConcreteDurabilityCorrosionInducedByChlorides, str]] = ..., corrosion_induced_by_chlorides_from_sea_water_enabled: bool = ..., corrosion_induced_by_chlorides_from_sea_water: _Optional[_Union[ConcreteDurabilityCorrosionInducedByChloridesFromSeaWater, str]] = ..., freeze_thaw_attack_enabled: bool = ..., freeze_thaw_attack: _Optional[_Union[ConcreteDurabilityFreezeThawAttack, str]] = ..., chemical_attack_enabled: bool = ..., chemical_attack: _Optional[_Union[ConcreteDurabilityChemicalAttack, str]] = ..., concrete_corrosion_induced_by_wear_enabled: bool = ..., concrete_corrosion_induced_by_wear: _Optional[_Union[ConcreteDurabilityConcreteCorrosionInducedByWear, str]] = ..., structural_class_type: _Optional[_Union[ConcreteDurabilityStructuralClassType, str]] = ..., userdefined_structural_class: _Optional[_Union[ConcreteDurabilityUserdefinedStructuralClass, str]] = ..., design_working_life: _Optional[_Union[ConcreteDurabilityDesignWorkingLife, str]] = ..., increase_design_working_life_from_50_to_100_years_enabled: bool = ..., position_of_reinforcement_not_affected_by_construction_process_enabled: bool = ..., special_quality_control_of_production_enabled: bool = ..., nature_of_binder_without_fly_ash_enabled: bool = ..., air_entrainment_of_more_than_4_percent_enabled: bool = ..., compact_coating_enabled: bool = ..., adequate_cement_enabled: bool = ..., maximum_equivalent_water_to_cement_ratio: _Optional[_Union[ConcreteDurabilityMaximumEquivalentWaterToCementRatio, str]] = ..., strength_class_of_the_concrete_enabled: bool = ..., increase_of_minimum_concrete_cover_type: _Optional[_Union[ConcreteDurabilityIncreaseOfMinimumConcreteCoverType, str]] = ..., increase_of_minimum_concrete_cover_factor: _Optional[float] = ..., stainless_steel_enabled: bool = ..., stainless_steel_type: _Optional[_Union[ConcreteDurabilityStainlessSteelType, str]] = ..., stainless_steel_factor: _Optional[float] = ..., additional_protection_enabled: bool = ..., additional_protection_type: _Optional[_Union[ConcreteDurabilityAdditionalProtectionType, str]] = ..., additional_protection_factor: _Optional[float] = ..., allowance_of_deviation_type: _Optional[_Union[ConcreteDurabilityAllowanceOfDeviationType, str]] = ..., userdefined_allowance_of_deviation_factor: _Optional[float] = ..., relaxed_quality_control_enabled: bool = ..., concrete_cast_enabled: bool = ..., concrete_cast: _Optional[_Union[ConcreteDurabilityConcreteCast, str]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,66 @@
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/types_for_concrete_design/concrete_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/types_for_concrete_design/concrete_effective_lengths.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/rfem/types_for_concrete_design/concrete_effective_lengths.proto\x12)dlubal.api.rfem.types_for_concrete_design\"\xb2#\n\x18\x43oncreteEffectiveLengths\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x0f\n\x07members\x18\x05 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x06 \x03(\x05\x12\'\n\x1alateral_torsional_buckling\x18\x07 \x01(\x08H\x03\x88\x01\x01\x12\x83\x01\n\x1a\x62uckling_factor_value_type\x18\x08 \x01(\x0e\x32Z.dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsBucklingFactorValueTypeH\x04\x88\x01\x01\x12\x19\n\x0cis_generated\x18\t \x01(\x08H\x05\x88\x01\x01\x12#\n\x16generating_object_info\x18\n \x01(\tH\x06\x88\x01\x01\x12\x1f\n\x12intermediate_nodes\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12!\n\x14\x64ifferent_properties\x18\x0c \x01(\x08H\x08\x88\x01\x01\x12(\n\x1b\x66\x61\x63tors_definition_absolute\x18\r \x01(\x08H\t\x88\x01\x01\x12\x8a\x01\n\x1a\x66ire_design_nodal_supports\x18\x0e \x01(\x0b\x32\x61.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsFireDesignNodalSupportsH\n\x88\x01\x01\x12}\n\x13\x66ire_design_factors\x18\x0f \x01(\x0b\x32[.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsFireDesignFactorsH\x0b\x88\x01\x01\x12}\n\x13\x66ire_design_lengths\x18\x10 \x01(\x0b\x32[.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsFireDesignLengthsH\x0c\x88\x01\x01\x12+\n\x1e\x66ire_design_intermediate_nodes\x18\x11 \x01(\x08H\r\x88\x01\x01\x12-\n fire_design_different_properties\x18\x12 \x01(\x08H\x0e\x88\x01\x01\x12\x34\n\'fire_design_factors_definition_absolute\x18\x13 \x01(\x08H\x0f\x88\x01\x01\x12\x33\n&fire_design_different_buckling_factors\x18\x14 \x01(\x08H\x10\x88\x01\x01\x12\x33\n&import_from_stability_analysis_enabled\x18\x15 \x01(\x08H\x11\x88\x01\x01\x12>\n1stability_import_data_factors_definition_absolute\x18\x16 \x01(\x08H\x12\x88\x01\x01\x12+\n\x1estability_import_data_member_y\x18\x17 \x01(\x05H\x13\x88\x01\x01\x12,\n\x1fstability_import_data_loading_y\x18\x18 \x01(\x05H\x14\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_y\x18\x19 \x01(\x05H\x15\x88\x01\x01\x12+\n\x1estability_import_data_member_z\x18\x1a \x01(\x05H\x16\x88\x01\x01\x12,\n\x1fstability_import_data_loading_z\x18\x1b \x01(\x05H\x17\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_z\x18\x1c \x01(\x05H\x18\x88\x01\x01\x12\x90\x01\n\x1dstability_import_data_factors\x18\x1d \x01(\x0b\x32\x64.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsStabilityImportDataFactorsH\x19\x88\x01\x01\x12\x90\x01\n\x1dstability_import_data_lengths\x18\x1e \x01(\x0b\x32\x64.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsStabilityImportDataLengthsH\x1a\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_y\x18\x1f \x01(\x08H\x1b\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_z\x18 \x01(\x08H\x1c\x88\x01\x01\x12\x84\x01\n\x1bstructure_type_about_axis_y\x18! \x01(\x0e\x32Z.dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructureTypeAboutAxisYH\x1d\x88\x01\x01\x12\x84\x01\n\x1bstructure_type_about_axis_z\x18\" \x01(\x0e\x32Z.dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructureTypeAboutAxisZH\x1e\x88\x01\x01\x12\x8a\x01\n\x1estructural_scheme_about_axis_y\x18# \x01(\x0e\x32].dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructuralSchemeAboutAxisYH\x1f\x88\x01\x01\x12\x8a\x01\n\x1estructural_scheme_about_axis_z\x18$ \x01(\x0e\x32].dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructuralSchemeAboutAxisZH \x88\x01\x01\x12&\n\x19\x66lexural_buckling_about_y\x18% \x01(\x08H!\x88\x01\x01\x12&\n\x19\x66lexural_buckling_about_z\x18& \x01(\x08H\"\x88\x01\x01\x12t\n\x0enodal_supports\x18\' \x01(\x0b\x32W.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsNodalSupportsH#\x88\x01\x01\x12g\n\x07\x66\x61\x63tors\x18( \x01(\x0b\x32Q.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsFactorsH$\x88\x01\x01\x12g\n\x07lengths\x18) \x01(\x0b\x32Q.dlubal.api.rfem.types_for_concrete_design.ArrayOfConcreteEffectiveLengthsLengthsH%\x88\x01\x01\x12\x8d\x01\n structure_type_about_axis_y_sp63\x18* \x01(\x0e\x32^.dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63H&\x88\x01\x01\x12\x8d\x01\n structure_type_about_axis_z_sp63\x18+ \x01(\x0e\x32^.dlubal.api.rfem.types_for_concrete_design.ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63H\'\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\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x1d\n\x1b_lateral_torsional_bucklingB\x1d\n\x1b_buckling_factor_value_typeB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\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\x1e\n\x1c_structure_type_about_axis_yB\x1e\n\x1c_structure_type_about_axis_zB!\n\x1f_structural_scheme_about_axis_yB!\n\x1f_structural_scheme_about_axis_zB\x1c\n\x1a_flexural_buckling_about_yB\x1c\n\x1a_flexural_buckling_about_zB\x11\n\x0f_nodal_supportsB\n\n\x08_factorsB\n\n\x08_lengthsB#\n!_structure_type_about_axis_y_sp63B#\n!_structure_type_about_axis_z_sp63B\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"8\n6ArrayOfConcreteEffectiveLengthsFireDesignNodalSupports\"2\n0ArrayOfConcreteEffectiveLengthsFireDesignFactors\"2\n0ArrayOfConcreteEffectiveLengthsFireDesignLengths\";\n9ArrayOfConcreteEffectiveLengthsStabilityImportDataFactors\";\n9ArrayOfConcreteEffectiveLengthsStabilityImportDataLengths\".\n,ArrayOfConcreteEffectiveLengthsNodalSupports\"(\n&ArrayOfConcreteEffectiveLengthsFactors\"(\n&ArrayOfConcreteEffectiveLengthsLengths*\xbf\x01\n/ConcreteEffectiveLengthsBucklingFactorValueType\x12\x45\nACONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL\x10\x00\x12\x45\nACONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED\x10\x01*\xb9\x01\n/ConcreteEffectiveLengthsStructureTypeAboutAxisY\x12\x43\n?CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_UNBRACED\x10\x00\x12\x41\n=CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_BRACED\x10\x01*\xb9\x01\n/ConcreteEffectiveLengthsStructureTypeAboutAxisZ\x12\x43\n?CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_UNBRACED\x10\x00\x12\x41\n=CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_BRACED\x10\x01*\xcc\x01\n2ConcreteEffectiveLengthsStructuralSchemeAboutAxisY\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_DETERMINED\x10\x00\x12L\nHCONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_NON_DETERMINED\x10\x01*\xcc\x01\n2ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_DETERMINED\x10\x00\x12L\nHCONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_NON_DETERMINED\x10\x01*\x91\x02\n3ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_UNBRACED\x10\x00\x12\x46\nBCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_BRACED\x10\x01\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_COMBINED\x10\x02*\x91\x02\n3ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_UNBRACED\x10\x00\x12\x46\nBCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_BRACED\x10\x01\x12H\nDCONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_COMBINED\x10\x02\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_concrete_design.concrete_effective_lengths_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CONCRETEEFFECTIVELENGTHSBUCKLINGFACTORVALUETYPE']._serialized_start=5071
35
+ _globals['_CONCRETEEFFECTIVELENGTHSBUCKLINGFACTORVALUETYPE']._serialized_end=5262
36
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISY']._serialized_start=5265
37
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISY']._serialized_end=5450
38
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISZ']._serialized_start=5453
39
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISZ']._serialized_end=5638
40
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURALSCHEMEABOUTAXISY']._serialized_start=5641
41
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURALSCHEMEABOUTAXISY']._serialized_end=5845
42
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURALSCHEMEABOUTAXISZ']._serialized_start=5848
43
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURALSCHEMEABOUTAXISZ']._serialized_end=6052
44
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISYSP63']._serialized_start=6055
45
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISYSP63']._serialized_end=6328
46
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISZSP63']._serialized_start=6331
47
+ _globals['_CONCRETEEFFECTIVELENGTHSSTRUCTURETYPEABOUTAXISZSP63']._serialized_end=6604
48
+ _globals['_CONCRETEEFFECTIVELENGTHS']._serialized_start=122
49
+ _globals['_CONCRETEEFFECTIVELENGTHS']._serialized_end=4652
50
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNNODALSUPPORTS']._serialized_start=4654
51
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNNODALSUPPORTS']._serialized_end=4710
52
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNFACTORS']._serialized_start=4712
53
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNFACTORS']._serialized_end=4762
54
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNLENGTHS']._serialized_start=4764
55
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFIREDESIGNLENGTHS']._serialized_end=4814
56
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSSTABILITYIMPORTDATAFACTORS']._serialized_start=4816
57
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSSTABILITYIMPORTDATAFACTORS']._serialized_end=4875
58
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSSTABILITYIMPORTDATALENGTHS']._serialized_start=4877
59
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSSTABILITYIMPORTDATALENGTHS']._serialized_end=4936
60
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSNODALSUPPORTS']._serialized_start=4938
61
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSNODALSUPPORTS']._serialized_end=4984
62
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFACTORS']._serialized_start=4986
63
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSFACTORS']._serialized_end=5026
64
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSLENGTHS']._serialized_start=5028
65
+ _globals['_ARRAYOFCONCRETEEFFECTIVELENGTHSLENGTHS']._serialized_end=5068
66
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,186 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class ConcreteEffectiveLengthsBucklingFactorValueType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ CONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL: _ClassVar[ConcreteEffectiveLengthsBucklingFactorValueType]
12
+ CONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED: _ClassVar[ConcreteEffectiveLengthsBucklingFactorValueType]
13
+
14
+ class ConcreteEffectiveLengthsStructureTypeAboutAxisY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_UNBRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisY]
17
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_BRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisY]
18
+
19
+ class ConcreteEffectiveLengthsStructureTypeAboutAxisZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
20
+ __slots__ = ()
21
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_UNBRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisZ]
22
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_BRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisZ]
23
+
24
+ class ConcreteEffectiveLengthsStructuralSchemeAboutAxisY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
25
+ __slots__ = ()
26
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_DETERMINED: _ClassVar[ConcreteEffectiveLengthsStructuralSchemeAboutAxisY]
27
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_NON_DETERMINED: _ClassVar[ConcreteEffectiveLengthsStructuralSchemeAboutAxisY]
28
+
29
+ class ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
30
+ __slots__ = ()
31
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_DETERMINED: _ClassVar[ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ]
32
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_NON_DETERMINED: _ClassVar[ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ]
33
+
34
+ class ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_UNBRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63]
37
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_BRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63]
38
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_COMBINED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63]
39
+
40
+ class ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
41
+ __slots__ = ()
42
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_UNBRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63]
43
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_BRACED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63]
44
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_COMBINED: _ClassVar[ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63]
45
+ CONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL: ConcreteEffectiveLengthsBucklingFactorValueType
46
+ CONCRETE_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED: ConcreteEffectiveLengthsBucklingFactorValueType
47
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_UNBRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisY
48
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_BRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisY
49
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_UNBRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisZ
50
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_BRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisZ
51
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_DETERMINED: ConcreteEffectiveLengthsStructuralSchemeAboutAxisY
52
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Y_NON_DETERMINED: ConcreteEffectiveLengthsStructuralSchemeAboutAxisY
53
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_DETERMINED: ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ
54
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURAL_SCHEME_ABOUT_AXIS_Z_NON_DETERMINED: ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ
55
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_UNBRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63
56
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_BRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63
57
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_COMBINED: ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63
58
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_UNBRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63
59
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_BRACED: ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63
60
+ CONCRETE_EFFECTIVE_LENGTHS_STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_COMBINED: ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63
61
+
62
+ class ConcreteEffectiveLengths(_message.Message):
63
+ __slots__ = ("no", "user_defined_name_enabled", "name", "comment", "members", "member_sets", "lateral_torsional_buckling", "buckling_factor_value_type", "is_generated", "generating_object_info", "intermediate_nodes", "different_properties", "factors_definition_absolute", "fire_design_nodal_supports", "fire_design_factors", "fire_design_lengths", "fire_design_intermediate_nodes", "fire_design_different_properties", "fire_design_factors_definition_absolute", "fire_design_different_buckling_factors", "import_from_stability_analysis_enabled", "stability_import_data_factors_definition_absolute", "stability_import_data_member_y", "stability_import_data_loading_y", "stability_import_data_mode_number_y", "stability_import_data_member_z", "stability_import_data_loading_z", "stability_import_data_mode_number_z", "stability_import_data_factors", "stability_import_data_lengths", "stability_import_data_user_defined_y", "stability_import_data_user_defined_z", "structure_type_about_axis_y", "structure_type_about_axis_z", "structural_scheme_about_axis_y", "structural_scheme_about_axis_z", "flexural_buckling_about_y", "flexural_buckling_about_z", "nodal_supports", "factors", "lengths", "structure_type_about_axis_y_sp63", "structure_type_about_axis_z_sp63", "id_for_export_import", "metadata_for_export_import")
64
+ NO_FIELD_NUMBER: _ClassVar[int]
65
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
66
+ NAME_FIELD_NUMBER: _ClassVar[int]
67
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
68
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
69
+ MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
70
+ LATERAL_TORSIONAL_BUCKLING_FIELD_NUMBER: _ClassVar[int]
71
+ BUCKLING_FACTOR_VALUE_TYPE_FIELD_NUMBER: _ClassVar[int]
72
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
73
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
74
+ INTERMEDIATE_NODES_FIELD_NUMBER: _ClassVar[int]
75
+ DIFFERENT_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
76
+ FACTORS_DEFINITION_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
77
+ FIRE_DESIGN_NODAL_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
78
+ FIRE_DESIGN_FACTORS_FIELD_NUMBER: _ClassVar[int]
79
+ FIRE_DESIGN_LENGTHS_FIELD_NUMBER: _ClassVar[int]
80
+ FIRE_DESIGN_INTERMEDIATE_NODES_FIELD_NUMBER: _ClassVar[int]
81
+ FIRE_DESIGN_DIFFERENT_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
82
+ FIRE_DESIGN_FACTORS_DEFINITION_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
83
+ FIRE_DESIGN_DIFFERENT_BUCKLING_FACTORS_FIELD_NUMBER: _ClassVar[int]
84
+ IMPORT_FROM_STABILITY_ANALYSIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
85
+ STABILITY_IMPORT_DATA_FACTORS_DEFINITION_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
86
+ STABILITY_IMPORT_DATA_MEMBER_Y_FIELD_NUMBER: _ClassVar[int]
87
+ STABILITY_IMPORT_DATA_LOADING_Y_FIELD_NUMBER: _ClassVar[int]
88
+ STABILITY_IMPORT_DATA_MODE_NUMBER_Y_FIELD_NUMBER: _ClassVar[int]
89
+ STABILITY_IMPORT_DATA_MEMBER_Z_FIELD_NUMBER: _ClassVar[int]
90
+ STABILITY_IMPORT_DATA_LOADING_Z_FIELD_NUMBER: _ClassVar[int]
91
+ STABILITY_IMPORT_DATA_MODE_NUMBER_Z_FIELD_NUMBER: _ClassVar[int]
92
+ STABILITY_IMPORT_DATA_FACTORS_FIELD_NUMBER: _ClassVar[int]
93
+ STABILITY_IMPORT_DATA_LENGTHS_FIELD_NUMBER: _ClassVar[int]
94
+ STABILITY_IMPORT_DATA_USER_DEFINED_Y_FIELD_NUMBER: _ClassVar[int]
95
+ STABILITY_IMPORT_DATA_USER_DEFINED_Z_FIELD_NUMBER: _ClassVar[int]
96
+ STRUCTURE_TYPE_ABOUT_AXIS_Y_FIELD_NUMBER: _ClassVar[int]
97
+ STRUCTURE_TYPE_ABOUT_AXIS_Z_FIELD_NUMBER: _ClassVar[int]
98
+ STRUCTURAL_SCHEME_ABOUT_AXIS_Y_FIELD_NUMBER: _ClassVar[int]
99
+ STRUCTURAL_SCHEME_ABOUT_AXIS_Z_FIELD_NUMBER: _ClassVar[int]
100
+ FLEXURAL_BUCKLING_ABOUT_Y_FIELD_NUMBER: _ClassVar[int]
101
+ FLEXURAL_BUCKLING_ABOUT_Z_FIELD_NUMBER: _ClassVar[int]
102
+ NODAL_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
103
+ FACTORS_FIELD_NUMBER: _ClassVar[int]
104
+ LENGTHS_FIELD_NUMBER: _ClassVar[int]
105
+ STRUCTURE_TYPE_ABOUT_AXIS_Y_SP63_FIELD_NUMBER: _ClassVar[int]
106
+ STRUCTURE_TYPE_ABOUT_AXIS_Z_SP63_FIELD_NUMBER: _ClassVar[int]
107
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
108
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
109
+ no: int
110
+ user_defined_name_enabled: bool
111
+ name: str
112
+ comment: str
113
+ members: _containers.RepeatedScalarFieldContainer[int]
114
+ member_sets: _containers.RepeatedScalarFieldContainer[int]
115
+ lateral_torsional_buckling: bool
116
+ buckling_factor_value_type: ConcreteEffectiveLengthsBucklingFactorValueType
117
+ is_generated: bool
118
+ generating_object_info: str
119
+ intermediate_nodes: bool
120
+ different_properties: bool
121
+ factors_definition_absolute: bool
122
+ fire_design_nodal_supports: ArrayOfConcreteEffectiveLengthsFireDesignNodalSupports
123
+ fire_design_factors: ArrayOfConcreteEffectiveLengthsFireDesignFactors
124
+ fire_design_lengths: ArrayOfConcreteEffectiveLengthsFireDesignLengths
125
+ fire_design_intermediate_nodes: bool
126
+ fire_design_different_properties: bool
127
+ fire_design_factors_definition_absolute: bool
128
+ fire_design_different_buckling_factors: bool
129
+ import_from_stability_analysis_enabled: bool
130
+ stability_import_data_factors_definition_absolute: bool
131
+ stability_import_data_member_y: int
132
+ stability_import_data_loading_y: int
133
+ stability_import_data_mode_number_y: int
134
+ stability_import_data_member_z: int
135
+ stability_import_data_loading_z: int
136
+ stability_import_data_mode_number_z: int
137
+ stability_import_data_factors: ArrayOfConcreteEffectiveLengthsStabilityImportDataFactors
138
+ stability_import_data_lengths: ArrayOfConcreteEffectiveLengthsStabilityImportDataLengths
139
+ stability_import_data_user_defined_y: bool
140
+ stability_import_data_user_defined_z: bool
141
+ structure_type_about_axis_y: ConcreteEffectiveLengthsStructureTypeAboutAxisY
142
+ structure_type_about_axis_z: ConcreteEffectiveLengthsStructureTypeAboutAxisZ
143
+ structural_scheme_about_axis_y: ConcreteEffectiveLengthsStructuralSchemeAboutAxisY
144
+ structural_scheme_about_axis_z: ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ
145
+ flexural_buckling_about_y: bool
146
+ flexural_buckling_about_z: bool
147
+ nodal_supports: ArrayOfConcreteEffectiveLengthsNodalSupports
148
+ factors: ArrayOfConcreteEffectiveLengthsFactors
149
+ lengths: ArrayOfConcreteEffectiveLengthsLengths
150
+ structure_type_about_axis_y_sp63: ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63
151
+ structure_type_about_axis_z_sp63: ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63
152
+ id_for_export_import: str
153
+ metadata_for_export_import: str
154
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., member_sets: _Optional[_Iterable[int]] = ..., lateral_torsional_buckling: bool = ..., buckling_factor_value_type: _Optional[_Union[ConcreteEffectiveLengthsBucklingFactorValueType, str]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., intermediate_nodes: bool = ..., different_properties: bool = ..., factors_definition_absolute: bool = ..., fire_design_nodal_supports: _Optional[_Union[ArrayOfConcreteEffectiveLengthsFireDesignNodalSupports, _Mapping]] = ..., fire_design_factors: _Optional[_Union[ArrayOfConcreteEffectiveLengthsFireDesignFactors, _Mapping]] = ..., fire_design_lengths: _Optional[_Union[ArrayOfConcreteEffectiveLengthsFireDesignLengths, _Mapping]] = ..., fire_design_intermediate_nodes: bool = ..., fire_design_different_properties: bool = ..., fire_design_factors_definition_absolute: bool = ..., fire_design_different_buckling_factors: bool = ..., import_from_stability_analysis_enabled: bool = ..., stability_import_data_factors_definition_absolute: bool = ..., stability_import_data_member_y: _Optional[int] = ..., stability_import_data_loading_y: _Optional[int] = ..., stability_import_data_mode_number_y: _Optional[int] = ..., stability_import_data_member_z: _Optional[int] = ..., stability_import_data_loading_z: _Optional[int] = ..., stability_import_data_mode_number_z: _Optional[int] = ..., stability_import_data_factors: _Optional[_Union[ArrayOfConcreteEffectiveLengthsStabilityImportDataFactors, _Mapping]] = ..., stability_import_data_lengths: _Optional[_Union[ArrayOfConcreteEffectiveLengthsStabilityImportDataLengths, _Mapping]] = ..., stability_import_data_user_defined_y: bool = ..., stability_import_data_user_defined_z: bool = ..., structure_type_about_axis_y: _Optional[_Union[ConcreteEffectiveLengthsStructureTypeAboutAxisY, str]] = ..., structure_type_about_axis_z: _Optional[_Union[ConcreteEffectiveLengthsStructureTypeAboutAxisZ, str]] = ..., structural_scheme_about_axis_y: _Optional[_Union[ConcreteEffectiveLengthsStructuralSchemeAboutAxisY, str]] = ..., structural_scheme_about_axis_z: _Optional[_Union[ConcreteEffectiveLengthsStructuralSchemeAboutAxisZ, str]] = ..., flexural_buckling_about_y: bool = ..., flexural_buckling_about_z: bool = ..., nodal_supports: _Optional[_Union[ArrayOfConcreteEffectiveLengthsNodalSupports, _Mapping]] = ..., factors: _Optional[_Union[ArrayOfConcreteEffectiveLengthsFactors, _Mapping]] = ..., lengths: _Optional[_Union[ArrayOfConcreteEffectiveLengthsLengths, _Mapping]] = ..., structure_type_about_axis_y_sp63: _Optional[_Union[ConcreteEffectiveLengthsStructureTypeAboutAxisYSp63, str]] = ..., structure_type_about_axis_z_sp63: _Optional[_Union[ConcreteEffectiveLengthsStructureTypeAboutAxisZSp63, str]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
155
+
156
+ class ArrayOfConcreteEffectiveLengthsFireDesignNodalSupports(_message.Message):
157
+ __slots__ = ()
158
+ def __init__(self) -> None: ...
159
+
160
+ class ArrayOfConcreteEffectiveLengthsFireDesignFactors(_message.Message):
161
+ __slots__ = ()
162
+ def __init__(self) -> None: ...
163
+
164
+ class ArrayOfConcreteEffectiveLengthsFireDesignLengths(_message.Message):
165
+ __slots__ = ()
166
+ def __init__(self) -> None: ...
167
+
168
+ class ArrayOfConcreteEffectiveLengthsStabilityImportDataFactors(_message.Message):
169
+ __slots__ = ()
170
+ def __init__(self) -> None: ...
171
+
172
+ class ArrayOfConcreteEffectiveLengthsStabilityImportDataLengths(_message.Message):
173
+ __slots__ = ()
174
+ def __init__(self) -> None: ...
175
+
176
+ class ArrayOfConcreteEffectiveLengthsNodalSupports(_message.Message):
177
+ __slots__ = ()
178
+ def __init__(self) -> None: ...
179
+
180
+ class ArrayOfConcreteEffectiveLengthsFactors(_message.Message):
181
+ __slots__ = ()
182
+ def __init__(self) -> None: ...
183
+
184
+ class ArrayOfConcreteEffectiveLengthsLengths(_message.Message):
185
+ __slots__ = ()
186
+ def __init__(self) -> None: ...
@@ -0,0 +1,52 @@
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/types_for_concrete_design/punching_reinforcement.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/types_for_concrete_design/punching_reinforcement.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nFdlubal/api/rfem/types_for_concrete_design/punching_reinforcement.proto\x12)dlubal.api.rfem.types_for_concrete_design\"\xb3<\n\x15PunchingReinforcement\x12\n\n\x02no\x18\x01 \x01(\x05\x12W\n\x04type\x18\x02 \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\r\n\x05nodes\x18\x05 \x03(\x05\x12\x15\n\x08material\x18\x06 \x01(\x05H\x03\x88\x01\x01\x12j\n\x0eplacement_type\x18\x07 \x01(\x0e\x32M.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementPlacementTypeH\x04\x88\x01\x01\x12!\n\x14number_of_perimeters\x18\x08 \x01(\x05H\x05\x88\x01\x01\x12.\n!number_of_perimeters_auto_enabled\x18\t \x01(\x08H\x06\x88\x01\x01\x12-\n number_of_legs_in_each_perimeter\x18\n \x01(\x05H\x07\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_enabled\x18\x0b \x01(\x08H\x08\x88\x01\x01\x12y\n\x16perimeter_spacing_type\x18\x0c \x01(\x0e\x32T.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementPerimeterSpacingTypeH\t\x88\x01\x01\x12S\nFmultiple_static_depth_spacing_between_support_face_and_first_perimeter\x18\r \x01(\x01H\n\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_enabled\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12=\n0multiple_static_depth_spacing_between_perimeters\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_enabled\x18\x10 \x01(\x08H\r\x88\x01\x01\x12\x46\n9absolute_spacing_between_support_face_and_first_perimeter\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_enabled\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12\x30\n#absolute_spacing_between_perimeters\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_enabled\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12\x1d\n\x10\x62\x65nd_up_diameter\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12*\n\x1d\x62\x65nd_up_diameter_auto_enabled\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12\x1b\n\x0eperimeter_area\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x17\n\ntotal_area\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\x1e\n\x16integrated_in_surfaces\x18\x19 \x03(\x05\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x16\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1b \x01(\x08H\x17\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1c \x01(\tH\x18\x88\x01\x01\x12.\n!number_of_perimeters_auto_maximum\x18\x1d \x01(\x05H\x19\x88\x01\x01\x12.\n!number_of_perimeters_auto_minimum\x18\x1e \x01(\x05H\x1a\x88\x01\x01\x12/\n\"number_of_perimeters_auto_priority\x18\x1f \x01(\x05H\x1b\x88\x01\x01\x12,\n\x1fnumber_of_perimeters_calculated\x18 \x01(\x05H\x1c\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_maximum\x18! \x01(\x05H\x1d\x88\x01\x01\x12:\n-number_of_legs_in_each_perimeter_auto_minimum\x18\" \x01(\x05H\x1e\x88\x01\x01\x12;\n.number_of_legs_in_each_perimeter_auto_priority\x18# \x01(\x05H\x1f\x88\x01\x01\x12\x38\n+number_of_legs_in_each_perimeter_calculated\x18$ \x01(\x05H \x88\x01\x01\x12\x62\nUmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_increment\x18% \x01(\x01H!\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_maximum\x18& \x01(\x01H\"\x88\x01\x01\x12`\nSmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_minimum\x18\' \x01(\x01H#\x88\x01\x01\x12\x61\nTmultiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_priority\x18( \x01(\x05H$\x88\x01\x01\x12^\nQmultiple_static_depth_spacing_between_support_face_and_first_perimeter_calculated\x18) \x01(\x01H%\x88\x01\x01\x12L\n?multiple_static_depth_spacing_between_perimeters_auto_increment\x18* \x01(\x01H&\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_maximum\x18+ \x01(\x01H\'\x88\x01\x01\x12J\n=multiple_static_depth_spacing_between_perimeters_auto_minimum\x18, \x01(\x01H(\x88\x01\x01\x12K\n>multiple_static_depth_spacing_between_perimeters_auto_priority\x18- \x01(\x05H)\x88\x01\x01\x12H\n;multiple_static_depth_spacing_between_perimeters_calculated\x18. \x01(\x01H*\x88\x01\x01\x12\x90\x01\n\x1e\x64ifferent_placement_perimeters\x18/ \x01(\x0b\x32\x63.dlubal.api.rfem.types_for_concrete_design.ArrayOfPunchingReinforcementDifferentPlacementPerimetersH+\x88\x01\x01\x12\x9f\x01\n*different_placement_perimeter_spacing_type\x18\x30 \x01(\x0e\x32\x66.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementDifferentPlacementPerimeterSpacingTypeH,\x88\x01\x01\x12*\n\x1d\x62\x65nd_up_diameter_auto_maximum\x18\x31 \x01(\x01H-\x88\x01\x01\x12*\n\x1d\x62\x65nd_up_diameter_auto_minimum\x18\x32 \x01(\x01H.\x88\x01\x01\x12+\n\x1e\x62\x65nd_up_diameter_auto_priority\x18\x33 \x01(\x05H/\x88\x01\x01\x12(\n\x1b\x62\x65nd_up_diameter_calculated\x18\x34 \x01(\x01H0\x88\x01\x01\x12|\n\x18\x62\x65nd_up_size_designation\x18\x35 \x01(\x0e\x32U.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementBendUpSizeDesignationH1\x88\x01\x01\x12\x94\x01\n%bend_up_size_designation_auto_maximum\x18\x36 \x01(\x0e\x32`.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementBendUpSizeDesignationAutoMaximumH2\x88\x01\x01\x12\x94\x01\n%bend_up_size_designation_auto_minimum\x18\x37 \x01(\x0e\x32`.dlubal.api.rfem.types_for_concrete_design.PunchingReinforcementBendUpSizeDesignationAutoMinimumH3\x88\x01\x01\x12,\n$bend_up_diameter_auto_diameters_list\x18\x38 \x03(\x05\x12\x39\n,bend_up_diameter_auto_diameters_list_enabled\x18\x39 \x01(\x08H4\x88\x01\x01\x12U\nHabsolute_spacing_between_support_face_and_first_perimeter_auto_increment\x18: \x01(\x01H5\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_maximum\x18; \x01(\x01H6\x88\x01\x01\x12S\nFabsolute_spacing_between_support_face_and_first_perimeter_auto_minimum\x18< \x01(\x01H7\x88\x01\x01\x12T\nGabsolute_spacing_between_support_face_and_first_perimeter_auto_priority\x18= \x01(\x05H8\x88\x01\x01\x12Q\nDabsolute_spacing_between_support_face_and_first_perimeter_calculated\x18> \x01(\x01H9\x88\x01\x01\x12?\n2absolute_spacing_between_perimeters_auto_increment\x18? \x01(\x01H:\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_maximum\x18@ \x01(\x01H;\x88\x01\x01\x12=\n0absolute_spacing_between_perimeters_auto_minimum\x18\x41 \x01(\x01H<\x88\x01\x01\x12>\n1absolute_spacing_between_perimeters_auto_priority\x18\x42 \x01(\x05H=\x88\x01\x01\x12;\n.absolute_spacing_between_perimeters_calculated\x18\x43 \x01(\x01H>\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x44 \x01(\tH?\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x45 \x01(\tH@\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_materialB\x11\n\x0f_placement_typeB\x17\n\x15_number_of_perimetersB$\n\"_number_of_perimeters_auto_enabledB#\n!_number_of_legs_in_each_perimeterB0\n._number_of_legs_in_each_perimeter_auto_enabledB\x19\n\x17_perimeter_spacing_typeBI\nG_multiple_static_depth_spacing_between_support_face_and_first_perimeterBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_enabledB3\n1_multiple_static_depth_spacing_between_perimetersB@\n>_multiple_static_depth_spacing_between_perimeters_auto_enabledB<\n:_absolute_spacing_between_support_face_and_first_perimeterBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_enabledB&\n$_absolute_spacing_between_perimetersB3\n1_absolute_spacing_between_perimeters_auto_enabledB\x13\n\x11_bend_up_diameterB \n\x1e_bend_up_diameter_auto_enabledB\x11\n\x0f_perimeter_areaB\r\n\x0b_total_areaB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB$\n\"_number_of_perimeters_auto_maximumB$\n\"_number_of_perimeters_auto_minimumB%\n#_number_of_perimeters_auto_priorityB\"\n _number_of_perimeters_calculatedB0\n._number_of_legs_in_each_perimeter_auto_maximumB0\n._number_of_legs_in_each_perimeter_auto_minimumB1\n/_number_of_legs_in_each_perimeter_auto_priorityB.\n,_number_of_legs_in_each_perimeter_calculatedBX\nV_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_incrementBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_maximumBV\nT_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_minimumBW\nU_multiple_static_depth_spacing_between_support_face_and_first_perimeter_auto_priorityBT\nR_multiple_static_depth_spacing_between_support_face_and_first_perimeter_calculatedBB\n@_multiple_static_depth_spacing_between_perimeters_auto_incrementB@\n>_multiple_static_depth_spacing_between_perimeters_auto_maximumB@\n>_multiple_static_depth_spacing_between_perimeters_auto_minimumBA\n?_multiple_static_depth_spacing_between_perimeters_auto_priorityB>\n<_multiple_static_depth_spacing_between_perimeters_calculatedB!\n\x1f_different_placement_perimetersB-\n+_different_placement_perimeter_spacing_typeB \n\x1e_bend_up_diameter_auto_maximumB \n\x1e_bend_up_diameter_auto_minimumB!\n\x1f_bend_up_diameter_auto_priorityB\x1e\n\x1c_bend_up_diameter_calculatedB\x1b\n\x19_bend_up_size_designationB(\n&_bend_up_size_designation_auto_maximumB(\n&_bend_up_size_designation_auto_minimumB/\n-_bend_up_diameter_auto_diameters_list_enabledBK\nI_absolute_spacing_between_support_face_and_first_perimeter_auto_incrementBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_maximumBI\nG_absolute_spacing_between_support_face_and_first_perimeter_auto_minimumBJ\nH_absolute_spacing_between_support_face_and_first_perimeter_auto_priorityBG\nE_absolute_spacing_between_support_face_and_first_perimeter_calculatedB5\n3_absolute_spacing_between_perimeters_auto_incrementB3\n1_absolute_spacing_between_perimeters_auto_maximumB3\n1_absolute_spacing_between_perimeters_auto_minimumB4\n2_absolute_spacing_between_perimeters_auto_priorityB1\n/_absolute_spacing_between_perimeters_calculatedB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\":\n8ArrayOfPunchingReinforcementDifferentPlacementPerimeters*n\n\x19PunchingReinforcementType\x12\'\n#PUNCHING_REINFORCEMENT_TYPE_UNKNOWN\x10\x00\x12(\n$PUNCHING_REINFORCEMENT_TYPE_VERTICAL\x10\x01*\x87\x01\n\"PunchingReinforcementPlacementType\x12\x30\n,PUNCHING_REINFORCEMENT_PLACEMENT_TYPE_RADIAL\x10\x00\x12/\n+PUNCHING_REINFORCEMENT_PLACEMENT_TYPE_AXIAL\x10\x01*\xb0\x01\n)PunchingReinforcementPerimeterSpacingType\x12G\nCPUNCHING_REINFORCEMENT_PERIMETER_SPACING_TYPE_MULTIPLE_STATIC_DEPTH\x10\x00\x12:\n6PUNCHING_REINFORCEMENT_PERIMETER_SPACING_TYPE_ABSOLUTE\x10\x01*\xea\x01\n;PunchingReinforcementDifferentPlacementPerimeterSpacingType\x12[\nWPUNCHING_REINFORCEMENT_DIFFERENT_PLACEMENT_PERIMETER_SPACING_TYPE_MULTIPLE_STATIC_DEPTH\x10\x00\x12N\nJPUNCHING_REINFORCEMENT_DIFFERENT_PLACEMENT_PERIMETER_SPACING_TYPE_ABSOLUTE\x10\x01*i\n*PunchingReinforcementBendUpSizeDesignation\x12;\n7PUNCHING_REINFORCEMENT_BEND_UP_SIZE_DESIGNATION_UNKNOWN\x10\x00*\x81\x01\n5PunchingReinforcementBendUpSizeDesignationAutoMaximum\x12H\nDPUNCHING_REINFORCEMENT_BEND_UP_SIZE_DESIGNATION_AUTO_MAXIMUM_UNKNOWN\x10\x00*\x81\x01\n5PunchingReinforcementBendUpSizeDesignationAutoMinimum\x12H\nDPUNCHING_REINFORCEMENT_BEND_UP_SIZE_DESIGNATION_AUTO_MINIMUM_UNKNOWN\x10\x00\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_concrete_design.punching_reinforcement_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_PUNCHINGREINFORCEMENTTYPE']._serialized_start=7911
35
+ _globals['_PUNCHINGREINFORCEMENTTYPE']._serialized_end=8021
36
+ _globals['_PUNCHINGREINFORCEMENTPLACEMENTTYPE']._serialized_start=8024
37
+ _globals['_PUNCHINGREINFORCEMENTPLACEMENTTYPE']._serialized_end=8159
38
+ _globals['_PUNCHINGREINFORCEMENTPERIMETERSPACINGTYPE']._serialized_start=8162
39
+ _globals['_PUNCHINGREINFORCEMENTPERIMETERSPACINGTYPE']._serialized_end=8338
40
+ _globals['_PUNCHINGREINFORCEMENTDIFFERENTPLACEMENTPERIMETERSPACINGTYPE']._serialized_start=8341
41
+ _globals['_PUNCHINGREINFORCEMENTDIFFERENTPLACEMENTPERIMETERSPACINGTYPE']._serialized_end=8575
42
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATION']._serialized_start=8577
43
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATION']._serialized_end=8682
44
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATIONAUTOMAXIMUM']._serialized_start=8685
45
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATIONAUTOMAXIMUM']._serialized_end=8814
46
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATIONAUTOMINIMUM']._serialized_start=8817
47
+ _globals['_PUNCHINGREINFORCEMENTBENDUPSIZEDESIGNATIONAUTOMINIMUM']._serialized_end=8946
48
+ _globals['_PUNCHINGREINFORCEMENT']._serialized_start=118
49
+ _globals['_PUNCHINGREINFORCEMENT']._serialized_end=7849
50
+ _globals['_ARRAYOFPUNCHINGREINFORCEMENTDIFFERENTPLACEMENTPERIMETERS']._serialized_start=7851
51
+ _globals['_ARRAYOFPUNCHINGREINFORCEMENTDIFFERENTPLACEMENTPERIMETERS']._serialized_end=7909
52
+ # @@protoc_insertion_point(module_scope)