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_surfaces/surface_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_surfaces/surface_eccentricity.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n=dlubal/api/rfem/types_for_surfaces/surface_eccentricity.proto\x12\"dlubal.api.rfem.types_for_surfaces\"\xdb\n\n\x13SurfaceEccentricity\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\x06offset\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\x1c\n\x14\x61ssigned_to_surfaces\x18\x05 \x03(\x05\x12k\n\x13thickness_alignment\x18\x06 \x01(\x0e\x32I.dlubal.api.rfem.types_for_surfaces.SurfaceEccentricityThicknessAlignmentH\x03\x88\x01\x01\x12%\n\x18transverse_offset_active\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12\x83\x01\n transverse_offset_reference_type\x18\x08 \x01(\x0e\x32T.dlubal.api.rfem.types_for_surfaces.SurfaceEccentricityTransverseOffsetReferenceTypeH\x05\x88\x01\x01\x12/\n\"transverse_offset_reference_member\x18\t \x01(\x05H\x06\x88\x01\x01\x12\x30\n#transverse_offset_reference_surface\x18\n \x01(\x05H\x07\x88\x01\x01\x12\x34\n\'transverse_offset_member_reference_node\x18\x0b \x01(\x05H\x08\x88\x01\x01\x12\x35\n(transverse_offset_surface_reference_node\x18\x0c \x01(\x05H\t\x88\x01\x01\x12z\n\x1btransverse_offset_alignment\x18\r \x01(\x0e\x32P.dlubal.api.rfem.types_for_surfaces.SurfaceEccentricityTransverseOffsetAlignmentH\n\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12#\n\x16generating_object_info\x18\x10 \x01(\tH\r\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\x0e\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x0f\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\t\n\x07_offsetB\x16\n\x14_thickness_alignmentB\x1b\n\x19_transverse_offset_activeB#\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\x1e\n\x1c_transverse_offset_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*\xc3\x01\n%SurfaceEccentricityThicknessAlignment\x12\x30\n,SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_TOP\x10\x00\x12\x33\n/SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_BOTTOM\x10\x02\x12\x33\n/SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_CENTER\x10\x01*\x93\x02\n0SurfaceEccentricityTransverseOffsetReferenceType\x12>\n:SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_NONE\x10\x00\x12M\nISURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_MEMBER_SECTION\x10\x01\x12P\nLSURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_SURFACE_THICKNESS\x10\x02*\xe2\x01\n,SurfaceEccentricityTransverseOffsetAlignment\x12\x38\n4SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_TOP\x10\x00\x12;\n7SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_BOTTOM\x10\x02\x12;\n7SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_CENTER\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_surfaces.surface_eccentricity_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACEECCENTRICITYTHICKNESSALIGNMENT']._serialized_start=1476
35
+ _globals['_SURFACEECCENTRICITYTHICKNESSALIGNMENT']._serialized_end=1671
36
+ _globals['_SURFACEECCENTRICITYTRANSVERSEOFFSETREFERENCETYPE']._serialized_start=1674
37
+ _globals['_SURFACEECCENTRICITYTRANSVERSEOFFSETREFERENCETYPE']._serialized_end=1949
38
+ _globals['_SURFACEECCENTRICITYTRANSVERSEOFFSETALIGNMENT']._serialized_start=1952
39
+ _globals['_SURFACEECCENTRICITYTRANSVERSEOFFSETALIGNMENT']._serialized_end=2178
40
+ _globals['_SURFACEECCENTRICITY']._serialized_start=102
41
+ _globals['_SURFACEECCENTRICITY']._serialized_end=1473
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,74 @@
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 SurfaceEccentricityThicknessAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_TOP: _ClassVar[SurfaceEccentricityThicknessAlignment]
12
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_BOTTOM: _ClassVar[SurfaceEccentricityThicknessAlignment]
13
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_CENTER: _ClassVar[SurfaceEccentricityThicknessAlignment]
14
+
15
+ class SurfaceEccentricityTransverseOffsetReferenceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_NONE: _ClassVar[SurfaceEccentricityTransverseOffsetReferenceType]
18
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_MEMBER_SECTION: _ClassVar[SurfaceEccentricityTransverseOffsetReferenceType]
19
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_SURFACE_THICKNESS: _ClassVar[SurfaceEccentricityTransverseOffsetReferenceType]
20
+
21
+ class SurfaceEccentricityTransverseOffsetAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
22
+ __slots__ = ()
23
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_TOP: _ClassVar[SurfaceEccentricityTransverseOffsetAlignment]
24
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_BOTTOM: _ClassVar[SurfaceEccentricityTransverseOffsetAlignment]
25
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_CENTER: _ClassVar[SurfaceEccentricityTransverseOffsetAlignment]
26
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_TOP: SurfaceEccentricityThicknessAlignment
27
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_BOTTOM: SurfaceEccentricityThicknessAlignment
28
+ SURFACE_ECCENTRICITY_THICKNESS_ALIGNMENT_CENTER: SurfaceEccentricityThicknessAlignment
29
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_NONE: SurfaceEccentricityTransverseOffsetReferenceType
30
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_MEMBER_SECTION: SurfaceEccentricityTransverseOffsetReferenceType
31
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_REFERENCE_TYPE_FROM_SURFACE_THICKNESS: SurfaceEccentricityTransverseOffsetReferenceType
32
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_TOP: SurfaceEccentricityTransverseOffsetAlignment
33
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_BOTTOM: SurfaceEccentricityTransverseOffsetAlignment
34
+ SURFACE_ECCENTRICITY_TRANSVERSE_OFFSET_ALIGNMENT_CENTER: SurfaceEccentricityTransverseOffsetAlignment
35
+
36
+ class SurfaceEccentricity(_message.Message):
37
+ __slots__ = ("no", "user_defined_name_enabled", "name", "offset", "assigned_to_surfaces", "thickness_alignment", "transverse_offset_active", "transverse_offset_reference_type", "transverse_offset_reference_member", "transverse_offset_reference_surface", "transverse_offset_member_reference_node", "transverse_offset_surface_reference_node", "transverse_offset_alignment", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
38
+ NO_FIELD_NUMBER: _ClassVar[int]
39
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
40
+ NAME_FIELD_NUMBER: _ClassVar[int]
41
+ OFFSET_FIELD_NUMBER: _ClassVar[int]
42
+ ASSIGNED_TO_SURFACES_FIELD_NUMBER: _ClassVar[int]
43
+ THICKNESS_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
44
+ TRANSVERSE_OFFSET_ACTIVE_FIELD_NUMBER: _ClassVar[int]
45
+ TRANSVERSE_OFFSET_REFERENCE_TYPE_FIELD_NUMBER: _ClassVar[int]
46
+ TRANSVERSE_OFFSET_REFERENCE_MEMBER_FIELD_NUMBER: _ClassVar[int]
47
+ TRANSVERSE_OFFSET_REFERENCE_SURFACE_FIELD_NUMBER: _ClassVar[int]
48
+ TRANSVERSE_OFFSET_MEMBER_REFERENCE_NODE_FIELD_NUMBER: _ClassVar[int]
49
+ TRANSVERSE_OFFSET_SURFACE_REFERENCE_NODE_FIELD_NUMBER: _ClassVar[int]
50
+ TRANSVERSE_OFFSET_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
51
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
52
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
53
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
54
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
56
+ no: int
57
+ user_defined_name_enabled: bool
58
+ name: str
59
+ offset: float
60
+ assigned_to_surfaces: _containers.RepeatedScalarFieldContainer[int]
61
+ thickness_alignment: SurfaceEccentricityThicknessAlignment
62
+ transverse_offset_active: bool
63
+ transverse_offset_reference_type: SurfaceEccentricityTransverseOffsetReferenceType
64
+ transverse_offset_reference_member: int
65
+ transverse_offset_reference_surface: int
66
+ transverse_offset_member_reference_node: int
67
+ transverse_offset_surface_reference_node: int
68
+ transverse_offset_alignment: SurfaceEccentricityTransverseOffsetAlignment
69
+ comment: str
70
+ is_generated: bool
71
+ generating_object_info: str
72
+ id_for_export_import: str
73
+ metadata_for_export_import: str
74
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., offset: _Optional[float] = ..., assigned_to_surfaces: _Optional[_Iterable[int]] = ..., thickness_alignment: _Optional[_Union[SurfaceEccentricityThicknessAlignment, str]] = ..., transverse_offset_active: bool = ..., transverse_offset_reference_type: _Optional[_Union[SurfaceEccentricityTransverseOffsetReferenceType, str]] = ..., transverse_offset_reference_member: _Optional[int] = ..., transverse_offset_reference_surface: _Optional[int] = ..., transverse_offset_member_reference_node: _Optional[int] = ..., transverse_offset_surface_reference_node: _Optional[int] = ..., transverse_offset_alignment: _Optional[_Union[SurfaceEccentricityTransverseOffsetAlignment, 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,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_surfaces/surface_mesh_refinement.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_surfaces/surface_mesh_refinement.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n@dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement.proto\x12\"dlubal.api.rfem.types_for_surfaces\"\xd7\x03\n\x15SurfaceMeshRefinement\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\x10\n\x08surfaces\x18\x04 \x03(\x05\x12\x1a\n\rtarget_length\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x10\n\x0e_target_lengthB\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_surfaces.surface_mesh_refinement_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACEMESHREFINEMENT']._serialized_start=105
35
+ _globals['_SURFACEMESHREFINEMENT']._serialized_end=576
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,30 @@
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 SurfaceMeshRefinement(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "surfaces", "target_length", "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
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
14
+ TARGET_LENGTH_FIELD_NUMBER: _ClassVar[int]
15
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
16
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
17
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
18
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
19
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
20
+ no: int
21
+ user_defined_name_enabled: bool
22
+ name: str
23
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
24
+ target_length: float
25
+ comment: str
26
+ is_generated: bool
27
+ generating_object_info: str
28
+ id_for_export_import: str
29
+ metadata_for_export_import: str
30
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., surfaces: _Optional[_Iterable[int]] = ..., target_length: _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,40 @@
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_surfaces/surface_stiffness_modification.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_surfaces/surface_stiffness_modification.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'\nGdlubal/api/rfem/types_for_surfaces/surface_stiffness_modification.proto\x12\"dlubal.api.rfem.types_for_surfaces\"\xd8\x14\n\x1cSurfaceStiffnessModification\x12\n\n\x02no\x18\x01 \x01(\x05\x12W\n\x04type\x18\x02 \x01(\x0e\x32\x44.dlubal.api.rfem.types_for_surfaces.SurfaceStiffnessModificationTypeH\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&\n\x19\x66\x61\x63tor_of_total_stiffness\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12(\n\x1b\x66\x61\x63tor_of_bending_stiffness\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12&\n\x19\x66\x61\x63tor_of_shear_stiffness\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12)\n\x1c\x66\x61\x63tor_of_membrane_stiffness\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12(\n\x1b\x66\x61\x63tor_of_eccentric_effects\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x1d\n\x10\x66\x61\x63tor_of_weight\x18\n \x01(\x01H\x08\x88\x01\x01\x12\x11\n\x04kd11\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x11\n\x04kd12\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x11\n\x04kd13\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x11\n\x04kd22\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x11\n\x04kd23\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x11\n\x04kd33\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x11\n\x04kd44\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\x11\n\x04kd45\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x11\n\x04kd55\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x11\n\x04kd66\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x11\n\x04kd67\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x11\n\x04kd68\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x11\n\x04kd77\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x11\n\x04kd78\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\x11\n\x04kd88\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\x11\n\x04kd16\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x11\n\x04kd17\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\x11\n\x04kd18\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\x11\n\x04kd27\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\x11\n\x04kd28\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\x11\n\x04kd38\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12\x16\n\tkd11_note\x18 \x01(\tH\x1e\x88\x01\x01\x12\x16\n\tkd12_note\x18! \x01(\tH\x1f\x88\x01\x01\x12\x16\n\tkd13_note\x18\" \x01(\tH \x88\x01\x01\x12\x16\n\tkd22_note\x18# \x01(\tH!\x88\x01\x01\x12\x16\n\tkd23_note\x18$ \x01(\tH\"\x88\x01\x01\x12\x16\n\tkd33_note\x18% \x01(\tH#\x88\x01\x01\x12\x16\n\tkd44_note\x18& \x01(\tH$\x88\x01\x01\x12\x16\n\tkd45_note\x18\' \x01(\tH%\x88\x01\x01\x12\x16\n\tkd55_note\x18( \x01(\tH&\x88\x01\x01\x12\x16\n\tkd66_note\x18) \x01(\tH\'\x88\x01\x01\x12\x16\n\tkd67_note\x18* \x01(\tH(\x88\x01\x01\x12\x16\n\tkd68_note\x18+ \x01(\tH)\x88\x01\x01\x12\x16\n\tkd77_note\x18, \x01(\tH*\x88\x01\x01\x12\x16\n\tkd78_note\x18- \x01(\tH+\x88\x01\x01\x12\x16\n\tkd88_note\x18. \x01(\tH,\x88\x01\x01\x12\x16\n\tkd16_note\x18/ \x01(\tH-\x88\x01\x01\x12\x16\n\tkd17_note\x18\x30 \x01(\tH.\x88\x01\x01\x12\x16\n\tkd18_note\x18\x31 \x01(\tH/\x88\x01\x01\x12\x16\n\tkd27_note\x18\x32 \x01(\tH0\x88\x01\x01\x12\x16\n\tkd28_note\x18\x33 \x01(\tH1\x88\x01\x01\x12\x16\n\tkd38_note\x18\x34 \x01(\tH2\x88\x01\x01\x12+\n#assigned_to_structural_modification\x18\x35 \x03(\x05\x12\x8e\x01\n!concrete_stuctures_component_type\x18\x36 \x01(\x0e\x32^.dlubal.api.rfem.types_for_surfaces.SurfaceStiffnessModificationConcreteStucturesComponentTypeH3\x88\x01\x01\x12\x38\n+concrete_stuctures_bending_stiffness_factor\x18\x37 \x01(\x01H4\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x38 \x01(\tH5\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x39 \x01(\x08H6\x88\x01\x01\x12#\n\x16generating_object_info\x18: \x01(\tH7\x88\x01\x01\x12!\n\x14id_for_export_import\x18; \x01(\tH8\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18< \x01(\tH9\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_factor_of_total_stiffnessB\x1e\n\x1c_factor_of_bending_stiffnessB\x1c\n\x1a_factor_of_shear_stiffnessB\x1f\n\x1d_factor_of_membrane_stiffnessB\x1e\n\x1c_factor_of_eccentric_effectsB\x13\n\x11_factor_of_weightB\x07\n\x05_kd11B\x07\n\x05_kd12B\x07\n\x05_kd13B\x07\n\x05_kd22B\x07\n\x05_kd23B\x07\n\x05_kd33B\x07\n\x05_kd44B\x07\n\x05_kd45B\x07\n\x05_kd55B\x07\n\x05_kd66B\x07\n\x05_kd67B\x07\n\x05_kd68B\x07\n\x05_kd77B\x07\n\x05_kd78B\x07\n\x05_kd88B\x07\n\x05_kd16B\x07\n\x05_kd17B\x07\n\x05_kd18B\x07\n\x05_kd27B\x07\n\x05_kd28B\x07\n\x05_kd38B\x0c\n\n_kd11_noteB\x0c\n\n_kd12_noteB\x0c\n\n_kd13_noteB\x0c\n\n_kd22_noteB\x0c\n\n_kd23_noteB\x0c\n\n_kd33_noteB\x0c\n\n_kd44_noteB\x0c\n\n_kd45_noteB\x0c\n\n_kd55_noteB\x0c\n\n_kd66_noteB\x0c\n\n_kd67_noteB\x0c\n\n_kd68_noteB\x0c\n\n_kd77_noteB\x0c\n\n_kd78_noteB\x0c\n\n_kd88_noteB\x0c\n\n_kd16_noteB\x0c\n\n_kd17_noteB\x0c\n\n_kd18_noteB\x0c\n\n_kd27_noteB\x0c\n\n_kd28_noteB\x0c\n\n_kd38_noteB$\n\"_concrete_stuctures_component_typeB.\n,_concrete_stuctures_bending_stiffness_factorB\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*\xa5\x03\n SurfaceStiffnessModificationType\x12/\n+SURFACE_STIFFNESS_MODIFICATION_TYPE_UNKNOWN\x10\x00\x12?\n;SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI\x10\x04\x12?\n;SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA\x10\x05\x12\x43\n?SURFACE_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS\x10\x02\x12I\nESURFACE_STIFFNESS_MODIFICATION_TYPE_STIFFNESS_MATRIX_ELEMENTS_FACTORS\x10\x03\x12>\n:SURFACE_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESS_FACTOR\x10\x01*\x95\x03\n:SurfaceStiffnessModificationConcreteStucturesComponentType\x12L\nHSURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_UNKNOWN\x10\x00\x12_\n[SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_FLAT_PLATES_AND_FLAT_SLABS\x10\x04\x12R\nNSURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_CRACKED\x10\x02\x12T\nPSURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_UNCRACKED\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_surfaces.surface_stiffness_modification_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACESTIFFNESSMODIFICATIONTYPE']._serialized_start=2763
35
+ _globals['_SURFACESTIFFNESSMODIFICATIONTYPE']._serialized_end=3184
36
+ _globals['_SURFACESTIFFNESSMODIFICATIONCONCRETESTUCTURESCOMPONENTTYPE']._serialized_start=3187
37
+ _globals['_SURFACESTIFFNESSMODIFICATIONCONCRETESTUCTURESCOMPONENTTYPE']._serialized_end=3592
38
+ _globals['_SURFACESTIFFNESSMODIFICATION']._serialized_start=112
39
+ _globals['_SURFACESTIFFNESSMODIFICATION']._serialized_end=2760
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,157 @@
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 SurfaceStiffnessModificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_UNKNOWN: _ClassVar[SurfaceStiffnessModificationType]
12
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI: _ClassVar[SurfaceStiffnessModificationType]
13
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA: _ClassVar[SurfaceStiffnessModificationType]
14
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS: _ClassVar[SurfaceStiffnessModificationType]
15
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_STIFFNESS_MATRIX_ELEMENTS_FACTORS: _ClassVar[SurfaceStiffnessModificationType]
16
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESS_FACTOR: _ClassVar[SurfaceStiffnessModificationType]
17
+
18
+ class SurfaceStiffnessModificationConcreteStucturesComponentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_UNKNOWN: _ClassVar[SurfaceStiffnessModificationConcreteStucturesComponentType]
21
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_FLAT_PLATES_AND_FLAT_SLABS: _ClassVar[SurfaceStiffnessModificationConcreteStucturesComponentType]
22
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_CRACKED: _ClassVar[SurfaceStiffnessModificationConcreteStucturesComponentType]
23
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_UNCRACKED: _ClassVar[SurfaceStiffnessModificationConcreteStucturesComponentType]
24
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_UNKNOWN: SurfaceStiffnessModificationType
25
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_ACI: SurfaceStiffnessModificationType
26
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_CONCRETE_STRUCTURES_CSA: SurfaceStiffnessModificationType
27
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_PARTIAL_STIFFNESSES_FACTORS: SurfaceStiffnessModificationType
28
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_STIFFNESS_MATRIX_ELEMENTS_FACTORS: SurfaceStiffnessModificationType
29
+ SURFACE_STIFFNESS_MODIFICATION_TYPE_TOTAL_STIFFNESS_FACTOR: SurfaceStiffnessModificationType
30
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_UNKNOWN: SurfaceStiffnessModificationConcreteStucturesComponentType
31
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_FLAT_PLATES_AND_FLAT_SLABS: SurfaceStiffnessModificationConcreteStucturesComponentType
32
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_CRACKED: SurfaceStiffnessModificationConcreteStucturesComponentType
33
+ SURFACE_STIFFNESS_MODIFICATION_CONCRETE_STUCTURES_COMPONENT_TYPE_WALLS_UNCRACKED: SurfaceStiffnessModificationConcreteStucturesComponentType
34
+
35
+ class SurfaceStiffnessModification(_message.Message):
36
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "factor_of_total_stiffness", "factor_of_bending_stiffness", "factor_of_shear_stiffness", "factor_of_membrane_stiffness", "factor_of_eccentric_effects", "factor_of_weight", "kd11", "kd12", "kd13", "kd22", "kd23", "kd33", "kd44", "kd45", "kd55", "kd66", "kd67", "kd68", "kd77", "kd78", "kd88", "kd16", "kd17", "kd18", "kd27", "kd28", "kd38", "kd11_note", "kd12_note", "kd13_note", "kd22_note", "kd23_note", "kd33_note", "kd44_note", "kd45_note", "kd55_note", "kd66_note", "kd67_note", "kd68_note", "kd77_note", "kd78_note", "kd88_note", "kd16_note", "kd17_note", "kd18_note", "kd27_note", "kd28_note", "kd38_note", "assigned_to_structural_modification", "concrete_stuctures_component_type", "concrete_stuctures_bending_stiffness_factor", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
37
+ NO_FIELD_NUMBER: _ClassVar[int]
38
+ TYPE_FIELD_NUMBER: _ClassVar[int]
39
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
40
+ NAME_FIELD_NUMBER: _ClassVar[int]
41
+ FACTOR_OF_TOTAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
42
+ FACTOR_OF_BENDING_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
43
+ FACTOR_OF_SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
44
+ FACTOR_OF_MEMBRANE_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
45
+ FACTOR_OF_ECCENTRIC_EFFECTS_FIELD_NUMBER: _ClassVar[int]
46
+ FACTOR_OF_WEIGHT_FIELD_NUMBER: _ClassVar[int]
47
+ KD11_FIELD_NUMBER: _ClassVar[int]
48
+ KD12_FIELD_NUMBER: _ClassVar[int]
49
+ KD13_FIELD_NUMBER: _ClassVar[int]
50
+ KD22_FIELD_NUMBER: _ClassVar[int]
51
+ KD23_FIELD_NUMBER: _ClassVar[int]
52
+ KD33_FIELD_NUMBER: _ClassVar[int]
53
+ KD44_FIELD_NUMBER: _ClassVar[int]
54
+ KD45_FIELD_NUMBER: _ClassVar[int]
55
+ KD55_FIELD_NUMBER: _ClassVar[int]
56
+ KD66_FIELD_NUMBER: _ClassVar[int]
57
+ KD67_FIELD_NUMBER: _ClassVar[int]
58
+ KD68_FIELD_NUMBER: _ClassVar[int]
59
+ KD77_FIELD_NUMBER: _ClassVar[int]
60
+ KD78_FIELD_NUMBER: _ClassVar[int]
61
+ KD88_FIELD_NUMBER: _ClassVar[int]
62
+ KD16_FIELD_NUMBER: _ClassVar[int]
63
+ KD17_FIELD_NUMBER: _ClassVar[int]
64
+ KD18_FIELD_NUMBER: _ClassVar[int]
65
+ KD27_FIELD_NUMBER: _ClassVar[int]
66
+ KD28_FIELD_NUMBER: _ClassVar[int]
67
+ KD38_FIELD_NUMBER: _ClassVar[int]
68
+ KD11_NOTE_FIELD_NUMBER: _ClassVar[int]
69
+ KD12_NOTE_FIELD_NUMBER: _ClassVar[int]
70
+ KD13_NOTE_FIELD_NUMBER: _ClassVar[int]
71
+ KD22_NOTE_FIELD_NUMBER: _ClassVar[int]
72
+ KD23_NOTE_FIELD_NUMBER: _ClassVar[int]
73
+ KD33_NOTE_FIELD_NUMBER: _ClassVar[int]
74
+ KD44_NOTE_FIELD_NUMBER: _ClassVar[int]
75
+ KD45_NOTE_FIELD_NUMBER: _ClassVar[int]
76
+ KD55_NOTE_FIELD_NUMBER: _ClassVar[int]
77
+ KD66_NOTE_FIELD_NUMBER: _ClassVar[int]
78
+ KD67_NOTE_FIELD_NUMBER: _ClassVar[int]
79
+ KD68_NOTE_FIELD_NUMBER: _ClassVar[int]
80
+ KD77_NOTE_FIELD_NUMBER: _ClassVar[int]
81
+ KD78_NOTE_FIELD_NUMBER: _ClassVar[int]
82
+ KD88_NOTE_FIELD_NUMBER: _ClassVar[int]
83
+ KD16_NOTE_FIELD_NUMBER: _ClassVar[int]
84
+ KD17_NOTE_FIELD_NUMBER: _ClassVar[int]
85
+ KD18_NOTE_FIELD_NUMBER: _ClassVar[int]
86
+ KD27_NOTE_FIELD_NUMBER: _ClassVar[int]
87
+ KD28_NOTE_FIELD_NUMBER: _ClassVar[int]
88
+ KD38_NOTE_FIELD_NUMBER: _ClassVar[int]
89
+ ASSIGNED_TO_STRUCTURAL_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
90
+ CONCRETE_STUCTURES_COMPONENT_TYPE_FIELD_NUMBER: _ClassVar[int]
91
+ CONCRETE_STUCTURES_BENDING_STIFFNESS_FACTOR_FIELD_NUMBER: _ClassVar[int]
92
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
93
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
94
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
95
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
96
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
97
+ no: int
98
+ type: SurfaceStiffnessModificationType
99
+ user_defined_name_enabled: bool
100
+ name: str
101
+ factor_of_total_stiffness: float
102
+ factor_of_bending_stiffness: float
103
+ factor_of_shear_stiffness: float
104
+ factor_of_membrane_stiffness: float
105
+ factor_of_eccentric_effects: float
106
+ factor_of_weight: float
107
+ kd11: float
108
+ kd12: float
109
+ kd13: float
110
+ kd22: float
111
+ kd23: float
112
+ kd33: float
113
+ kd44: float
114
+ kd45: float
115
+ kd55: float
116
+ kd66: float
117
+ kd67: float
118
+ kd68: float
119
+ kd77: float
120
+ kd78: float
121
+ kd88: float
122
+ kd16: float
123
+ kd17: float
124
+ kd18: float
125
+ kd27: float
126
+ kd28: float
127
+ kd38: float
128
+ kd11_note: str
129
+ kd12_note: str
130
+ kd13_note: str
131
+ kd22_note: str
132
+ kd23_note: str
133
+ kd33_note: str
134
+ kd44_note: str
135
+ kd45_note: str
136
+ kd55_note: str
137
+ kd66_note: str
138
+ kd67_note: str
139
+ kd68_note: str
140
+ kd77_note: str
141
+ kd78_note: str
142
+ kd88_note: str
143
+ kd16_note: str
144
+ kd17_note: str
145
+ kd18_note: str
146
+ kd27_note: str
147
+ kd28_note: str
148
+ kd38_note: str
149
+ assigned_to_structural_modification: _containers.RepeatedScalarFieldContainer[int]
150
+ concrete_stuctures_component_type: SurfaceStiffnessModificationConcreteStucturesComponentType
151
+ concrete_stuctures_bending_stiffness_factor: float
152
+ comment: str
153
+ is_generated: bool
154
+ generating_object_info: str
155
+ id_for_export_import: str
156
+ metadata_for_export_import: str
157
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[SurfaceStiffnessModificationType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., factor_of_total_stiffness: _Optional[float] = ..., factor_of_bending_stiffness: _Optional[float] = ..., factor_of_shear_stiffness: _Optional[float] = ..., factor_of_membrane_stiffness: _Optional[float] = ..., factor_of_eccentric_effects: _Optional[float] = ..., factor_of_weight: _Optional[float] = ..., kd11: _Optional[float] = ..., kd12: _Optional[float] = ..., kd13: _Optional[float] = ..., kd22: _Optional[float] = ..., kd23: _Optional[float] = ..., kd33: _Optional[float] = ..., kd44: _Optional[float] = ..., kd45: _Optional[float] = ..., kd55: _Optional[float] = ..., kd66: _Optional[float] = ..., kd67: _Optional[float] = ..., kd68: _Optional[float] = ..., kd77: _Optional[float] = ..., kd78: _Optional[float] = ..., kd88: _Optional[float] = ..., kd16: _Optional[float] = ..., kd17: _Optional[float] = ..., kd18: _Optional[float] = ..., kd27: _Optional[float] = ..., kd28: _Optional[float] = ..., kd38: _Optional[float] = ..., kd11_note: _Optional[str] = ..., kd12_note: _Optional[str] = ..., kd13_note: _Optional[str] = ..., kd22_note: _Optional[str] = ..., kd23_note: _Optional[str] = ..., kd33_note: _Optional[str] = ..., kd44_note: _Optional[str] = ..., kd45_note: _Optional[str] = ..., kd55_note: _Optional[str] = ..., kd66_note: _Optional[str] = ..., kd67_note: _Optional[str] = ..., kd68_note: _Optional[str] = ..., kd77_note: _Optional[str] = ..., kd78_note: _Optional[str] = ..., kd88_note: _Optional[str] = ..., kd16_note: _Optional[str] = ..., kd17_note: _Optional[str] = ..., kd18_note: _Optional[str] = ..., kd27_note: _Optional[str] = ..., kd28_note: _Optional[str] = ..., kd38_note: _Optional[str] = ..., assigned_to_structural_modification: _Optional[_Iterable[int]] = ..., concrete_stuctures_component_type: _Optional[_Union[SurfaceStiffnessModificationConcreteStucturesComponentType, str]] = ..., concrete_stuctures_bending_stiffness_factor: _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,43 @@
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_surfaces/surface_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_surfaces/surface_support.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'\n8dlubal/api/rfem/types_for_surfaces/surface_support.proto\x12\"dlubal.api.rfem.types_for_surfaces\x1a\x1e\x64lubal/api/common/common.proto\"\xef\n\n\x0eSurfaceSupport\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\x10\n\x08surfaces\x18\x04 \x03(\x05\x12\x35\n\x0btranslation\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x02\x88\x01\x01\x12\x1a\n\rtranslation_x\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12\x1a\n\rtranslation_y\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x1a\n\rtranslation_z\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x15\n\x08shear_xz\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08shear_yz\x18\n \x01(\x01H\x07\x88\x01\x01\x12Y\n\x0cnonlinearity\x18\x0b \x01(\x0e\x32>.dlubal.api.rfem.types_for_surfaces.SurfaceSupportNonlinearityH\x08\x88\x01\x01\x12s\n\x1anegative_nonlinearity_type\x18\x0c \x01(\x0e\x32J.dlubal.api.rfem.types_for_surfaces.SurfaceSupportNegativeNonlinearityTypeH\t\x88\x01\x01\x12s\n\x1apositive_nonlinearity_type\x18\r \x01(\x0e\x32J.dlubal.api.rfem.types_for_surfaces.SurfaceSupportPositiveNonlinearityTypeH\n\x88\x01\x01\x12*\n\x1dnegative_friction_coefficient\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12*\n\x1dpositive_friction_coefficient\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12$\n\x17negative_contact_stress\x18\x10 \x01(\x01H\r\x88\x01\x01\x12$\n\x17positive_contact_stress\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x13 \x01(\x08H\x10\x88\x01\x01\x12#\n\x16generating_object_info\x18\x14 \x01(\tH\x11\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x15 \x01(\tH\x12\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x16 \x01(\tH\x13\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0e\n\x0c_translationB\x10\n\x0e_translation_xB\x10\n\x0e_translation_yB\x10\n\x0e_translation_zB\x0b\n\t_shear_xzB\x0b\n\t_shear_yzB\x0f\n\r_nonlinearityB\x1d\n\x1b_negative_nonlinearity_typeB\x1d\n\x1b_positive_nonlinearity_typeB \n\x1e_negative_friction_coefficientB \n\x1e_positive_friction_coefficientB\x1a\n\x18_negative_contact_stressB\x1a\n\x18_positive_contact_stressB\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*\xd1\x01\n\x1aSurfaceSupportNonlinearity\x12%\n!SURFACE_SUPPORT_NONLINEARITY_NONE\x10\x00\x12\x45\nASURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z\x10\x01\x12\x45\nASURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z\x10\x02*\x86\x02\n&SurfaceSupportNegativeNonlinearityType\x12J\nFSURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION\x10\x00\x12@\n<SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY\x10\x02\x12N\nJSURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z\x10\x01*\x86\x02\n&SurfaceSupportPositiveNonlinearityType\x12J\nFSURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION\x10\x00\x12@\n<SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY\x10\x02\x12N\nJSURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_surfaces.surface_support_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SURFACESUPPORTNONLINEARITY']._serialized_start=1523
36
+ _globals['_SURFACESUPPORTNONLINEARITY']._serialized_end=1732
37
+ _globals['_SURFACESUPPORTNEGATIVENONLINEARITYTYPE']._serialized_start=1735
38
+ _globals['_SURFACESUPPORTNEGATIVENONLINEARITYTYPE']._serialized_end=1997
39
+ _globals['_SURFACESUPPORTPOSITIVENONLINEARITYTYPE']._serialized_start=2000
40
+ _globals['_SURFACESUPPORTPOSITIVENONLINEARITYTYPE']._serialized_end=2262
41
+ _globals['_SURFACESUPPORT']._serialized_start=129
42
+ _globals['_SURFACESUPPORT']._serialized_end=1520
43
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,83 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class SurfaceSupportNonlinearity(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ SURFACE_SUPPORT_NONLINEARITY_NONE: _ClassVar[SurfaceSupportNonlinearity]
13
+ SURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: _ClassVar[SurfaceSupportNonlinearity]
14
+ SURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: _ClassVar[SurfaceSupportNonlinearity]
15
+
16
+ class SurfaceSupportNegativeNonlinearityType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
17
+ __slots__ = ()
18
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION: _ClassVar[SurfaceSupportNegativeNonlinearityType]
19
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY: _ClassVar[SurfaceSupportNegativeNonlinearityType]
20
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z: _ClassVar[SurfaceSupportNegativeNonlinearityType]
21
+
22
+ class SurfaceSupportPositiveNonlinearityType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
23
+ __slots__ = ()
24
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION: _ClassVar[SurfaceSupportPositiveNonlinearityType]
25
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY: _ClassVar[SurfaceSupportPositiveNonlinearityType]
26
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z: _ClassVar[SurfaceSupportPositiveNonlinearityType]
27
+ SURFACE_SUPPORT_NONLINEARITY_NONE: SurfaceSupportNonlinearity
28
+ SURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_NEGATIVE_CONTACT_STRESS_Z: SurfaceSupportNonlinearity
29
+ SURFACE_SUPPORT_NONLINEARITY_FAILURE_IF_POSITIVE_CONTACT_STRESS_Z: SurfaceSupportNonlinearity
30
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION: SurfaceSupportNegativeNonlinearityType
31
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY: SurfaceSupportNegativeNonlinearityType
32
+ SURFACE_SUPPORT_NEGATIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z: SurfaceSupportNegativeNonlinearityType
33
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_BASIC_UNIDIRECTIONAL_ACTION: SurfaceSupportPositiveNonlinearityType
34
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_FRICTION_PLANE_XY: SurfaceSupportPositiveNonlinearityType
35
+ SURFACE_SUPPORT_POSITIVE_NONLINEARITY_TYPE_YIELDING_CONTACT_STRESS_SIGMA_Z: SurfaceSupportPositiveNonlinearityType
36
+
37
+ class SurfaceSupport(_message.Message):
38
+ __slots__ = ("no", "user_defined_name_enabled", "name", "surfaces", "translation", "translation_x", "translation_y", "translation_z", "shear_xz", "shear_yz", "nonlinearity", "negative_nonlinearity_type", "positive_nonlinearity_type", "negative_friction_coefficient", "positive_friction_coefficient", "negative_contact_stress", "positive_contact_stress", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
39
+ NO_FIELD_NUMBER: _ClassVar[int]
40
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
41
+ NAME_FIELD_NUMBER: _ClassVar[int]
42
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
43
+ TRANSLATION_FIELD_NUMBER: _ClassVar[int]
44
+ TRANSLATION_X_FIELD_NUMBER: _ClassVar[int]
45
+ TRANSLATION_Y_FIELD_NUMBER: _ClassVar[int]
46
+ TRANSLATION_Z_FIELD_NUMBER: _ClassVar[int]
47
+ SHEAR_XZ_FIELD_NUMBER: _ClassVar[int]
48
+ SHEAR_YZ_FIELD_NUMBER: _ClassVar[int]
49
+ NONLINEARITY_FIELD_NUMBER: _ClassVar[int]
50
+ NEGATIVE_NONLINEARITY_TYPE_FIELD_NUMBER: _ClassVar[int]
51
+ POSITIVE_NONLINEARITY_TYPE_FIELD_NUMBER: _ClassVar[int]
52
+ NEGATIVE_FRICTION_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
53
+ POSITIVE_FRICTION_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
54
+ NEGATIVE_CONTACT_STRESS_FIELD_NUMBER: _ClassVar[int]
55
+ POSITIVE_CONTACT_STRESS_FIELD_NUMBER: _ClassVar[int]
56
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
57
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
58
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
59
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
60
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
61
+ no: int
62
+ user_defined_name_enabled: bool
63
+ name: str
64
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
65
+ translation: _common_pb2.Vector3d
66
+ translation_x: float
67
+ translation_y: float
68
+ translation_z: float
69
+ shear_xz: float
70
+ shear_yz: float
71
+ nonlinearity: SurfaceSupportNonlinearity
72
+ negative_nonlinearity_type: SurfaceSupportNegativeNonlinearityType
73
+ positive_nonlinearity_type: SurfaceSupportPositiveNonlinearityType
74
+ negative_friction_coefficient: float
75
+ positive_friction_coefficient: float
76
+ negative_contact_stress: float
77
+ positive_contact_stress: float
78
+ comment: str
79
+ is_generated: bool
80
+ generating_object_info: str
81
+ id_for_export_import: str
82
+ metadata_for_export_import: str
83
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., surfaces: _Optional[_Iterable[int]] = ..., translation: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., translation_x: _Optional[float] = ..., translation_y: _Optional[float] = ..., translation_z: _Optional[float] = ..., shear_xz: _Optional[float] = ..., shear_yz: _Optional[float] = ..., nonlinearity: _Optional[_Union[SurfaceSupportNonlinearity, str]] = ..., negative_nonlinearity_type: _Optional[_Union[SurfaceSupportNegativeNonlinearityType, str]] = ..., positive_nonlinearity_type: _Optional[_Union[SurfaceSupportPositiveNonlinearityType, str]] = ..., negative_friction_coefficient: _Optional[float] = ..., positive_friction_coefficient: _Optional[float] = ..., negative_contact_stress: _Optional[float] = ..., positive_contact_stress: _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,5 @@
1
+ from .timber_effective_lengths_pb2 import *
2
+ from .timber_member_local_section_reduction_pb2 import *
3
+ from .timber_moisture_class_pb2 import *
4
+ from .timber_service_class_pb2 import *
5
+ from .timber_service_conditions_pb2 import *
@@ -0,0 +1,56 @@
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_timber_design/timber_effective_lengths.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/types_for_timber_design/timber_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'\nFdlubal/api/rfem/types_for_timber_design/timber_effective_lengths.proto\x12\'dlubal.api.rfem.types_for_timber_design\"\xfd\x1b\n\x16TimberEffectiveLengths\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\x19\x66lexural_buckling_about_y\x18\x07 \x01(\x08H\x03\x88\x01\x01\x12&\n\x19\x66lexural_buckling_about_z\x18\x08 \x01(\x08H\x04\x88\x01\x01\x12\'\n\x1alateral_torsional_buckling\x18\t \x01(\x08H\x05\x88\x01\x01\x12\x7f\n\x1a\x62uckling_factor_value_type\x18\n \x01(\x0e\x32V.dlubal.api.rfem.types_for_timber_design.TimberEffectiveLengthsBucklingFactorValueTypeH\x06\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\x08\x88\x01\x01\x12\x1f\n\x12intermediate_nodes\x18\r \x01(\x08H\t\x88\x01\x01\x12!\n\x14\x64ifferent_properties\x18\x0e \x01(\x08H\n\x88\x01\x01\x12(\n\x1b\x66\x61\x63tors_definition_absolute\x18\x0f \x01(\x08H\x0b\x88\x01\x01\x12p\n\x0enodal_supports\x18\x10 \x01(\x0b\x32S.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsNodalSupportsH\x0c\x88\x01\x01\x12\x63\n\x07\x66\x61\x63tors\x18\x11 \x01(\x0b\x32M.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsFactorsH\r\x88\x01\x01\x12\x63\n\x07lengths\x18\x12 \x01(\x0b\x32M.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsLengthsH\x0e\x88\x01\x01\x12\x86\x01\n\x1a\x66ire_design_nodal_supports\x18\x13 \x01(\x0b\x32].dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsFireDesignNodalSupportsH\x0f\x88\x01\x01\x12y\n\x13\x66ire_design_factors\x18\x14 \x01(\x0b\x32W.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsFireDesignFactorsH\x10\x88\x01\x01\x12y\n\x13\x66ire_design_lengths\x18\x15 \x01(\x0b\x32W.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsFireDesignLengthsH\x11\x88\x01\x01\x12+\n\x1e\x66ire_design_intermediate_nodes\x18\x16 \x01(\x08H\x12\x88\x01\x01\x12-\n fire_design_different_properties\x18\x17 \x01(\x08H\x13\x88\x01\x01\x12\x34\n\'fire_design_factors_definition_absolute\x18\x18 \x01(\x08H\x14\x88\x01\x01\x12\x33\n&fire_design_different_buckling_factors\x18\x19 \x01(\x08H\x15\x88\x01\x01\x12\x33\n&import_from_stability_analysis_enabled\x18\x1a \x01(\x08H\x16\x88\x01\x01\x12>\n1stability_import_data_factors_definition_absolute\x18\x1b \x01(\x08H\x17\x88\x01\x01\x12+\n\x1estability_import_data_member_y\x18\x1c \x01(\x05H\x18\x88\x01\x01\x12,\n\x1fstability_import_data_loading_y\x18\x1d \x01(\x05H\x19\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_y\x18\x1e \x01(\x05H\x1a\x88\x01\x01\x12+\n\x1estability_import_data_member_z\x18\x1f \x01(\x05H\x1b\x88\x01\x01\x12,\n\x1fstability_import_data_loading_z\x18 \x01(\x05H\x1c\x88\x01\x01\x12\x30\n#stability_import_data_mode_number_z\x18! \x01(\x05H\x1d\x88\x01\x01\x12\x8c\x01\n\x1dstability_import_data_factors\x18\" \x01(\x0b\x32`.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsStabilityImportDataFactorsH\x1e\x88\x01\x01\x12\x8c\x01\n\x1dstability_import_data_lengths\x18# \x01(\x0b\x32`.dlubal.api.rfem.types_for_timber_design.ArrayOfTimberEffectiveLengthsStabilityImportDataLengthsH\x1f\x88\x01\x01\x12\x31\n$stability_import_data_user_defined_y\x18$ \x01(\x08H \x88\x01\x01\x12\x31\n$stability_import_data_user_defined_z\x18% \x01(\x08H!\x88\x01\x01\x12q\n\x12\x64\x65termination_type\x18& \x01(\x0e\x32P.dlubal.api.rfem.types_for_timber_design.TimberEffectiveLengthsDeterminationTypeH\"\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\x1c\n\x1a_flexural_buckling_about_yB\x1c\n\x1a_flexural_buckling_about_zB\x1d\n\x1b_lateral_torsional_bucklingB\x1d\n\x1b_buckling_factor_value_typeB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x15\n\x13_intermediate_nodesB\x17\n\x15_different_propertiesB\x1e\n\x1c_factors_definition_absoluteB\x11\n\x0f_nodal_supportsB\n\n\x08_factorsB\n\n\x08_lengthsB\x1d\n\x1b_fire_design_nodal_supportsB\x16\n\x14_fire_design_factorsB\x16\n\x14_fire_design_lengthsB!\n\x1f_fire_design_intermediate_nodesB#\n!_fire_design_different_propertiesB*\n(_fire_design_factors_definition_absoluteB)\n\'_fire_design_different_buckling_factorsB)\n\'_import_from_stability_analysis_enabledB4\n2_stability_import_data_factors_definition_absoluteB!\n\x1f_stability_import_data_member_yB\"\n _stability_import_data_loading_yB&\n$_stability_import_data_mode_number_yB!\n\x1f_stability_import_data_member_zB\"\n _stability_import_data_loading_zB&\n$_stability_import_data_mode_number_zB \n\x1e_stability_import_data_factorsB \n\x1e_stability_import_data_lengthsB\'\n%_stability_import_data_user_defined_yB\'\n%_stability_import_data_user_defined_zB\x15\n\x13_determination_typeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\",\n*ArrayOfTimberEffectiveLengthsNodalSupports\"&\n$ArrayOfTimberEffectiveLengthsFactors\"&\n$ArrayOfTimberEffectiveLengthsLengths\"6\n4ArrayOfTimberEffectiveLengthsFireDesignNodalSupports\"0\n.ArrayOfTimberEffectiveLengthsFireDesignFactors\"0\n.ArrayOfTimberEffectiveLengthsFireDesignLengths\"9\n7ArrayOfTimberEffectiveLengthsStabilityImportDataFactors\"9\n7ArrayOfTimberEffectiveLengthsStabilityImportDataLengths*\xb9\x01\n-TimberEffectiveLengthsBucklingFactorValueType\x12\x43\n?TIMBER_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_THEORETICAL\x10\x00\x12\x43\n?TIMBER_EFFECTIVE_LENGTHS_BUCKLING_FACTOR_VALUE_TYPE_RECOMMENDED\x10\x01*\xe6\x01\n\'TimberEffectiveLengthsDeterminationType\x12:\n6TIMBER_EFFECTIVE_LENGTHS_DETERMINATION_TYPE_ANALYTICAL\x10\x00\x12\x41\n=TIMBER_EFFECTIVE_LENGTHS_DETERMINATION_TYPE_EIGENVALUE_SOLVER\x10\x01\x12<\n8TIMBER_EFFECTIVE_LENGTHS_DETERMINATION_TYPE_USER_DEFINED\x10\x02\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_timber_design.timber_effective_lengths_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_TIMBEREFFECTIVELENGTHSBUCKLINGFACTORVALUETYPE']._serialized_start=4100
35
+ _globals['_TIMBEREFFECTIVELENGTHSBUCKLINGFACTORVALUETYPE']._serialized_end=4285
36
+ _globals['_TIMBEREFFECTIVELENGTHSDETERMINATIONTYPE']._serialized_start=4288
37
+ _globals['_TIMBEREFFECTIVELENGTHSDETERMINATIONTYPE']._serialized_end=4518
38
+ _globals['_TIMBEREFFECTIVELENGTHS']._serialized_start=116
39
+ _globals['_TIMBEREFFECTIVELENGTHS']._serialized_end=3697
40
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSNODALSUPPORTS']._serialized_start=3699
41
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSNODALSUPPORTS']._serialized_end=3743
42
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFACTORS']._serialized_start=3745
43
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFACTORS']._serialized_end=3783
44
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSLENGTHS']._serialized_start=3785
45
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSLENGTHS']._serialized_end=3823
46
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNNODALSUPPORTS']._serialized_start=3825
47
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNNODALSUPPORTS']._serialized_end=3879
48
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNFACTORS']._serialized_start=3881
49
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNFACTORS']._serialized_end=3929
50
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNLENGTHS']._serialized_start=3931
51
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSFIREDESIGNLENGTHS']._serialized_end=3979
52
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSSTABILITYIMPORTDATAFACTORS']._serialized_start=3981
53
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSSTABILITYIMPORTDATAFACTORS']._serialized_end=4038
54
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSSTABILITYIMPORTDATALENGTHS']._serialized_start=4040
55
+ _globals['_ARRAYOFTIMBEREFFECTIVELENGTHSSTABILITYIMPORTDATALENGTHS']._serialized_end=4097
56
+ # @@protoc_insertion_point(module_scope)