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,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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class LoadCombinationAnalysisType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ LOAD_COMBINATION_ANALYSIS_TYPE_UNKNOWN: _ClassVar[LoadCombinationAnalysisType]
11
+ LOAD_COMBINATION_ANALYSIS_TYPE_HARMONIC_RESPONSE_ANALYSIS: _ClassVar[LoadCombinationAnalysisType]
12
+ LOAD_COMBINATION_ANALYSIS_TYPE_PUSHOVER: _ClassVar[LoadCombinationAnalysisType]
13
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC: _ClassVar[LoadCombinationAnalysisType]
14
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC_CREEP_AND_SHRINKAGE: _ClassVar[LoadCombinationAnalysisType]
15
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC_TIME_DEPENDENCE: _ClassVar[LoadCombinationAnalysisType]
16
+ LOAD_COMBINATION_ANALYSIS_TYPE_TIME_HISTORY_TIME_DIAGRAM: _ClassVar[LoadCombinationAnalysisType]
17
+
18
+ class LoadCombinationInitialStateDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE: _ClassVar[LoadCombinationInitialStateDefinitionType]
21
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS: _ClassVar[LoadCombinationInitialStateDefinitionType]
22
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS: _ClassVar[LoadCombinationInitialStateDefinitionType]
23
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS: _ClassVar[LoadCombinationInitialStateDefinitionType]
24
+
25
+ class LoadCombinationPushoverDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
26
+ __slots__ = ()
27
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_X: _ClassVar[LoadCombinationPushoverDirection]
28
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_MINUS_X: _ClassVar[LoadCombinationPushoverDirection]
29
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_MINUS_Y: _ClassVar[LoadCombinationPushoverDirection]
30
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_Y: _ClassVar[LoadCombinationPushoverDirection]
31
+
32
+ class LoadCombinationPushoverNormalizedDisplacements(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
33
+ __slots__ = ()
34
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_UNIFORM: _ClassVar[LoadCombinationPushoverNormalizedDisplacements]
35
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_MODAL_AUTOMATIC_MODAL_SHAPE: _ClassVar[LoadCombinationPushoverNormalizedDisplacements]
36
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_MODAL_USER_SELECTED_MODAL_SHAPE: _ClassVar[LoadCombinationPushoverNormalizedDisplacements]
37
+ LOAD_COMBINATION_ANALYSIS_TYPE_UNKNOWN: LoadCombinationAnalysisType
38
+ LOAD_COMBINATION_ANALYSIS_TYPE_HARMONIC_RESPONSE_ANALYSIS: LoadCombinationAnalysisType
39
+ LOAD_COMBINATION_ANALYSIS_TYPE_PUSHOVER: LoadCombinationAnalysisType
40
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC: LoadCombinationAnalysisType
41
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC_CREEP_AND_SHRINKAGE: LoadCombinationAnalysisType
42
+ LOAD_COMBINATION_ANALYSIS_TYPE_STATIC_TIME_DEPENDENCE: LoadCombinationAnalysisType
43
+ LOAD_COMBINATION_ANALYSIS_TYPE_TIME_HISTORY_TIME_DIAGRAM: LoadCombinationAnalysisType
44
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE: LoadCombinationInitialStateDefinitionType
45
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS: LoadCombinationInitialStateDefinitionType
46
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS: LoadCombinationInitialStateDefinitionType
47
+ LOAD_COMBINATION_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS: LoadCombinationInitialStateDefinitionType
48
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_X: LoadCombinationPushoverDirection
49
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_MINUS_X: LoadCombinationPushoverDirection
50
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_MINUS_Y: LoadCombinationPushoverDirection
51
+ LOAD_COMBINATION_PUSHOVER_DIRECTION_Y: LoadCombinationPushoverDirection
52
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_UNIFORM: LoadCombinationPushoverNormalizedDisplacements
53
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_MODAL_AUTOMATIC_MODAL_SHAPE: LoadCombinationPushoverNormalizedDisplacements
54
+ LOAD_COMBINATION_PUSHOVER_NORMALIZED_DISPLACEMENTS_MODAL_USER_SELECTED_MODAL_SHAPE: LoadCombinationPushoverNormalizedDisplacements
55
+
56
+ class LoadCombination(_message.Message):
57
+ __slots__ = ("no", "analysis_type", "design_situation", "user_defined_name_enabled", "name", "static_analysis_settings", "import_modal_analysis_load_case", "calculate_critical_load", "stability_analysis_settings", "consider_imperfection", "imperfection_case", "consider_initial_state", "initial_state_case", "consider_construction_stage", "construction_stage", "creep_loading_case", "sustained_load_enabled", "sustained_load", "sway_load_enabled", "sway_load", "structure_modification_enabled", "structure_modification", "to_solve", "comment", "load_duration", "items", "loading_start", "time_being_investigated", "is_generated", "generating_object_info", "initial_state_definition_type", "individual_factors_of_selected_objects_table", "geotechnical_analysis_reset_small_strain_history", "pushover_vertical_loads_case", "pushover_modal_analysis_from_load_case", "pushover_direction", "pushover_normalized_displacements", "pushover_mode_shape_number", "pushover_response_spectrum", "pushover_response_spectrum_scale_factor", "id_for_export_import", "metadata_for_export_import")
58
+ NO_FIELD_NUMBER: _ClassVar[int]
59
+ ANALYSIS_TYPE_FIELD_NUMBER: _ClassVar[int]
60
+ DESIGN_SITUATION_FIELD_NUMBER: _ClassVar[int]
61
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
62
+ NAME_FIELD_NUMBER: _ClassVar[int]
63
+ STATIC_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
64
+ IMPORT_MODAL_ANALYSIS_LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
65
+ CALCULATE_CRITICAL_LOAD_FIELD_NUMBER: _ClassVar[int]
66
+ STABILITY_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
67
+ CONSIDER_IMPERFECTION_FIELD_NUMBER: _ClassVar[int]
68
+ IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
69
+ CONSIDER_INITIAL_STATE_FIELD_NUMBER: _ClassVar[int]
70
+ INITIAL_STATE_CASE_FIELD_NUMBER: _ClassVar[int]
71
+ CONSIDER_CONSTRUCTION_STAGE_FIELD_NUMBER: _ClassVar[int]
72
+ CONSTRUCTION_STAGE_FIELD_NUMBER: _ClassVar[int]
73
+ CREEP_LOADING_CASE_FIELD_NUMBER: _ClassVar[int]
74
+ SUSTAINED_LOAD_ENABLED_FIELD_NUMBER: _ClassVar[int]
75
+ SUSTAINED_LOAD_FIELD_NUMBER: _ClassVar[int]
76
+ SWAY_LOAD_ENABLED_FIELD_NUMBER: _ClassVar[int]
77
+ SWAY_LOAD_FIELD_NUMBER: _ClassVar[int]
78
+ STRUCTURE_MODIFICATION_ENABLED_FIELD_NUMBER: _ClassVar[int]
79
+ STRUCTURE_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
80
+ TO_SOLVE_FIELD_NUMBER: _ClassVar[int]
81
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
82
+ LOAD_DURATION_FIELD_NUMBER: _ClassVar[int]
83
+ ITEMS_FIELD_NUMBER: _ClassVar[int]
84
+ LOADING_START_FIELD_NUMBER: _ClassVar[int]
85
+ TIME_BEING_INVESTIGATED_FIELD_NUMBER: _ClassVar[int]
86
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
87
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
88
+ INITIAL_STATE_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
89
+ INDIVIDUAL_FACTORS_OF_SELECTED_OBJECTS_TABLE_FIELD_NUMBER: _ClassVar[int]
90
+ GEOTECHNICAL_ANALYSIS_RESET_SMALL_STRAIN_HISTORY_FIELD_NUMBER: _ClassVar[int]
91
+ PUSHOVER_VERTICAL_LOADS_CASE_FIELD_NUMBER: _ClassVar[int]
92
+ PUSHOVER_MODAL_ANALYSIS_FROM_LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
93
+ PUSHOVER_DIRECTION_FIELD_NUMBER: _ClassVar[int]
94
+ PUSHOVER_NORMALIZED_DISPLACEMENTS_FIELD_NUMBER: _ClassVar[int]
95
+ PUSHOVER_MODE_SHAPE_NUMBER_FIELD_NUMBER: _ClassVar[int]
96
+ PUSHOVER_RESPONSE_SPECTRUM_FIELD_NUMBER: _ClassVar[int]
97
+ PUSHOVER_RESPONSE_SPECTRUM_SCALE_FACTOR_FIELD_NUMBER: _ClassVar[int]
98
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
99
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
100
+ no: int
101
+ analysis_type: LoadCombinationAnalysisType
102
+ design_situation: int
103
+ user_defined_name_enabled: bool
104
+ name: str
105
+ static_analysis_settings: int
106
+ import_modal_analysis_load_case: int
107
+ calculate_critical_load: bool
108
+ stability_analysis_settings: int
109
+ consider_imperfection: bool
110
+ imperfection_case: int
111
+ consider_initial_state: bool
112
+ initial_state_case: int
113
+ consider_construction_stage: bool
114
+ construction_stage: int
115
+ creep_loading_case: int
116
+ sustained_load_enabled: bool
117
+ sustained_load: int
118
+ sway_load_enabled: bool
119
+ sway_load: int
120
+ structure_modification_enabled: bool
121
+ structure_modification: int
122
+ to_solve: bool
123
+ comment: str
124
+ load_duration: str
125
+ items: ArrayOfLoadCombinationItems
126
+ loading_start: float
127
+ time_being_investigated: float
128
+ is_generated: bool
129
+ generating_object_info: str
130
+ initial_state_definition_type: LoadCombinationInitialStateDefinitionType
131
+ individual_factors_of_selected_objects_table: ArrayOfLoadCombinationIndividualFactorsOfSelectedObjectsTable
132
+ geotechnical_analysis_reset_small_strain_history: bool
133
+ pushover_vertical_loads_case: int
134
+ pushover_modal_analysis_from_load_case: int
135
+ pushover_direction: LoadCombinationPushoverDirection
136
+ pushover_normalized_displacements: LoadCombinationPushoverNormalizedDisplacements
137
+ pushover_mode_shape_number: int
138
+ pushover_response_spectrum: int
139
+ pushover_response_spectrum_scale_factor: float
140
+ id_for_export_import: str
141
+ metadata_for_export_import: str
142
+ def __init__(self, no: _Optional[int] = ..., analysis_type: _Optional[_Union[LoadCombinationAnalysisType, str]] = ..., design_situation: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., static_analysis_settings: _Optional[int] = ..., import_modal_analysis_load_case: _Optional[int] = ..., calculate_critical_load: bool = ..., stability_analysis_settings: _Optional[int] = ..., consider_imperfection: bool = ..., imperfection_case: _Optional[int] = ..., consider_initial_state: bool = ..., initial_state_case: _Optional[int] = ..., consider_construction_stage: bool = ..., construction_stage: _Optional[int] = ..., creep_loading_case: _Optional[int] = ..., sustained_load_enabled: bool = ..., sustained_load: _Optional[int] = ..., sway_load_enabled: bool = ..., sway_load: _Optional[int] = ..., structure_modification_enabled: bool = ..., structure_modification: _Optional[int] = ..., to_solve: bool = ..., comment: _Optional[str] = ..., load_duration: _Optional[str] = ..., items: _Optional[_Union[ArrayOfLoadCombinationItems, _Mapping]] = ..., loading_start: _Optional[float] = ..., time_being_investigated: _Optional[float] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., initial_state_definition_type: _Optional[_Union[LoadCombinationInitialStateDefinitionType, str]] = ..., individual_factors_of_selected_objects_table: _Optional[_Union[ArrayOfLoadCombinationIndividualFactorsOfSelectedObjectsTable, _Mapping]] = ..., geotechnical_analysis_reset_small_strain_history: bool = ..., pushover_vertical_loads_case: _Optional[int] = ..., pushover_modal_analysis_from_load_case: _Optional[int] = ..., pushover_direction: _Optional[_Union[LoadCombinationPushoverDirection, str]] = ..., pushover_normalized_displacements: _Optional[_Union[LoadCombinationPushoverNormalizedDisplacements, str]] = ..., pushover_mode_shape_number: _Optional[int] = ..., pushover_response_spectrum: _Optional[int] = ..., pushover_response_spectrum_scale_factor: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
143
+
144
+ class ArrayOfLoadCombinationItems(_message.Message):
145
+ __slots__ = ()
146
+ def __init__(self) -> None: ...
147
+
148
+ class ArrayOfLoadCombinationIndividualFactorsOfSelectedObjectsTable(_message.Message):
149
+ __slots__ = ()
150
+ def __init__(self) -> 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/modal_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/modal_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'\n5dlubal/api/rfem/loading/modal_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\xda\x10\n\x15ModalAnalysisSettings\x12\n\n\x02no\x18\x01 \x01(\x05\x12/\n\"acting_masses_about_axis_x_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12/\n\"acting_masses_about_axis_y_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12/\n\"acting_masses_about_axis_z_enabled\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x31\n$acting_masses_in_direction_x_enabled\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x31\n$acting_masses_in_direction_y_enabled\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x31\n$acting_masses_in_direction_z_enabled\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12/\n\"activate_minimum_initial_prestress\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12#\n\x16minimum_initial_strain\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x18\n\x0b\x61ssigned_to\x18\n \x01(\tH\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0b \x01(\tH\t\x88\x01\x01\x12Z\n\x0fsolution_method\x18\x0c \x01(\x0e\x32<.dlubal.api.rfem.loading.ModalAnalysisSettingsSolutionMethodH\n\x88\x01\x01\x12/\n\"find_eigenvectors_beyond_frequency\x18\r \x01(\x08H\x0b\x88\x01\x01\x12\x16\n\tfrequency\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x63\n\x14mass_conversion_type\x18\x0f \x01(\x0e\x32@.dlubal.api.rfem.loading.ModalAnalysisSettingsMassConversionTypeH\r\x88\x01\x01\x12[\n\x10mass_matrix_type\x18\x10 \x01(\x0e\x32<.dlubal.api.rfem.loading.ModalAnalysisSettingsMassMatrixTypeH\x0e\x88\x01\x01\x12\x66\n\x16number_of_modes_method\x18\x11 \x01(\x0e\x32\x41.dlubal.api.rfem.loading.ModalAnalysisSettingsNumberOfModesMethodH\x0f\x88\x01\x01\x12\'\n\x1amaxmimum_natural_frequency\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12(\n\x1b\x65\x66\x66\x65\x63tive_modal_mass_factor\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1c\n\x0fnumber_of_modes\x18\x14 \x01(\x05H\x12\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12\x11\n\x04name\x18\x16 \x01(\tH\x14\x88\x01\x01\x12X\n\x0eneglect_masses\x18\x17 \x01(\x0e\x32;.dlubal.api.rfem.loading.ModalAnalysisSettingsNeglectMassesH\x15\x88\x01\x01\x12\x8f\x01\n(neglect_masses_of_selected_objects_table\x18\x18 \x01(\x0b\x32X.dlubal.api.rfem.loading.ArrayOfModalAnalysisSettingsNeglectMassesOfSelectedObjectsTableH\x16\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1a \x01(\tH\x18\x88\x01\x01\x42%\n#_acting_masses_about_axis_x_enabledB%\n#_acting_masses_about_axis_y_enabledB%\n#_acting_masses_about_axis_z_enabledB\'\n%_acting_masses_in_direction_x_enabledB\'\n%_acting_masses_in_direction_y_enabledB\'\n%_acting_masses_in_direction_z_enabledB%\n#_activate_minimum_initial_prestressB\x19\n\x17_minimum_initial_strainB\x0e\n\x0c_assigned_toB\n\n\x08_commentB\x12\n\x10_solution_methodB%\n#_find_eigenvectors_beyond_frequencyB\x0c\n\n_frequencyB\x17\n\x15_mass_conversion_typeB\x13\n\x11_mass_matrix_typeB\x19\n\x17_number_of_modes_methodB\x1d\n\x1b_maxmimum_natural_frequencyB\x1e\n\x1c_effective_modal_mass_factorB\x12\n\x10_number_of_modesB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x11\n\x0f_neglect_massesB+\n)_neglect_masses_of_selected_objects_tableB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"A\n?ArrayOfModalAnalysisSettingsNeglectMassesOfSelectedObjectsTable*\xb3\x02\n#ModalAnalysisSettingsSolutionMethod\x12\x33\n/MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_LANCZOS\x10\x00\x12M\nIMODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_ROOT_OF_CHARACTERISTIC_POLYNOMIAL\x10\x01\x12H\nDMODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SHIFTED_INVERSE_POWER_METHOD\x10\x04\x12>\n:MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SUBSPACE_ITERATION\x10\x02*\x96\x02\n\'ModalAnalysisSettingsMassConversionType\x12\x46\nBMODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS\x10\x00\x12\x43\n?MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_FULL_LOADS_AS_MASS\x10\x02\x12^\nZMODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS_IN_DIRECTION_OF_GRAVITY\x10\x01*\x97\x02\n#ModalAnalysisSettingsMassMatrixType\x12\x35\n1MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL\x10\x00\x12\x37\n3MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_CONSISTENT\x10\x02\x12M\nIMODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL_WITH_TORSIONAL_ELEMENTS\x10\x01\x12\x31\n-MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_UNIT\x10\x03*\xfc\x01\n(ModalAnalysisSettingsNumberOfModesMethod\x12?\n;MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_USER_DEFINED\x10\x00\x12I\nEMODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_EFFECTIVE_MASS_FACTORS\x10\x01\x12\x44\n@MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_MAXIMUM_FREQUENCY\x10\x02*\xd9\x01\n\"ModalAnalysisSettingsNeglectMasses\x12@\n<MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_IN_ALL_FIXED_SUPPORTS\x10\x00\x12\x38\n4MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_NO_NEGLECTION\x10\x02\x12\x37\n3MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_USER_DEFINED\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.modal_analysis_settings_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MODALANALYSISSETTINGSSOLUTIONMETHOD']._serialized_start=2291
35
+ _globals['_MODALANALYSISSETTINGSSOLUTIONMETHOD']._serialized_end=2598
36
+ _globals['_MODALANALYSISSETTINGSMASSCONVERSIONTYPE']._serialized_start=2601
37
+ _globals['_MODALANALYSISSETTINGSMASSCONVERSIONTYPE']._serialized_end=2879
38
+ _globals['_MODALANALYSISSETTINGSMASSMATRIXTYPE']._serialized_start=2882
39
+ _globals['_MODALANALYSISSETTINGSMASSMATRIXTYPE']._serialized_end=3161
40
+ _globals['_MODALANALYSISSETTINGSNUMBEROFMODESMETHOD']._serialized_start=3164
41
+ _globals['_MODALANALYSISSETTINGSNUMBEROFMODESMETHOD']._serialized_end=3416
42
+ _globals['_MODALANALYSISSETTINGSNEGLECTMASSES']._serialized_start=3419
43
+ _globals['_MODALANALYSISSETTINGSNEGLECTMASSES']._serialized_end=3636
44
+ _globals['_MODALANALYSISSETTINGS']._serialized_start=83
45
+ _globals['_MODALANALYSISSETTINGS']._serialized_end=2221
46
+ _globals['_ARRAYOFMODALANALYSISSETTINGSNEGLECTMASSESOFSELECTEDOBJECTSTABLE']._serialized_start=2223
47
+ _globals['_ARRAYOFMODALANALYSISSETTINGSNEGLECTMASSESOFSELECTEDOBJECTSTABLE']._serialized_end=2288
48
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,115 @@
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 ModalAnalysisSettingsSolutionMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_LANCZOS: _ClassVar[ModalAnalysisSettingsSolutionMethod]
11
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_ROOT_OF_CHARACTERISTIC_POLYNOMIAL: _ClassVar[ModalAnalysisSettingsSolutionMethod]
12
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SHIFTED_INVERSE_POWER_METHOD: _ClassVar[ModalAnalysisSettingsSolutionMethod]
13
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SUBSPACE_ITERATION: _ClassVar[ModalAnalysisSettingsSolutionMethod]
14
+
15
+ class ModalAnalysisSettingsMassConversionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS: _ClassVar[ModalAnalysisSettingsMassConversionType]
18
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_FULL_LOADS_AS_MASS: _ClassVar[ModalAnalysisSettingsMassConversionType]
19
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS_IN_DIRECTION_OF_GRAVITY: _ClassVar[ModalAnalysisSettingsMassConversionType]
20
+
21
+ class ModalAnalysisSettingsMassMatrixType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
22
+ __slots__ = ()
23
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL: _ClassVar[ModalAnalysisSettingsMassMatrixType]
24
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_CONSISTENT: _ClassVar[ModalAnalysisSettingsMassMatrixType]
25
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL_WITH_TORSIONAL_ELEMENTS: _ClassVar[ModalAnalysisSettingsMassMatrixType]
26
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_UNIT: _ClassVar[ModalAnalysisSettingsMassMatrixType]
27
+
28
+ class ModalAnalysisSettingsNumberOfModesMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
29
+ __slots__ = ()
30
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_USER_DEFINED: _ClassVar[ModalAnalysisSettingsNumberOfModesMethod]
31
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_EFFECTIVE_MASS_FACTORS: _ClassVar[ModalAnalysisSettingsNumberOfModesMethod]
32
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_MAXIMUM_FREQUENCY: _ClassVar[ModalAnalysisSettingsNumberOfModesMethod]
33
+
34
+ class ModalAnalysisSettingsNeglectMasses(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_IN_ALL_FIXED_SUPPORTS: _ClassVar[ModalAnalysisSettingsNeglectMasses]
37
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_NO_NEGLECTION: _ClassVar[ModalAnalysisSettingsNeglectMasses]
38
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_USER_DEFINED: _ClassVar[ModalAnalysisSettingsNeglectMasses]
39
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_LANCZOS: ModalAnalysisSettingsSolutionMethod
40
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_ROOT_OF_CHARACTERISTIC_POLYNOMIAL: ModalAnalysisSettingsSolutionMethod
41
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SHIFTED_INVERSE_POWER_METHOD: ModalAnalysisSettingsSolutionMethod
42
+ MODAL_ANALYSIS_SETTINGS_SOLUTION_METHOD_SUBSPACE_ITERATION: ModalAnalysisSettingsSolutionMethod
43
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS: ModalAnalysisSettingsMassConversionType
44
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_FULL_LOADS_AS_MASS: ModalAnalysisSettingsMassConversionType
45
+ MODAL_ANALYSIS_SETTINGS_MASS_CONVERSION_TYPE_Z_COMPONENTS_OF_LOADS_IN_DIRECTION_OF_GRAVITY: ModalAnalysisSettingsMassConversionType
46
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL: ModalAnalysisSettingsMassMatrixType
47
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_CONSISTENT: ModalAnalysisSettingsMassMatrixType
48
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_DIAGONAL_WITH_TORSIONAL_ELEMENTS: ModalAnalysisSettingsMassMatrixType
49
+ MODAL_ANALYSIS_SETTINGS_MASS_MATRIX_TYPE_UNIT: ModalAnalysisSettingsMassMatrixType
50
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_USER_DEFINED: ModalAnalysisSettingsNumberOfModesMethod
51
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_EFFECTIVE_MASS_FACTORS: ModalAnalysisSettingsNumberOfModesMethod
52
+ MODAL_ANALYSIS_SETTINGS_NUMBER_OF_MODES_METHOD_MAXIMUM_FREQUENCY: ModalAnalysisSettingsNumberOfModesMethod
53
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_IN_ALL_FIXED_SUPPORTS: ModalAnalysisSettingsNeglectMasses
54
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_NO_NEGLECTION: ModalAnalysisSettingsNeglectMasses
55
+ MODAL_ANALYSIS_SETTINGS_NEGLECT_MASSES_USER_DEFINED: ModalAnalysisSettingsNeglectMasses
56
+
57
+ class ModalAnalysisSettings(_message.Message):
58
+ __slots__ = ("no", "acting_masses_about_axis_x_enabled", "acting_masses_about_axis_y_enabled", "acting_masses_about_axis_z_enabled", "acting_masses_in_direction_x_enabled", "acting_masses_in_direction_y_enabled", "acting_masses_in_direction_z_enabled", "activate_minimum_initial_prestress", "minimum_initial_strain", "assigned_to", "comment", "solution_method", "find_eigenvectors_beyond_frequency", "frequency", "mass_conversion_type", "mass_matrix_type", "number_of_modes_method", "maxmimum_natural_frequency", "effective_modal_mass_factor", "number_of_modes", "user_defined_name_enabled", "name", "neglect_masses", "neglect_masses_of_selected_objects_table", "id_for_export_import", "metadata_for_export_import")
59
+ NO_FIELD_NUMBER: _ClassVar[int]
60
+ ACTING_MASSES_ABOUT_AXIS_X_ENABLED_FIELD_NUMBER: _ClassVar[int]
61
+ ACTING_MASSES_ABOUT_AXIS_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
62
+ ACTING_MASSES_ABOUT_AXIS_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
63
+ ACTING_MASSES_IN_DIRECTION_X_ENABLED_FIELD_NUMBER: _ClassVar[int]
64
+ ACTING_MASSES_IN_DIRECTION_Y_ENABLED_FIELD_NUMBER: _ClassVar[int]
65
+ ACTING_MASSES_IN_DIRECTION_Z_ENABLED_FIELD_NUMBER: _ClassVar[int]
66
+ ACTIVATE_MINIMUM_INITIAL_PRESTRESS_FIELD_NUMBER: _ClassVar[int]
67
+ MINIMUM_INITIAL_STRAIN_FIELD_NUMBER: _ClassVar[int]
68
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
69
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
70
+ SOLUTION_METHOD_FIELD_NUMBER: _ClassVar[int]
71
+ FIND_EIGENVECTORS_BEYOND_FREQUENCY_FIELD_NUMBER: _ClassVar[int]
72
+ FREQUENCY_FIELD_NUMBER: _ClassVar[int]
73
+ MASS_CONVERSION_TYPE_FIELD_NUMBER: _ClassVar[int]
74
+ MASS_MATRIX_TYPE_FIELD_NUMBER: _ClassVar[int]
75
+ NUMBER_OF_MODES_METHOD_FIELD_NUMBER: _ClassVar[int]
76
+ MAXMIMUM_NATURAL_FREQUENCY_FIELD_NUMBER: _ClassVar[int]
77
+ EFFECTIVE_MODAL_MASS_FACTOR_FIELD_NUMBER: _ClassVar[int]
78
+ NUMBER_OF_MODES_FIELD_NUMBER: _ClassVar[int]
79
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
80
+ NAME_FIELD_NUMBER: _ClassVar[int]
81
+ NEGLECT_MASSES_FIELD_NUMBER: _ClassVar[int]
82
+ NEGLECT_MASSES_OF_SELECTED_OBJECTS_TABLE_FIELD_NUMBER: _ClassVar[int]
83
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
84
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
85
+ no: int
86
+ acting_masses_about_axis_x_enabled: bool
87
+ acting_masses_about_axis_y_enabled: bool
88
+ acting_masses_about_axis_z_enabled: bool
89
+ acting_masses_in_direction_x_enabled: bool
90
+ acting_masses_in_direction_y_enabled: bool
91
+ acting_masses_in_direction_z_enabled: bool
92
+ activate_minimum_initial_prestress: bool
93
+ minimum_initial_strain: float
94
+ assigned_to: str
95
+ comment: str
96
+ solution_method: ModalAnalysisSettingsSolutionMethod
97
+ find_eigenvectors_beyond_frequency: bool
98
+ frequency: float
99
+ mass_conversion_type: ModalAnalysisSettingsMassConversionType
100
+ mass_matrix_type: ModalAnalysisSettingsMassMatrixType
101
+ number_of_modes_method: ModalAnalysisSettingsNumberOfModesMethod
102
+ maxmimum_natural_frequency: float
103
+ effective_modal_mass_factor: float
104
+ number_of_modes: int
105
+ user_defined_name_enabled: bool
106
+ name: str
107
+ neglect_masses: ModalAnalysisSettingsNeglectMasses
108
+ neglect_masses_of_selected_objects_table: ArrayOfModalAnalysisSettingsNeglectMassesOfSelectedObjectsTable
109
+ id_for_export_import: str
110
+ metadata_for_export_import: str
111
+ def __init__(self, no: _Optional[int] = ..., acting_masses_about_axis_x_enabled: bool = ..., acting_masses_about_axis_y_enabled: bool = ..., acting_masses_about_axis_z_enabled: bool = ..., acting_masses_in_direction_x_enabled: bool = ..., acting_masses_in_direction_y_enabled: bool = ..., acting_masses_in_direction_z_enabled: bool = ..., activate_minimum_initial_prestress: bool = ..., minimum_initial_strain: _Optional[float] = ..., assigned_to: _Optional[str] = ..., comment: _Optional[str] = ..., solution_method: _Optional[_Union[ModalAnalysisSettingsSolutionMethod, str]] = ..., find_eigenvectors_beyond_frequency: bool = ..., frequency: _Optional[float] = ..., mass_conversion_type: _Optional[_Union[ModalAnalysisSettingsMassConversionType, str]] = ..., mass_matrix_type: _Optional[_Union[ModalAnalysisSettingsMassMatrixType, str]] = ..., number_of_modes_method: _Optional[_Union[ModalAnalysisSettingsNumberOfModesMethod, str]] = ..., maxmimum_natural_frequency: _Optional[float] = ..., effective_modal_mass_factor: _Optional[float] = ..., number_of_modes: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., neglect_masses: _Optional[_Union[ModalAnalysisSettingsNeglectMasses, str]] = ..., neglect_masses_of_selected_objects_table: _Optional[_Union[ArrayOfModalAnalysisSettingsNeglectMassesOfSelectedObjectsTable, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
112
+
113
+ class ArrayOfModalAnalysisSettingsNeglectMassesOfSelectedObjectsTable(_message.Message):
114
+ __slots__ = ()
115
+ 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/optimization_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/optimization_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'\n3dlubal/api/rfem/loading/optimization_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\x81\x07\n\x14OptimizationSettings\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06\x61\x63tive\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\\\n\x11target_value_type\x18\x05 \x01(\x0e\x32<.dlubal.api.rfem.loading.OptimizationSettingsTargetValueTypeH\x03\x88\x01\x01\x12$\n\x17target_global_parameter\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12W\n\x0eoptimizer_type\x18\x07 \x01(\x0e\x32:.dlubal.api.rfem.loading.OptimizationSettingsOptimizerTypeH\x05\x88\x01\x01\x12!\n\x14percent_of_mutations\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12s\n\x19optimization_values_table\x18\t \x01(\x0b\x32K.dlubal.api.rfem.loading.ArrayOfOptimizationSettingsOptimizationValuesTableH\x07\x88\x01\x01\x12&\n\x19total_number_of_mutations\x18\n \x01(\x05H\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0b \x01(\tH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0c \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\r \x01(\tH\x0b\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\t\n\x07_activeB\x14\n\x12_target_value_typeB\x1a\n\x18_target_global_parameterB\x11\n\x0f_optimizer_typeB\x17\n\x15_percent_of_mutationsB\x1c\n\x1a_optimization_values_tableB\x1c\n\x1a_total_number_of_mutationsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"4\n2ArrayOfOptimizationSettingsOptimizationValuesTable*\xf0\x04\n#OptimizationSettingsTargetValueType\x12<\n8OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_TOTAL_WEIGHT\x10\x00\x12@\n<OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MAX_GLOBAL_PARAMETER\x10\x08\x12=\n9OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_CO2_EMISSIONS\x10\x06\x12\x34\n0OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_COST\x10\x05\x12@\n<OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_GLOBAL_PARAMETER\x10\x07\x12\x42\n>OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_MEMBER_DEFORMATION\x10\x03\x12\x41\n=OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_NODAL_DEFORMATION\x10\x02\x12\x43\n?OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_SURFACE_DEFORMATION\x10\x04\x12\x46\nBOPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_VECTORIAL_DISPLACEMENT\x10\x01*\x84\x02\n!OptimizationSettingsOptimizerType\x12\x36\n2OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ALL_MUTATIONS\x10\x00\x12\x33\n/OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ANT_COLONY\x10\x03\x12\x37\n3OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_PARTICLE_SWARM\x10\x02\x12\x39\n5OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_RANDOM_MUTATIONS\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.optimization_settings_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_OPTIMIZATIONSETTINGSTARGETVALUETYPE']._serialized_start=1035
35
+ _globals['_OPTIMIZATIONSETTINGSTARGETVALUETYPE']._serialized_end=1659
36
+ _globals['_OPTIMIZATIONSETTINGSOPTIMIZERTYPE']._serialized_start=1662
37
+ _globals['_OPTIMIZATIONSETTINGSOPTIMIZERTYPE']._serialized_end=1922
38
+ _globals['_OPTIMIZATIONSETTINGS']._serialized_start=81
39
+ _globals['_OPTIMIZATIONSETTINGS']._serialized_end=978
40
+ _globals['_ARRAYOFOPTIMIZATIONSETTINGSOPTIMIZATIONVALUESTABLE']._serialized_start=980
41
+ _globals['_ARRAYOFOPTIMIZATIONSETTINGSOPTIMIZATIONVALUESTABLE']._serialized_end=1032
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,72 @@
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 OptimizationSettingsTargetValueType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_TOTAL_WEIGHT: _ClassVar[OptimizationSettingsTargetValueType]
11
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MAX_GLOBAL_PARAMETER: _ClassVar[OptimizationSettingsTargetValueType]
12
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_CO2_EMISSIONS: _ClassVar[OptimizationSettingsTargetValueType]
13
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_COST: _ClassVar[OptimizationSettingsTargetValueType]
14
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_GLOBAL_PARAMETER: _ClassVar[OptimizationSettingsTargetValueType]
15
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_MEMBER_DEFORMATION: _ClassVar[OptimizationSettingsTargetValueType]
16
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_NODAL_DEFORMATION: _ClassVar[OptimizationSettingsTargetValueType]
17
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_SURFACE_DEFORMATION: _ClassVar[OptimizationSettingsTargetValueType]
18
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_VECTORIAL_DISPLACEMENT: _ClassVar[OptimizationSettingsTargetValueType]
19
+
20
+ class OptimizationSettingsOptimizerType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ALL_MUTATIONS: _ClassVar[OptimizationSettingsOptimizerType]
23
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ANT_COLONY: _ClassVar[OptimizationSettingsOptimizerType]
24
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_PARTICLE_SWARM: _ClassVar[OptimizationSettingsOptimizerType]
25
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_RANDOM_MUTATIONS: _ClassVar[OptimizationSettingsOptimizerType]
26
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_TOTAL_WEIGHT: OptimizationSettingsTargetValueType
27
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MAX_GLOBAL_PARAMETER: OptimizationSettingsTargetValueType
28
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_CO2_EMISSIONS: OptimizationSettingsTargetValueType
29
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_COST: OptimizationSettingsTargetValueType
30
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_GLOBAL_PARAMETER: OptimizationSettingsTargetValueType
31
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_MEMBER_DEFORMATION: OptimizationSettingsTargetValueType
32
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_NODAL_DEFORMATION: OptimizationSettingsTargetValueType
33
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_SURFACE_DEFORMATION: OptimizationSettingsTargetValueType
34
+ OPTIMIZATION_SETTINGS_TARGET_VALUE_TYPE_MIN_VECTORIAL_DISPLACEMENT: OptimizationSettingsTargetValueType
35
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ALL_MUTATIONS: OptimizationSettingsOptimizerType
36
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_ANT_COLONY: OptimizationSettingsOptimizerType
37
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_PARTICLE_SWARM: OptimizationSettingsOptimizerType
38
+ OPTIMIZATION_SETTINGS_OPTIMIZER_TYPE_RANDOM_MUTATIONS: OptimizationSettingsOptimizerType
39
+
40
+ class OptimizationSettings(_message.Message):
41
+ __slots__ = ("no", "user_defined_name_enabled", "name", "active", "target_value_type", "target_global_parameter", "optimizer_type", "percent_of_mutations", "optimization_values_table", "total_number_of_mutations", "comment", "id_for_export_import", "metadata_for_export_import")
42
+ NO_FIELD_NUMBER: _ClassVar[int]
43
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
44
+ NAME_FIELD_NUMBER: _ClassVar[int]
45
+ ACTIVE_FIELD_NUMBER: _ClassVar[int]
46
+ TARGET_VALUE_TYPE_FIELD_NUMBER: _ClassVar[int]
47
+ TARGET_GLOBAL_PARAMETER_FIELD_NUMBER: _ClassVar[int]
48
+ OPTIMIZER_TYPE_FIELD_NUMBER: _ClassVar[int]
49
+ PERCENT_OF_MUTATIONS_FIELD_NUMBER: _ClassVar[int]
50
+ OPTIMIZATION_VALUES_TABLE_FIELD_NUMBER: _ClassVar[int]
51
+ TOTAL_NUMBER_OF_MUTATIONS_FIELD_NUMBER: _ClassVar[int]
52
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
53
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
54
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
+ no: int
56
+ user_defined_name_enabled: bool
57
+ name: str
58
+ active: bool
59
+ target_value_type: OptimizationSettingsTargetValueType
60
+ target_global_parameter: int
61
+ optimizer_type: OptimizationSettingsOptimizerType
62
+ percent_of_mutations: float
63
+ optimization_values_table: ArrayOfOptimizationSettingsOptimizationValuesTable
64
+ total_number_of_mutations: int
65
+ comment: str
66
+ id_for_export_import: str
67
+ metadata_for_export_import: str
68
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., active: bool = ..., target_value_type: _Optional[_Union[OptimizationSettingsTargetValueType, str]] = ..., target_global_parameter: _Optional[int] = ..., optimizer_type: _Optional[_Union[OptimizationSettingsOptimizerType, str]] = ..., percent_of_mutations: _Optional[float] = ..., optimization_values_table: _Optional[_Union[ArrayOfOptimizationSettingsOptimizationValuesTable, _Mapping]] = ..., total_number_of_mutations: _Optional[int] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
69
+
70
+ class ArrayOfOptimizationSettingsOptimizationValuesTable(_message.Message):
71
+ __slots__ = ()
72
+ 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/pushover_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/pushover_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'\n8dlubal/api/rfem/loading/pushover_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\x87\t\n\x18PushoverAnalysisSettings\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x61ssigned_to\x18\x05 \x01(\tH\x03\x88\x01\x01\x12,\n\x1f\x63onsidering_iterative_procedure\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x38\n+difference_treshold_for_iterative_procedure\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12g\n\x15\x65nd_of_capacity_curve\x18\x08 \x01(\x0e\x32\x43.dlubal.api.rfem.loading.PushoverAnalysisSettingsEndOfCapacityCurveH\x06\x88\x01\x01\x12\x1e\n\x11limit_deformation\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x34\n\'automatic_selection_of_the_highest_node\x18\n \x01(\x08H\x08\x88\x01\x01\x12\x19\n\x0c\x63ontrol_node\x18\x0b \x01(\x05H\t\x88\x01\x01\x12 \n\x13initial_load_factor\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\"\n\x15load_factor_increment\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x32\n%refinement_of_the_last_load_increment\x18\x0e \x01(\x05H\x0c\x88\x01\x01\x12.\n!maximum_number_of_load_increments\x18\x0f \x01(\x05H\r\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\x0e\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\x0f\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x0e\n\x0c_assigned_toB\"\n _considering_iterative_procedureB.\n,_difference_treshold_for_iterative_procedureB\x18\n\x16_end_of_capacity_curveB\x14\n\x12_limit_deformationB*\n(_automatic_selection_of_the_highest_nodeB\x0f\n\r_control_nodeB\x16\n\x14_initial_load_factorB\x18\n\x16_load_factor_incrementB(\n&_refinement_of_the_last_load_incrementB$\n\"_maximum_number_of_load_incrementsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xb1\x01\n*PushoverAnalysisSettingsEndOfCapacityCurve\x12\x46\nBPUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_LIMIT_DEFORMATION\x10\x00\x12;\n7PUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_COLAPS\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.pushover_analysis_settings_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_PUSHOVERANALYSISSETTINGSENDOFCAPACITYCURVE']._serialized_start=1248
35
+ _globals['_PUSHOVERANALYSISSETTINGSENDOFCAPACITYCURVE']._serialized_end=1425
36
+ _globals['_PUSHOVERANALYSISSETTINGS']._serialized_start=86
37
+ _globals['_PUSHOVERANALYSISSETTINGS']._serialized_end=1245
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,51 @@
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 PushoverAnalysisSettingsEndOfCapacityCurve(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ PUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_LIMIT_DEFORMATION: _ClassVar[PushoverAnalysisSettingsEndOfCapacityCurve]
11
+ PUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_COLAPS: _ClassVar[PushoverAnalysisSettingsEndOfCapacityCurve]
12
+ PUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_LIMIT_DEFORMATION: PushoverAnalysisSettingsEndOfCapacityCurve
13
+ PUSHOVER_ANALYSIS_SETTINGS_END_OF_CAPACITY_CURVE_COLAPS: PushoverAnalysisSettingsEndOfCapacityCurve
14
+
15
+ class PushoverAnalysisSettings(_message.Message):
16
+ __slots__ = ("no", "user_defined_name_enabled", "name", "comment", "assigned_to", "considering_iterative_procedure", "difference_treshold_for_iterative_procedure", "end_of_capacity_curve", "limit_deformation", "automatic_selection_of_the_highest_node", "control_node", "initial_load_factor", "load_factor_increment", "refinement_of_the_last_load_increment", "maximum_number_of_load_increments", "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
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
21
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
22
+ CONSIDERING_ITERATIVE_PROCEDURE_FIELD_NUMBER: _ClassVar[int]
23
+ DIFFERENCE_TRESHOLD_FOR_ITERATIVE_PROCEDURE_FIELD_NUMBER: _ClassVar[int]
24
+ END_OF_CAPACITY_CURVE_FIELD_NUMBER: _ClassVar[int]
25
+ LIMIT_DEFORMATION_FIELD_NUMBER: _ClassVar[int]
26
+ AUTOMATIC_SELECTION_OF_THE_HIGHEST_NODE_FIELD_NUMBER: _ClassVar[int]
27
+ CONTROL_NODE_FIELD_NUMBER: _ClassVar[int]
28
+ INITIAL_LOAD_FACTOR_FIELD_NUMBER: _ClassVar[int]
29
+ LOAD_FACTOR_INCREMENT_FIELD_NUMBER: _ClassVar[int]
30
+ REFINEMENT_OF_THE_LAST_LOAD_INCREMENT_FIELD_NUMBER: _ClassVar[int]
31
+ MAXIMUM_NUMBER_OF_LOAD_INCREMENTS_FIELD_NUMBER: _ClassVar[int]
32
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
33
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
34
+ no: int
35
+ user_defined_name_enabled: bool
36
+ name: str
37
+ comment: str
38
+ assigned_to: str
39
+ considering_iterative_procedure: bool
40
+ difference_treshold_for_iterative_procedure: float
41
+ end_of_capacity_curve: PushoverAnalysisSettingsEndOfCapacityCurve
42
+ limit_deformation: float
43
+ automatic_selection_of_the_highest_node: bool
44
+ control_node: int
45
+ initial_load_factor: float
46
+ load_factor_increment: float
47
+ refinement_of_the_last_load_increment: int
48
+ maximum_number_of_load_increments: int
49
+ id_for_export_import: str
50
+ metadata_for_export_import: str
51
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., assigned_to: _Optional[str] = ..., considering_iterative_procedure: bool = ..., difference_treshold_for_iterative_procedure: _Optional[float] = ..., end_of_capacity_curve: _Optional[_Union[PushoverAnalysisSettingsEndOfCapacityCurve, str]] = ..., limit_deformation: _Optional[float] = ..., automatic_selection_of_the_highest_node: bool = ..., control_node: _Optional[int] = ..., initial_load_factor: _Optional[float] = ..., load_factor_increment: _Optional[float] = ..., refinement_of_the_last_load_increment: _Optional[int] = ..., maximum_number_of_load_increments: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loading/relationship_between_load_cases.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/relationship_between_load_cases.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/relationship_between_load_cases.proto\x12\x17\x64lubal.api.rfem.loading\"\xdf\x04\n\x1cRelationshipBetweenLoadCases\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\x12q\n\x14inclusive_load_cases\x18\x04 \x01(\x0b\x32N.dlubal.api.rfem.loading.ArrayOfRelationshipBetweenLoadCasesInclusiveLoadCasesH\x02\x88\x01\x01\x12q\n\x14\x65xclusive_load_cases\x18\x05 \x01(\x0b\x32N.dlubal.api.rfem.loading.ArrayOfRelationshipBetweenLoadCasesExclusiveLoadCasesH\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x13\n\x0b\x61ssigned_to\x18\x07 \x03(\x05\x12!\n\x14id_for_export_import\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x17\n\x15_inclusive_load_casesB\x17\n\x15_exclusive_load_casesB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"7\n5ArrayOfRelationshipBetweenLoadCasesInclusiveLoadCases\"7\n5ArrayOfRelationshipBetweenLoadCasesExclusiveLoadCasesb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.relationship_between_load_cases_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_RELATIONSHIPBETWEENLOADCASES']._serialized_start=91
35
+ _globals['_RELATIONSHIPBETWEENLOADCASES']._serialized_end=698
36
+ _globals['_ARRAYOFRELATIONSHIPBETWEENLOADCASESINCLUSIVELOADCASES']._serialized_start=700
37
+ _globals['_ARRAYOFRELATIONSHIPBETWEENLOADCASESINCLUSIVELOADCASES']._serialized_end=755
38
+ _globals['_ARRAYOFRELATIONSHIPBETWEENLOADCASESEXCLUSIVELOADCASES']._serialized_start=757
39
+ _globals['_ARRAYOFRELATIONSHIPBETWEENLOADCASESEXCLUSIVELOADCASES']._serialized_end=812
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class RelationshipBetweenLoadCases(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "inclusive_load_cases", "exclusive_load_cases", "comment", "assigned_to", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ INCLUSIVE_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
14
+ EXCLUSIVE_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
15
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
16
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
17
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
18
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
19
+ no: int
20
+ user_defined_name_enabled: bool
21
+ name: str
22
+ inclusive_load_cases: ArrayOfRelationshipBetweenLoadCasesInclusiveLoadCases
23
+ exclusive_load_cases: ArrayOfRelationshipBetweenLoadCasesExclusiveLoadCases
24
+ comment: str
25
+ assigned_to: _containers.RepeatedScalarFieldContainer[int]
26
+ id_for_export_import: str
27
+ metadata_for_export_import: str
28
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., inclusive_load_cases: _Optional[_Union[ArrayOfRelationshipBetweenLoadCasesInclusiveLoadCases, _Mapping]] = ..., exclusive_load_cases: _Optional[_Union[ArrayOfRelationshipBetweenLoadCasesExclusiveLoadCases, _Mapping]] = ..., comment: _Optional[str] = ..., assigned_to: _Optional[_Iterable[int]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
29
+
30
+ class ArrayOfRelationshipBetweenLoadCasesInclusiveLoadCases(_message.Message):
31
+ __slots__ = ()
32
+ def __init__(self) -> None: ...
33
+
34
+ class ArrayOfRelationshipBetweenLoadCasesExclusiveLoadCases(_message.Message):
35
+ __slots__ = ()
36
+ def __init__(self) -> None: ...