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,46 @@
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/load_wizards/wind_simulation.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/load_wizards/wind_simulation.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/load_wizards/wind_simulation.proto\x12\x1c\x64lubal.api.rfem.load_wizards\"\x96\x0c\n\x0eWindSimulation\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x43\n\x04type\x18\x02 \x01(\x0e\x32\x30.dlubal.api.rfem.load_wizards.WindSimulationTypeH\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\x13\n\x06\x61\x63tive\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x19\n\x0cwind_profile\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12.\n!wind_simulation_analysis_settings\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12_\n\x13wind_direction_type\x18\x08 \x01(\x0e\x32=.dlubal.api.rfem.load_wizards.WindSimulationWindDirectionTypeH\x06\x88\x01\x01\x12(\n\x1buniform_wind_direction_step\x18\t \x01(\x01H\x07\x88\x01\x01\x12/\n\"uniform_wind_direction_range_start\x18\n \x01(\x01H\x08\x88\x01\x01\x12-\n uniform_wind_direction_range_end\x18\x0b \x01(\x01H\t\x88\x01\x01\x12,\n$user_defined_list_of_wind_directions\x18\x0c \x03(\x05\x12o\n\x18generate_into_load_cases\x18\r \x01(\x0b\x32H.dlubal.api.rfem.load_wizards.ArrayOfWindSimulationGenerateIntoLoadCasesH\n\x88\x01\x01\x12#\n\x16\x63onsider_initial_state\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12\x1f\n\x12initial_state_case\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12r\n\x1dinitial_state_definition_type\x18\x10 \x01(\x0e\x32\x46.dlubal.api.rfem.load_wizards.WindSimulationInitialStateDefinitionTypeH\r\x88\x01\x01\x12\x95\x01\n,individual_factors_of_selected_objects_table\x18\x11 \x01(\x0b\x32Z.dlubal.api.rfem.load_wizards.ArrayOfWindSimulationIndividualFactorsOfSelectedObjectsTableH\x0e\x88\x01\x01\x12\x14\n\x07\x63omment\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\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\t\n\x07_activeB\x0f\n\r_wind_profileB$\n\"_wind_simulation_analysis_settingsB\x16\n\x14_wind_direction_typeB\x1e\n\x1c_uniform_wind_direction_stepB%\n#_uniform_wind_direction_range_startB#\n!_uniform_wind_direction_range_endB\x1b\n\x19_generate_into_load_casesB\x19\n\x17_consider_initial_stateB\x15\n\x13_initial_state_caseB \n\x1e_initial_state_definition_typeB/\n-_individual_factors_of_selected_objects_tableB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\",\n*ArrayOfWindSimulationGenerateIntoLoadCases\">\n<ArrayOfWindSimulationIndividualFactorsOfSelectedObjectsTable*Y\n\x12WindSimulationType\x12 \n\x1cWIND_SIMULATION_TYPE_UNKNOWN\x10\x00\x12!\n\x1dWIND_SIMULATION_TYPE_STANDARD\x10\x01*\x88\x01\n\x1fWindSimulationWindDirectionType\x12/\n+WIND_SIMULATION_WIND_DIRECTION_TYPE_UNIFORM\x10\x00\x12\x34\n0WIND_SIMULATION_WIND_DIRECTION_TYPE_USER_DEFINED\x10\x01*\xb6\x02\n(WindSimulationInitialStateDefinitionType\x12=\n9WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE\x10\x00\x12;\n7WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS\x10\x02\x12\x39\n5WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS\x10\x01\x12S\nOWIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS\x10\x03\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.load_wizards.wind_simulation_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_WINDSIMULATIONTYPE']._serialized_start=1755
35
+ _globals['_WINDSIMULATIONTYPE']._serialized_end=1844
36
+ _globals['_WINDSIMULATIONWINDDIRECTIONTYPE']._serialized_start=1847
37
+ _globals['_WINDSIMULATIONWINDDIRECTIONTYPE']._serialized_end=1983
38
+ _globals['_WINDSIMULATIONINITIALSTATEDEFINITIONTYPE']._serialized_start=1986
39
+ _globals['_WINDSIMULATIONINITIALSTATEDEFINITIONTYPE']._serialized_end=2296
40
+ _globals['_WINDSIMULATION']._serialized_start=85
41
+ _globals['_WINDSIMULATION']._serialized_end=1643
42
+ _globals['_ARRAYOFWINDSIMULATIONGENERATEINTOLOADCASES']._serialized_start=1645
43
+ _globals['_ARRAYOFWINDSIMULATIONGENERATEINTOLOADCASES']._serialized_end=1689
44
+ _globals['_ARRAYOFWINDSIMULATIONINDIVIDUALFACTORSOFSELECTEDOBJECTSTABLE']._serialized_start=1691
45
+ _globals['_ARRAYOFWINDSIMULATIONINDIVIDUALFACTORSOFSELECTEDOBJECTSTABLE']._serialized_end=1753
46
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,84 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class WindSimulationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ WIND_SIMULATION_TYPE_UNKNOWN: _ClassVar[WindSimulationType]
12
+ WIND_SIMULATION_TYPE_STANDARD: _ClassVar[WindSimulationType]
13
+
14
+ class WindSimulationWindDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ WIND_SIMULATION_WIND_DIRECTION_TYPE_UNIFORM: _ClassVar[WindSimulationWindDirectionType]
17
+ WIND_SIMULATION_WIND_DIRECTION_TYPE_USER_DEFINED: _ClassVar[WindSimulationWindDirectionType]
18
+
19
+ class WindSimulationInitialStateDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
20
+ __slots__ = ()
21
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE: _ClassVar[WindSimulationInitialStateDefinitionType]
22
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS: _ClassVar[WindSimulationInitialStateDefinitionType]
23
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS: _ClassVar[WindSimulationInitialStateDefinitionType]
24
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS: _ClassVar[WindSimulationInitialStateDefinitionType]
25
+ WIND_SIMULATION_TYPE_UNKNOWN: WindSimulationType
26
+ WIND_SIMULATION_TYPE_STANDARD: WindSimulationType
27
+ WIND_SIMULATION_WIND_DIRECTION_TYPE_UNIFORM: WindSimulationWindDirectionType
28
+ WIND_SIMULATION_WIND_DIRECTION_TYPE_USER_DEFINED: WindSimulationWindDirectionType
29
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE: WindSimulationInitialStateDefinitionType
30
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS: WindSimulationInitialStateDefinitionType
31
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS: WindSimulationInitialStateDefinitionType
32
+ WIND_SIMULATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS: WindSimulationInitialStateDefinitionType
33
+
34
+ class WindSimulation(_message.Message):
35
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "active", "wind_profile", "wind_simulation_analysis_settings", "wind_direction_type", "uniform_wind_direction_step", "uniform_wind_direction_range_start", "uniform_wind_direction_range_end", "user_defined_list_of_wind_directions", "generate_into_load_cases", "consider_initial_state", "initial_state_case", "initial_state_definition_type", "individual_factors_of_selected_objects_table", "comment", "id_for_export_import", "metadata_for_export_import")
36
+ NO_FIELD_NUMBER: _ClassVar[int]
37
+ TYPE_FIELD_NUMBER: _ClassVar[int]
38
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
39
+ NAME_FIELD_NUMBER: _ClassVar[int]
40
+ ACTIVE_FIELD_NUMBER: _ClassVar[int]
41
+ WIND_PROFILE_FIELD_NUMBER: _ClassVar[int]
42
+ WIND_SIMULATION_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
43
+ WIND_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
44
+ UNIFORM_WIND_DIRECTION_STEP_FIELD_NUMBER: _ClassVar[int]
45
+ UNIFORM_WIND_DIRECTION_RANGE_START_FIELD_NUMBER: _ClassVar[int]
46
+ UNIFORM_WIND_DIRECTION_RANGE_END_FIELD_NUMBER: _ClassVar[int]
47
+ USER_DEFINED_LIST_OF_WIND_DIRECTIONS_FIELD_NUMBER: _ClassVar[int]
48
+ GENERATE_INTO_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
49
+ CONSIDER_INITIAL_STATE_FIELD_NUMBER: _ClassVar[int]
50
+ INITIAL_STATE_CASE_FIELD_NUMBER: _ClassVar[int]
51
+ INITIAL_STATE_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
52
+ INDIVIDUAL_FACTORS_OF_SELECTED_OBJECTS_TABLE_FIELD_NUMBER: _ClassVar[int]
53
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
54
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
56
+ no: int
57
+ type: WindSimulationType
58
+ user_defined_name_enabled: bool
59
+ name: str
60
+ active: bool
61
+ wind_profile: int
62
+ wind_simulation_analysis_settings: int
63
+ wind_direction_type: WindSimulationWindDirectionType
64
+ uniform_wind_direction_step: float
65
+ uniform_wind_direction_range_start: float
66
+ uniform_wind_direction_range_end: float
67
+ user_defined_list_of_wind_directions: _containers.RepeatedScalarFieldContainer[int]
68
+ generate_into_load_cases: ArrayOfWindSimulationGenerateIntoLoadCases
69
+ consider_initial_state: bool
70
+ initial_state_case: int
71
+ initial_state_definition_type: WindSimulationInitialStateDefinitionType
72
+ individual_factors_of_selected_objects_table: ArrayOfWindSimulationIndividualFactorsOfSelectedObjectsTable
73
+ comment: str
74
+ id_for_export_import: str
75
+ metadata_for_export_import: str
76
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[WindSimulationType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., active: bool = ..., wind_profile: _Optional[int] = ..., wind_simulation_analysis_settings: _Optional[int] = ..., wind_direction_type: _Optional[_Union[WindSimulationWindDirectionType, str]] = ..., uniform_wind_direction_step: _Optional[float] = ..., uniform_wind_direction_range_start: _Optional[float] = ..., uniform_wind_direction_range_end: _Optional[float] = ..., user_defined_list_of_wind_directions: _Optional[_Iterable[int]] = ..., generate_into_load_cases: _Optional[_Union[ArrayOfWindSimulationGenerateIntoLoadCases, _Mapping]] = ..., consider_initial_state: bool = ..., initial_state_case: _Optional[int] = ..., initial_state_definition_type: _Optional[_Union[WindSimulationInitialStateDefinitionType, str]] = ..., individual_factors_of_selected_objects_table: _Optional[_Union[ArrayOfWindSimulationIndividualFactorsOfSelectedObjectsTable, _Mapping]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
77
+
78
+ class ArrayOfWindSimulationGenerateIntoLoadCases(_message.Message):
79
+ __slots__ = ()
80
+ def __init__(self) -> None: ...
81
+
82
+ class ArrayOfWindSimulationIndividualFactorsOfSelectedObjectsTable(_message.Message):
83
+ __slots__ = ()
84
+ def __init__(self) -> None: ...
@@ -0,0 +1,15 @@
1
+ from .action_combination_pb2 import *
2
+ from .action_pb2 import *
3
+ from .combination_wizard_pb2 import *
4
+ from .design_situation_pb2 import *
5
+ from .load_case_pb2 import *
6
+ from .load_combination_pb2 import *
7
+ from .modal_analysis_settings_pb2 import *
8
+ from .optimization_settings_pb2 import *
9
+ from .pushover_analysis_settings_pb2 import *
10
+ from .relationship_between_load_cases_pb2 import *
11
+ from .result_combination_pb2 import *
12
+ from .spectral_analysis_settings_pb2 import *
13
+ from .stability_analysis_settings_pb2 import *
14
+ from .static_analysis_settings_pb2 import *
15
+ from .wind_simulation_analysis_settings_pb2 import *
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loading/action_combination.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/action_combination.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'\n0dlubal/api/rfem/loading/action_combination.proto\x12\x17\x64lubal.api.rfem.loading\"\xf6\x06\n\x11\x41\x63tionCombination\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&\n\x19\x61ttribute_always_editable\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x1d\n\x10\x64\x65sign_situation\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12J\n\x05items\x18\x07 \x01(\x0b\x32\x36.dlubal.api.rfem.loading.ArrayOfActionCombinationItemsH\x05\x88\x01\x01\x12\x13\n\x06\x61\x63tive\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x1f\n\x12\x63onstruction_stage\x18\t \x01(\x05H\x07\x88\x01\x01\x12X\n\x10\x63ombination_type\x18\n \x01(\x0e\x32\x39.dlubal.api.rfem.loading.ActionCombinationCombinationTypeH\x08\x88\x01\x01\x12#\n\x1bgenerated_load_combinations\x18\x0b \x03(\x05\x12%\n\x1dgenerated_result_combinations\x18\x0c \x03(\x05\x12\x19\n\x0cis_generated\x18\r \x01(\x08H\t\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\n\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0f \x01(\tH\x0b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x10 \x01(\tH\x0c\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_attribute_always_editableB\n\n\x08_commentB\x13\n\x11_design_situationB\x08\n\x06_itemsB\t\n\x07_activeB\x15\n\x13_construction_stageB\x13\n\x11_combination_typeB\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\"\x1f\n\x1d\x41rrayOfActionCombinationItems*\x82\x02\n ActionCombinationCombinationType\x12/\n+ACTION_COMBINATION_COMBINATION_TYPE_GENERAL\x10\x00\x12:\n6ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT\x10\x01\x12:\n6ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT\x10\x02\x12\x35\n1ACTION_COMBINATION_COMBINATION_TYPE_SUPERPOSITION\x10\x03\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.action_combination_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ACTIONCOMBINATIONCOMBINATIONTYPE']._serialized_start=1000
35
+ _globals['_ACTIONCOMBINATIONCOMBINATIONTYPE']._serialized_end=1258
36
+ _globals['_ACTIONCOMBINATION']._serialized_start=78
37
+ _globals['_ACTIONCOMBINATION']._serialized_end=964
38
+ _globals['_ARRAYOFACTIONCOMBINATIONITEMS']._serialized_start=966
39
+ _globals['_ARRAYOFACTIONCOMBINATIONITEMS']._serialized_end=997
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,58 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class ActionCombinationCombinationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ ACTION_COMBINATION_COMBINATION_TYPE_GENERAL: _ClassVar[ActionCombinationCombinationType]
12
+ ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT: _ClassVar[ActionCombinationCombinationType]
13
+ ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT: _ClassVar[ActionCombinationCombinationType]
14
+ ACTION_COMBINATION_COMBINATION_TYPE_SUPERPOSITION: _ClassVar[ActionCombinationCombinationType]
15
+ ACTION_COMBINATION_COMBINATION_TYPE_GENERAL: ActionCombinationCombinationType
16
+ ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT: ActionCombinationCombinationType
17
+ ACTION_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT: ActionCombinationCombinationType
18
+ ACTION_COMBINATION_COMBINATION_TYPE_SUPERPOSITION: ActionCombinationCombinationType
19
+
20
+ class ActionCombination(_message.Message):
21
+ __slots__ = ("no", "user_defined_name_enabled", "name", "attribute_always_editable", "comment", "design_situation", "items", "active", "construction_stage", "combination_type", "generated_load_combinations", "generated_result_combinations", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
22
+ NO_FIELD_NUMBER: _ClassVar[int]
23
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
24
+ NAME_FIELD_NUMBER: _ClassVar[int]
25
+ ATTRIBUTE_ALWAYS_EDITABLE_FIELD_NUMBER: _ClassVar[int]
26
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
27
+ DESIGN_SITUATION_FIELD_NUMBER: _ClassVar[int]
28
+ ITEMS_FIELD_NUMBER: _ClassVar[int]
29
+ ACTIVE_FIELD_NUMBER: _ClassVar[int]
30
+ CONSTRUCTION_STAGE_FIELD_NUMBER: _ClassVar[int]
31
+ COMBINATION_TYPE_FIELD_NUMBER: _ClassVar[int]
32
+ GENERATED_LOAD_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
33
+ GENERATED_RESULT_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
34
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
35
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
36
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
37
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
38
+ no: int
39
+ user_defined_name_enabled: bool
40
+ name: str
41
+ attribute_always_editable: str
42
+ comment: str
43
+ design_situation: int
44
+ items: ArrayOfActionCombinationItems
45
+ active: bool
46
+ construction_stage: int
47
+ combination_type: ActionCombinationCombinationType
48
+ generated_load_combinations: _containers.RepeatedScalarFieldContainer[int]
49
+ generated_result_combinations: _containers.RepeatedScalarFieldContainer[int]
50
+ is_generated: bool
51
+ generating_object_info: str
52
+ id_for_export_import: str
53
+ metadata_for_export_import: str
54
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., attribute_always_editable: _Optional[str] = ..., comment: _Optional[str] = ..., design_situation: _Optional[int] = ..., items: _Optional[_Union[ArrayOfActionCombinationItems, _Mapping]] = ..., active: bool = ..., construction_stage: _Optional[int] = ..., combination_type: _Optional[_Union[ActionCombinationCombinationType, str]] = ..., generated_load_combinations: _Optional[_Iterable[int]] = ..., generated_result_combinations: _Optional[_Iterable[int]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
55
+
56
+ class ArrayOfActionCombinationItems(_message.Message):
57
+ __slots__ = ()
58
+ def __init__(self) -> 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/loading/action.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/action.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/action.proto\x12\x17\x64lubal.api.rfem.loading\"\xc2\n\n\x06\x41\x63tion\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\x16\n\tis_active\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1c\n\x0f\x61\x63tion_category\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x43\n\x0b\x61\x63tion_type\x18\x06 \x01(\x0e\x32).dlubal.api.rfem.loading.ActionActionTypeH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12#\n\x16generating_object_info\x18\t \x01(\tH\x07\x88\x01\x01\x12?\n\x05items\x18\n \x01(\x0b\x32+.dlubal.api.rfem.loading.ArrayOfActionItemsH\x08\x88\x01\x01\x12\x1f\n\x12has_short_duration\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\x30\n#has_duration_shorter_than_one_month\x18\x0c \x01(\x08H\n\x88\x01\x01\x12V\n\x15imposed_load_category\x18\r \x01(\x0e\x32\x32.dlubal.api.rfem.loading.ActionImposedLoadCategoryH\x0b\x88\x01\x01\x12\x31\n$has_short_duration_according_to_5132\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12/\n\"for_temperature_apply_coefficients\x18\x0f \x01(\x08H\r\x88\x01\x01\x12\'\n\x1ashort_time_variable_action\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12\x46\n9crane_operated_ware_housing_system_reduced_partial_factor\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12!\n\x14has_inclusive_action\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x15 \x01(\tH\x12\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_is_activeB\x12\n\x10_action_categoryB\x0e\n\x0c_action_typeB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x08\n\x06_itemsB\x15\n\x13_has_short_durationB&\n$_has_duration_shorter_than_one_monthB\x18\n\x16_imposed_load_categoryB\'\n%_has_short_duration_according_to_5132B%\n#_for_temperature_apply_coefficientsB\x1d\n\x1b_short_time_variable_actionB<\n:_crane_operated_ware_housing_system_reduced_partial_factorB\x17\n\x15_has_inclusive_actionB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x14\n\x12\x41rrayOfActionItems*\xad\x01\n\x10\x41\x63tionActionType\x12%\n!ACTION_ACTION_TYPE_SIMULTANEOUSLY\x10\x00\x12$\n ACTION_ACTION_TYPE_ALTERNATIVELY\x10\x01\x12\"\n\x1e\x41\x43TION_ACTION_TYPE_DIFFERENTLY\x10\x02\x12(\n$ACTION_ACTION_TYPE_DYNAMIC_LOAD_CASE\x10\x03*\xed\x02\n\x19\x41\x63tionImposedLoadCategory\x12(\n$ACTION_IMPOSED_LOAD_CATEGORY_UNKNOWN\x10\x00\x12\x39\n5ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_A\x10 \x12\x39\n5ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_B\x10!\x12\x39\n5ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_C\x10\"\x12\x39\n5ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_D\x10#\x12:\n5ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_E\x10\xa3\x02\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.action_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ACTIONACTIONTYPE']._serialized_start=1437
35
+ _globals['_ACTIONACTIONTYPE']._serialized_end=1610
36
+ _globals['_ACTIONIMPOSEDLOADCATEGORY']._serialized_start=1613
37
+ _globals['_ACTIONIMPOSEDLOADCATEGORY']._serialized_end=1978
38
+ _globals['_ACTION']._serialized_start=66
39
+ _globals['_ACTION']._serialized_end=1412
40
+ _globals['_ARRAYOFACTIONITEMS']._serialized_start=1414
41
+ _globals['_ARRAYOFACTIONITEMS']._serialized_end=1434
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,80 @@
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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class ActionActionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ ACTION_ACTION_TYPE_SIMULTANEOUSLY: _ClassVar[ActionActionType]
11
+ ACTION_ACTION_TYPE_ALTERNATIVELY: _ClassVar[ActionActionType]
12
+ ACTION_ACTION_TYPE_DIFFERENTLY: _ClassVar[ActionActionType]
13
+ ACTION_ACTION_TYPE_DYNAMIC_LOAD_CASE: _ClassVar[ActionActionType]
14
+
15
+ class ActionImposedLoadCategory(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ ACTION_IMPOSED_LOAD_CATEGORY_UNKNOWN: _ClassVar[ActionImposedLoadCategory]
18
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_A: _ClassVar[ActionImposedLoadCategory]
19
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_B: _ClassVar[ActionImposedLoadCategory]
20
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_C: _ClassVar[ActionImposedLoadCategory]
21
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_D: _ClassVar[ActionImposedLoadCategory]
22
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_E: _ClassVar[ActionImposedLoadCategory]
23
+ ACTION_ACTION_TYPE_SIMULTANEOUSLY: ActionActionType
24
+ ACTION_ACTION_TYPE_ALTERNATIVELY: ActionActionType
25
+ ACTION_ACTION_TYPE_DIFFERENTLY: ActionActionType
26
+ ACTION_ACTION_TYPE_DYNAMIC_LOAD_CASE: ActionActionType
27
+ ACTION_IMPOSED_LOAD_CATEGORY_UNKNOWN: ActionImposedLoadCategory
28
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_A: ActionImposedLoadCategory
29
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_B: ActionImposedLoadCategory
30
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_C: ActionImposedLoadCategory
31
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_D: ActionImposedLoadCategory
32
+ ACTION_IMPOSED_LOAD_CATEGORY_IMPOSED_LOADS_CATEGORY_E: ActionImposedLoadCategory
33
+
34
+ class Action(_message.Message):
35
+ __slots__ = ("no", "user_defined_name_enabled", "name", "is_active", "action_category", "action_type", "comment", "is_generated", "generating_object_info", "items", "has_short_duration", "has_duration_shorter_than_one_month", "imposed_load_category", "has_short_duration_according_to_5132", "for_temperature_apply_coefficients", "short_time_variable_action", "crane_operated_ware_housing_system_reduced_partial_factor", "has_inclusive_action", "id_for_export_import", "metadata_for_export_import")
36
+ NO_FIELD_NUMBER: _ClassVar[int]
37
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
38
+ NAME_FIELD_NUMBER: _ClassVar[int]
39
+ IS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
40
+ ACTION_CATEGORY_FIELD_NUMBER: _ClassVar[int]
41
+ ACTION_TYPE_FIELD_NUMBER: _ClassVar[int]
42
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
43
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
44
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
45
+ ITEMS_FIELD_NUMBER: _ClassVar[int]
46
+ HAS_SHORT_DURATION_FIELD_NUMBER: _ClassVar[int]
47
+ HAS_DURATION_SHORTER_THAN_ONE_MONTH_FIELD_NUMBER: _ClassVar[int]
48
+ IMPOSED_LOAD_CATEGORY_FIELD_NUMBER: _ClassVar[int]
49
+ HAS_SHORT_DURATION_ACCORDING_TO_5132_FIELD_NUMBER: _ClassVar[int]
50
+ FOR_TEMPERATURE_APPLY_COEFFICIENTS_FIELD_NUMBER: _ClassVar[int]
51
+ SHORT_TIME_VARIABLE_ACTION_FIELD_NUMBER: _ClassVar[int]
52
+ CRANE_OPERATED_WARE_HOUSING_SYSTEM_REDUCED_PARTIAL_FACTOR_FIELD_NUMBER: _ClassVar[int]
53
+ HAS_INCLUSIVE_ACTION_FIELD_NUMBER: _ClassVar[int]
54
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
56
+ no: int
57
+ user_defined_name_enabled: bool
58
+ name: str
59
+ is_active: bool
60
+ action_category: str
61
+ action_type: ActionActionType
62
+ comment: str
63
+ is_generated: bool
64
+ generating_object_info: str
65
+ items: ArrayOfActionItems
66
+ has_short_duration: bool
67
+ has_duration_shorter_than_one_month: bool
68
+ imposed_load_category: ActionImposedLoadCategory
69
+ has_short_duration_according_to_5132: bool
70
+ for_temperature_apply_coefficients: bool
71
+ short_time_variable_action: bool
72
+ crane_operated_ware_housing_system_reduced_partial_factor: bool
73
+ has_inclusive_action: bool
74
+ id_for_export_import: str
75
+ metadata_for_export_import: str
76
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., is_active: bool = ..., action_category: _Optional[str] = ..., action_type: _Optional[_Union[ActionActionType, str]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., items: _Optional[_Union[ArrayOfActionItems, _Mapping]] = ..., has_short_duration: bool = ..., has_duration_shorter_than_one_month: bool = ..., imposed_load_category: _Optional[_Union[ActionImposedLoadCategory, str]] = ..., has_short_duration_according_to_5132: bool = ..., for_temperature_apply_coefficients: bool = ..., short_time_variable_action: bool = ..., crane_operated_ware_housing_system_reduced_partial_factor: bool = ..., has_inclusive_action: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
77
+
78
+ class ArrayOfActionItems(_message.Message):
79
+ __slots__ = ()
80
+ def __init__(self) -> None: ...
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loading/combination_wizard.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/combination_wizard.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'\n0dlubal/api/rfem/loading/combination_wizard.proto\x12\x17\x64lubal.api.rfem.loading\"\xd9\x0c\n\x11\x43ombinationWizard\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%\n\x18static_analysis_settings\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x62\n\x15generate_combinations\x18\x05 \x01(\x0e\x32>.dlubal.api.rfem.loading.CombinationWizardGenerateCombinationsH\x03\x88\x01\x01\x12#\n\x16has_stability_analysis\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12(\n\x1bstability_analysis_settings\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12\'\n\x1a\x63onsider_imperfection_case\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12(\n\x1bgenerate_same_CO_without_IC\x18\t \x01(\x08H\x07\x88\x01\x01\x12.\n!generate_co_without_initial_state\x18\n \x01(\x08H\x08\x88\x01\x01\x12-\n user_defined_action_combinations\x18\x0b \x01(\x08H\t\x88\x01\x01\x12(\n\x1b\x66\x61vorable_permanent_actions\x18\x0c \x01(\x08H\n\x88\x01\x01\x12\x34\n\'reduce_number_of_generated_combinations\x18\r \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16\x61uxiliary_combinations\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12;\n.generate_subcombinations_of_type_superposition\x18\x0f \x01(\x08H\r\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\x0e\x88\x01\x01\x12#\n\x16\x63onsider_initial_state\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12\x64\n\x13initial_state_items\x18\x12 \x01(\x0b\x32\x42.dlubal.api.rfem.loading.ArrayOfCombinationWizardInitialStateItemsH\x10\x88\x01\x01\x12+\n\x1estructure_modification_enabled\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12#\n\x16structure_modification\x18\x14 \x01(\x05H\x12\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x15 \x01(\tH\x13\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x16 \x01(\tH\x14\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1b\n\x19_static_analysis_settingsB\x18\n\x16_generate_combinationsB\x19\n\x17_has_stability_analysisB\x1e\n\x1c_stability_analysis_settingsB\x1d\n\x1b_consider_imperfection_caseB\x1e\n\x1c_generate_same_CO_without_ICB$\n\"_generate_co_without_initial_stateB#\n!_user_defined_action_combinationsB\x1e\n\x1c_favorable_permanent_actionsB*\n(_reduce_number_of_generated_combinationsB\x19\n\x17_auxiliary_combinationsB1\n/_generate_subcombinations_of_type_superpositionB\n\n\x08_commentB\x19\n\x17_consider_initial_stateB\x16\n\x14_initial_state_itemsB!\n\x1f_structure_modification_enabledB\x19\n\x17_structure_modificationB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"+\n)ArrayOfCombinationWizardInitialStateItems*\xa9\x01\n%CombinationWizardGenerateCombinations\x12>\n:COMBINATION_WIZARD_GENERATE_COMBINATIONS_LOAD_COMBINATIONS\x10\x00\x12@\n<COMBINATION_WIZARD_GENERATE_COMBINATIONS_RESULT_COMBINATIONS\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.combination_wizard_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_COMBINATIONWIZARDGENERATECOMBINATIONS']._serialized_start=1751
35
+ _globals['_COMBINATIONWIZARDGENERATECOMBINATIONS']._serialized_end=1920
36
+ _globals['_COMBINATIONWIZARD']._serialized_start=78
37
+ _globals['_COMBINATIONWIZARD']._serialized_end=1703
38
+ _globals['_ARRAYOFCOMBINATIONWIZARDINITIALSTATEITEMS']._serialized_start=1705
39
+ _globals['_ARRAYOFCOMBINATIONWIZARDINITIALSTATEITEMS']._serialized_end=1748
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,65 @@
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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class CombinationWizardGenerateCombinations(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ COMBINATION_WIZARD_GENERATE_COMBINATIONS_LOAD_COMBINATIONS: _ClassVar[CombinationWizardGenerateCombinations]
11
+ COMBINATION_WIZARD_GENERATE_COMBINATIONS_RESULT_COMBINATIONS: _ClassVar[CombinationWizardGenerateCombinations]
12
+ COMBINATION_WIZARD_GENERATE_COMBINATIONS_LOAD_COMBINATIONS: CombinationWizardGenerateCombinations
13
+ COMBINATION_WIZARD_GENERATE_COMBINATIONS_RESULT_COMBINATIONS: CombinationWizardGenerateCombinations
14
+
15
+ class CombinationWizard(_message.Message):
16
+ __slots__ = ("no", "user_defined_name_enabled", "name", "static_analysis_settings", "generate_combinations", "has_stability_analysis", "stability_analysis_settings", "consider_imperfection_case", "generate_same_CO_without_IC", "generate_co_without_initial_state", "user_defined_action_combinations", "favorable_permanent_actions", "reduce_number_of_generated_combinations", "auxiliary_combinations", "generate_subcombinations_of_type_superposition", "comment", "consider_initial_state", "initial_state_items", "structure_modification_enabled", "structure_modification", "id_for_export_import", "metadata_for_export_import")
17
+ NO_FIELD_NUMBER: _ClassVar[int]
18
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
19
+ NAME_FIELD_NUMBER: _ClassVar[int]
20
+ STATIC_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
21
+ GENERATE_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
22
+ HAS_STABILITY_ANALYSIS_FIELD_NUMBER: _ClassVar[int]
23
+ STABILITY_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
24
+ CONSIDER_IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
25
+ GENERATE_SAME_CO_WITHOUT_IC_FIELD_NUMBER: _ClassVar[int]
26
+ GENERATE_CO_WITHOUT_INITIAL_STATE_FIELD_NUMBER: _ClassVar[int]
27
+ USER_DEFINED_ACTION_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
28
+ FAVORABLE_PERMANENT_ACTIONS_FIELD_NUMBER: _ClassVar[int]
29
+ REDUCE_NUMBER_OF_GENERATED_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
30
+ AUXILIARY_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
31
+ GENERATE_SUBCOMBINATIONS_OF_TYPE_SUPERPOSITION_FIELD_NUMBER: _ClassVar[int]
32
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
33
+ CONSIDER_INITIAL_STATE_FIELD_NUMBER: _ClassVar[int]
34
+ INITIAL_STATE_ITEMS_FIELD_NUMBER: _ClassVar[int]
35
+ STRUCTURE_MODIFICATION_ENABLED_FIELD_NUMBER: _ClassVar[int]
36
+ STRUCTURE_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
37
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
38
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
39
+ no: int
40
+ user_defined_name_enabled: bool
41
+ name: str
42
+ static_analysis_settings: int
43
+ generate_combinations: CombinationWizardGenerateCombinations
44
+ has_stability_analysis: bool
45
+ stability_analysis_settings: int
46
+ consider_imperfection_case: bool
47
+ generate_same_CO_without_IC: bool
48
+ generate_co_without_initial_state: bool
49
+ user_defined_action_combinations: bool
50
+ favorable_permanent_actions: bool
51
+ reduce_number_of_generated_combinations: bool
52
+ auxiliary_combinations: bool
53
+ generate_subcombinations_of_type_superposition: bool
54
+ comment: str
55
+ consider_initial_state: bool
56
+ initial_state_items: ArrayOfCombinationWizardInitialStateItems
57
+ structure_modification_enabled: bool
58
+ structure_modification: int
59
+ id_for_export_import: str
60
+ metadata_for_export_import: str
61
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., static_analysis_settings: _Optional[int] = ..., generate_combinations: _Optional[_Union[CombinationWizardGenerateCombinations, str]] = ..., has_stability_analysis: bool = ..., stability_analysis_settings: _Optional[int] = ..., consider_imperfection_case: bool = ..., generate_same_CO_without_IC: bool = ..., generate_co_without_initial_state: bool = ..., user_defined_action_combinations: bool = ..., favorable_permanent_actions: bool = ..., reduce_number_of_generated_combinations: bool = ..., auxiliary_combinations: bool = ..., generate_subcombinations_of_type_superposition: bool = ..., comment: _Optional[str] = ..., consider_initial_state: bool = ..., initial_state_items: _Optional[_Union[ArrayOfCombinationWizardInitialStateItems, _Mapping]] = ..., structure_modification_enabled: bool = ..., structure_modification: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
62
+
63
+ class ArrayOfCombinationWizardInitialStateItems(_message.Message):
64
+ __slots__ = ()
65
+ def __init__(self) -> None: ...
@@ -0,0 +1,38 @@
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/design_situation.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/design_situation.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/design_situation.proto\x12\x17\x64lubal.api.rfem.loading\"\xc3\x06\n\x0f\x44\x65signSituation\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\"\n\x15\x64\x65sign_situation_type\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x13\n\x06\x61\x63tive\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x06\x88\x01\x01\x12\x1f\n\x12\x63ombination_wizard\x18\t \x01(\x05H\x07\x88\x01\x01\x12\x34\n\'consider_inclusive_exclusive_load_cases\x18\n \x01(\x08H\x08\x88\x01\x01\x12,\n\x1frelationship_between_load_cases\x18\x0b \x01(\x05H\t\x88\x01\x01\x12U\n\x0c\x63\x61se_objects\x18\x0c \x01(\x0b\x32:.dlubal.api.rfem.loading.ArrayOfDesignSituationCaseObjectsH\n\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\x0b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\x0c\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x18\n\x16_design_situation_typeB\t\n\x07_activeB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x15\n\x13_combination_wizardB*\n(_consider_inclusive_exclusive_load_casesB\"\n _relationship_between_load_casesB\x0f\n\r_case_objectsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"#\n!ArrayOfDesignSituationCaseObjectsb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.design_situation_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_DESIGNSITUATION']._serialized_start=76
35
+ _globals['_DESIGNSITUATION']._serialized_end=911
36
+ _globals['_ARRAYOFDESIGNSITUATIONCASEOBJECTS']._serialized_start=913
37
+ _globals['_ARRAYOFDESIGNSITUATIONCASEOBJECTS']._serialized_end=948
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,41 @@
1
+ from google.protobuf import descriptor as _descriptor
2
+ from google.protobuf import message as _message
3
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
6
+
7
+ class DesignSituation(_message.Message):
8
+ __slots__ = ("no", "user_defined_name_enabled", "name", "design_situation_type", "active", "comment", "is_generated", "generating_object_info", "combination_wizard", "consider_inclusive_exclusive_load_cases", "relationship_between_load_cases", "case_objects", "id_for_export_import", "metadata_for_export_import")
9
+ NO_FIELD_NUMBER: _ClassVar[int]
10
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
11
+ NAME_FIELD_NUMBER: _ClassVar[int]
12
+ DESIGN_SITUATION_TYPE_FIELD_NUMBER: _ClassVar[int]
13
+ ACTIVE_FIELD_NUMBER: _ClassVar[int]
14
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
15
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
16
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
17
+ COMBINATION_WIZARD_FIELD_NUMBER: _ClassVar[int]
18
+ CONSIDER_INCLUSIVE_EXCLUSIVE_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
19
+ RELATIONSHIP_BETWEEN_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
20
+ CASE_OBJECTS_FIELD_NUMBER: _ClassVar[int]
21
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
22
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
23
+ no: int
24
+ user_defined_name_enabled: bool
25
+ name: str
26
+ design_situation_type: str
27
+ active: bool
28
+ comment: str
29
+ is_generated: bool
30
+ generating_object_info: str
31
+ combination_wizard: int
32
+ consider_inclusive_exclusive_load_cases: bool
33
+ relationship_between_load_cases: int
34
+ case_objects: ArrayOfDesignSituationCaseObjects
35
+ id_for_export_import: str
36
+ metadata_for_export_import: str
37
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., design_situation_type: _Optional[str] = ..., active: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., combination_wizard: _Optional[int] = ..., consider_inclusive_exclusive_load_cases: bool = ..., relationship_between_load_cases: _Optional[int] = ..., case_objects: _Optional[_Union[ArrayOfDesignSituationCaseObjects, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
38
+
39
+ class ArrayOfDesignSituationCaseObjects(_message.Message):
40
+ __slots__ = ()
41
+ def __init__(self) -> None: ...