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,53 @@
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/structure_core/solid.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/structure_core/solid.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/structure_core/solid.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xb8\x1f\n\x05Solid\x12\n\n\x02no\x18\x01 \x01(\x05\x12<\n\x04type\x18\x02 \x01(\x0e\x32).dlubal.api.rfem.structure_core.SolidTypeH\x00\x88\x01\x01\x12\x46\n\x1c\x61nalytical_center_of_gravity\x18\x03 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x01\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_x\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_y\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_z\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_mass\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12$\n\x17\x61nalytical_surface_area\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1e\n\x11\x61nalytical_volume\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x19\n\x11\x62oundary_surfaces\x18\n \x03(\x05\x12;\n\x11\x63\x65nter_of_gravity\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x08\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x0c \x01(\x01H\t\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\r \x01(\x01H\n\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x10\n\x03gas\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12+\n\x1eis_deactivated_for_calculation\x18\x10 \x01(\x08H\r\x88\x01\x01\x12\x11\n\x04mass\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x15\n\x08material\x18\x12 \x01(\x05H\x0f\x88\x01\x01\x12\x1c\n\x0fmesh_refinement\x18\x13 \x01(\x05H\x10\x88\x01\x01\x12\x1a\n\rsolid_contact\x18\x14 \x01(\x05H\x11\x88\x01\x01\x12(\n\x1bsolid_contact_first_surface\x18\x15 \x01(\x05H\x12\x88\x01\x01\x12)\n\x1csolid_contact_second_surface\x18\x16 \x01(\x05H\x13\x88\x01\x01\x12*\n\x1dstress_analysis_configuration\x18\x17 \x01(\x05H\x14\x88\x01\x01\x12\x19\n\x0csurface_area\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\x13\n\x06volume\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x17\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1b \x01(\x08H\x18\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1c \x01(\tH\x19\x88\x01\x01\x12$\n\x17is_layered_mesh_enabled\x18\x1d \x01(\x08H\x1a\x88\x01\x01\x12\'\n\x1alayered_mesh_first_surface\x18\x1e \x01(\x05H\x1b\x88\x01\x01\x12(\n\x1blayered_mesh_second_surface\x18\x1f \x01(\x05H\x1c\x88\x01\x01\x12\x82\x01\n*number_of_finite_element_layers_input_type\x18 \x01(\x0e\x32I.dlubal.api.rfem.structure_core.SolidNumberOfFiniteElementLayersInputTypeH\x1d\x88\x01\x01\x12,\n\x1fnumber_of_finite_element_layers\x18! \x01(\x05H\x1e\x88\x01\x01\x12\'\n\x1aspecific_direction_enabled\x18\" \x01(\x08H\x1f\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18# \x01(\x05H \x88\x01\x01\x12`\n\x17specific_direction_type\x18$ \x01(\x0e\x32:.dlubal.api.rfem.structure_core.SolidSpecificDirectionTypeH!\x88\x01\x01\x12M\n\raxes_sequence\x18% \x01(\x0e\x32\x31.dlubal.api.rfem.structure_core.SolidAxesSequenceH\"\x88\x01\x01\x12\"\n\x15rotated_about_angle_x\x18& \x01(\x01H#\x88\x01\x01\x12\"\n\x15rotated_about_angle_y\x18\' \x01(\x01H$\x88\x01\x01\x12\"\n\x15rotated_about_angle_z\x18( \x01(\x01H%\x88\x01\x01\x12\"\n\x15rotated_about_angle_1\x18) \x01(\x01H&\x88\x01\x01\x12\"\n\x15rotated_about_angle_2\x18* \x01(\x01H\'\x88\x01\x01\x12\"\n\x15rotated_about_angle_3\x18+ \x01(\x01H(\x88\x01\x01\x12,\n\x1f\x64irected_to_node_direction_node\x18, \x01(\x05H)\x88\x01\x01\x12(\n\x1b\x64irected_to_node_plane_node\x18- \x01(\x05H*\x88\x01\x01\x12\x66\n\x1b\x64irected_to_node_first_axis\x18. \x01(\x0e\x32<.dlubal.api.rfem.structure_core.SolidDirectedToNodeFirstAxisH+\x88\x01\x01\x12h\n\x1c\x64irected_to_node_second_axis\x18/ \x01(\x0e\x32=.dlubal.api.rfem.structure_core.SolidDirectedToNodeSecondAxisH,\x88\x01\x01\x12-\n parallel_to_two_nodes_first_node\x18\x30 \x01(\x05H-\x88\x01\x01\x12.\n!parallel_to_two_nodes_second_node\x18\x31 \x01(\x05H.\x88\x01\x01\x12-\n parallel_to_two_nodes_plane_node\x18\x32 \x01(\x05H/\x88\x01\x01\x12o\n parallel_to_two_nodes_first_axis\x18\x33 \x01(\x0e\x32@.dlubal.api.rfem.structure_core.SolidParallelToTwoNodesFirstAxisH0\x88\x01\x01\x12q\n!parallel_to_two_nodes_second_axis\x18\x34 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.SolidParallelToTwoNodesSecondAxisH1\x88\x01\x01\x12\x1d\n\x10parallel_to_line\x18\x35 \x01(\x05H2\x88\x01\x01\x12\x1f\n\x12parallel_to_member\x18\x36 \x01(\x05H3\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x37 \x01(\tH4\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x38 \x01(\tH5\x88\x01\x01\x42\x07\n\x05_typeB\x1f\n\x1d_analytical_center_of_gravityB!\n\x1f_analytical_center_of_gravity_xB!\n\x1f_analytical_center_of_gravity_yB!\n\x1f_analytical_center_of_gravity_zB\x12\n\x10_analytical_massB\x1a\n\x18_analytical_surface_areaB\x14\n\x12_analytical_volumeB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x06\n\x04_gasB!\n\x1f_is_deactivated_for_calculationB\x07\n\x05_massB\x0b\n\t_materialB\x12\n\x10_mesh_refinementB\x10\n\x0e_solid_contactB\x1e\n\x1c_solid_contact_first_surfaceB\x1f\n\x1d_solid_contact_second_surfaceB \n\x1e_stress_analysis_configurationB\x0f\n\r_surface_areaB\t\n\x07_volumeB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1a\n\x18_is_layered_mesh_enabledB\x1d\n\x1b_layered_mesh_first_surfaceB\x1e\n\x1c_layered_mesh_second_surfaceB-\n+_number_of_finite_element_layers_input_typeB\"\n _number_of_finite_element_layersB\x1d\n\x1b_specific_direction_enabledB\x14\n\x12_coordinate_systemB\x1a\n\x18_specific_direction_typeB\x10\n\x0e_axes_sequenceB\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\"\n _directed_to_node_direction_nodeB\x1e\n\x1c_directed_to_node_plane_nodeB\x1e\n\x1c_directed_to_node_first_axisB\x1f\n\x1d_directed_to_node_second_axisB#\n!_parallel_to_two_nodes_first_nodeB$\n\"_parallel_to_two_nodes_second_nodeB#\n!_parallel_to_two_nodes_plane_nodeB#\n!_parallel_to_two_nodes_first_axisB$\n\"_parallel_to_two_nodes_second_axisB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xaf\x01\n\tSolidType\x12\x16\n\x12SOLID_TYPE_UNKNOWN\x10\x00\x12\x16\n\x12SOLID_TYPE_CONTACT\x10\x03\x12\x12\n\x0eSOLID_TYPE_GAS\x10\x02\x12\x13\n\x0fSOLID_TYPE_HOLE\x10\x04\x12\x1b\n\x17SOLID_TYPE_INTERSECTION\x10\x05\x12\x13\n\x0fSOLID_TYPE_SOIL\x10\x06\x12\x17\n\x13SOLID_TYPE_STANDARD\x10\x01*\xbf\x01\n)SolidNumberOfFiniteElementLayersInputType\x12\x41\n=SOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_USER_DEFINED\x10\x00\x12O\nKSOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_ACCORDING_TO_MESH_SETTINGS\x10\x01*\xb7\x02\n\x1aSolidSpecificDirectionType\x12\x36\n2SOLID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12\x32\n.SOLID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12\x38\n4SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12:\n6SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12\x37\n3SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02*\xc1\x01\n\x11SolidAxesSequence\x12\x1b\n\x17SOLID_AXES_SEQUENCE_XYZ\x10\x00\x12\x1b\n\x17SOLID_AXES_SEQUENCE_XZY\x10\x01\x12\x1b\n\x17SOLID_AXES_SEQUENCE_YXZ\x10\x02\x12\x1b\n\x17SOLID_AXES_SEQUENCE_YZX\x10\x03\x12\x1b\n\x17SOLID_AXES_SEQUENCE_ZXY\x10\x04\x12\x1b\n\x17SOLID_AXES_SEQUENCE_ZYX\x10\x05*\x99\x01\n\x1cSolidDirectedToNodeFirstAxis\x12\'\n#SOLID_DIRECTED_TO_NODE_FIRST_AXIS_X\x10\x00\x12\'\n#SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Y\x10\x01\x12\'\n#SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Z\x10\x02*\x9d\x01\n\x1dSolidDirectedToNodeSecondAxis\x12(\n$SOLID_DIRECTED_TO_NODE_SECOND_AXIS_X\x10\x00\x12(\n$SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Y\x10\x01\x12(\n$SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Z\x10\x02*\xac\x01\n SolidParallelToTwoNodesFirstAxis\x12,\n(SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X\x10\x00\x12,\n(SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y\x10\x01\x12,\n(SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z\x10\x02*\xb0\x01\n!SolidParallelToTwoNodesSecondAxis\x12-\n)SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X\x10\x00\x12-\n)SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y\x10\x01\x12-\n)SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z\x10\x02\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.solid_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SOLIDTYPE']._serialized_start=4138
36
+ _globals['_SOLIDTYPE']._serialized_end=4313
37
+ _globals['_SOLIDNUMBEROFFINITEELEMENTLAYERSINPUTTYPE']._serialized_start=4316
38
+ _globals['_SOLIDNUMBEROFFINITEELEMENTLAYERSINPUTTYPE']._serialized_end=4507
39
+ _globals['_SOLIDSPECIFICDIRECTIONTYPE']._serialized_start=4510
40
+ _globals['_SOLIDSPECIFICDIRECTIONTYPE']._serialized_end=4821
41
+ _globals['_SOLIDAXESSEQUENCE']._serialized_start=4824
42
+ _globals['_SOLIDAXESSEQUENCE']._serialized_end=5017
43
+ _globals['_SOLIDDIRECTEDTONODEFIRSTAXIS']._serialized_start=5020
44
+ _globals['_SOLIDDIRECTEDTONODEFIRSTAXIS']._serialized_end=5173
45
+ _globals['_SOLIDDIRECTEDTONODESECONDAXIS']._serialized_start=5176
46
+ _globals['_SOLIDDIRECTEDTONODESECONDAXIS']._serialized_end=5333
47
+ _globals['_SOLIDPARALLELTOTWONODESFIRSTAXIS']._serialized_start=5336
48
+ _globals['_SOLIDPARALLELTOTWONODESFIRSTAXIS']._serialized_end=5508
49
+ _globals['_SOLIDPARALLELTOTWONODESSECONDAXIS']._serialized_start=5511
50
+ _globals['_SOLIDPARALLELTOTWONODESSECONDAXIS']._serialized_end=5687
51
+ _globals['_SOLID']._serialized_start=111
52
+ _globals['_SOLID']._serialized_end=4135
53
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,212 @@
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 SolidType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ SOLID_TYPE_UNKNOWN: _ClassVar[SolidType]
13
+ SOLID_TYPE_CONTACT: _ClassVar[SolidType]
14
+ SOLID_TYPE_GAS: _ClassVar[SolidType]
15
+ SOLID_TYPE_HOLE: _ClassVar[SolidType]
16
+ SOLID_TYPE_INTERSECTION: _ClassVar[SolidType]
17
+ SOLID_TYPE_SOIL: _ClassVar[SolidType]
18
+ SOLID_TYPE_STANDARD: _ClassVar[SolidType]
19
+
20
+ class SolidNumberOfFiniteElementLayersInputType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ SOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_USER_DEFINED: _ClassVar[SolidNumberOfFiniteElementLayersInputType]
23
+ SOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_ACCORDING_TO_MESH_SETTINGS: _ClassVar[SolidNumberOfFiniteElementLayersInputType]
24
+
25
+ class SolidSpecificDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
26
+ __slots__ = ()
27
+ SOLID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: _ClassVar[SolidSpecificDirectionType]
28
+ SOLID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: _ClassVar[SolidSpecificDirectionType]
29
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: _ClassVar[SolidSpecificDirectionType]
30
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: _ClassVar[SolidSpecificDirectionType]
31
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: _ClassVar[SolidSpecificDirectionType]
32
+
33
+ class SolidAxesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ SOLID_AXES_SEQUENCE_XYZ: _ClassVar[SolidAxesSequence]
36
+ SOLID_AXES_SEQUENCE_XZY: _ClassVar[SolidAxesSequence]
37
+ SOLID_AXES_SEQUENCE_YXZ: _ClassVar[SolidAxesSequence]
38
+ SOLID_AXES_SEQUENCE_YZX: _ClassVar[SolidAxesSequence]
39
+ SOLID_AXES_SEQUENCE_ZXY: _ClassVar[SolidAxesSequence]
40
+ SOLID_AXES_SEQUENCE_ZYX: _ClassVar[SolidAxesSequence]
41
+
42
+ class SolidDirectedToNodeFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
43
+ __slots__ = ()
44
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_X: _ClassVar[SolidDirectedToNodeFirstAxis]
45
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Y: _ClassVar[SolidDirectedToNodeFirstAxis]
46
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Z: _ClassVar[SolidDirectedToNodeFirstAxis]
47
+
48
+ class SolidDirectedToNodeSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
49
+ __slots__ = ()
50
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_X: _ClassVar[SolidDirectedToNodeSecondAxis]
51
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Y: _ClassVar[SolidDirectedToNodeSecondAxis]
52
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Z: _ClassVar[SolidDirectedToNodeSecondAxis]
53
+
54
+ class SolidParallelToTwoNodesFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
55
+ __slots__ = ()
56
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: _ClassVar[SolidParallelToTwoNodesFirstAxis]
57
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: _ClassVar[SolidParallelToTwoNodesFirstAxis]
58
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: _ClassVar[SolidParallelToTwoNodesFirstAxis]
59
+
60
+ class SolidParallelToTwoNodesSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
61
+ __slots__ = ()
62
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: _ClassVar[SolidParallelToTwoNodesSecondAxis]
63
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: _ClassVar[SolidParallelToTwoNodesSecondAxis]
64
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: _ClassVar[SolidParallelToTwoNodesSecondAxis]
65
+ SOLID_TYPE_UNKNOWN: SolidType
66
+ SOLID_TYPE_CONTACT: SolidType
67
+ SOLID_TYPE_GAS: SolidType
68
+ SOLID_TYPE_HOLE: SolidType
69
+ SOLID_TYPE_INTERSECTION: SolidType
70
+ SOLID_TYPE_SOIL: SolidType
71
+ SOLID_TYPE_STANDARD: SolidType
72
+ SOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_USER_DEFINED: SolidNumberOfFiniteElementLayersInputType
73
+ SOLID_NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_ACCORDING_TO_MESH_SETTINGS: SolidNumberOfFiniteElementLayersInputType
74
+ SOLID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: SolidSpecificDirectionType
75
+ SOLID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: SolidSpecificDirectionType
76
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: SolidSpecificDirectionType
77
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: SolidSpecificDirectionType
78
+ SOLID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: SolidSpecificDirectionType
79
+ SOLID_AXES_SEQUENCE_XYZ: SolidAxesSequence
80
+ SOLID_AXES_SEQUENCE_XZY: SolidAxesSequence
81
+ SOLID_AXES_SEQUENCE_YXZ: SolidAxesSequence
82
+ SOLID_AXES_SEQUENCE_YZX: SolidAxesSequence
83
+ SOLID_AXES_SEQUENCE_ZXY: SolidAxesSequence
84
+ SOLID_AXES_SEQUENCE_ZYX: SolidAxesSequence
85
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_X: SolidDirectedToNodeFirstAxis
86
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Y: SolidDirectedToNodeFirstAxis
87
+ SOLID_DIRECTED_TO_NODE_FIRST_AXIS_Z: SolidDirectedToNodeFirstAxis
88
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_X: SolidDirectedToNodeSecondAxis
89
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Y: SolidDirectedToNodeSecondAxis
90
+ SOLID_DIRECTED_TO_NODE_SECOND_AXIS_Z: SolidDirectedToNodeSecondAxis
91
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: SolidParallelToTwoNodesFirstAxis
92
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: SolidParallelToTwoNodesFirstAxis
93
+ SOLID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: SolidParallelToTwoNodesFirstAxis
94
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: SolidParallelToTwoNodesSecondAxis
95
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: SolidParallelToTwoNodesSecondAxis
96
+ SOLID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: SolidParallelToTwoNodesSecondAxis
97
+
98
+ class Solid(_message.Message):
99
+ __slots__ = ("no", "type", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "analytical_mass", "analytical_surface_area", "analytical_volume", "boundary_surfaces", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "gas", "is_deactivated_for_calculation", "mass", "material", "mesh_refinement", "solid_contact", "solid_contact_first_surface", "solid_contact_second_surface", "stress_analysis_configuration", "surface_area", "volume", "comment", "is_generated", "generating_object_info", "is_layered_mesh_enabled", "layered_mesh_first_surface", "layered_mesh_second_surface", "number_of_finite_element_layers_input_type", "number_of_finite_element_layers", "specific_direction_enabled", "coordinate_system", "specific_direction_type", "axes_sequence", "rotated_about_angle_x", "rotated_about_angle_y", "rotated_about_angle_z", "rotated_about_angle_1", "rotated_about_angle_2", "rotated_about_angle_3", "directed_to_node_direction_node", "directed_to_node_plane_node", "directed_to_node_first_axis", "directed_to_node_second_axis", "parallel_to_two_nodes_first_node", "parallel_to_two_nodes_second_node", "parallel_to_two_nodes_plane_node", "parallel_to_two_nodes_first_axis", "parallel_to_two_nodes_second_axis", "parallel_to_line", "parallel_to_member", "id_for_export_import", "metadata_for_export_import")
100
+ NO_FIELD_NUMBER: _ClassVar[int]
101
+ TYPE_FIELD_NUMBER: _ClassVar[int]
102
+ ANALYTICAL_CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
103
+ ANALYTICAL_CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
104
+ ANALYTICAL_CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
105
+ ANALYTICAL_CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
106
+ ANALYTICAL_MASS_FIELD_NUMBER: _ClassVar[int]
107
+ ANALYTICAL_SURFACE_AREA_FIELD_NUMBER: _ClassVar[int]
108
+ ANALYTICAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
109
+ BOUNDARY_SURFACES_FIELD_NUMBER: _ClassVar[int]
110
+ CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
111
+ CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
112
+ CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
113
+ CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
114
+ GAS_FIELD_NUMBER: _ClassVar[int]
115
+ IS_DEACTIVATED_FOR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
116
+ MASS_FIELD_NUMBER: _ClassVar[int]
117
+ MATERIAL_FIELD_NUMBER: _ClassVar[int]
118
+ MESH_REFINEMENT_FIELD_NUMBER: _ClassVar[int]
119
+ SOLID_CONTACT_FIELD_NUMBER: _ClassVar[int]
120
+ SOLID_CONTACT_FIRST_SURFACE_FIELD_NUMBER: _ClassVar[int]
121
+ SOLID_CONTACT_SECOND_SURFACE_FIELD_NUMBER: _ClassVar[int]
122
+ STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
123
+ SURFACE_AREA_FIELD_NUMBER: _ClassVar[int]
124
+ VOLUME_FIELD_NUMBER: _ClassVar[int]
125
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
126
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
127
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
128
+ IS_LAYERED_MESH_ENABLED_FIELD_NUMBER: _ClassVar[int]
129
+ LAYERED_MESH_FIRST_SURFACE_FIELD_NUMBER: _ClassVar[int]
130
+ LAYERED_MESH_SECOND_SURFACE_FIELD_NUMBER: _ClassVar[int]
131
+ NUMBER_OF_FINITE_ELEMENT_LAYERS_INPUT_TYPE_FIELD_NUMBER: _ClassVar[int]
132
+ NUMBER_OF_FINITE_ELEMENT_LAYERS_FIELD_NUMBER: _ClassVar[int]
133
+ SPECIFIC_DIRECTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
134
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
135
+ SPECIFIC_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
136
+ AXES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
137
+ ROTATED_ABOUT_ANGLE_X_FIELD_NUMBER: _ClassVar[int]
138
+ ROTATED_ABOUT_ANGLE_Y_FIELD_NUMBER: _ClassVar[int]
139
+ ROTATED_ABOUT_ANGLE_Z_FIELD_NUMBER: _ClassVar[int]
140
+ ROTATED_ABOUT_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
141
+ ROTATED_ABOUT_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
142
+ ROTATED_ABOUT_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
143
+ DIRECTED_TO_NODE_DIRECTION_NODE_FIELD_NUMBER: _ClassVar[int]
144
+ DIRECTED_TO_NODE_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
145
+ DIRECTED_TO_NODE_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
146
+ DIRECTED_TO_NODE_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
147
+ PARALLEL_TO_TWO_NODES_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
148
+ PARALLEL_TO_TWO_NODES_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
149
+ PARALLEL_TO_TWO_NODES_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
150
+ PARALLEL_TO_TWO_NODES_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
151
+ PARALLEL_TO_TWO_NODES_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
152
+ PARALLEL_TO_LINE_FIELD_NUMBER: _ClassVar[int]
153
+ PARALLEL_TO_MEMBER_FIELD_NUMBER: _ClassVar[int]
154
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
155
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
156
+ no: int
157
+ type: SolidType
158
+ analytical_center_of_gravity: _common_pb2.Vector3d
159
+ analytical_center_of_gravity_x: float
160
+ analytical_center_of_gravity_y: float
161
+ analytical_center_of_gravity_z: float
162
+ analytical_mass: float
163
+ analytical_surface_area: float
164
+ analytical_volume: float
165
+ boundary_surfaces: _containers.RepeatedScalarFieldContainer[int]
166
+ center_of_gravity: _common_pb2.Vector3d
167
+ center_of_gravity_x: float
168
+ center_of_gravity_y: float
169
+ center_of_gravity_z: float
170
+ gas: int
171
+ is_deactivated_for_calculation: bool
172
+ mass: float
173
+ material: int
174
+ mesh_refinement: int
175
+ solid_contact: int
176
+ solid_contact_first_surface: int
177
+ solid_contact_second_surface: int
178
+ stress_analysis_configuration: int
179
+ surface_area: float
180
+ volume: float
181
+ comment: str
182
+ is_generated: bool
183
+ generating_object_info: str
184
+ is_layered_mesh_enabled: bool
185
+ layered_mesh_first_surface: int
186
+ layered_mesh_second_surface: int
187
+ number_of_finite_element_layers_input_type: SolidNumberOfFiniteElementLayersInputType
188
+ number_of_finite_element_layers: int
189
+ specific_direction_enabled: bool
190
+ coordinate_system: int
191
+ specific_direction_type: SolidSpecificDirectionType
192
+ axes_sequence: SolidAxesSequence
193
+ rotated_about_angle_x: float
194
+ rotated_about_angle_y: float
195
+ rotated_about_angle_z: float
196
+ rotated_about_angle_1: float
197
+ rotated_about_angle_2: float
198
+ rotated_about_angle_3: float
199
+ directed_to_node_direction_node: int
200
+ directed_to_node_plane_node: int
201
+ directed_to_node_first_axis: SolidDirectedToNodeFirstAxis
202
+ directed_to_node_second_axis: SolidDirectedToNodeSecondAxis
203
+ parallel_to_two_nodes_first_node: int
204
+ parallel_to_two_nodes_second_node: int
205
+ parallel_to_two_nodes_plane_node: int
206
+ parallel_to_two_nodes_first_axis: SolidParallelToTwoNodesFirstAxis
207
+ parallel_to_two_nodes_second_axis: SolidParallelToTwoNodesSecondAxis
208
+ parallel_to_line: int
209
+ parallel_to_member: int
210
+ id_for_export_import: str
211
+ metadata_for_export_import: str
212
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[SolidType, str]] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_surface_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., boundary_surfaces: _Optional[_Iterable[int]] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., gas: _Optional[int] = ..., is_deactivated_for_calculation: bool = ..., mass: _Optional[float] = ..., material: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., solid_contact: _Optional[int] = ..., solid_contact_first_surface: _Optional[int] = ..., solid_contact_second_surface: _Optional[int] = ..., stress_analysis_configuration: _Optional[int] = ..., surface_area: _Optional[float] = ..., volume: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., is_layered_mesh_enabled: bool = ..., layered_mesh_first_surface: _Optional[int] = ..., layered_mesh_second_surface: _Optional[int] = ..., number_of_finite_element_layers_input_type: _Optional[_Union[SolidNumberOfFiniteElementLayersInputType, str]] = ..., number_of_finite_element_layers: _Optional[int] = ..., specific_direction_enabled: bool = ..., coordinate_system: _Optional[int] = ..., specific_direction_type: _Optional[_Union[SolidSpecificDirectionType, str]] = ..., axes_sequence: _Optional[_Union[SolidAxesSequence, str]] = ..., rotated_about_angle_x: _Optional[float] = ..., rotated_about_angle_y: _Optional[float] = ..., rotated_about_angle_z: _Optional[float] = ..., rotated_about_angle_1: _Optional[float] = ..., rotated_about_angle_2: _Optional[float] = ..., rotated_about_angle_3: _Optional[float] = ..., directed_to_node_direction_node: _Optional[int] = ..., directed_to_node_plane_node: _Optional[int] = ..., directed_to_node_first_axis: _Optional[_Union[SolidDirectedToNodeFirstAxis, str]] = ..., directed_to_node_second_axis: _Optional[_Union[SolidDirectedToNodeSecondAxis, str]] = ..., parallel_to_two_nodes_first_node: _Optional[int] = ..., parallel_to_two_nodes_second_node: _Optional[int] = ..., parallel_to_two_nodes_plane_node: _Optional[int] = ..., parallel_to_two_nodes_first_axis: _Optional[_Union[SolidParallelToTwoNodesFirstAxis, str]] = ..., parallel_to_two_nodes_second_axis: _Optional[_Union[SolidParallelToTwoNodesSecondAxis, str]] = ..., parallel_to_line: _Optional[int] = ..., parallel_to_member: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,39 @@
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/structure_core/solid_set.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/structure_core/solid_set.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/structure_core/solid_set.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xa6\x07\n\x08SolidSet\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\x46\n\x08set_type\x18\x04 \x01(\x0e\x32/.dlubal.api.rfem.structure_core.SolidSetSetTypeH\x02\x88\x01\x01\x12\x0e\n\x06solids\x18\x05 \x03(\x05\x12\x19\n\x0csurface_area\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06volume\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04mass\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\n \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x0c \x01(\x01H\t\x88\x01\x01\x12*\n\x1dstress_analysis_configuration\x18\r \x01(\x05H\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\x0b\n\t_set_typeB\x0f\n\r_surface_areaB\t\n\x07_volumeB\x07\n\x05_massB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB \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*R\n\x0fSolidSetSetType\x12!\n\x1dSOLID_SET_SET_TYPE_CONTINUOUS\x10\x00\x12\x1c\n\x18SOLID_SET_SET_TYPE_GROUP\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.solid_set_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SOLIDSETSETTYPE']._serialized_start=1051
36
+ _globals['_SOLIDSETSETTYPE']._serialized_end=1133
37
+ _globals['_SOLIDSET']._serialized_start=115
38
+ _globals['_SOLIDSET']._serialized_end=1049
39
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,55 @@
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 SolidSetSetType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ SOLID_SET_SET_TYPE_CONTINUOUS: _ClassVar[SolidSetSetType]
13
+ SOLID_SET_SET_TYPE_GROUP: _ClassVar[SolidSetSetType]
14
+ SOLID_SET_SET_TYPE_CONTINUOUS: SolidSetSetType
15
+ SOLID_SET_SET_TYPE_GROUP: SolidSetSetType
16
+
17
+ class SolidSet(_message.Message):
18
+ __slots__ = ("no", "user_defined_name_enabled", "name", "set_type", "solids", "surface_area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "stress_analysis_configuration", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
19
+ NO_FIELD_NUMBER: _ClassVar[int]
20
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
21
+ NAME_FIELD_NUMBER: _ClassVar[int]
22
+ SET_TYPE_FIELD_NUMBER: _ClassVar[int]
23
+ SOLIDS_FIELD_NUMBER: _ClassVar[int]
24
+ SURFACE_AREA_FIELD_NUMBER: _ClassVar[int]
25
+ VOLUME_FIELD_NUMBER: _ClassVar[int]
26
+ MASS_FIELD_NUMBER: _ClassVar[int]
27
+ CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
28
+ CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
29
+ CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
30
+ CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
31
+ STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
32
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
33
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
34
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
35
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
36
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
37
+ no: int
38
+ user_defined_name_enabled: bool
39
+ name: str
40
+ set_type: SolidSetSetType
41
+ solids: _containers.RepeatedScalarFieldContainer[int]
42
+ surface_area: float
43
+ volume: float
44
+ mass: float
45
+ center_of_gravity: _common_pb2.Vector3d
46
+ center_of_gravity_x: float
47
+ center_of_gravity_y: float
48
+ center_of_gravity_z: float
49
+ stress_analysis_configuration: int
50
+ comment: str
51
+ is_generated: bool
52
+ generating_object_info: str
53
+ id_for_export_import: str
54
+ metadata_for_export_import: str
55
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., set_type: _Optional[_Union[SolidSetSetType, str]] = ..., solids: _Optional[_Iterable[int]] = ..., surface_area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _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,67 @@
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/structure_core/surface.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/structure_core/surface.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/structure_core/surface.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xb6Y\n\x07Surface\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x46\n\x08geometry\x18\x02 \x01(\x0e\x32/.dlubal.api.rfem.structure_core.SurfaceGeometryH\x00\x88\x01\x01\x12>\n\x04type\x18\x03 \x01(\x0e\x32+.dlubal.api.rfem.structure_core.SurfaceTypeH\x01\x88\x01\x01\x12\x16\n\x0e\x62oundary_lines\x18\x04 \x03(\x05\x12\x16\n\tthickness\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12\x15\n\x08material\x18\x06 \x01(\x05H\x03\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_area\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x1e\n\x11\x61nalytical_volume\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x1c\n\x0f\x61nalytical_mass\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x46\n\x1c\x61nalytical_center_of_gravity\x18\n \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_x\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_y\x18\x0c \x01(\x01H\t\x88\x01\x01\x12+\n\x1e\x61nalytical_center_of_gravity_z\x18\r \x01(\x01H\n\x88\x01\x01\x12\x11\n\x04\x61rea\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x13\n\x06volume\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x11\n\x04mass\x18\x10 \x01(\x01H\r\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x11 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0e\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12\x15\n\x08position\x18\x15 \x01(\tH\x12\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x16 \x01(\tH\x13\x88\x01\x01\x12\x19\n\x0cgrid_enabled\x18\x17 \x01(\x08H\x14\x88\x01\x01\x12+\n\x1eis_deactivated_for_calculation\x18\x18 \x01(\x08H\x15\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x19 \x01(\tH\x16\x88\x01\x01\x12*\n\x1d\x64\x65sign_properties_via_surface\x18\x1a \x01(\x08H\x17\x88\x01\x01\x12\x35\n(design_properties_via_parent_surface_set\x18\x1b \x01(\x08H\x18\x88\x01\x01\x12\x31\n$design_properties_parent_surface_set\x18\x1c \x01(\x05H\x19\x88\x01\x01\x12\x62\n\x17load_transfer_direction\x18\x1d \x01(\x0e\x32<.dlubal.api.rfem.structure_core.SurfaceLoadTransferDirectionH\x1a\x88\x01\x01\x12&\n\x19is_surface_weight_enabled\x18\x1e \x01(\x08H\x1b\x88\x01\x01\x12\x36\n)is_advanced_distribution_settings_enabled\x18\x1f \x01(\x08H\x1c\x88\x01\x01\x12\x1b\n\x0esurface_weight\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x1c\n\x0fsampling_factor\x18! \x01(\x01H\x1e\x88\x01\x01\x12\x19\n\x0cstripe_width\x18\" \x01(\x01H\x1f\x88\x01\x01\x12)\n\x1c\x63onsider_member_eccentricity\x18# \x01(\x08H \x88\x01\x01\x12*\n\x1d\x63onsider_section_distribution\x18$ \x01(\x08H!\x88\x01\x01\x12W\n\x11load_distribution\x18% \x01(\x0e\x32\x37.dlubal.api.rfem.structure_core.SurfaceLoadDistributionH\"\x88\x01\x01\x12+\n\x1eneglect_equilibrium_of_moments\x18& \x01(\x08H#\x88\x01\x01\x12\x18\n\x10\x65xcluded_members\x18\' \x03(\x05\x12$\n\x1c\x65xcluded_parallel_to_members\x18( \x03(\x05\x12\x16\n\x0e\x65xcluded_lines\x18) \x03(\x05\x12\"\n\x1a\x65xcluded_parallel_to_lines\x18* \x03(\x05\x12\x16\n\x0e\x65xcluded_nodes\x18+ \x03(\x05\x12\x16\n\x0eloaded_members\x18, \x03(\x05\x12\x14\n\x0cloaded_lines\x18- \x03(\x05\x12\x14\n\x0cloaded_nodes\x18. \x03(\x05\x12\x35\n(nurbs_control_point_count_in_direction_u\x18/ \x01(\x05H$\x88\x01\x01\x12\x35\n(nurbs_control_point_count_in_direction_v\x18\x30 \x01(\x05H%\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_u\x18\x31 \x01(\x05H&\x88\x01\x01\x12\'\n\x1anurbs_order_in_direction_v\x18\x32 \x01(\x05H\'\x88\x01\x01\x12g\n\x14nurbs_control_points\x18\x33 \x01(\x0b\x32\x44.dlubal.api.rfem.structure_core.ArrayOfSurfaceNurbsControlPointsRowsH(\x88\x01\x01\x12\x1f\n\x17quadrangle_corner_nodes\x18\x34 \x03(\x05\x12%\n\x18quadrangle_corner_node_1\x18\x35 \x01(\x05H)\x88\x01\x01\x12%\n\x18quadrangle_corner_node_2\x18\x36 \x01(\x05H*\x88\x01\x01\x12%\n\x18quadrangle_corner_node_3\x18\x37 \x01(\x05H+\x88\x01\x01\x12%\n\x18quadrangle_corner_node_4\x18\x38 \x01(\x05H,\x88\x01\x01\x12j\n\x1bquadrangle_preferable_shape\x18\x39 \x01(\x0e\x32@.dlubal.api.rfem.structure_core.SurfaceQuadranglePreferableShapeH-\x88\x01\x01\x12\x18\n\x0bpipe_radius\x18: \x01(\x01H.\x88\x01\x01\x12 \n\x13pipe_use_radius_end\x18; \x01(\x08H/\x88\x01\x01\x12\x1c\n\x0fpipe_radius_end\x18< \x01(\x01H0\x88\x01\x01\x12\x1d\n\x10pipe_center_line\x18= \x01(\x05H1\x88\x01\x01\x12\x1c\n\x14pipe_generated_lines\x18> \x03(\x05\x12\x1c\n\x0fhas_line_hinges\x18? \x01(\x08H2\x88\x01\x01\x12\x14\n\x07support\x18@ \x01(\x05H3\x88\x01\x01\x12\x19\n\x0c\x65\x63\x63\x65ntricity\x18\x41 \x01(\x05H4\x88\x01\x01\x12\x1c\n\x0fmesh_refinement\x18\x42 \x01(\x05H5\x88\x01\x01\x12M\n\x0cmeshing_type\x18\x43 \x01(\x0e\x32\x32.dlubal.api.rfem.structure_core.SurfaceMeshingTypeH6\x88\x01\x01\x12~\n&input_axes_rotation_specification_type\x18\x44 \x01(\x0e\x32I.dlubal.api.rfem.structure_core.SurfaceInputAxesRotationSpecificationTypeH7\x88\x01\x01\x12(\n\x1binput_axes_angular_rotation\x18\x45 \x01(\x01H8\x88\x01\x01\x12R\n\x0finput_axes_axis\x18\x46 \x01(\x0e\x32\x34.dlubal.api.rfem.structure_core.SurfaceInputAxesAxisH9\x88\x01\x01\x12\x18\n\x10input_axes_lines\x18G \x03(\x05\x12<\n\x12input_axes_point_1\x18H \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH:\x88\x01\x01\x12!\n\x14input_axes_point_1_x\x18I \x01(\x01H;\x88\x01\x01\x12!\n\x14input_axes_point_1_y\x18J \x01(\x01H<\x88\x01\x01\x12!\n\x14input_axes_point_1_z\x18K \x01(\x01H=\x88\x01\x01\x12<\n\x12input_axes_point_2\x18L \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH>\x88\x01\x01\x12!\n\x14input_axes_point_2_x\x18M \x01(\x01H?\x88\x01\x01\x12!\n\x14input_axes_point_2_y\x18N \x01(\x01H@\x88\x01\x01\x12!\n\x14input_axes_point_2_z\x18O \x01(\x01HA\x88\x01\x01\x12)\n\x1cinput_axes_coordinate_system\x18P \x01(\x05HB\x88\x01\x01\x12\x80\x01\n\'result_axes_rotation_specification_type\x18Q \x01(\x0e\x32J.dlubal.api.rfem.structure_core.SurfaceResultAxesRotationSpecificationTypeHC\x88\x01\x01\x12\x1c\n\x0freversed_normal\x18R \x01(\x08HD\x88\x01\x01\x12G\n\tgrid_type\x18S \x01(\x0e\x32/.dlubal.api.rfem.structure_core.SurfaceGridTypeHE\x88\x01\x01\x12\x35\n\x0bgrid_origin\x18T \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHF\x88\x01\x01\x12\x1a\n\rgrid_origin_x\x18U \x01(\x01HG\x88\x01\x01\x12\x1a\n\rgrid_origin_y\x18V \x01(\x01HH\x88\x01\x01\x12\x1a\n\rgrid_origin_z\x18W \x01(\x01HI\x88\x01\x01\x12%\n\x18grid_adapt_automatically\x18X \x01(\x08HJ\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_x\x18Y \x01(\x05HK\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_x\x18Z \x01(\x05HL\x88\x01\x01\x12(\n\x1bgrid_point_count_negative_y\x18[ \x01(\x05HM\x88\x01\x01\x12(\n\x1bgrid_point_count_positive_y\x18\\ \x01(\x05HN\x88\x01\x01\x12%\n\x18grid_numbering_increment\x18] \x01(\x05HO\x88\x01\x01\x12\x1f\n\x12grid_point_count_r\x18^ \x01(\x05HP\x88\x01\x01\x12\x1c\n\x0fgrid_distance_x\x18_ \x01(\x01HQ\x88\x01\x01\x12\x1c\n\x0fgrid_distance_y\x18` \x01(\x01HR\x88\x01\x01\x12\x1c\n\x0fgrid_distance_r\x18\x61 \x01(\x01HS\x88\x01\x01\x12 \n\x13grid_rotation_alpha\x18\x62 \x01(\x01HT\x88\x01\x01\x12\x1f\n\x12grid_rotation_beta\x18\x63 \x01(\x01HU\x88\x01\x01\x12\x1d\n\x10grid_angle_gamma\x18\x64 \x01(\x01HV\x88\x01\x01\x12\x31\n$auto_detection_of_integrated_objects\x18\x65 \x01(\x08HW\x88\x01\x01\x12\x18\n\x10integrated_nodes\x18\x66 \x03(\x05\x12\x18\n\x10integrated_lines\x18g \x03(\x05\x12\x1b\n\x13integrated_openings\x18h \x03(\x05\x12#\n\x16has_integrated_objects\x18i \x01(\x08HX\x88\x01\x01\x12$\n\x17has_input_axes_rotation\x18j \x01(\x08HY\x88\x01\x01\x12%\n\x18has_result_axes_rotation\x18k \x01(\x08HZ\x88\x01\x01\x12\x34\n\'surface_timber_design_uls_configuration\x18l \x01(\x05H[\x88\x01\x01\x12\x34\n\'surface_timber_design_sls_configuration\x18m \x01(\x05H\\\x88\x01\x01\x12\x33\n&surface_timber_design_fr_configuration\x18n \x01(\x05H]\x88\x01\x01\x12!\n\x14timber_service_class\x18o \x01(\x05H^\x88\x01\x01\x12\"\n\x15timber_moisture_class\x18p \x01(\x05H_\x88\x01\x01\x12&\n\x19timber_service_conditions\x18q \x01(\x05H`\x88\x01\x01\x12\x1e\n\x16surface_reinforcements\x18r \x03(\x05\x12\x33\n&is_user_defined_concrete_cover_enabled\x18s \x01(\x08Ha\x88\x01\x01\x12\x1f\n\x12\x63oncrete_cover_top\x18t \x01(\x01Hb\x88\x01\x01\x12\"\n\x15\x63oncrete_cover_bottom\x18u \x01(\x01Hc\x88\x01\x01\x12,\n\x1fuser_defined_concrete_cover_top\x18v \x01(\x01Hd\x88\x01\x01\x12/\n\"user_defined_concrete_cover_bottom\x18w \x01(\x01He\x88\x01\x01\x12$\n\x17\x63oncrete_durability_top\x18x \x01(\x05Hf\x88\x01\x01\x12\'\n\x1a\x63oncrete_durability_bottom\x18y \x01(\x05Hg\x88\x01\x01\x12(\n\x1breinforcement_direction_top\x18z \x01(\x05Hh\x88\x01\x01\x12+\n\x1ereinforcement_direction_bottom\x18{ \x01(\x05Hi\x88\x01\x01\x12m\n\x1d\x64\x65\x66lection_check_surface_type\x18| \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.SurfaceDeflectionCheckSurfaceTypeHj\x88\x01\x01\x12\x81\x01\n\'deflection_check_displacement_reference\x18} \x01(\x0e\x32K.dlubal.api.rfem.structure_core.SurfaceDeflectionCheckDisplacementReferenceHk\x88\x01\x01\x12\x30\n#deflection_check_reference_length_z\x18~ \x01(\x01Hl\x88\x01\x01\x12\x96\x01\n3deflection_check_reference_length_z_definition_type\x18\x7f \x01(\x0e\x32T.dlubal.api.rfem.structure_core.SurfaceDeflectionCheckReferenceLengthZDefinitionTypeHm\x88\x01\x01\x12S\n(deflection_check_reference_plane_point_1\x18\x80\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHn\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_1_x\x18\x81\x01 \x01(\x01Ho\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_1_y\x18\x82\x01 \x01(\x01Hp\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_1_z\x18\x83\x01 \x01(\x01Hq\x88\x01\x01\x12S\n(deflection_check_reference_plane_point_2\x18\x84\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHr\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_2_x\x18\x85\x01 \x01(\x01Hs\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_2_y\x18\x86\x01 \x01(\x01Ht\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_2_z\x18\x87\x01 \x01(\x01Hu\x88\x01\x01\x12S\n(deflection_check_reference_plane_point_3\x18\x88\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHv\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_3_x\x18\x89\x01 \x01(\x01Hw\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_3_y\x18\x8a\x01 \x01(\x01Hx\x88\x01\x01\x12\x38\n*deflection_check_reference_plane_point_3_z\x18\x8b\x01 \x01(\x01Hy\x88\x01\x01\x12r\n\x1bsurface_reinforcement_table\x18\x8c\x01 \x01(\x0b\x32G.dlubal.api.rfem.structure_core.ArrayOfSurfaceSurfaceReinforcementTableHz\x88\x01\x01\x12\x37\n)surface_concrete_design_uls_configuration\x18\x8d\x01 \x01(\x05H{\x88\x01\x01\x12\x37\n)surface_concrete_design_sls_configuration\x18\x8e\x01 \x01(\x05H|\x88\x01\x01\x12\x36\n(surface_concrete_design_fr_configuration\x18\x8f\x01 \x01(\x05H}\x88\x01\x01\x12;\n-surface_concrete_design_seismic_configuration\x18\x90\x01 \x01(\x05H~\x88\x01\x01\x12#\n\x15rotated_boundary_line\x18\x91\x01 \x01(\x05H\x7f\x88\x01\x01\x12(\n\x19rotated_angle_of_rotation\x18\x92\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12;\n\x0frotated_point_p\x18\x93\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x81\x01\x88\x01\x01\x12 \n\x11rotated_point_p_x\x18\x94\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12 \n\x11rotated_point_p_y\x18\x95\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12 \n\x11rotated_point_p_z\x18\x96\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12;\n\x0frotated_point_r\x18\x97\x01 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x85\x01\x88\x01\x01\x12 \n\x11rotated_point_r_x\x18\x98\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12 \n\x11rotated_point_r_y\x18\x99\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12 \n\x11rotated_point_r_z\x18\x9a\x01 \x01(\x01H\x88\x01\x88\x01\x01\x12 \n\x17rotated_generated_lines\x18\x9b\x01 \x03(\x05\x12,\n\x1dstress_analysis_configuration\x18\x9c\x01 \x01(\x05H\x89\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\x9d\x01 \x01(\x08H\x8a\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\x9e\x01 \x01(\tH\x8b\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\x9f\x01 \x01(\tH\x8c\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xa0\x01 \x01(\tH\x8d\x01\x88\x01\x01\x42\x0b\n\t_geometryB\x07\n\x05_typeB\x0c\n\n_thicknessB\x0b\n\t_materialB\x12\n\x10_analytical_areaB\x14\n\x12_analytical_volumeB\x12\n\x10_analytical_massB\x1f\n\x1d_analytical_center_of_gravityB!\n\x1f_analytical_center_of_gravity_xB!\n\x1f_analytical_center_of_gravity_yB!\n\x1f_analytical_center_of_gravity_zB\x07\n\x05_areaB\t\n\x07_volumeB\x07\n\x05_massB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x0b\n\t_positionB\x11\n\x0f_position_shortB\x0f\n\r_grid_enabledB!\n\x1f_is_deactivated_for_calculationB\n\n\x08_commentB \n\x1e_design_properties_via_surfaceB+\n)_design_properties_via_parent_surface_setB\'\n%_design_properties_parent_surface_setB\x1a\n\x18_load_transfer_directionB\x1c\n\x1a_is_surface_weight_enabledB,\n*_is_advanced_distribution_settings_enabledB\x11\n\x0f_surface_weightB\x12\n\x10_sampling_factorB\x0f\n\r_stripe_widthB\x1f\n\x1d_consider_member_eccentricityB \n\x1e_consider_section_distributionB\x14\n\x12_load_distributionB!\n\x1f_neglect_equilibrium_of_momentsB+\n)_nurbs_control_point_count_in_direction_uB+\n)_nurbs_control_point_count_in_direction_vB\x1d\n\x1b_nurbs_order_in_direction_uB\x1d\n\x1b_nurbs_order_in_direction_vB\x17\n\x15_nurbs_control_pointsB\x1b\n\x19_quadrangle_corner_node_1B\x1b\n\x19_quadrangle_corner_node_2B\x1b\n\x19_quadrangle_corner_node_3B\x1b\n\x19_quadrangle_corner_node_4B\x1e\n\x1c_quadrangle_preferable_shapeB\x0e\n\x0c_pipe_radiusB\x16\n\x14_pipe_use_radius_endB\x12\n\x10_pipe_radius_endB\x13\n\x11_pipe_center_lineB\x12\n\x10_has_line_hingesB\n\n\x08_supportB\x0f\n\r_eccentricityB\x12\n\x10_mesh_refinementB\x0f\n\r_meshing_typeB)\n\'_input_axes_rotation_specification_typeB\x1e\n\x1c_input_axes_angular_rotationB\x12\n\x10_input_axes_axisB\x15\n\x13_input_axes_point_1B\x17\n\x15_input_axes_point_1_xB\x17\n\x15_input_axes_point_1_yB\x17\n\x15_input_axes_point_1_zB\x15\n\x13_input_axes_point_2B\x17\n\x15_input_axes_point_2_xB\x17\n\x15_input_axes_point_2_yB\x17\n\x15_input_axes_point_2_zB\x1f\n\x1d_input_axes_coordinate_systemB*\n(_result_axes_rotation_specification_typeB\x12\n\x10_reversed_normalB\x0c\n\n_grid_typeB\x0e\n\x0c_grid_originB\x10\n\x0e_grid_origin_xB\x10\n\x0e_grid_origin_yB\x10\n\x0e_grid_origin_zB\x1b\n\x19_grid_adapt_automaticallyB\x1e\n\x1c_grid_point_count_negative_xB\x1e\n\x1c_grid_point_count_positive_xB\x1e\n\x1c_grid_point_count_negative_yB\x1e\n\x1c_grid_point_count_positive_yB\x1b\n\x19_grid_numbering_incrementB\x15\n\x13_grid_point_count_rB\x12\n\x10_grid_distance_xB\x12\n\x10_grid_distance_yB\x12\n\x10_grid_distance_rB\x16\n\x14_grid_rotation_alphaB\x15\n\x13_grid_rotation_betaB\x13\n\x11_grid_angle_gammaB\'\n%_auto_detection_of_integrated_objectsB\x19\n\x17_has_integrated_objectsB\x1a\n\x18_has_input_axes_rotationB\x1b\n\x19_has_result_axes_rotationB*\n(_surface_timber_design_uls_configurationB*\n(_surface_timber_design_sls_configurationB)\n\'_surface_timber_design_fr_configurationB\x17\n\x15_timber_service_classB\x18\n\x16_timber_moisture_classB\x1c\n\x1a_timber_service_conditionsB)\n\'_is_user_defined_concrete_cover_enabledB\x15\n\x13_concrete_cover_topB\x18\n\x16_concrete_cover_bottomB\"\n _user_defined_concrete_cover_topB%\n#_user_defined_concrete_cover_bottomB\x1a\n\x18_concrete_durability_topB\x1d\n\x1b_concrete_durability_bottomB\x1e\n\x1c_reinforcement_direction_topB!\n\x1f_reinforcement_direction_bottomB \n\x1e_deflection_check_surface_typeB*\n(_deflection_check_displacement_referenceB&\n$_deflection_check_reference_length_zB6\n4_deflection_check_reference_length_z_definition_typeB+\n)_deflection_check_reference_plane_point_1B-\n+_deflection_check_reference_plane_point_1_xB-\n+_deflection_check_reference_plane_point_1_yB-\n+_deflection_check_reference_plane_point_1_zB+\n)_deflection_check_reference_plane_point_2B-\n+_deflection_check_reference_plane_point_2_xB-\n+_deflection_check_reference_plane_point_2_yB-\n+_deflection_check_reference_plane_point_2_zB+\n)_deflection_check_reference_plane_point_3B-\n+_deflection_check_reference_plane_point_3_xB-\n+_deflection_check_reference_plane_point_3_yB-\n+_deflection_check_reference_plane_point_3_zB\x1e\n\x1c_surface_reinforcement_tableB,\n*_surface_concrete_design_uls_configurationB,\n*_surface_concrete_design_sls_configurationB+\n)_surface_concrete_design_fr_configurationB0\n._surface_concrete_design_seismic_configurationB\x18\n\x16_rotated_boundary_lineB\x1c\n\x1a_rotated_angle_of_rotationB\x12\n\x10_rotated_point_pB\x14\n\x12_rotated_point_p_xB\x14\n\x12_rotated_point_p_yB\x14\n\x12_rotated_point_p_zB\x12\n\x10_rotated_point_rB\x14\n\x12_rotated_point_r_xB\x14\n\x12_rotated_point_r_yB\x14\n\x12_rotated_point_r_zB \n\x1e_stress_analysis_configurationB\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\"&\n$ArrayOfSurfaceNurbsControlPointsRows\")\n\'ArrayOfSurfaceSurfaceReinforcementTable*\x8e\x02\n\x0fSurfaceGeometry\x12\x1c\n\x18SURFACE_GEOMETRY_UNKNOWN\x10\x00\x12-\n)SURFACE_GEOMETRY_MINIMUM_CURVATURE_SPLINE\x10\x07\x12\x1a\n\x16SURFACE_GEOMETRY_NURBS\x10\x03\x12\x19\n\x15SURFACE_GEOMETRY_PIPE\x10\x06\x12\x1a\n\x16SURFACE_GEOMETRY_PLANE\x10\x01\x12\x1f\n\x1bSURFACE_GEOMETRY_QUADRANGLE\x10\x02\x12\x1c\n\x18SURFACE_GEOMETRY_ROTATED\x10\x05\x12\x1c\n\x18SURFACE_GEOMETRY_TRIMMED\x10\x04*\xef\x02\n\x0bSurfaceType\x12\x19\n\x15SURFACE_TYPE_STANDARD\x10\x00\x12\x16\n\x12SURFACE_TYPE_FLOOR\x10\x08\x12 \n\x1cSURFACE_TYPE_FLOOR_DIAPHRAGM\x10\t\x12)\n%SURFACE_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM\x10\x0b\x12 \n\x1cSURFACE_TYPE_FLOOR_SEMIRIGID\x10\n\x12\x1c\n\x18SURFACE_TYPE_GROUNDWATER\x10\x07\x12\x1e\n\x1aSURFACE_TYPE_LOAD_TRANSFER\x10\x06\x12\x19\n\x15SURFACE_TYPE_MEMBRANE\x10\x03\x12\x16\n\x12SURFACE_TYPE_RIGID\x10\x02\x12)\n%SURFACE_TYPE_WITHOUT_MEMBRANE_TENSION\x10\x05\x12\"\n\x1eSURFACE_TYPE_WITHOUT_THICKNESS\x10\x01*\xce\x01\n\x1cSurfaceLoadTransferDirection\x12(\n$SURFACE_LOAD_TRANSFER_DIRECTION_IN_X\x10\x00\x12+\n\'SURFACE_LOAD_TRANSFER_DIRECTION_IN_BOTH\x10\x02\x12(\n$SURFACE_LOAD_TRANSFER_DIRECTION_IN_Y\x10\x01\x12-\n)SURFACE_LOAD_TRANSFER_DIRECTION_ISOTROPIC\x10\x03*n\n\x17SurfaceLoadDistribution\x12%\n!SURFACE_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12,\n(SURFACE_LOAD_DISTRIBUTION_VARYING_LINEAR\x10\x01*\x81\x01\n SurfaceQuadranglePreferableShape\x12/\n+SURFACE_QUADRANGLE_PREFERABLE_SHAPE_ROTATED\x10\x00\x12,\n(SURFACE_QUADRANGLE_PREFERABLE_SHAPE_PIPE\x10\x01*\x82\x01\n\x12SurfaceMeshingType\x12,\n(SURFACE_MESHING_TYPE_USE_GLOBAL_SETTINGS\x10\x00\x12\x1d\n\x19SURFACE_MESHING_TYPE_FREE\x10\x02\x12\x1f\n\x1bSURFACE_MESHING_TYPE_MAPPED\x10\x01*\xcc\x02\n)SurfaceInputAxesRotationSpecificationType\x12\x43\n?SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION\x10\x00\x12\x42\n>SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT\x10\x02\x12P\nLSURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM\x10\x03\x12\x44\n@SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES\x10\x01*T\n\x14SurfaceInputAxesAxis\x12\x1d\n\x19SURFACE_INPUT_AXES_AXIS_X\x10\x00\x12\x1d\n\x19SURFACE_INPUT_AXES_AXIS_Y\x10\x01*y\n*SurfaceResultAxesRotationSpecificationType\x12K\nGSURFACE_RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES\x10\x00*O\n\x0fSurfaceGridType\x12\x1f\n\x1bSURFACE_GRID_TYPE_CARTESIAN\x10\x00\x12\x1b\n\x17SURFACE_GRID_TYPE_POLAR\x10\x01*\x95\x01\n!SurfaceDeflectionCheckSurfaceType\x12:\n6SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED\x10\x00\x12\x34\n0SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER\x10\x01*\x95\x02\n+SurfaceDeflectionCheckDisplacementReference\x12Y\nUSURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE\x10\x00\x12\x44\n@SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE\x10\x01\x12\x45\nASURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM\x10\x02*\xb4\x02\n4SurfaceDeflectionCheckReferenceLengthZDefinitionType\x12H\nDSURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY\x10\x00\x12X\nTSURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE\x10\x01\x12X\nTSURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE\x10\x02\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.surface_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SURFACEGEOMETRY']._serialized_start=11645
36
+ _globals['_SURFACEGEOMETRY']._serialized_end=11915
37
+ _globals['_SURFACETYPE']._serialized_start=11918
38
+ _globals['_SURFACETYPE']._serialized_end=12285
39
+ _globals['_SURFACELOADTRANSFERDIRECTION']._serialized_start=12288
40
+ _globals['_SURFACELOADTRANSFERDIRECTION']._serialized_end=12494
41
+ _globals['_SURFACELOADDISTRIBUTION']._serialized_start=12496
42
+ _globals['_SURFACELOADDISTRIBUTION']._serialized_end=12606
43
+ _globals['_SURFACEQUADRANGLEPREFERABLESHAPE']._serialized_start=12609
44
+ _globals['_SURFACEQUADRANGLEPREFERABLESHAPE']._serialized_end=12738
45
+ _globals['_SURFACEMESHINGTYPE']._serialized_start=12741
46
+ _globals['_SURFACEMESHINGTYPE']._serialized_end=12871
47
+ _globals['_SURFACEINPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=12874
48
+ _globals['_SURFACEINPUTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13206
49
+ _globals['_SURFACEINPUTAXESAXIS']._serialized_start=13208
50
+ _globals['_SURFACEINPUTAXESAXIS']._serialized_end=13292
51
+ _globals['_SURFACERESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_start=13294
52
+ _globals['_SURFACERESULTAXESROTATIONSPECIFICATIONTYPE']._serialized_end=13415
53
+ _globals['_SURFACEGRIDTYPE']._serialized_start=13417
54
+ _globals['_SURFACEGRIDTYPE']._serialized_end=13496
55
+ _globals['_SURFACEDEFLECTIONCHECKSURFACETYPE']._serialized_start=13499
56
+ _globals['_SURFACEDEFLECTIONCHECKSURFACETYPE']._serialized_end=13648
57
+ _globals['_SURFACEDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_start=13651
58
+ _globals['_SURFACEDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_end=13928
59
+ _globals['_SURFACEDEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_start=13931
60
+ _globals['_SURFACEDEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_end=14239
61
+ _globals['_SURFACE']._serialized_start=113
62
+ _globals['_SURFACE']._serialized_end=11559
63
+ _globals['_ARRAYOFSURFACENURBSCONTROLPOINTSROWS']._serialized_start=11561
64
+ _globals['_ARRAYOFSURFACENURBSCONTROLPOINTSROWS']._serialized_end=11599
65
+ _globals['_ARRAYOFSURFACESURFACEREINFORCEMENTTABLE']._serialized_start=11601
66
+ _globals['_ARRAYOFSURFACESURFACEREINFORCEMENTTABLE']._serialized_end=11642
67
+ # @@protoc_insertion_point(module_scope)