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,159 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class StaticAnalysisSettingsAnalysisType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_GEOMETRICALLY_LINEAR: _ClassVar[StaticAnalysisSettingsAnalysisType]
11
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_LARGE_DEFORMATIONS: _ClassVar[StaticAnalysisSettingsAnalysisType]
12
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_SECOND_ORDER_P_DELTA: _ClassVar[StaticAnalysisSettingsAnalysisType]
13
+
14
+ class StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
17
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_DYNAMIC_RELAXATION: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
18
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_COMBINED_WITH_PICARD: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
19
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_CONSTANT_STIFFNESS: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
20
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_POSTCRITICAL_ANALYSIS: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
21
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_PICARD: _ClassVar[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis]
22
+
23
+ class StaticAnalysisSettingsMethodOfEquationSystem(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
24
+ __slots__ = ()
25
+ STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_DIRECT: _ClassVar[StaticAnalysisSettingsMethodOfEquationSystem]
26
+ STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_ITERATIVE: _ClassVar[StaticAnalysisSettingsMethodOfEquationSystem]
27
+
28
+ class StaticAnalysisSettingsPlateBendingTheory(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
29
+ __slots__ = ()
30
+ STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_MINDLIN: _ClassVar[StaticAnalysisSettingsPlateBendingTheory]
31
+ STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_KIRCHHOFF: _ClassVar[StaticAnalysisSettingsPlateBendingTheory]
32
+
33
+ class StaticAnalysisSettingsAssignReduceStiffnessEnabled(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ STATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_FAIILING_MEMBERS_TO_BE_REMOVED_INDIVIDUALY_DURING_SUCCESSIVE_ITERATIONS: _ClassVar[StaticAnalysisSettingsAssignReduceStiffnessEnabled]
36
+ STATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_ASSIGN_REDUCED_STIFFNESS_TO_FAILING_MEMBERS: _ClassVar[StaticAnalysisSettingsAssignReduceStiffnessEnabled]
37
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_GEOMETRICALLY_LINEAR: StaticAnalysisSettingsAnalysisType
38
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_LARGE_DEFORMATIONS: StaticAnalysisSettingsAnalysisType
39
+ STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_SECOND_ORDER_P_DELTA: StaticAnalysisSettingsAnalysisType
40
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
41
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_DYNAMIC_RELAXATION: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
42
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_COMBINED_WITH_PICARD: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
43
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_CONSTANT_STIFFNESS: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
44
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_POSTCRITICAL_ANALYSIS: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
45
+ STATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_PICARD: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
46
+ STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_DIRECT: StaticAnalysisSettingsMethodOfEquationSystem
47
+ STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_ITERATIVE: StaticAnalysisSettingsMethodOfEquationSystem
48
+ STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_MINDLIN: StaticAnalysisSettingsPlateBendingTheory
49
+ STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_KIRCHHOFF: StaticAnalysisSettingsPlateBendingTheory
50
+ STATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_FAIILING_MEMBERS_TO_BE_REMOVED_INDIVIDUALY_DURING_SUCCESSIVE_ITERATIONS: StaticAnalysisSettingsAssignReduceStiffnessEnabled
51
+ STATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_ASSIGN_REDUCED_STIFFNESS_TO_FAILING_MEMBERS: StaticAnalysisSettingsAssignReduceStiffnessEnabled
52
+
53
+ class StaticAnalysisSettings(_message.Message):
54
+ __slots__ = ("no", "user_defined_name_enabled", "name", "analysis_type", "iterative_method_for_nonlinear_analysis", "max_number_of_iterations", "number_of_load_increments", "method_of_equation_system", "plate_bending_theory", "standard_precision_and_tolerance_settings_enabled", "ignore_all_nonlinearities_enabled", "precision_of_convergence_criteria_for_nonlinear_calculation", "instability_detection_tolerance", "relative_setting_of_time_step_for_dynamic_relaxation", "iterative_calculation_robustness", "modify_loading_by_multiplier_factor", "loading_multiplier_factor", "divide_results_by_loading_factor", "consider_favorable_effect_due_to_tension_in_members", "check_of_stability_based_on_rate_of_deformation", "try_to_calculate_instabil_structure", "displacements_due_to_bourdon_effect", "save_results_of_all_load_increments", "nonsymmetric_direct_solver", "equilibrium_for_undeformed_structure", "comment", "percentage_of_iteration", "refer_internal_forces_to_deformed_structure", "refer_internal_forces_to_deformed_structure_for_normal_forces", "refer_internal_forces_to_deformed_structure_for_shear_forces", "refer_internal_forces_to_deformed_structure_for_moments", "mass_conversion_enabled", "mass_conversion_defined_as_acceleration", "mass_conversion_factor_in_direction_x", "mass_conversion_acceleration_in_direction_x", "mass_conversion_factor_in_direction_y", "mass_conversion_acceleration_in_direction_y", "mass_conversion_factor_in_direction_z", "mass_conversion_acceleration_in_direction_z", "deformation_of_failing_members_and_reactivation_enabled", "maximum_number_of_reactivations", "exceptional_handling_enabled", "assign_reduce_stiffness_enabled", "reduction_factor_of_stiffness", "number_of_iterations_for_loading_prestress", "integrate_preliminary_form_finding_enabled", "speed_of_convergence", "cutting_patterns_settings", "smoothness_of_boundary_lines", "ratio_of_distance_of_cutting_lines_node_to_mesh", "id_for_export_import", "metadata_for_export_import")
55
+ NO_FIELD_NUMBER: _ClassVar[int]
56
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
57
+ NAME_FIELD_NUMBER: _ClassVar[int]
58
+ ANALYSIS_TYPE_FIELD_NUMBER: _ClassVar[int]
59
+ ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_FIELD_NUMBER: _ClassVar[int]
60
+ MAX_NUMBER_OF_ITERATIONS_FIELD_NUMBER: _ClassVar[int]
61
+ NUMBER_OF_LOAD_INCREMENTS_FIELD_NUMBER: _ClassVar[int]
62
+ METHOD_OF_EQUATION_SYSTEM_FIELD_NUMBER: _ClassVar[int]
63
+ PLATE_BENDING_THEORY_FIELD_NUMBER: _ClassVar[int]
64
+ STANDARD_PRECISION_AND_TOLERANCE_SETTINGS_ENABLED_FIELD_NUMBER: _ClassVar[int]
65
+ IGNORE_ALL_NONLINEARITIES_ENABLED_FIELD_NUMBER: _ClassVar[int]
66
+ PRECISION_OF_CONVERGENCE_CRITERIA_FOR_NONLINEAR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
67
+ INSTABILITY_DETECTION_TOLERANCE_FIELD_NUMBER: _ClassVar[int]
68
+ RELATIVE_SETTING_OF_TIME_STEP_FOR_DYNAMIC_RELAXATION_FIELD_NUMBER: _ClassVar[int]
69
+ ITERATIVE_CALCULATION_ROBUSTNESS_FIELD_NUMBER: _ClassVar[int]
70
+ MODIFY_LOADING_BY_MULTIPLIER_FACTOR_FIELD_NUMBER: _ClassVar[int]
71
+ LOADING_MULTIPLIER_FACTOR_FIELD_NUMBER: _ClassVar[int]
72
+ DIVIDE_RESULTS_BY_LOADING_FACTOR_FIELD_NUMBER: _ClassVar[int]
73
+ CONSIDER_FAVORABLE_EFFECT_DUE_TO_TENSION_IN_MEMBERS_FIELD_NUMBER: _ClassVar[int]
74
+ CHECK_OF_STABILITY_BASED_ON_RATE_OF_DEFORMATION_FIELD_NUMBER: _ClassVar[int]
75
+ TRY_TO_CALCULATE_INSTABIL_STRUCTURE_FIELD_NUMBER: _ClassVar[int]
76
+ DISPLACEMENTS_DUE_TO_BOURDON_EFFECT_FIELD_NUMBER: _ClassVar[int]
77
+ SAVE_RESULTS_OF_ALL_LOAD_INCREMENTS_FIELD_NUMBER: _ClassVar[int]
78
+ NONSYMMETRIC_DIRECT_SOLVER_FIELD_NUMBER: _ClassVar[int]
79
+ EQUILIBRIUM_FOR_UNDEFORMED_STRUCTURE_FIELD_NUMBER: _ClassVar[int]
80
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
81
+ PERCENTAGE_OF_ITERATION_FIELD_NUMBER: _ClassVar[int]
82
+ REFER_INTERNAL_FORCES_TO_DEFORMED_STRUCTURE_FIELD_NUMBER: _ClassVar[int]
83
+ REFER_INTERNAL_FORCES_TO_DEFORMED_STRUCTURE_FOR_NORMAL_FORCES_FIELD_NUMBER: _ClassVar[int]
84
+ REFER_INTERNAL_FORCES_TO_DEFORMED_STRUCTURE_FOR_SHEAR_FORCES_FIELD_NUMBER: _ClassVar[int]
85
+ REFER_INTERNAL_FORCES_TO_DEFORMED_STRUCTURE_FOR_MOMENTS_FIELD_NUMBER: _ClassVar[int]
86
+ MASS_CONVERSION_ENABLED_FIELD_NUMBER: _ClassVar[int]
87
+ MASS_CONVERSION_DEFINED_AS_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
88
+ MASS_CONVERSION_FACTOR_IN_DIRECTION_X_FIELD_NUMBER: _ClassVar[int]
89
+ MASS_CONVERSION_ACCELERATION_IN_DIRECTION_X_FIELD_NUMBER: _ClassVar[int]
90
+ MASS_CONVERSION_FACTOR_IN_DIRECTION_Y_FIELD_NUMBER: _ClassVar[int]
91
+ MASS_CONVERSION_ACCELERATION_IN_DIRECTION_Y_FIELD_NUMBER: _ClassVar[int]
92
+ MASS_CONVERSION_FACTOR_IN_DIRECTION_Z_FIELD_NUMBER: _ClassVar[int]
93
+ MASS_CONVERSION_ACCELERATION_IN_DIRECTION_Z_FIELD_NUMBER: _ClassVar[int]
94
+ DEFORMATION_OF_FAILING_MEMBERS_AND_REACTIVATION_ENABLED_FIELD_NUMBER: _ClassVar[int]
95
+ MAXIMUM_NUMBER_OF_REACTIVATIONS_FIELD_NUMBER: _ClassVar[int]
96
+ EXCEPTIONAL_HANDLING_ENABLED_FIELD_NUMBER: _ClassVar[int]
97
+ ASSIGN_REDUCE_STIFFNESS_ENABLED_FIELD_NUMBER: _ClassVar[int]
98
+ REDUCTION_FACTOR_OF_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
99
+ NUMBER_OF_ITERATIONS_FOR_LOADING_PRESTRESS_FIELD_NUMBER: _ClassVar[int]
100
+ INTEGRATE_PRELIMINARY_FORM_FINDING_ENABLED_FIELD_NUMBER: _ClassVar[int]
101
+ SPEED_OF_CONVERGENCE_FIELD_NUMBER: _ClassVar[int]
102
+ CUTTING_PATTERNS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
103
+ SMOOTHNESS_OF_BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
104
+ RATIO_OF_DISTANCE_OF_CUTTING_LINES_NODE_TO_MESH_FIELD_NUMBER: _ClassVar[int]
105
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
106
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
107
+ no: int
108
+ user_defined_name_enabled: bool
109
+ name: str
110
+ analysis_type: StaticAnalysisSettingsAnalysisType
111
+ iterative_method_for_nonlinear_analysis: StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis
112
+ max_number_of_iterations: int
113
+ number_of_load_increments: int
114
+ method_of_equation_system: StaticAnalysisSettingsMethodOfEquationSystem
115
+ plate_bending_theory: StaticAnalysisSettingsPlateBendingTheory
116
+ standard_precision_and_tolerance_settings_enabled: bool
117
+ ignore_all_nonlinearities_enabled: bool
118
+ precision_of_convergence_criteria_for_nonlinear_calculation: float
119
+ instability_detection_tolerance: float
120
+ relative_setting_of_time_step_for_dynamic_relaxation: float
121
+ iterative_calculation_robustness: float
122
+ modify_loading_by_multiplier_factor: bool
123
+ loading_multiplier_factor: float
124
+ divide_results_by_loading_factor: bool
125
+ consider_favorable_effect_due_to_tension_in_members: bool
126
+ check_of_stability_based_on_rate_of_deformation: bool
127
+ try_to_calculate_instabil_structure: bool
128
+ displacements_due_to_bourdon_effect: bool
129
+ save_results_of_all_load_increments: bool
130
+ nonsymmetric_direct_solver: bool
131
+ equilibrium_for_undeformed_structure: bool
132
+ comment: str
133
+ percentage_of_iteration: int
134
+ refer_internal_forces_to_deformed_structure: bool
135
+ refer_internal_forces_to_deformed_structure_for_normal_forces: bool
136
+ refer_internal_forces_to_deformed_structure_for_shear_forces: bool
137
+ refer_internal_forces_to_deformed_structure_for_moments: bool
138
+ mass_conversion_enabled: bool
139
+ mass_conversion_defined_as_acceleration: bool
140
+ mass_conversion_factor_in_direction_x: float
141
+ mass_conversion_acceleration_in_direction_x: float
142
+ mass_conversion_factor_in_direction_y: float
143
+ mass_conversion_acceleration_in_direction_y: float
144
+ mass_conversion_factor_in_direction_z: float
145
+ mass_conversion_acceleration_in_direction_z: float
146
+ deformation_of_failing_members_and_reactivation_enabled: bool
147
+ maximum_number_of_reactivations: int
148
+ exceptional_handling_enabled: bool
149
+ assign_reduce_stiffness_enabled: StaticAnalysisSettingsAssignReduceStiffnessEnabled
150
+ reduction_factor_of_stiffness: int
151
+ number_of_iterations_for_loading_prestress: int
152
+ integrate_preliminary_form_finding_enabled: bool
153
+ speed_of_convergence: float
154
+ cutting_patterns_settings: bool
155
+ smoothness_of_boundary_lines: float
156
+ ratio_of_distance_of_cutting_lines_node_to_mesh: float
157
+ id_for_export_import: str
158
+ metadata_for_export_import: str
159
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., analysis_type: _Optional[_Union[StaticAnalysisSettingsAnalysisType, str]] = ..., iterative_method_for_nonlinear_analysis: _Optional[_Union[StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis, str]] = ..., max_number_of_iterations: _Optional[int] = ..., number_of_load_increments: _Optional[int] = ..., method_of_equation_system: _Optional[_Union[StaticAnalysisSettingsMethodOfEquationSystem, str]] = ..., plate_bending_theory: _Optional[_Union[StaticAnalysisSettingsPlateBendingTheory, str]] = ..., standard_precision_and_tolerance_settings_enabled: bool = ..., ignore_all_nonlinearities_enabled: bool = ..., precision_of_convergence_criteria_for_nonlinear_calculation: _Optional[float] = ..., instability_detection_tolerance: _Optional[float] = ..., relative_setting_of_time_step_for_dynamic_relaxation: _Optional[float] = ..., iterative_calculation_robustness: _Optional[float] = ..., modify_loading_by_multiplier_factor: bool = ..., loading_multiplier_factor: _Optional[float] = ..., divide_results_by_loading_factor: bool = ..., consider_favorable_effect_due_to_tension_in_members: bool = ..., check_of_stability_based_on_rate_of_deformation: bool = ..., try_to_calculate_instabil_structure: bool = ..., displacements_due_to_bourdon_effect: bool = ..., save_results_of_all_load_increments: bool = ..., nonsymmetric_direct_solver: bool = ..., equilibrium_for_undeformed_structure: bool = ..., comment: _Optional[str] = ..., percentage_of_iteration: _Optional[int] = ..., refer_internal_forces_to_deformed_structure: bool = ..., refer_internal_forces_to_deformed_structure_for_normal_forces: bool = ..., refer_internal_forces_to_deformed_structure_for_shear_forces: bool = ..., refer_internal_forces_to_deformed_structure_for_moments: bool = ..., mass_conversion_enabled: bool = ..., mass_conversion_defined_as_acceleration: bool = ..., mass_conversion_factor_in_direction_x: _Optional[float] = ..., mass_conversion_acceleration_in_direction_x: _Optional[float] = ..., mass_conversion_factor_in_direction_y: _Optional[float] = ..., mass_conversion_acceleration_in_direction_y: _Optional[float] = ..., mass_conversion_factor_in_direction_z: _Optional[float] = ..., mass_conversion_acceleration_in_direction_z: _Optional[float] = ..., deformation_of_failing_members_and_reactivation_enabled: bool = ..., maximum_number_of_reactivations: _Optional[int] = ..., exceptional_handling_enabled: bool = ..., assign_reduce_stiffness_enabled: _Optional[_Union[StaticAnalysisSettingsAssignReduceStiffnessEnabled, str]] = ..., reduction_factor_of_stiffness: _Optional[int] = ..., number_of_iterations_for_loading_prestress: _Optional[int] = ..., integrate_preliminary_form_finding_enabled: bool = ..., speed_of_convergence: _Optional[float] = ..., cutting_patterns_settings: bool = ..., smoothness_of_boundary_lines: _Optional[float] = ..., ratio_of_distance_of_cutting_lines_node_to_mesh: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,48 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loading/wind_simulation_analysis_settings.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/loading/wind_simulation_analysis_settings.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/loading/wind_simulation_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\xdf\x1c\n\x1eWindSimulationAnalysisSettings\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x63\n\x0fsimulation_type\x18\x02 \x01(\x0e\x32\x45.dlubal.api.rfem.loading.WindSimulationAnalysisSettingsSimulationTypeH\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\x14\n\x07\x63omment\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x18\n\x0b\x61ssigned_to\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x64\x65nsity\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13kinematic_viscosity\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x65\n\x10numerical_solver\x18\t \x01(\x0e\x32\x46.dlubal.api.rfem.loading.WindSimulationAnalysisSettingsNumericalSolverH\x07\x88\x01\x01\x12\'\n\x1a\x66inite_volume_mesh_density\x18\n \x01(\x01H\x08\x88\x01\x01\x12)\n\x1cmaximum_number_of_iterations\x18\x0b \x01(\x05H\t\x88\x01\x01\x12l\n\x14mesh_refinement_type\x18\x0c \x01(\x0e\x32I.dlubal.api.rfem.loading.WindSimulationAnalysisSettingsMeshRefinementTypeH\n\x88\x01\x01\x12 \n\x13snap_to_model_edges\x18\r \x01(\x08H\x0b\x88\x01\x01\x12$\n\x17\x62oundary_layers_checked\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12\"\n\x15\x62oundary_layers_value\x18\x0f \x01(\x05H\r\x88\x01\x01\x12 \n\x13\x63onsider_turbulence\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12\x37\n*slip_boundary_condition_on_bottom_boundary\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12.\n!use_second_order_numerical_scheme\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12\x33\n&user_defined_dimensions_of_wind_tunnel\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12t\n\x18member_load_distribution\x18\x14 \x01(\x0e\x32M.dlubal.api.rfem.loading.WindSimulationAnalysisSettingsMemberLoadDistributionH\x12\x88\x01\x01\x12n\n\x15turbulence_model_type\x18\x15 \x01(\x0e\x32J.dlubal.api.rfem.loading.WindSimulationAnalysisSettingsTurbulenceModelTypeH\x13\x88\x01\x01\x12(\n\x1bsand_grain_roughness_height\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1f\n\x12roughness_constant\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12)\n\x1cuser_defined_simulation_time\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12\x1b\n\x0evelocity_field\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12!\n\x14velocity_x_component\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12!\n\x14velocity_y_component\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12!\n\x14velocity_z_component\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\x31\n$specific_turbulence_dissipation_rate\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\x34\n\'start_time_for_saving_transient_results\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12$\n\x17steady_flow_from_solver\x18\x1f \x01(\x08H\x1d\x88\x01\x01\x12\x97\x01\n+turbulence_model_type_for_initial_condition\x18 \x01(\x0e\x32].dlubal.api.rfem.loading.WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialConditionH\x1e\x88\x01\x01\x12(\n\x1bturbulence_dissipation_rate\x18! \x01(\x01H\x1f\x88\x01\x01\x12%\n\x18turbulence_intermittency\x18\" \x01(\x01H \x88\x01\x01\x12&\n\x19turbulence_kinetic_energy\x18# \x01(\x01H!\x88\x01\x01\x12\x37\n*turbulence_kinetic_energy_residue_monitors\x18$ \x01(\x01H\"\x88\x01\x01\x12)\n\x1cturbulence_kinetic_viscosity\x18% \x01(\x01H#\x88\x01\x01\x12\x35\n(save_solver_data_to_continue_calculation\x18& \x01(\x08H$\x88\x01\x01\x12\x1c\n\x0fsimulation_time\x18\' \x01(\x01H%\x88\x01\x01\x12\x1b\n\x0epressure_field\x18( \x01(\x01H&\x88\x01\x01\x12\x1e\n\x11residual_pressure\x18) \x01(\x01H\'\x88\x01\x01\x12/\n\"momentum_thickness_reynolds_number\x18* \x01(\x01H(\x88\x01\x01\x12-\n data_compression_error_tolerance\x18+ \x01(\x01H)\x88\x01\x01\x12\'\n\x1a\x63onsider_surface_roughness\x18, \x01(\x08H*\x88\x01\x01\x12<\n/use_potential_flow_solver_for_initial_condition\x18- \x01(\x08H+\x88\x01\x01\x12!\n\x14id_for_export_import\x18. \x01(\tH,\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18/ \x01(\tH-\x88\x01\x01\x42\x12\n\x10_simulation_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x0e\n\x0c_assigned_toB\n\n\x08_densityB\x16\n\x14_kinematic_viscosityB\x13\n\x11_numerical_solverB\x1d\n\x1b_finite_volume_mesh_densityB\x1f\n\x1d_maximum_number_of_iterationsB\x17\n\x15_mesh_refinement_typeB\x16\n\x14_snap_to_model_edgesB\x1a\n\x18_boundary_layers_checkedB\x18\n\x16_boundary_layers_valueB\x16\n\x14_consider_turbulenceB-\n+_slip_boundary_condition_on_bottom_boundaryB$\n\"_use_second_order_numerical_schemeB)\n\'_user_defined_dimensions_of_wind_tunnelB\x1b\n\x19_member_load_distributionB\x18\n\x16_turbulence_model_typeB\x1e\n\x1c_sand_grain_roughness_heightB\x15\n\x13_roughness_constantB\x1f\n\x1d_user_defined_simulation_timeB\x11\n\x0f_velocity_fieldB\x17\n\x15_velocity_x_componentB\x17\n\x15_velocity_y_componentB\x17\n\x15_velocity_z_componentB\'\n%_specific_turbulence_dissipation_rateB*\n(_start_time_for_saving_transient_resultsB\x1a\n\x18_steady_flow_from_solverB.\n,_turbulence_model_type_for_initial_conditionB\x1e\n\x1c_turbulence_dissipation_rateB\x1b\n\x19_turbulence_intermittencyB\x1c\n\x1a_turbulence_kinetic_energyB-\n+_turbulence_kinetic_energy_residue_monitorsB\x1f\n\x1d_turbulence_kinetic_viscosityB+\n)_save_solver_data_to_continue_calculationB\x12\n\x10_simulation_timeB\x11\n\x0f_pressure_fieldB\x14\n\x12_residual_pressureB%\n#_momentum_thickness_reynolds_numberB#\n!_data_compression_error_toleranceB\x1d\n\x1b_consider_surface_roughnessB2\n0_use_potential_flow_solver_for_initial_conditionB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xb7\x01\n,WindSimulationAnalysisSettingsSimulationType\x12\x41\n=WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_STEADY_FLOW\x10\x00\x12\x44\n@WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_TRANSIENT_FLOW\x10\x01*p\n-WindSimulationAnalysisSettingsNumericalSolver\x12?\n;WIND_SIMULATION_ANALYSIS_SETTINGS_NUMERICAL_SOLVER_OPENFOAM\x10\x00*\xd2\x01\n0WindSimulationAnalysisSettingsMeshRefinementType\x12P\nLWIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_DISTANCE_FROM_SURFACE\x10\x00\x12L\nHWIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_SURFACE_CURVATURE\x10\x01*\x97\x02\n4WindSimulationAnalysisSettingsMemberLoadDistribution\x12\x46\nBWIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12K\nGWIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_CONCENTRATED\x10\x01\x12J\nFWIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_TRAPEZOIDAL\x10\x02*\xfc\x01\n1WindSimulationAnalysisSettingsTurbulenceModelType\x12\x41\n=WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_OMEGA\x10\x00\x12\x43\n?WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_EPSILON\x10\x01\x12?\n;WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_LES\x10\x02*\xd1\x02\nDWindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition\x12W\nSWIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_OMEGA\x10\x00\x12Y\nUWIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_EPSILON\x10\x01\x12U\nQWIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_LES\x10\x02\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.wind_simulation_analysis_settings_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_WINDSIMULATIONANALYSISSETTINGSSIMULATIONTYPE']._serialized_start=3775
35
+ _globals['_WINDSIMULATIONANALYSISSETTINGSSIMULATIONTYPE']._serialized_end=3958
36
+ _globals['_WINDSIMULATIONANALYSISSETTINGSNUMERICALSOLVER']._serialized_start=3960
37
+ _globals['_WINDSIMULATIONANALYSISSETTINGSNUMERICALSOLVER']._serialized_end=4072
38
+ _globals['_WINDSIMULATIONANALYSISSETTINGSMESHREFINEMENTTYPE']._serialized_start=4075
39
+ _globals['_WINDSIMULATIONANALYSISSETTINGSMESHREFINEMENTTYPE']._serialized_end=4285
40
+ _globals['_WINDSIMULATIONANALYSISSETTINGSMEMBERLOADDISTRIBUTION']._serialized_start=4288
41
+ _globals['_WINDSIMULATIONANALYSISSETTINGSMEMBERLOADDISTRIBUTION']._serialized_end=4567
42
+ _globals['_WINDSIMULATIONANALYSISSETTINGSTURBULENCEMODELTYPE']._serialized_start=4570
43
+ _globals['_WINDSIMULATIONANALYSISSETTINGSTURBULENCEMODELTYPE']._serialized_end=4822
44
+ _globals['_WINDSIMULATIONANALYSISSETTINGSTURBULENCEMODELTYPEFORINITIALCONDITION']._serialized_start=4825
45
+ _globals['_WINDSIMULATIONANALYSISSETTINGSTURBULENCEMODELTYPEFORINITIALCONDITION']._serialized_end=5162
46
+ _globals['_WINDSIMULATIONANALYSISSETTINGS']._serialized_start=93
47
+ _globals['_WINDSIMULATIONANALYSISSETTINGS']._serialized_end=3772
48
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,150 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class WindSimulationAnalysisSettingsSimulationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_STEADY_FLOW: _ClassVar[WindSimulationAnalysisSettingsSimulationType]
11
+ WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_TRANSIENT_FLOW: _ClassVar[WindSimulationAnalysisSettingsSimulationType]
12
+
13
+ class WindSimulationAnalysisSettingsNumericalSolver(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
14
+ __slots__ = ()
15
+ WIND_SIMULATION_ANALYSIS_SETTINGS_NUMERICAL_SOLVER_OPENFOAM: _ClassVar[WindSimulationAnalysisSettingsNumericalSolver]
16
+
17
+ class WindSimulationAnalysisSettingsMeshRefinementType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
18
+ __slots__ = ()
19
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_DISTANCE_FROM_SURFACE: _ClassVar[WindSimulationAnalysisSettingsMeshRefinementType]
20
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_SURFACE_CURVATURE: _ClassVar[WindSimulationAnalysisSettingsMeshRefinementType]
21
+
22
+ class WindSimulationAnalysisSettingsMemberLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
23
+ __slots__ = ()
24
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[WindSimulationAnalysisSettingsMemberLoadDistribution]
25
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_CONCENTRATED: _ClassVar[WindSimulationAnalysisSettingsMemberLoadDistribution]
26
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_TRAPEZOIDAL: _ClassVar[WindSimulationAnalysisSettingsMemberLoadDistribution]
27
+
28
+ class WindSimulationAnalysisSettingsTurbulenceModelType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
29
+ __slots__ = ()
30
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_OMEGA: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelType]
31
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_EPSILON: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelType]
32
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_LES: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelType]
33
+
34
+ class WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_OMEGA: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition]
37
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_EPSILON: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition]
38
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_LES: _ClassVar[WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition]
39
+ WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_STEADY_FLOW: WindSimulationAnalysisSettingsSimulationType
40
+ WIND_SIMULATION_ANALYSIS_SETTINGS_SIMULATION_TYPE_TRANSIENT_FLOW: WindSimulationAnalysisSettingsSimulationType
41
+ WIND_SIMULATION_ANALYSIS_SETTINGS_NUMERICAL_SOLVER_OPENFOAM: WindSimulationAnalysisSettingsNumericalSolver
42
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_DISTANCE_FROM_SURFACE: WindSimulationAnalysisSettingsMeshRefinementType
43
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MESH_REFINEMENT_TYPE_SURFACE_CURVATURE: WindSimulationAnalysisSettingsMeshRefinementType
44
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_UNIFORM: WindSimulationAnalysisSettingsMemberLoadDistribution
45
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_CONCENTRATED: WindSimulationAnalysisSettingsMemberLoadDistribution
46
+ WIND_SIMULATION_ANALYSIS_SETTINGS_MEMBER_LOAD_DISTRIBUTION_TRAPEZOIDAL: WindSimulationAnalysisSettingsMemberLoadDistribution
47
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_OMEGA: WindSimulationAnalysisSettingsTurbulenceModelType
48
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_EPSILON: WindSimulationAnalysisSettingsTurbulenceModelType
49
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_LES: WindSimulationAnalysisSettingsTurbulenceModelType
50
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_OMEGA: WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition
51
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_EPSILON: WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition
52
+ WIND_SIMULATION_ANALYSIS_SETTINGS_TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_LES: WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition
53
+
54
+ class WindSimulationAnalysisSettings(_message.Message):
55
+ __slots__ = ("no", "simulation_type", "user_defined_name_enabled", "name", "comment", "assigned_to", "density", "kinematic_viscosity", "numerical_solver", "finite_volume_mesh_density", "maximum_number_of_iterations", "mesh_refinement_type", "snap_to_model_edges", "boundary_layers_checked", "boundary_layers_value", "consider_turbulence", "slip_boundary_condition_on_bottom_boundary", "use_second_order_numerical_scheme", "user_defined_dimensions_of_wind_tunnel", "member_load_distribution", "turbulence_model_type", "sand_grain_roughness_height", "roughness_constant", "user_defined_simulation_time", "velocity_field", "velocity_x_component", "velocity_y_component", "velocity_z_component", "specific_turbulence_dissipation_rate", "start_time_for_saving_transient_results", "steady_flow_from_solver", "turbulence_model_type_for_initial_condition", "turbulence_dissipation_rate", "turbulence_intermittency", "turbulence_kinetic_energy", "turbulence_kinetic_energy_residue_monitors", "turbulence_kinetic_viscosity", "save_solver_data_to_continue_calculation", "simulation_time", "pressure_field", "residual_pressure", "momentum_thickness_reynolds_number", "data_compression_error_tolerance", "consider_surface_roughness", "use_potential_flow_solver_for_initial_condition", "id_for_export_import", "metadata_for_export_import")
56
+ NO_FIELD_NUMBER: _ClassVar[int]
57
+ SIMULATION_TYPE_FIELD_NUMBER: _ClassVar[int]
58
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
59
+ NAME_FIELD_NUMBER: _ClassVar[int]
60
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
61
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
62
+ DENSITY_FIELD_NUMBER: _ClassVar[int]
63
+ KINEMATIC_VISCOSITY_FIELD_NUMBER: _ClassVar[int]
64
+ NUMERICAL_SOLVER_FIELD_NUMBER: _ClassVar[int]
65
+ FINITE_VOLUME_MESH_DENSITY_FIELD_NUMBER: _ClassVar[int]
66
+ MAXIMUM_NUMBER_OF_ITERATIONS_FIELD_NUMBER: _ClassVar[int]
67
+ MESH_REFINEMENT_TYPE_FIELD_NUMBER: _ClassVar[int]
68
+ SNAP_TO_MODEL_EDGES_FIELD_NUMBER: _ClassVar[int]
69
+ BOUNDARY_LAYERS_CHECKED_FIELD_NUMBER: _ClassVar[int]
70
+ BOUNDARY_LAYERS_VALUE_FIELD_NUMBER: _ClassVar[int]
71
+ CONSIDER_TURBULENCE_FIELD_NUMBER: _ClassVar[int]
72
+ SLIP_BOUNDARY_CONDITION_ON_BOTTOM_BOUNDARY_FIELD_NUMBER: _ClassVar[int]
73
+ USE_SECOND_ORDER_NUMERICAL_SCHEME_FIELD_NUMBER: _ClassVar[int]
74
+ USER_DEFINED_DIMENSIONS_OF_WIND_TUNNEL_FIELD_NUMBER: _ClassVar[int]
75
+ MEMBER_LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
76
+ TURBULENCE_MODEL_TYPE_FIELD_NUMBER: _ClassVar[int]
77
+ SAND_GRAIN_ROUGHNESS_HEIGHT_FIELD_NUMBER: _ClassVar[int]
78
+ ROUGHNESS_CONSTANT_FIELD_NUMBER: _ClassVar[int]
79
+ USER_DEFINED_SIMULATION_TIME_FIELD_NUMBER: _ClassVar[int]
80
+ VELOCITY_FIELD_FIELD_NUMBER: _ClassVar[int]
81
+ VELOCITY_X_COMPONENT_FIELD_NUMBER: _ClassVar[int]
82
+ VELOCITY_Y_COMPONENT_FIELD_NUMBER: _ClassVar[int]
83
+ VELOCITY_Z_COMPONENT_FIELD_NUMBER: _ClassVar[int]
84
+ SPECIFIC_TURBULENCE_DISSIPATION_RATE_FIELD_NUMBER: _ClassVar[int]
85
+ START_TIME_FOR_SAVING_TRANSIENT_RESULTS_FIELD_NUMBER: _ClassVar[int]
86
+ STEADY_FLOW_FROM_SOLVER_FIELD_NUMBER: _ClassVar[int]
87
+ TURBULENCE_MODEL_TYPE_FOR_INITIAL_CONDITION_FIELD_NUMBER: _ClassVar[int]
88
+ TURBULENCE_DISSIPATION_RATE_FIELD_NUMBER: _ClassVar[int]
89
+ TURBULENCE_INTERMITTENCY_FIELD_NUMBER: _ClassVar[int]
90
+ TURBULENCE_KINETIC_ENERGY_FIELD_NUMBER: _ClassVar[int]
91
+ TURBULENCE_KINETIC_ENERGY_RESIDUE_MONITORS_FIELD_NUMBER: _ClassVar[int]
92
+ TURBULENCE_KINETIC_VISCOSITY_FIELD_NUMBER: _ClassVar[int]
93
+ SAVE_SOLVER_DATA_TO_CONTINUE_CALCULATION_FIELD_NUMBER: _ClassVar[int]
94
+ SIMULATION_TIME_FIELD_NUMBER: _ClassVar[int]
95
+ PRESSURE_FIELD_FIELD_NUMBER: _ClassVar[int]
96
+ RESIDUAL_PRESSURE_FIELD_NUMBER: _ClassVar[int]
97
+ MOMENTUM_THICKNESS_REYNOLDS_NUMBER_FIELD_NUMBER: _ClassVar[int]
98
+ DATA_COMPRESSION_ERROR_TOLERANCE_FIELD_NUMBER: _ClassVar[int]
99
+ CONSIDER_SURFACE_ROUGHNESS_FIELD_NUMBER: _ClassVar[int]
100
+ USE_POTENTIAL_FLOW_SOLVER_FOR_INITIAL_CONDITION_FIELD_NUMBER: _ClassVar[int]
101
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
102
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
103
+ no: int
104
+ simulation_type: WindSimulationAnalysisSettingsSimulationType
105
+ user_defined_name_enabled: bool
106
+ name: str
107
+ comment: str
108
+ assigned_to: str
109
+ density: float
110
+ kinematic_viscosity: float
111
+ numerical_solver: WindSimulationAnalysisSettingsNumericalSolver
112
+ finite_volume_mesh_density: float
113
+ maximum_number_of_iterations: int
114
+ mesh_refinement_type: WindSimulationAnalysisSettingsMeshRefinementType
115
+ snap_to_model_edges: bool
116
+ boundary_layers_checked: bool
117
+ boundary_layers_value: int
118
+ consider_turbulence: bool
119
+ slip_boundary_condition_on_bottom_boundary: bool
120
+ use_second_order_numerical_scheme: bool
121
+ user_defined_dimensions_of_wind_tunnel: bool
122
+ member_load_distribution: WindSimulationAnalysisSettingsMemberLoadDistribution
123
+ turbulence_model_type: WindSimulationAnalysisSettingsTurbulenceModelType
124
+ sand_grain_roughness_height: float
125
+ roughness_constant: float
126
+ user_defined_simulation_time: bool
127
+ velocity_field: float
128
+ velocity_x_component: float
129
+ velocity_y_component: float
130
+ velocity_z_component: float
131
+ specific_turbulence_dissipation_rate: float
132
+ start_time_for_saving_transient_results: float
133
+ steady_flow_from_solver: bool
134
+ turbulence_model_type_for_initial_condition: WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition
135
+ turbulence_dissipation_rate: float
136
+ turbulence_intermittency: float
137
+ turbulence_kinetic_energy: float
138
+ turbulence_kinetic_energy_residue_monitors: float
139
+ turbulence_kinetic_viscosity: float
140
+ save_solver_data_to_continue_calculation: bool
141
+ simulation_time: float
142
+ pressure_field: float
143
+ residual_pressure: float
144
+ momentum_thickness_reynolds_number: float
145
+ data_compression_error_tolerance: float
146
+ consider_surface_roughness: bool
147
+ use_potential_flow_solver_for_initial_condition: bool
148
+ id_for_export_import: str
149
+ metadata_for_export_import: str
150
+ def __init__(self, no: _Optional[int] = ..., simulation_type: _Optional[_Union[WindSimulationAnalysisSettingsSimulationType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., assigned_to: _Optional[str] = ..., density: _Optional[float] = ..., kinematic_viscosity: _Optional[float] = ..., numerical_solver: _Optional[_Union[WindSimulationAnalysisSettingsNumericalSolver, str]] = ..., finite_volume_mesh_density: _Optional[float] = ..., maximum_number_of_iterations: _Optional[int] = ..., mesh_refinement_type: _Optional[_Union[WindSimulationAnalysisSettingsMeshRefinementType, str]] = ..., snap_to_model_edges: bool = ..., boundary_layers_checked: bool = ..., boundary_layers_value: _Optional[int] = ..., consider_turbulence: bool = ..., slip_boundary_condition_on_bottom_boundary: bool = ..., use_second_order_numerical_scheme: bool = ..., user_defined_dimensions_of_wind_tunnel: bool = ..., member_load_distribution: _Optional[_Union[WindSimulationAnalysisSettingsMemberLoadDistribution, str]] = ..., turbulence_model_type: _Optional[_Union[WindSimulationAnalysisSettingsTurbulenceModelType, str]] = ..., sand_grain_roughness_height: _Optional[float] = ..., roughness_constant: _Optional[float] = ..., user_defined_simulation_time: bool = ..., velocity_field: _Optional[float] = ..., velocity_x_component: _Optional[float] = ..., velocity_y_component: _Optional[float] = ..., velocity_z_component: _Optional[float] = ..., specific_turbulence_dissipation_rate: _Optional[float] = ..., start_time_for_saving_transient_results: _Optional[float] = ..., steady_flow_from_solver: bool = ..., turbulence_model_type_for_initial_condition: _Optional[_Union[WindSimulationAnalysisSettingsTurbulenceModelTypeForInitialCondition, str]] = ..., turbulence_dissipation_rate: _Optional[float] = ..., turbulence_intermittency: _Optional[float] = ..., turbulence_kinetic_energy: _Optional[float] = ..., turbulence_kinetic_energy_residue_monitors: _Optional[float] = ..., turbulence_kinetic_viscosity: _Optional[float] = ..., save_solver_data_to_continue_calculation: bool = ..., simulation_time: _Optional[float] = ..., pressure_field: _Optional[float] = ..., residual_pressure: _Optional[float] = ..., momentum_thickness_reynolds_number: _Optional[float] = ..., data_compression_error_tolerance: _Optional[float] = ..., consider_surface_roughness: bool = ..., use_potential_flow_solver_for_initial_condition: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,17 @@
1
+ from .free_circular_load_pb2 import *
2
+ from .free_concentrated_load_pb2 import *
3
+ from .free_line_load_pb2 import *
4
+ from .free_polygon_load_pb2 import *
5
+ from .free_rectangular_load_pb2 import *
6
+ from .imposed_line_deformation_pb2 import *
7
+ from .imposed_nodal_deformation_pb2 import *
8
+ from .line_load_pb2 import *
9
+ from .line_set_load_pb2 import *
10
+ from .member_load_pb2 import *
11
+ from .member_set_load_pb2 import *
12
+ from .nodal_load_pb2 import *
13
+ from .opening_load_pb2 import *
14
+ from .solid_load_pb2 import *
15
+ from .solid_set_load_pb2 import *
16
+ from .surface_load_pb2 import *
17
+ from .surface_set_load_pb2 import *
@@ -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/loads/free_circular_load.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/loads/free_circular_load.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/loads/free_circular_load.proto\x12\x15\x64lubal.api.rfem.loads\"\x9a\t\n\x10\x46reeCircularLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x10\n\x08surfaces\x18\x02 \x03(\x05\x12\x16\n\tload_case\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12S\n\x0fload_projection\x18\x05 \x01(\x0e\x32\x35.dlubal.api.rfem.loads.FreeCircularLoadLoadProjectionH\x02\x88\x01\x01\x12Q\n\x0eload_direction\x18\x06 \x01(\x0e\x32\x34.dlubal.api.rfem.loads.FreeCircularLoadLoadDirectionH\x03\x88\x01\x01\x12$\n\x17load_acting_region_from\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\"\n\x15load_acting_region_to\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12W\n\x11load_distribution\x18\t \x01(\x0e\x32\x37.dlubal.api.rfem.loads.FreeCircularLoadLoadDistributionH\x06\x88\x01\x01\x12\x1e\n\x11magnitude_uniform\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1d\n\x10magnitude_center\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x1d\n\x10magnitude_radius\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x1c\n\x0fload_location_x\x18\r \x01(\x01H\n\x88\x01\x01\x12\x1c\n\x0fload_location_y\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12!\n\x14load_location_radius\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\r\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x11 \x01(\x08H\x0e\x88\x01\x01\x12#\n\x16generating_object_info\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x13 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\x42\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x12\n\x10_load_projectionB\x11\n\x0f_load_directionB\x1a\n\x18_load_acting_region_fromB\x18\n\x16_load_acting_region_toB\x14\n\x12_load_distributionB\x14\n\x12_magnitude_uniformB\x13\n\x11_magnitude_centerB\x13\n\x11_magnitude_radiusB\x12\n\x10_load_location_xB\x12\n\x10_load_location_yB\x17\n\x15_load_location_radiusB\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*\xb3\x01\n\x1e\x46reeCircularLoadLoadProjection\x12/\n+FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XY_OR_UV\x10\x00\x12/\n+FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW\x10\x02\x12/\n+FREE_CIRCULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW\x10\x01*\xea\x06\n\x1d\x46reeCircularLoadLoadDirection\x12-\n)FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x38\n4FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED\x10\x08\x12\x33\n/FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE\x10\x05\x12\x38\n4FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED\x10\t\x12\x33\n/FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE\x10\x06\x12\x38\n4FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED\x10\n\x12\x33\n/FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE\x10\x07\x12-\n)FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12-\n)FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12>\n:FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED\x10\x0e\x12\x39\n5FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE\x10\x0b\x12>\n:FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED\x10\x0f\x12\x39\n5FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE\x10\x0c\x12>\n:FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED\x10\x10\x12\x39\n5FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE\x10\r*\x85\x01\n FreeCircularLoadLoadDistribution\x12\x30\n,FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12/\n+FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_LINEAR\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.free_circular_load_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_FREECIRCULARLOADLOADPROJECTION']._serialized_start=1255
35
+ _globals['_FREECIRCULARLOADLOADPROJECTION']._serialized_end=1434
36
+ _globals['_FREECIRCULARLOADLOADDIRECTION']._serialized_start=1437
37
+ _globals['_FREECIRCULARLOADLOADDIRECTION']._serialized_end=2311
38
+ _globals['_FREECIRCULARLOADLOADDISTRIBUTION']._serialized_start=2314
39
+ _globals['_FREECIRCULARLOADLOADDISTRIBUTION']._serialized_end=2447
40
+ _globals['_FREECIRCULARLOAD']._serialized_start=74
41
+ _globals['_FREECIRCULARLOAD']._serialized_end=1252
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,100 @@
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 FreeCircularLoadLoadProjection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XY_OR_UV: _ClassVar[FreeCircularLoadLoadProjection]
12
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW: _ClassVar[FreeCircularLoadLoadProjection]
13
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW: _ClassVar[FreeCircularLoadLoadProjection]
14
+
15
+ class FreeCircularLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[FreeCircularLoadLoadDirection]
18
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
19
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
20
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
21
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
22
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
23
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
24
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[FreeCircularLoadLoadDirection]
25
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[FreeCircularLoadLoadDirection]
26
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
27
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
28
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
29
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
30
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: _ClassVar[FreeCircularLoadLoadDirection]
31
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: _ClassVar[FreeCircularLoadLoadDirection]
32
+
33
+ class FreeCircularLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[FreeCircularLoadLoadDistribution]
36
+ FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_LINEAR: _ClassVar[FreeCircularLoadLoadDistribution]
37
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XY_OR_UV: FreeCircularLoadLoadProjection
38
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_XZ_OR_UW: FreeCircularLoadLoadProjection
39
+ FREE_CIRCULAR_LOAD_LOAD_PROJECTION_YZ_OR_VW: FreeCircularLoadLoadProjection
40
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_X: FreeCircularLoadLoadDirection
41
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_PROJECTED: FreeCircularLoadLoadDirection
42
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_X_TRUE: FreeCircularLoadLoadDirection
43
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_PROJECTED: FreeCircularLoadLoadDirection
44
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Y_TRUE: FreeCircularLoadLoadDirection
45
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_PROJECTED: FreeCircularLoadLoadDirection
46
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_GLOBAL_Z_TRUE: FreeCircularLoadLoadDirection
47
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Y: FreeCircularLoadLoadDirection
48
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_LOCAL_Z: FreeCircularLoadLoadDirection
49
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_PROJECTED: FreeCircularLoadLoadDirection
50
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_U_TRUE: FreeCircularLoadLoadDirection
51
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_PROJECTED: FreeCircularLoadLoadDirection
52
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_V_TRUE: FreeCircularLoadLoadDirection
53
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_PROJECTED: FreeCircularLoadLoadDirection
54
+ FREE_CIRCULAR_LOAD_LOAD_DIRECTION_USER_DEFINED_W_TRUE: FreeCircularLoadLoadDirection
55
+ FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_UNIFORM: FreeCircularLoadLoadDistribution
56
+ FREE_CIRCULAR_LOAD_LOAD_DISTRIBUTION_LINEAR: FreeCircularLoadLoadDistribution
57
+
58
+ class FreeCircularLoad(_message.Message):
59
+ __slots__ = ("no", "surfaces", "load_case", "coordinate_system", "load_projection", "load_direction", "load_acting_region_from", "load_acting_region_to", "load_distribution", "magnitude_uniform", "magnitude_center", "magnitude_radius", "load_location_x", "load_location_y", "load_location_radius", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
60
+ NO_FIELD_NUMBER: _ClassVar[int]
61
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
62
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
63
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
64
+ LOAD_PROJECTION_FIELD_NUMBER: _ClassVar[int]
65
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
66
+ LOAD_ACTING_REGION_FROM_FIELD_NUMBER: _ClassVar[int]
67
+ LOAD_ACTING_REGION_TO_FIELD_NUMBER: _ClassVar[int]
68
+ LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
69
+ MAGNITUDE_UNIFORM_FIELD_NUMBER: _ClassVar[int]
70
+ MAGNITUDE_CENTER_FIELD_NUMBER: _ClassVar[int]
71
+ MAGNITUDE_RADIUS_FIELD_NUMBER: _ClassVar[int]
72
+ LOAD_LOCATION_X_FIELD_NUMBER: _ClassVar[int]
73
+ LOAD_LOCATION_Y_FIELD_NUMBER: _ClassVar[int]
74
+ LOAD_LOCATION_RADIUS_FIELD_NUMBER: _ClassVar[int]
75
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
76
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
77
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
78
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
79
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
80
+ no: int
81
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
82
+ load_case: int
83
+ coordinate_system: int
84
+ load_projection: FreeCircularLoadLoadProjection
85
+ load_direction: FreeCircularLoadLoadDirection
86
+ load_acting_region_from: float
87
+ load_acting_region_to: float
88
+ load_distribution: FreeCircularLoadLoadDistribution
89
+ magnitude_uniform: float
90
+ magnitude_center: float
91
+ magnitude_radius: float
92
+ load_location_x: float
93
+ load_location_y: float
94
+ load_location_radius: float
95
+ comment: str
96
+ is_generated: bool
97
+ generating_object_info: str
98
+ id_for_export_import: str
99
+ metadata_for_export_import: str
100
+ def __init__(self, no: _Optional[int] = ..., surfaces: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[int] = ..., load_projection: _Optional[_Union[FreeCircularLoadLoadProjection, str]] = ..., load_direction: _Optional[_Union[FreeCircularLoadLoadDirection, str]] = ..., load_acting_region_from: _Optional[float] = ..., load_acting_region_to: _Optional[float] = ..., load_distribution: _Optional[_Union[FreeCircularLoadLoadDistribution, str]] = ..., magnitude_uniform: _Optional[float] = ..., magnitude_center: _Optional[float] = ..., magnitude_radius: _Optional[float] = ..., load_location_x: _Optional[float] = ..., load_location_y: _Optional[float] = ..., load_location_radius: _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,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/loads/free_concentrated_load.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/loads/free_concentrated_load.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'\n2dlubal/api/rfem/loads/free_concentrated_load.proto\x12\x15\x64lubal.api.rfem.loads\"\xde\x07\n\x14\x46reeConcentratedLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12K\n\tload_type\x18\x02 \x01(\x0e\x32\x33.dlubal.api.rfem.loads.FreeConcentratedLoadLoadTypeH\x00\x88\x01\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12W\n\x0fload_projection\x18\x06 \x01(\x0e\x32\x39.dlubal.api.rfem.loads.FreeConcentratedLoadLoadProjectionH\x03\x88\x01\x01\x12U\n\x0eload_direction\x18\x07 \x01(\x0e\x32\x38.dlubal.api.rfem.loads.FreeConcentratedLoadLoadDirectionH\x04\x88\x01\x01\x12$\n\x17load_acting_region_from\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\"\n\x15load_acting_region_to\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x16\n\tmagnitude\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1c\n\x0fload_location_x\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x1c\n\x0fload_location_y\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\r \x01(\tH\n\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\x0e\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x12\n\x10_load_projectionB\x11\n\x0f_load_directionB\x1a\n\x18_load_acting_region_fromB\x18\n\x16_load_acting_region_toB\x0c\n\n_magnitudeB\x12\n\x10_load_location_xB\x12\n\x10_load_location_yB\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\x01\n\x1c\x46reeConcentratedLoadLoadType\x12,\n(FREE_CONCENTRATED_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12*\n&FREE_CONCENTRATED_LOAD_LOAD_TYPE_FORCE\x10\x01\x12+\n\'FREE_CONCENTRATED_LOAD_LOAD_TYPE_MOMENT\x10\x02*\xc3\x01\n\"FreeConcentratedLoadLoadProjection\x12\x33\n/FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XY_OR_UV\x10\x00\x12\x33\n/FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_XZ_OR_UW\x10\x02\x12\x33\n/FREE_CONCENTRATED_LOAD_LOAD_PROJECTION_YZ_OR_VW\x10\x01*\x86\x04\n!FreeConcentratedLoadLoadDirection\x12\x31\n-FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x32\n.FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_X\x10\x05\x12\x32\n.FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Y\x10\x06\x12\x32\n.FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_GLOBAL_Z\x10\x07\x12\x31\n-FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12\x31\n-FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12\x38\n4FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_U\x10\x0b\x12\x38\n4FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_V\x10\x0c\x12\x38\n4FREE_CONCENTRATED_LOAD_LOAD_DIRECTION_USER_DEFINED_W\x10\rb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.free_concentrated_load_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_FREECONCENTRATEDLOADLOADTYPE']._serialized_start=1071
35
+ _globals['_FREECONCENTRATEDLOADLOADTYPE']._serialized_end=1236
36
+ _globals['_FREECONCENTRATEDLOADLOADPROJECTION']._serialized_start=1239
37
+ _globals['_FREECONCENTRATEDLOADLOADPROJECTION']._serialized_end=1434
38
+ _globals['_FREECONCENTRATEDLOADLOADDIRECTION']._serialized_start=1437
39
+ _globals['_FREECONCENTRATEDLOADLOADDIRECTION']._serialized_end=1955
40
+ _globals['_FREECONCENTRATEDLOAD']._serialized_start=78
41
+ _globals['_FREECONCENTRATEDLOAD']._serialized_end=1068
42
+ # @@protoc_insertion_point(module_scope)