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,42 @@
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_lines/line_welded_joint.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_lines/line_welded_joint.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'\n7dlubal/api/rfem/types_for_lines/line_welded_joint.proto\x12\x1f\x64lubal.api.rfem.types_for_lines\"\xeb\x07\n\x0fLineWeldedJoint\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\x12R\n\njoint_type\x18\x04 \x01(\x0e\x32\x39.dlubal.api.rfem.types_for_lines.LineWeldedJointJointTypeH\x02\x88\x01\x01\x12P\n\tweld_type\x18\x05 \x01(\x0e\x32\x38.dlubal.api.rfem.types_for_lines.LineWeldedJointWeldTypeH\x03\x88\x01\x01\x12n\n\x18longitudinal_arrangement\x18\x06 \x01(\x0e\x32G.dlubal.api.rfem.types_for_lines.LineWeldedJointLongitudinalArrangementH\x04\x88\x01\x01\x12\x19\n\x0cweld_size_a1\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x19\n\x0cweld_size_a2\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bweld_length\x18\t \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x66irst_weld_position\x18\n \x01(\x01H\x08\x88\x01\x01\x12*\n\x1dstress_analysis_configuration\x18\x0b \x01(\x05H\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\n\x88\x01\x01\x12\x19\n\x0cis_generated\x18\r \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\x0c\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0f \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x10 \x01(\tH\x0e\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_joint_typeB\x0c\n\n_weld_typeB\x1b\n\x19_longitudinal_arrangementB\x0f\n\r_weld_size_a1B\x0f\n\r_weld_size_a2B\x0e\n\x0c_weld_lengthB\x16\n\x14_first_weld_positionB \n\x1e_stress_analysis_configurationB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xce\x01\n\x18LineWeldedJointJointType\x12+\n\'LINE_WELDED_JOINT_JOINT_TYPE_BUTT_JOINT\x10\x00\x12-\n)LINE_WELDED_JOINT_JOINT_TYPE_CORNER_JOINT\x10\x01\x12*\n&LINE_WELDED_JOINT_JOINT_TYPE_LAP_JOINT\x10\x02\x12*\n&LINE_WELDED_JOINT_JOINT_TYPE_TEE_JOINT\x10\x03*\xbb\x05\n\x17LineWeldedJointWeldType\x12-\n)LINE_WELDED_JOINT_WELD_TYPE_SINGLE_SQUARE\x10\x00\x12\x30\n,LINE_WELDED_JOINT_WELD_TYPE_BEVEL_AND_FILLET\x10\r\x12,\n(LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_BEVEL\x10\x03\x12-\n)LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_FILLET\x10\x0b\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_J\x10\t\x12-\n)LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_SQUARE\x10\x01\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_U\x10\x07\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_V\x10\x05\x12,\n(LINE_WELDED_JOINT_WELD_TYPE_J_AND_FILLET\x10\x0e\x12,\n(LINE_WELDED_JOINT_WELD_TYPE_SINGLE_BEVEL\x10\x02\x12-\n)LINE_WELDED_JOINT_WELD_TYPE_SINGLE_FILLET\x10\n\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_SINGLE_J\x10\x08\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_SINGLE_U\x10\x06\x12(\n$LINE_WELDED_JOINT_WELD_TYPE_SINGLE_V\x10\x04\x12,\n(LINE_WELDED_JOINT_WELD_TYPE_V_AND_FILLET\x10\x0c*\xb1\x01\n&LineWeldedJointLongitudinalArrangement\x12\x39\n5LINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_CONTINUOUS\x10\x00\x12L\nHLINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_INTERMITTENT_SMEARED_APPROACH\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_lines.line_welded_joint_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_LINEWELDEDJOINTJOINTTYPE']._serialized_start=1099
35
+ _globals['_LINEWELDEDJOINTJOINTTYPE']._serialized_end=1305
36
+ _globals['_LINEWELDEDJOINTWELDTYPE']._serialized_start=1308
37
+ _globals['_LINEWELDEDJOINTWELDTYPE']._serialized_end=2007
38
+ _globals['_LINEWELDEDJOINTLONGITUDINALARRANGEMENT']._serialized_start=2010
39
+ _globals['_LINEWELDEDJOINTLONGITUDINALARRANGEMENT']._serialized_end=2187
40
+ _globals['_LINEWELDEDJOINT']._serialized_start=93
41
+ _globals['_LINEWELDEDJOINT']._serialized_end=1096
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,93 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class LineWeldedJointJointType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ LINE_WELDED_JOINT_JOINT_TYPE_BUTT_JOINT: _ClassVar[LineWeldedJointJointType]
11
+ LINE_WELDED_JOINT_JOINT_TYPE_CORNER_JOINT: _ClassVar[LineWeldedJointJointType]
12
+ LINE_WELDED_JOINT_JOINT_TYPE_LAP_JOINT: _ClassVar[LineWeldedJointJointType]
13
+ LINE_WELDED_JOINT_JOINT_TYPE_TEE_JOINT: _ClassVar[LineWeldedJointJointType]
14
+
15
+ class LineWeldedJointWeldType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_SQUARE: _ClassVar[LineWeldedJointWeldType]
18
+ LINE_WELDED_JOINT_WELD_TYPE_BEVEL_AND_FILLET: _ClassVar[LineWeldedJointWeldType]
19
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_BEVEL: _ClassVar[LineWeldedJointWeldType]
20
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_FILLET: _ClassVar[LineWeldedJointWeldType]
21
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_J: _ClassVar[LineWeldedJointWeldType]
22
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_SQUARE: _ClassVar[LineWeldedJointWeldType]
23
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_U: _ClassVar[LineWeldedJointWeldType]
24
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_V: _ClassVar[LineWeldedJointWeldType]
25
+ LINE_WELDED_JOINT_WELD_TYPE_J_AND_FILLET: _ClassVar[LineWeldedJointWeldType]
26
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_BEVEL: _ClassVar[LineWeldedJointWeldType]
27
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_FILLET: _ClassVar[LineWeldedJointWeldType]
28
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_J: _ClassVar[LineWeldedJointWeldType]
29
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_U: _ClassVar[LineWeldedJointWeldType]
30
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_V: _ClassVar[LineWeldedJointWeldType]
31
+ LINE_WELDED_JOINT_WELD_TYPE_V_AND_FILLET: _ClassVar[LineWeldedJointWeldType]
32
+
33
+ class LineWeldedJointLongitudinalArrangement(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ LINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_CONTINUOUS: _ClassVar[LineWeldedJointLongitudinalArrangement]
36
+ LINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_INTERMITTENT_SMEARED_APPROACH: _ClassVar[LineWeldedJointLongitudinalArrangement]
37
+ LINE_WELDED_JOINT_JOINT_TYPE_BUTT_JOINT: LineWeldedJointJointType
38
+ LINE_WELDED_JOINT_JOINT_TYPE_CORNER_JOINT: LineWeldedJointJointType
39
+ LINE_WELDED_JOINT_JOINT_TYPE_LAP_JOINT: LineWeldedJointJointType
40
+ LINE_WELDED_JOINT_JOINT_TYPE_TEE_JOINT: LineWeldedJointJointType
41
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_SQUARE: LineWeldedJointWeldType
42
+ LINE_WELDED_JOINT_WELD_TYPE_BEVEL_AND_FILLET: LineWeldedJointWeldType
43
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_BEVEL: LineWeldedJointWeldType
44
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_FILLET: LineWeldedJointWeldType
45
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_J: LineWeldedJointWeldType
46
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_SQUARE: LineWeldedJointWeldType
47
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_U: LineWeldedJointWeldType
48
+ LINE_WELDED_JOINT_WELD_TYPE_DOUBLE_V: LineWeldedJointWeldType
49
+ LINE_WELDED_JOINT_WELD_TYPE_J_AND_FILLET: LineWeldedJointWeldType
50
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_BEVEL: LineWeldedJointWeldType
51
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_FILLET: LineWeldedJointWeldType
52
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_J: LineWeldedJointWeldType
53
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_U: LineWeldedJointWeldType
54
+ LINE_WELDED_JOINT_WELD_TYPE_SINGLE_V: LineWeldedJointWeldType
55
+ LINE_WELDED_JOINT_WELD_TYPE_V_AND_FILLET: LineWeldedJointWeldType
56
+ LINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_CONTINUOUS: LineWeldedJointLongitudinalArrangement
57
+ LINE_WELDED_JOINT_LONGITUDINAL_ARRANGEMENT_INTERMITTENT_SMEARED_APPROACH: LineWeldedJointLongitudinalArrangement
58
+
59
+ class LineWeldedJoint(_message.Message):
60
+ __slots__ = ("no", "user_defined_name_enabled", "name", "joint_type", "weld_type", "longitudinal_arrangement", "weld_size_a1", "weld_size_a2", "weld_length", "first_weld_position", "stress_analysis_configuration", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
61
+ NO_FIELD_NUMBER: _ClassVar[int]
62
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
63
+ NAME_FIELD_NUMBER: _ClassVar[int]
64
+ JOINT_TYPE_FIELD_NUMBER: _ClassVar[int]
65
+ WELD_TYPE_FIELD_NUMBER: _ClassVar[int]
66
+ LONGITUDINAL_ARRANGEMENT_FIELD_NUMBER: _ClassVar[int]
67
+ WELD_SIZE_A1_FIELD_NUMBER: _ClassVar[int]
68
+ WELD_SIZE_A2_FIELD_NUMBER: _ClassVar[int]
69
+ WELD_LENGTH_FIELD_NUMBER: _ClassVar[int]
70
+ FIRST_WELD_POSITION_FIELD_NUMBER: _ClassVar[int]
71
+ STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
72
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
73
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
74
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
75
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
76
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
77
+ no: int
78
+ user_defined_name_enabled: bool
79
+ name: str
80
+ joint_type: LineWeldedJointJointType
81
+ weld_type: LineWeldedJointWeldType
82
+ longitudinal_arrangement: LineWeldedJointLongitudinalArrangement
83
+ weld_size_a1: float
84
+ weld_size_a2: float
85
+ weld_length: float
86
+ first_weld_position: float
87
+ stress_analysis_configuration: int
88
+ comment: str
89
+ is_generated: bool
90
+ generating_object_info: str
91
+ id_for_export_import: str
92
+ metadata_for_export_import: str
93
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., joint_type: _Optional[_Union[LineWeldedJointJointType, str]] = ..., weld_type: _Optional[_Union[LineWeldedJointWeldType, str]] = ..., longitudinal_arrangement: _Optional[_Union[LineWeldedJointLongitudinalArrangement, str]] = ..., weld_size_a1: _Optional[float] = ..., weld_size_a2: _Optional[float] = ..., weld_length: _Optional[float] = ..., first_weld_position: _Optional[float] = ..., stress_analysis_configuration: _Optional[int] = ..., 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,13 @@
1
+ from .design_support_pb2 import *
2
+ from .member_definable_stiffness_pb2 import *
3
+ from .member_eccentricity_pb2 import *
4
+ from .member_hinge_pb2 import *
5
+ from .member_nonlinearity_pb2 import *
6
+ from .member_openings_pb2 import *
7
+ from .member_result_intermediate_point_pb2 import *
8
+ from .member_rotational_restraint_pb2 import *
9
+ from .member_shear_panel_pb2 import *
10
+ from .member_spring_pb2 import *
11
+ from .member_stiffness_modification_pb2 import *
12
+ from .member_support_pb2 import *
13
+ from .member_transverse_stiffener_pb2 import *
@@ -0,0 +1,50 @@
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_members/design_support.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_members/design_support.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'\n6dlubal/api/rfem/types_for_members/design_support.proto\x12!dlubal.api.rfem.types_for_members\"\xc8\x1d\n\rDesignSupport\x12\n\n\x02no\x18\x01 \x01(\x05\x12G\n\x04type\x18\x02 \x01(\x0e\x32\x34.dlubal.api.rfem.types_for_members.DesignSupportTypeH\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\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x06 \x03(\x05\x12\x19\n\x11\x61ssigned_to_nodes\x18\x07 \x03(\x05\x12 \n\x13\x61ssigned_to_objects\x18\x08 \x01(\tH\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cis_generated\x18\n \x01(\x08H\x05\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0b \x01(\tH\x06\x88\x01\x01\x12\x1a\n\ractivate_in_y\x18\x0c \x01(\x08H\x07\x88\x01\x01\x12\x1a\n\ractivate_in_z\x18\r \x01(\x08H\x08\x88\x01\x01\x12,\n\x1f\x63onsider_in_deflection_design_y\x18\x0e \x01(\x08H\t\x88\x01\x01\x12,\n\x1f\x63onsider_in_deflection_design_z\x18\x0f \x01(\x08H\n\x88\x01\x01\x12\x35\n(concrete_monolithic_connection_z_enabled\x18\x10 \x01(\x08H\x0b\x88\x01\x01\x12\x36\n)concrete_ratio_of_moment_redistribution_z\x18\x11 \x01(\x01H\x0c\x88\x01\x01\x12t\n\x1c\x64\x65sign_support_orientation_y\x18\x12 \x01(\x0e\x32I.dlubal.api.rfem.types_for_members.DesignSupportDesignSupportOrientationYH\r\x88\x01\x01\x12t\n\x1c\x64\x65sign_support_orientation_z\x18\x13 \x01(\x0e\x32I.dlubal.api.rfem.types_for_members.DesignSupportDesignSupportOrientationZH\x0e\x88\x01\x01\x12%\n\x18\x64irect_support_y_enabled\x18\x14 \x01(\x08H\x0f\x88\x01\x01\x12%\n\x18\x64irect_support_z_enabled\x18\x15 \x01(\x08H\x10\x88\x01\x01\x12$\n\x17inner_support_y_enabled\x18\x16 \x01(\x08H\x11\x88\x01\x01\x12$\n\x17inner_support_z_enabled\x18\x17 \x01(\x08H\x12\x88\x01\x01\x12-\n limit_of_high_bending_stresses_y\x18\x18 \x01(\x01H\x13\x88\x01\x01\x12-\n limit_of_high_bending_stresses_z\x18\x19 \x01(\x01H\x14\x88\x01\x01\x12&\n\x19\x63onsider_in_fire_design_y\x18\x1a \x01(\x08H\x15\x88\x01\x01\x12&\n\x19\x63onsider_in_fire_design_z\x18\x1b \x01(\x08H\x16\x88\x01\x01\x12?\n2support_depth_by_section_width_of_member_y_enabled\x18\x1c \x01(\x08H\x17\x88\x01\x01\x12?\n2support_depth_by_section_width_of_member_z_enabled\x18\x1d \x01(\x08H\x18\x88\x01\x01\x12\x1c\n\x0fsupport_depth_y\x18\x1e \x01(\x01H\x19\x88\x01\x01\x12\x1c\n\x0fsupport_depth_z\x18\x1f \x01(\x01H\x1a\x88\x01\x01\x12\x1c\n\x0fsupport_width_y\x18 \x01(\x01H\x1b\x88\x01\x01\x12\x1c\n\x0fsupport_width_z\x18! \x01(\x01H\x1c\x88\x01\x01\x12\x36\n)timber_allow_higher_deformation_y_enabled\x18\" \x01(\x08H\x1d\x88\x01\x01\x12\x36\n)timber_allow_higher_deformation_z_enabled\x18# \x01(\x08H\x1e\x88\x01\x01\x12r\n\x1btimber_calculation_method_y\x18$ \x01(\x0e\x32H.dlubal.api.rfem.types_for_members.DesignSupportTimberCalculationMethodYH\x1f\x88\x01\x01\x12r\n\x1btimber_calculation_method_z\x18% \x01(\x0e\x32H.dlubal.api.rfem.types_for_members.DesignSupportTimberCalculationMethodZH \x88\x01\x01\x12\x34\n\'timber_check_critical_bearing_y_enabled\x18& \x01(\x08H!\x88\x01\x01\x12\x34\n\'timber_check_critical_bearing_z_enabled\x18\' \x01(\x08H\"\x88\x01\x01\x12}\n!timber_compression_design_value_y\x18( \x01(\x0e\x32M.dlubal.api.rfem.types_for_members.DesignSupportTimberCompressionDesignValueYH#\x88\x01\x01\x12}\n!timber_compression_design_value_z\x18) \x01(\x0e\x32M.dlubal.api.rfem.types_for_members.DesignSupportTimberCompressionDesignValueZH$\x88\x01\x01\x12+\n\x1etimber_factor_of_compression_y\x18* \x01(\x01H%\x88\x01\x01\x12+\n\x1etimber_factor_of_compression_z\x18+ \x01(\x01H&\x88\x01\x01\x12\"\n\x15\x65nd_support_z_enabled\x18, \x01(\x08H\'\x88\x01\x01\x12\x1e\n\x11overhang_length_z\x18- \x01(\x01H(\x88\x01\x01\x12*\n\x1d\x66\x61stened_to_support_z_enabled\x18. \x01(\x08H)\x88\x01\x01\x12!\n\x14id_for_export_import\x18/ \x01(\tH*\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x30 \x01(\tH+\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x16\n\x14_assigned_to_objectsB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x10\n\x0e_activate_in_yB\x10\n\x0e_activate_in_zB\"\n _consider_in_deflection_design_yB\"\n _consider_in_deflection_design_zB+\n)_concrete_monolithic_connection_z_enabledB,\n*_concrete_ratio_of_moment_redistribution_zB\x1f\n\x1d_design_support_orientation_yB\x1f\n\x1d_design_support_orientation_zB\x1b\n\x19_direct_support_y_enabledB\x1b\n\x19_direct_support_z_enabledB\x1a\n\x18_inner_support_y_enabledB\x1a\n\x18_inner_support_z_enabledB#\n!_limit_of_high_bending_stresses_yB#\n!_limit_of_high_bending_stresses_zB\x1c\n\x1a_consider_in_fire_design_yB\x1c\n\x1a_consider_in_fire_design_zB5\n3_support_depth_by_section_width_of_member_y_enabledB5\n3_support_depth_by_section_width_of_member_z_enabledB\x12\n\x10_support_depth_yB\x12\n\x10_support_depth_zB\x12\n\x10_support_width_yB\x12\n\x10_support_width_zB,\n*_timber_allow_higher_deformation_y_enabledB,\n*_timber_allow_higher_deformation_z_enabledB\x1e\n\x1c_timber_calculation_method_yB\x1e\n\x1c_timber_calculation_method_zB*\n(_timber_check_critical_bearing_y_enabledB*\n(_timber_check_critical_bearing_z_enabledB$\n\"_timber_compression_design_value_yB$\n\"_timber_compression_design_value_zB!\n\x1f_timber_factor_of_compression_yB!\n\x1f_timber_factor_of_compression_zB\x18\n\x16_end_support_z_enabledB\x14\n\x12_overhang_length_zB \n\x1e_fastened_to_support_z_enabledB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\x86\x02\n\x11\x44\x65signSupportType\x12\x1f\n\x1b\x44\x45SIGN_SUPPORT_TYPE_UNKNOWN\x10\x00\x12\x34\n0DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_CONCRETE\x10\x02\x12\x33\n/DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_GENERAL\x10\x01\x12\x31\n-DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_STEEL\x10\x04\x12\x32\n.DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_TIMBER\x10\x03*\xd2\x01\n&DesignSupportDesignSupportOrientationY\x12\x38\n4DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_POSITIVE\x10\x00\x12\x34\n0DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_BOTH\x10\x02\x12\x38\n4DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_NEGATIVE\x10\x01*\xd2\x01\n&DesignSupportDesignSupportOrientationZ\x12\x38\n4DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_POSITIVE\x10\x00\x12\x34\n0DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_BOTH\x10\x02\x12\x38\n4DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_NEGATIVE\x10\x01*\xa5\x01\n%DesignSupportTimberCalculationMethodY\x12=\n9DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_4_2_2_2\x10\x00\x12=\n9DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_ANNEX_C\x10\x01*\xa5\x01\n%DesignSupportTimberCalculationMethodZ\x12=\n9DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_4_2_2_2\x10\x00\x12=\n9DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_ANNEX_C\x10\x01*\xa4\x01\n*DesignSupportTimberCompressionDesignValueY\x12:\n6DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_4\x10\x00\x12:\n6DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_2\x10\x01*\xa4\x01\n*DesignSupportTimberCompressionDesignValueZ\x12:\n6DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_4\x10\x00\x12:\n6DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_2\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.design_support_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_DESIGNSUPPORTTYPE']._serialized_start=3881
35
+ _globals['_DESIGNSUPPORTTYPE']._serialized_end=4143
36
+ _globals['_DESIGNSUPPORTDESIGNSUPPORTORIENTATIONY']._serialized_start=4146
37
+ _globals['_DESIGNSUPPORTDESIGNSUPPORTORIENTATIONY']._serialized_end=4356
38
+ _globals['_DESIGNSUPPORTDESIGNSUPPORTORIENTATIONZ']._serialized_start=4359
39
+ _globals['_DESIGNSUPPORTDESIGNSUPPORTORIENTATIONZ']._serialized_end=4569
40
+ _globals['_DESIGNSUPPORTTIMBERCALCULATIONMETHODY']._serialized_start=4572
41
+ _globals['_DESIGNSUPPORTTIMBERCALCULATIONMETHODY']._serialized_end=4737
42
+ _globals['_DESIGNSUPPORTTIMBERCALCULATIONMETHODZ']._serialized_start=4740
43
+ _globals['_DESIGNSUPPORTTIMBERCALCULATIONMETHODZ']._serialized_end=4905
44
+ _globals['_DESIGNSUPPORTTIMBERCOMPRESSIONDESIGNVALUEY']._serialized_start=4908
45
+ _globals['_DESIGNSUPPORTTIMBERCOMPRESSIONDESIGNVALUEY']._serialized_end=5072
46
+ _globals['_DESIGNSUPPORTTIMBERCOMPRESSIONDESIGNVALUEZ']._serialized_start=5075
47
+ _globals['_DESIGNSUPPORTTIMBERCOMPRESSIONDESIGNVALUEZ']._serialized_end=5239
48
+ _globals['_DESIGNSUPPORT']._serialized_start=94
49
+ _globals['_DESIGNSUPPORT']._serialized_end=3878
50
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,166 @@
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 DesignSupportType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ DESIGN_SUPPORT_TYPE_UNKNOWN: _ClassVar[DesignSupportType]
12
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_CONCRETE: _ClassVar[DesignSupportType]
13
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_GENERAL: _ClassVar[DesignSupportType]
14
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_STEEL: _ClassVar[DesignSupportType]
15
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_TIMBER: _ClassVar[DesignSupportType]
16
+
17
+ class DesignSupportDesignSupportOrientationY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
18
+ __slots__ = ()
19
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_POSITIVE: _ClassVar[DesignSupportDesignSupportOrientationY]
20
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_BOTH: _ClassVar[DesignSupportDesignSupportOrientationY]
21
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_NEGATIVE: _ClassVar[DesignSupportDesignSupportOrientationY]
22
+
23
+ class DesignSupportDesignSupportOrientationZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
24
+ __slots__ = ()
25
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_POSITIVE: _ClassVar[DesignSupportDesignSupportOrientationZ]
26
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_BOTH: _ClassVar[DesignSupportDesignSupportOrientationZ]
27
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_NEGATIVE: _ClassVar[DesignSupportDesignSupportOrientationZ]
28
+
29
+ class DesignSupportTimberCalculationMethodY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
30
+ __slots__ = ()
31
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_4_2_2_2: _ClassVar[DesignSupportTimberCalculationMethodY]
32
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_ANNEX_C: _ClassVar[DesignSupportTimberCalculationMethodY]
33
+
34
+ class DesignSupportTimberCalculationMethodZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_4_2_2_2: _ClassVar[DesignSupportTimberCalculationMethodZ]
37
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_ANNEX_C: _ClassVar[DesignSupportTimberCalculationMethodZ]
38
+
39
+ class DesignSupportTimberCompressionDesignValueY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
40
+ __slots__ = ()
41
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_4: _ClassVar[DesignSupportTimberCompressionDesignValueY]
42
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_2: _ClassVar[DesignSupportTimberCompressionDesignValueY]
43
+
44
+ class DesignSupportTimberCompressionDesignValueZ(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
+ __slots__ = ()
46
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_4: _ClassVar[DesignSupportTimberCompressionDesignValueZ]
47
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_2: _ClassVar[DesignSupportTimberCompressionDesignValueZ]
48
+ DESIGN_SUPPORT_TYPE_UNKNOWN: DesignSupportType
49
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_CONCRETE: DesignSupportType
50
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_GENERAL: DesignSupportType
51
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_STEEL: DesignSupportType
52
+ DESIGN_SUPPORT_TYPE_DESIGN_SUPPORT_TYPE_TIMBER: DesignSupportType
53
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_POSITIVE: DesignSupportDesignSupportOrientationY
54
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_BOTH: DesignSupportDesignSupportOrientationY
55
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Y_NEGATIVE: DesignSupportDesignSupportOrientationY
56
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_POSITIVE: DesignSupportDesignSupportOrientationZ
57
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_BOTH: DesignSupportDesignSupportOrientationZ
58
+ DESIGN_SUPPORT_DESIGN_SUPPORT_ORIENTATION_Z_NEGATIVE: DesignSupportDesignSupportOrientationZ
59
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_4_2_2_2: DesignSupportTimberCalculationMethodY
60
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Y_ACC_TO_ANNEX_C: DesignSupportTimberCalculationMethodY
61
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_4_2_2_2: DesignSupportTimberCalculationMethodZ
62
+ DESIGN_SUPPORT_TIMBER_CALCULATION_METHOD_Z_ACC_TO_ANNEX_C: DesignSupportTimberCalculationMethodZ
63
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_4: DesignSupportTimberCompressionDesignValueY
64
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Y_0_0_2: DesignSupportTimberCompressionDesignValueY
65
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_4: DesignSupportTimberCompressionDesignValueZ
66
+ DESIGN_SUPPORT_TIMBER_COMPRESSION_DESIGN_VALUE_Z_0_0_2: DesignSupportTimberCompressionDesignValueZ
67
+
68
+ class DesignSupport(_message.Message):
69
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "assigned_to_members", "assigned_to_member_sets", "assigned_to_nodes", "assigned_to_objects", "comment", "is_generated", "generating_object_info", "activate_in_y", "activate_in_z", "consider_in_deflection_design_y", "consider_in_deflection_design_z", "concrete_monolithic_connection_z_enabled", "concrete_ratio_of_moment_redistribution_z", "design_support_orientation_y", "design_support_orientation_z", "direct_support_y_enabled", "direct_support_z_enabled", "inner_support_y_enabled", "inner_support_z_enabled", "limit_of_high_bending_stresses_y", "limit_of_high_bending_stresses_z", "consider_in_fire_design_y", "consider_in_fire_design_z", "support_depth_by_section_width_of_member_y_enabled", "support_depth_by_section_width_of_member_z_enabled", "support_depth_y", "support_depth_z", "support_width_y", "support_width_z", "timber_allow_higher_deformation_y_enabled", "timber_allow_higher_deformation_z_enabled", "timber_calculation_method_y", "timber_calculation_method_z", "timber_check_critical_bearing_y_enabled", "timber_check_critical_bearing_z_enabled", "timber_compression_design_value_y", "timber_compression_design_value_z", "timber_factor_of_compression_y", "timber_factor_of_compression_z", "end_support_z_enabled", "overhang_length_z", "fastened_to_support_z_enabled", "id_for_export_import", "metadata_for_export_import")
70
+ NO_FIELD_NUMBER: _ClassVar[int]
71
+ TYPE_FIELD_NUMBER: _ClassVar[int]
72
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
73
+ NAME_FIELD_NUMBER: _ClassVar[int]
74
+ ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
75
+ ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
76
+ ASSIGNED_TO_NODES_FIELD_NUMBER: _ClassVar[int]
77
+ ASSIGNED_TO_OBJECTS_FIELD_NUMBER: _ClassVar[int]
78
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
79
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
80
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
81
+ ACTIVATE_IN_Y_FIELD_NUMBER: _ClassVar[int]
82
+ ACTIVATE_IN_Z_FIELD_NUMBER: _ClassVar[int]
83
+ CONSIDER_IN_DEFLECTION_DESIGN_Y_FIELD_NUMBER: _ClassVar[int]
84
+ CONSIDER_IN_DEFLECTION_DESIGN_Z_FIELD_NUMBER: _ClassVar[int]
85
+ CONCRETE_MONOLITHIC_CONNECTION_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
86
+ CONCRETE_RATIO_OF_MOMENT_REDISTRIBUTION_Z_FIELD_NUMBER: _ClassVar[int]
87
+ DESIGN_SUPPORT_ORIENTATION_Y_FIELD_NUMBER: _ClassVar[int]
88
+ DESIGN_SUPPORT_ORIENTATION_Z_FIELD_NUMBER: _ClassVar[int]
89
+ DIRECT_SUPPORT_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
90
+ DIRECT_SUPPORT_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
91
+ INNER_SUPPORT_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
92
+ INNER_SUPPORT_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
93
+ LIMIT_OF_HIGH_BENDING_STRESSES_Y_FIELD_NUMBER: _ClassVar[int]
94
+ LIMIT_OF_HIGH_BENDING_STRESSES_Z_FIELD_NUMBER: _ClassVar[int]
95
+ CONSIDER_IN_FIRE_DESIGN_Y_FIELD_NUMBER: _ClassVar[int]
96
+ CONSIDER_IN_FIRE_DESIGN_Z_FIELD_NUMBER: _ClassVar[int]
97
+ SUPPORT_DEPTH_BY_SECTION_WIDTH_OF_MEMBER_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
98
+ SUPPORT_DEPTH_BY_SECTION_WIDTH_OF_MEMBER_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
99
+ SUPPORT_DEPTH_Y_FIELD_NUMBER: _ClassVar[int]
100
+ SUPPORT_DEPTH_Z_FIELD_NUMBER: _ClassVar[int]
101
+ SUPPORT_WIDTH_Y_FIELD_NUMBER: _ClassVar[int]
102
+ SUPPORT_WIDTH_Z_FIELD_NUMBER: _ClassVar[int]
103
+ TIMBER_ALLOW_HIGHER_DEFORMATION_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
104
+ TIMBER_ALLOW_HIGHER_DEFORMATION_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
105
+ TIMBER_CALCULATION_METHOD_Y_FIELD_NUMBER: _ClassVar[int]
106
+ TIMBER_CALCULATION_METHOD_Z_FIELD_NUMBER: _ClassVar[int]
107
+ TIMBER_CHECK_CRITICAL_BEARING_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
108
+ TIMBER_CHECK_CRITICAL_BEARING_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
109
+ TIMBER_COMPRESSION_DESIGN_VALUE_Y_FIELD_NUMBER: _ClassVar[int]
110
+ TIMBER_COMPRESSION_DESIGN_VALUE_Z_FIELD_NUMBER: _ClassVar[int]
111
+ TIMBER_FACTOR_OF_COMPRESSION_Y_FIELD_NUMBER: _ClassVar[int]
112
+ TIMBER_FACTOR_OF_COMPRESSION_Z_FIELD_NUMBER: _ClassVar[int]
113
+ END_SUPPORT_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
114
+ OVERHANG_LENGTH_Z_FIELD_NUMBER: _ClassVar[int]
115
+ FASTENED_TO_SUPPORT_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
116
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
117
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
118
+ no: int
119
+ type: DesignSupportType
120
+ user_defined_name_enabled: bool
121
+ name: str
122
+ assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
123
+ assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
124
+ assigned_to_nodes: _containers.RepeatedScalarFieldContainer[int]
125
+ assigned_to_objects: str
126
+ comment: str
127
+ is_generated: bool
128
+ generating_object_info: str
129
+ activate_in_y: bool
130
+ activate_in_z: bool
131
+ consider_in_deflection_design_y: bool
132
+ consider_in_deflection_design_z: bool
133
+ concrete_monolithic_connection_z_enabled: bool
134
+ concrete_ratio_of_moment_redistribution_z: float
135
+ design_support_orientation_y: DesignSupportDesignSupportOrientationY
136
+ design_support_orientation_z: DesignSupportDesignSupportOrientationZ
137
+ direct_support_y_enabled: bool
138
+ direct_support_z_enabled: bool
139
+ inner_support_y_enabled: bool
140
+ inner_support_z_enabled: bool
141
+ limit_of_high_bending_stresses_y: float
142
+ limit_of_high_bending_stresses_z: float
143
+ consider_in_fire_design_y: bool
144
+ consider_in_fire_design_z: bool
145
+ support_depth_by_section_width_of_member_y_enabled: bool
146
+ support_depth_by_section_width_of_member_z_enabled: bool
147
+ support_depth_y: float
148
+ support_depth_z: float
149
+ support_width_y: float
150
+ support_width_z: float
151
+ timber_allow_higher_deformation_y_enabled: bool
152
+ timber_allow_higher_deformation_z_enabled: bool
153
+ timber_calculation_method_y: DesignSupportTimberCalculationMethodY
154
+ timber_calculation_method_z: DesignSupportTimberCalculationMethodZ
155
+ timber_check_critical_bearing_y_enabled: bool
156
+ timber_check_critical_bearing_z_enabled: bool
157
+ timber_compression_design_value_y: DesignSupportTimberCompressionDesignValueY
158
+ timber_compression_design_value_z: DesignSupportTimberCompressionDesignValueZ
159
+ timber_factor_of_compression_y: float
160
+ timber_factor_of_compression_z: float
161
+ end_support_z_enabled: bool
162
+ overhang_length_z: float
163
+ fastened_to_support_z_enabled: bool
164
+ id_for_export_import: str
165
+ metadata_for_export_import: str
166
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[DesignSupportType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., assigned_to_nodes: _Optional[_Iterable[int]] = ..., assigned_to_objects: _Optional[str] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., activate_in_y: bool = ..., activate_in_z: bool = ..., consider_in_deflection_design_y: bool = ..., consider_in_deflection_design_z: bool = ..., concrete_monolithic_connection_z_enabled: bool = ..., concrete_ratio_of_moment_redistribution_z: _Optional[float] = ..., design_support_orientation_y: _Optional[_Union[DesignSupportDesignSupportOrientationY, str]] = ..., design_support_orientation_z: _Optional[_Union[DesignSupportDesignSupportOrientationZ, str]] = ..., direct_support_y_enabled: bool = ..., direct_support_z_enabled: bool = ..., inner_support_y_enabled: bool = ..., inner_support_z_enabled: bool = ..., limit_of_high_bending_stresses_y: _Optional[float] = ..., limit_of_high_bending_stresses_z: _Optional[float] = ..., consider_in_fire_design_y: bool = ..., consider_in_fire_design_z: bool = ..., support_depth_by_section_width_of_member_y_enabled: bool = ..., support_depth_by_section_width_of_member_z_enabled: bool = ..., support_depth_y: _Optional[float] = ..., support_depth_z: _Optional[float] = ..., support_width_y: _Optional[float] = ..., support_width_z: _Optional[float] = ..., timber_allow_higher_deformation_y_enabled: bool = ..., timber_allow_higher_deformation_z_enabled: bool = ..., timber_calculation_method_y: _Optional[_Union[DesignSupportTimberCalculationMethodY, str]] = ..., timber_calculation_method_z: _Optional[_Union[DesignSupportTimberCalculationMethodZ, str]] = ..., timber_check_critical_bearing_y_enabled: bool = ..., timber_check_critical_bearing_z_enabled: bool = ..., timber_compression_design_value_y: _Optional[_Union[DesignSupportTimberCompressionDesignValueY, str]] = ..., timber_compression_design_value_z: _Optional[_Union[DesignSupportTimberCompressionDesignValueZ, str]] = ..., timber_factor_of_compression_y: _Optional[float] = ..., timber_factor_of_compression_z: _Optional[float] = ..., end_support_z_enabled: bool = ..., overhang_length_z: _Optional[float] = ..., fastened_to_support_z_enabled: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,36 @@
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_members/member_definable_stiffness.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_members/member_definable_stiffness.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'\nBdlubal/api/rfem/types_for_members/member_definable_stiffness.proto\x12!dlubal.api.rfem.types_for_members\"\xc5\x08\n\x18MemberDefinableStiffness\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\x13\n\x0b\x61ssigned_to\x18\x04 \x03(\x05\x12 \n\x13torsional_stiffness\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x62\x65nding_stiffness_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13\x62\x65nding_stiffness_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x1c\n\x0f\x61xial_stiffness\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x1e\n\x11shear_stiffness_y\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x1e\n\x11shear_stiffness_z\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0fspecific_weight\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x19\n\x0csection_area\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x15\n\x08rotation\x18\r \x01(\x01H\n\x88\x01\x01\x12$\n\x17thermal_expansion_alpha\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12$\n\x17thermal_expansion_width\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12%\n\x18thermal_expansion_height\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x12 \x01(\x08H\x0f\x88\x01\x01\x12#\n\x16generating_object_info\x18\x13 \x01(\tH\x10\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x15 \x01(\tH\x12\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x16\n\x14_torsional_stiffnessB\x16\n\x14_bending_stiffness_yB\x16\n\x14_bending_stiffness_zB\x12\n\x10_axial_stiffnessB\x14\n\x12_shear_stiffness_yB\x14\n\x12_shear_stiffness_zB\x12\n\x10_specific_weightB\x0f\n\r_section_areaB\x0b\n\t_rotationB\x1a\n\x18_thermal_expansion_alphaB\x1a\n\x18_thermal_expansion_widthB\x1b\n\x19_thermal_expansion_heightB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_definable_stiffness_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERDEFINABLESTIFFNESS']._serialized_start=106
35
+ _globals['_MEMBERDEFINABLESTIFFNESS']._serialized_end=1199
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,52 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class MemberDefinableStiffness(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to", "torsional_stiffness", "bending_stiffness_y", "bending_stiffness_z", "axial_stiffness", "shear_stiffness_y", "shear_stiffness_z", "specific_weight", "section_area", "rotation", "thermal_expansion_alpha", "thermal_expansion_width", "thermal_expansion_height", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
14
+ TORSIONAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
15
+ BENDING_STIFFNESS_Y_FIELD_NUMBER: _ClassVar[int]
16
+ BENDING_STIFFNESS_Z_FIELD_NUMBER: _ClassVar[int]
17
+ AXIAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
18
+ SHEAR_STIFFNESS_Y_FIELD_NUMBER: _ClassVar[int]
19
+ SHEAR_STIFFNESS_Z_FIELD_NUMBER: _ClassVar[int]
20
+ SPECIFIC_WEIGHT_FIELD_NUMBER: _ClassVar[int]
21
+ SECTION_AREA_FIELD_NUMBER: _ClassVar[int]
22
+ ROTATION_FIELD_NUMBER: _ClassVar[int]
23
+ THERMAL_EXPANSION_ALPHA_FIELD_NUMBER: _ClassVar[int]
24
+ THERMAL_EXPANSION_WIDTH_FIELD_NUMBER: _ClassVar[int]
25
+ THERMAL_EXPANSION_HEIGHT_FIELD_NUMBER: _ClassVar[int]
26
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
27
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
28
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
29
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
30
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
31
+ no: int
32
+ user_defined_name_enabled: bool
33
+ name: str
34
+ assigned_to: _containers.RepeatedScalarFieldContainer[int]
35
+ torsional_stiffness: float
36
+ bending_stiffness_y: float
37
+ bending_stiffness_z: float
38
+ axial_stiffness: float
39
+ shear_stiffness_y: float
40
+ shear_stiffness_z: float
41
+ specific_weight: float
42
+ section_area: float
43
+ rotation: float
44
+ thermal_expansion_alpha: float
45
+ thermal_expansion_width: float
46
+ thermal_expansion_height: float
47
+ comment: str
48
+ is_generated: bool
49
+ generating_object_info: str
50
+ id_for_export_import: str
51
+ metadata_for_export_import: str
52
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to: _Optional[_Iterable[int]] = ..., torsional_stiffness: _Optional[float] = ..., bending_stiffness_y: _Optional[float] = ..., bending_stiffness_z: _Optional[float] = ..., axial_stiffness: _Optional[float] = ..., shear_stiffness_y: _Optional[float] = ..., shear_stiffness_z: _Optional[float] = ..., specific_weight: _Optional[float] = ..., section_area: _Optional[float] = ..., rotation: _Optional[float] = ..., thermal_expansion_alpha: _Optional[float] = ..., thermal_expansion_width: _Optional[float] = ..., thermal_expansion_height: _Optional[float] = ..., 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,49 @@
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_members/member_eccentricity.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_members/member_eccentricity.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n;dlubal/api/rfem/types_for_members/member_eccentricity.proto\x12!dlubal.api.rfem.types_for_members\x1a\x1e\x64lubal/api/common/common.proto\"\xf6\x10\n\x12MemberEccentricity\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\x12g\n\x12specification_type\x18\x04 \x01(\x0e\x32\x46.dlubal.api.rfem.types_for_members.MemberEccentricitySpecificationTypeH\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x30\n\x06offset\x18\x06 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12\x15\n\x08offset_x\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x15\n\x08offset_y\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08offset_z\x18\t \x01(\x01H\x07\x88\x01\x01\x12%\n\x18transverse_offset_active\x18\n \x01(\x08H\x08\x88\x01\x01\x12 \n\x13\x61xial_offset_active\x18\x0b \x01(\x08H\t\x88\x01\x01\x12#\n\x16hinge_location_at_node\x18\x0c \x01(\x08H\n\x88\x01\x01\x12z\n\x1chorizontal_section_alignment\x18\r \x01(\x0e\x32O.dlubal.api.rfem.types_for_members.MemberEccentricityHorizontalSectionAlignmentH\x0b\x88\x01\x01\x12v\n\x1avertical_section_alignment\x18\x0e \x01(\x0e\x32M.dlubal.api.rfem.types_for_members.MemberEccentricityVerticalSectionAlignmentH\x0c\x88\x01\x01\x12\x81\x01\n transverse_offset_reference_type\x18\x0f \x01(\x0e\x32R.dlubal.api.rfem.types_for_members.MemberEccentricityTransverseOffsetReferenceTypeH\r\x88\x01\x01\x12/\n\"transverse_offset_reference_member\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x30\n#transverse_offset_reference_surface\x18\x11 \x01(\x05H\x0f\x88\x01\x01\x12\x34\n\'transverse_offset_member_reference_node\x18\x12 \x01(\x05H\x10\x88\x01\x01\x12\x35\n(transverse_offset_surface_reference_node\x18\x13 \x01(\x05H\x11\x88\x01\x01\x12\x89\x01\n$transverse_offset_vertical_alignment\x18\x14 \x01(\x0e\x32V.dlubal.api.rfem.types_for_members.MemberEccentricityTransverseOffsetVerticalAlignmentH\x12\x88\x01\x01\x12\x8d\x01\n&transverse_offset_horizontal_alignment\x18\x15 \x01(\x0e\x32X.dlubal.api.rfem.types_for_members.MemberEccentricityTransverseOffsetHorizontalAlignmentH\x13\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x16 \x01(\tH\x14\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12#\n\x16generating_object_info\x18\x18 \x01(\tH\x16\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1a \x01(\tH\x18\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x15\n\x13_specification_typeB\x14\n\x12_coordinate_systemB\t\n\x07_offsetB\x0b\n\t_offset_xB\x0b\n\t_offset_yB\x0b\n\t_offset_zB\x1b\n\x19_transverse_offset_activeB\x16\n\x14_axial_offset_activeB\x19\n\x17_hinge_location_at_nodeB\x1f\n\x1d_horizontal_section_alignmentB\x1d\n\x1b_vertical_section_alignmentB#\n!_transverse_offset_reference_typeB%\n#_transverse_offset_reference_memberB&\n$_transverse_offset_reference_surfaceB*\n(_transverse_offset_member_reference_nodeB+\n)_transverse_offset_surface_reference_nodeB\'\n%_transverse_offset_vertical_alignmentB)\n\'_transverse_offset_horizontal_alignmentB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xdc\x01\n#MemberEccentricitySpecificationType\x12>\n:MEMBER_ECCENTRICITY_SPECIFICATION_TYPE_RELATIVE_TO_SECTION\x10\x00\x12\x33\n/MEMBER_ECCENTRICITY_SPECIFICATION_TYPE_ABSOLUTE\x10\x01\x12@\n<MEMBER_ECCENTRICITY_SPECIFICATION_TYPE_RELATIVE_AND_ABSOLUTE\x10\x02*\xe2\x01\n,MemberEccentricityHorizontalSectionAlignment\x12\x39\n5MEMBER_ECCENTRICITY_HORIZONTAL_SECTION_ALIGNMENT_LEFT\x10\x00\x12;\n7MEMBER_ECCENTRICITY_HORIZONTAL_SECTION_ALIGNMENT_CENTER\x10\x01\x12:\n6MEMBER_ECCENTRICITY_HORIZONTAL_SECTION_ALIGNMENT_RIGHT\x10\x02*\xda\x01\n*MemberEccentricityVerticalSectionAlignment\x12\x36\n2MEMBER_ECCENTRICITY_VERTICAL_SECTION_ALIGNMENT_TOP\x10\x00\x12\x39\n5MEMBER_ECCENTRICITY_VERTICAL_SECTION_ALIGNMENT_BOTTOM\x10\x02\x12\x39\n5MEMBER_ECCENTRICITY_VERTICAL_SECTION_ALIGNMENT_CENTER\x10\x01*\x8f\x02\n/MemberEccentricityTransverseOffsetReferenceType\x12=\n9MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_NONE\x10\x00\x12L\nHMEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_MEMBER_SECTION\x10\x01\x12O\nKMEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_SURFACE_THICKNESS\x10\x02*\x81\x02\n3MemberEccentricityTransverseOffsetVerticalAlignment\x12@\n<MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_TOP\x10\x00\x12\x43\n?MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_BOTTOM\x10\x02\x12\x43\n?MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_VERTICAL_ALIGNMENT_CENTER\x10\x01*\x89\x02\n5MemberEccentricityTransverseOffsetHorizontalAlignment\x12\x43\n?MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_LEFT\x10\x00\x12\x45\nAMEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_CENTER\x10\x01\x12\x44\n@MEMBER_ECCENTRICITY_TRANSVERSE_OFFSET_HORIZONTAL_ALIGNMENT_RIGHT\x10\x02\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_eccentricity_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_MEMBERECCENTRICITYSPECIFICATIONTYPE']._serialized_start=2300
36
+ _globals['_MEMBERECCENTRICITYSPECIFICATIONTYPE']._serialized_end=2520
37
+ _globals['_MEMBERECCENTRICITYHORIZONTALSECTIONALIGNMENT']._serialized_start=2523
38
+ _globals['_MEMBERECCENTRICITYHORIZONTALSECTIONALIGNMENT']._serialized_end=2749
39
+ _globals['_MEMBERECCENTRICITYVERTICALSECTIONALIGNMENT']._serialized_start=2752
40
+ _globals['_MEMBERECCENTRICITYVERTICALSECTIONALIGNMENT']._serialized_end=2970
41
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETREFERENCETYPE']._serialized_start=2973
42
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETREFERENCETYPE']._serialized_end=3244
43
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETVERTICALALIGNMENT']._serialized_start=3247
44
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETVERTICALALIGNMENT']._serialized_end=3504
45
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETHORIZONTALALIGNMENT']._serialized_start=3507
46
+ _globals['_MEMBERECCENTRICITYTRANSVERSEOFFSETHORIZONTALALIGNMENT']._serialized_end=3772
47
+ _globals['_MEMBERECCENTRICITY']._serialized_start=131
48
+ _globals['_MEMBERECCENTRICITY']._serialized_end=2297
49
+ # @@protoc_insertion_point(module_scope)