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,2 @@
1
+ from .concrete_design_sls_configuration_pb2 import *
2
+ from .concrete_design_uls_configuration_pb2 import *
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration.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/concrete_design_objects/concrete_design_sls_configuration.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'\nOdlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration.proto\x12\'dlubal.api.rfem.concrete_design_objects\"\x93\x07\n\x1e\x43oncreteDesignSlsConfiguration\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\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12%\n\x18\x61ssigned_to_all_surfaces\x18\x08 \x01(\x08H\x04\x88\x01\x01\x12\x1c\n\x14\x61ssigned_to_surfaces\x18\t \x03(\x05\x12)\n\x1c\x61ssigned_to_all_surface_sets\x18\n \x01(\x08H\x05\x88\x01\x01\x12 \n\x18\x61ssigned_to_surface_sets\x18\x0b \x03(\x05\x12\"\n\x15\x61ssigned_to_all_nodes\x18\x0c \x01(\x08H\x06\x88\x01\x01\x12\x19\n\x11\x61ssigned_to_nodes\x18\r \x03(\x05\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\x07\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0f \x01(\x08H\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x0b\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\x1b\n\x19_assigned_to_all_surfacesB\x1f\n\x1d_assigned_to_all_surface_setsB\x18\n\x16_assigned_to_all_nodesB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.concrete_design_objects.concrete_design_sls_configuration_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CONCRETEDESIGNSLSCONFIGURATION']._serialized_start=125
35
+ _globals['_CONCRETEDESIGNSLSCONFIGURATION']._serialized_end=1040
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,46 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class ConcreteDesignSlsConfiguration(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "assigned_to_all_surfaces", "assigned_to_surfaces", "assigned_to_all_surface_sets", "assigned_to_surface_sets", "assigned_to_all_nodes", "assigned_to_nodes", "generating_object_info", "is_generated", "comment", "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
+ ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
14
+ ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
15
+ ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
16
+ ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
17
+ ASSIGNED_TO_ALL_SURFACES_FIELD_NUMBER: _ClassVar[int]
18
+ ASSIGNED_TO_SURFACES_FIELD_NUMBER: _ClassVar[int]
19
+ ASSIGNED_TO_ALL_SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
20
+ ASSIGNED_TO_SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
21
+ ASSIGNED_TO_ALL_NODES_FIELD_NUMBER: _ClassVar[int]
22
+ ASSIGNED_TO_NODES_FIELD_NUMBER: _ClassVar[int]
23
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
24
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
25
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
26
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
27
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
28
+ no: int
29
+ user_defined_name_enabled: bool
30
+ name: str
31
+ assigned_to_all_members: bool
32
+ assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
33
+ assigned_to_all_member_sets: bool
34
+ assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
35
+ assigned_to_all_surfaces: bool
36
+ assigned_to_surfaces: _containers.RepeatedScalarFieldContainer[int]
37
+ assigned_to_all_surface_sets: bool
38
+ assigned_to_surface_sets: _containers.RepeatedScalarFieldContainer[int]
39
+ assigned_to_all_nodes: bool
40
+ assigned_to_nodes: _containers.RepeatedScalarFieldContainer[int]
41
+ generating_object_info: str
42
+ is_generated: bool
43
+ comment: str
44
+ id_for_export_import: str
45
+ metadata_for_export_import: str
46
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., assigned_to_all_surfaces: bool = ..., assigned_to_surfaces: _Optional[_Iterable[int]] = ..., assigned_to_all_surface_sets: bool = ..., assigned_to_surface_sets: _Optional[_Iterable[int]] = ..., assigned_to_all_nodes: bool = ..., assigned_to_nodes: _Optional[_Iterable[int]] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration.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/concrete_design_objects/concrete_design_uls_configuration.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'\nOdlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration.proto\x12\'dlubal.api.rfem.concrete_design_objects\"\x93\x07\n\x1e\x43oncreteDesignUlsConfiguration\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\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12%\n\x18\x61ssigned_to_all_surfaces\x18\x08 \x01(\x08H\x04\x88\x01\x01\x12\x1c\n\x14\x61ssigned_to_surfaces\x18\t \x03(\x05\x12)\n\x1c\x61ssigned_to_all_surface_sets\x18\n \x01(\x08H\x05\x88\x01\x01\x12 \n\x18\x61ssigned_to_surface_sets\x18\x0b \x03(\x05\x12\"\n\x15\x61ssigned_to_all_nodes\x18\x0c \x01(\x08H\x06\x88\x01\x01\x12\x19\n\x11\x61ssigned_to_nodes\x18\r \x03(\x05\x12#\n\x16generating_object_info\x18\x0e \x01(\tH\x07\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0f \x01(\x08H\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x0b\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\x1b\n\x19_assigned_to_all_surfacesB\x1f\n\x1d_assigned_to_all_surface_setsB\x18\n\x16_assigned_to_all_nodesB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.concrete_design_objects.concrete_design_uls_configuration_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CONCRETEDESIGNULSCONFIGURATION']._serialized_start=125
35
+ _globals['_CONCRETEDESIGNULSCONFIGURATION']._serialized_end=1040
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,46 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class ConcreteDesignUlsConfiguration(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "assigned_to_all_surfaces", "assigned_to_surfaces", "assigned_to_all_surface_sets", "assigned_to_surface_sets", "assigned_to_all_nodes", "assigned_to_nodes", "generating_object_info", "is_generated", "comment", "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
+ ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
14
+ ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
15
+ ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
16
+ ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
17
+ ASSIGNED_TO_ALL_SURFACES_FIELD_NUMBER: _ClassVar[int]
18
+ ASSIGNED_TO_SURFACES_FIELD_NUMBER: _ClassVar[int]
19
+ ASSIGNED_TO_ALL_SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
20
+ ASSIGNED_TO_SURFACE_SETS_FIELD_NUMBER: _ClassVar[int]
21
+ ASSIGNED_TO_ALL_NODES_FIELD_NUMBER: _ClassVar[int]
22
+ ASSIGNED_TO_NODES_FIELD_NUMBER: _ClassVar[int]
23
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
24
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
25
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
26
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
27
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
28
+ no: int
29
+ user_defined_name_enabled: bool
30
+ name: str
31
+ assigned_to_all_members: bool
32
+ assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
33
+ assigned_to_all_member_sets: bool
34
+ assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
35
+ assigned_to_all_surfaces: bool
36
+ assigned_to_surfaces: _containers.RepeatedScalarFieldContainer[int]
37
+ assigned_to_all_surface_sets: bool
38
+ assigned_to_surface_sets: _containers.RepeatedScalarFieldContainer[int]
39
+ assigned_to_all_nodes: bool
40
+ assigned_to_nodes: _containers.RepeatedScalarFieldContainer[int]
41
+ generating_object_info: str
42
+ is_generated: bool
43
+ comment: str
44
+ id_for_export_import: str
45
+ metadata_for_export_import: str
46
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., assigned_to_all_surfaces: bool = ..., assigned_to_surfaces: _Optional[_Iterable[int]] = ..., assigned_to_all_surface_sets: bool = ..., assigned_to_surface_sets: _Optional[_Iterable[int]] = ..., assigned_to_all_nodes: bool = ..., assigned_to_nodes: _Optional[_Iterable[int]] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1 @@
1
+ from .construction_stage_pb2 import *
@@ -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/construction_stages/construction_stage.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/construction_stages/construction_stage.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/construction_stages/construction_stage.proto\x12#dlubal.api.rfem.construction_stages\"\xa1\"\n\x11\x43onstructionStage\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\x15\n\x08to_solve\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12+\n\x1e\x63ontinue_on_construction_stage\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x17\n\nstart_time\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x17\n\nstart_date\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x15\n\x08\x65nd_time\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08\x65nd_date\x18\t \x01(\tH\x07\x88\x01\x01\x12\x15\n\x08\x64uration\x18\n \x01(\x01H\x08\x88\x01\x01\x12Z\n\x07loading\x18\x0b \x01(\x0b\x32\x44.dlubal.api.rfem.construction_stages.ArrayOfConstructionStageLoadingH\t\x88\x01\x01\x12n\n\x15generate_combinations\x18\x0c \x01(\x0e\x32J.dlubal.api.rfem.construction_stages.ConstructionStageGenerateCombinationsH\n\x88\x01\x01\x12%\n\x18static_analysis_settings\x18\r \x01(\x05H\x0b\x88\x01\x01\x12\"\n\x15\x63onsider_imperfection\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12\x1e\n\x11imperfection_case\x18\x0f \x01(\x05H\r\x88\x01\x01\x12+\n\x1estructure_modification_enabled\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12#\n\x16structure_modification\x18\x11 \x01(\x05H\x0f\x88\x01\x01\x12\'\n\x1astability_analysis_enabled\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12\x1f\n\x12stability_analysis\x18\x13 \x01(\x05H\x11\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x14 \x01(\tH\x12\x88\x01\x01\x12\x1a\n\rload_duration\x18\x15 \x01(\tH\x13\x88\x01\x01\x12*\n\x1d\x61re_members_enabled_to_modify\x18\x16 \x01(\x08H\x14\x88\x01\x01\x12#\n\x16\x61re_all_members_active\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12\x15\n\radded_members\x18\x18 \x03(\x05\x12\x1b\n\x13\x64\x65\x61\x63tivated_members\x18\x19 \x03(\x05\x12\x16\n\x0e\x61\x63tive_members\x18\x1a \x03(\x05\x12\x84\x01\n\x1dmember_property_modifications\x18\x1b \x01(\x0b\x32X.dlubal.api.rfem.construction_stages.ArrayOfConstructionStageMemberPropertyModificationsH\x16\x88\x01\x01\x12+\n\x1e\x61re_surfaces_enabled_to_modify\x18\x1c \x01(\x08H\x17\x88\x01\x01\x12$\n\x17\x61re_all_surfaces_active\x18\x1d \x01(\x08H\x18\x88\x01\x01\x12\x16\n\x0e\x61\x64\x64\x65\x64_surfaces\x18\x1e \x03(\x05\x12\x1c\n\x14\x64\x65\x61\x63tivated_surfaces\x18\x1f \x03(\x05\x12\x17\n\x0f\x61\x63tive_surfaces\x18 \x03(\x05\x12\x86\x01\n\x1esurface_property_modifications\x18! \x01(\x0b\x32Y.dlubal.api.rfem.construction_stages.ArrayOfConstructionStageSurfacePropertyModificationsH\x19\x88\x01\x01\x12)\n\x1c\x61re_solids_enabled_to_modify\x18\" \x01(\x08H\x1a\x88\x01\x01\x12\"\n\x15\x61re_all_solids_active\x18# \x01(\x08H\x1b\x88\x01\x01\x12\x14\n\x0c\x61\x64\x64\x65\x64_solids\x18$ \x03(\x05\x12\x1a\n\x12\x64\x65\x61\x63tivated_solids\x18% \x03(\x05\x12\x15\n\ractive_solids\x18& \x03(\x05\x12\x82\x01\n\x1csolid_property_modifications\x18\' \x01(\x0b\x32W.dlubal.api.rfem.construction_stages.ArrayOfConstructionStageSolidPropertyModificationsH\x1c\x88\x01\x01\x12(\n\x1b\x61re_nodes_enabled_to_modify\x18( \x01(\x08H\x1d\x88\x01\x01\x12\x33\n&are_surface_contacts_enabled_to_modify\x18) \x01(\x08H\x1e\x88\x01\x01\x12,\n\x1f\x61re_all_surface_contacts_active\x18* \x01(\x08H\x1f\x88\x01\x01\x12\x1e\n\x16\x61\x64\x64\x65\x64_surface_contacts\x18+ \x03(\x05\x12$\n\x1c\x64\x65\x61\x63tivated_surface_contacts\x18, \x03(\x05\x12\x1f\n\x17\x61\x63tive_surface_contacts\x18- \x03(\x05\x12.\n!are_rigid_links_enabled_to_modify\x18. \x01(\x08H \x88\x01\x01\x12\'\n\x1a\x61re_all_rigid_links_active\x18/ \x01(\x08H!\x88\x01\x01\x12\x19\n\x11\x61\x64\x64\x65\x64_rigid_links\x18\x30 \x03(\x05\x12\x1f\n\x17\x64\x65\x61\x63tivated_rigid_links\x18\x31 \x03(\x05\x12\x1a\n\x12\x61\x63tive_rigid_links\x18\x32 \x03(\x05\x12+\n\x1esupport_all_nodes_with_support\x18\x33 \x01(\x08H\"\x88\x01\x01\x12\x1c\n\x14\x61\x64\x64_nodes_to_support\x18\x34 \x03(\x05\x12%\n\x1d\x64\x65\x61\x63tivated_nodes_for_support\x18\x35 \x03(\x05\x12!\n\x19\x63urrently_supported_nodes\x18\x36 \x03(\x05\x12\x30\n#are_line_supports_enabled_to_modify\x18\x37 \x01(\x08H#\x88\x01\x01\x12+\n\x1esupport_all_lines_with_support\x18\x38 \x01(\x08H$\x88\x01\x01\x12\x1c\n\x14\x61\x64\x64_lines_to_support\x18\x39 \x03(\x05\x12%\n\x1d\x64\x65\x61\x63tivated_lines_for_support\x18: \x03(\x05\x12!\n\x19\x63urrently_supported_lines\x18; \x03(\x05\x12.\n!are_line_hinges_enabled_to_modify\x18< \x01(\x08H%\x88\x01\x01\x12$\n\x17\x61re_all_hinges_assigned\x18= \x01(\x08H&\x88\x01\x01\x12\x1c\n\x0f\x61\x64\x64_line_hinges\x18> \x01(\tH\'\x88\x01\x01\x12$\n\x17\x64\x65\x61\x63tivated_line_hinges\x18? \x01(\tH(\x88\x01\x01\x12 \n\x13\x63urrent_line_hinges\x18@ \x01(\tH)\x88\x01\x01\x12\x35\n(are_line_welded_joints_enabled_to_modify\x18\x41 \x01(\x08H*\x88\x01\x01\x12#\n\x16\x61re_all_welds_assigned\x18\x42 \x01(\x08H+\x88\x01\x01\x12#\n\x16\x61\x64\x64_line_welded_joints\x18\x43 \x01(\tH,\x88\x01\x01\x12+\n\x1e\x64\x65\x61\x63tivated_line_welded_joints\x18\x44 \x01(\tH-\x88\x01\x01\x12\'\n\x1a\x63urrent_line_welded_joints\x18\x45 \x01(\tH.\x88\x01\x01\x12=\n0geotechnical_analysis_reset_small_strain_history\x18\x46 \x01(\x08H/\x88\x01\x01\x12!\n\x14id_for_export_import\x18G \x01(\tH0\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18H \x01(\tH1\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_to_solveB!\n\x1f_continue_on_construction_stageB\r\n\x0b_start_timeB\r\n\x0b_start_dateB\x0b\n\t_end_timeB\x0b\n\t_end_dateB\x0b\n\t_durationB\n\n\x08_loadingB\x18\n\x16_generate_combinationsB\x1b\n\x19_static_analysis_settingsB\x18\n\x16_consider_imperfectionB\x14\n\x12_imperfection_caseB!\n\x1f_structure_modification_enabledB\x19\n\x17_structure_modificationB\x1d\n\x1b_stability_analysis_enabledB\x15\n\x13_stability_analysisB\n\n\x08_commentB\x10\n\x0e_load_durationB \n\x1e_are_members_enabled_to_modifyB\x19\n\x17_are_all_members_activeB \n\x1e_member_property_modificationsB!\n\x1f_are_surfaces_enabled_to_modifyB\x1a\n\x18_are_all_surfaces_activeB!\n\x1f_surface_property_modificationsB\x1f\n\x1d_are_solids_enabled_to_modifyB\x18\n\x16_are_all_solids_activeB\x1f\n\x1d_solid_property_modificationsB\x1e\n\x1c_are_nodes_enabled_to_modifyB)\n\'_are_surface_contacts_enabled_to_modifyB\"\n _are_all_surface_contacts_activeB$\n\"_are_rigid_links_enabled_to_modifyB\x1d\n\x1b_are_all_rigid_links_activeB!\n\x1f_support_all_nodes_with_supportB&\n$_are_line_supports_enabled_to_modifyB!\n\x1f_support_all_lines_with_supportB$\n\"_are_line_hinges_enabled_to_modifyB\x1a\n\x18_are_all_hinges_assignedB\x12\n\x10_add_line_hingesB\x1a\n\x18_deactivated_line_hingesB\x16\n\x14_current_line_hingesB+\n)_are_line_welded_joints_enabled_to_modifyB\x19\n\x17_are_all_welds_assignedB\x19\n\x17_add_line_welded_jointsB!\n\x1f_deactivated_line_welded_jointsB\x1d\n\x1b_current_line_welded_jointsB3\n1_geotechnical_analysis_reset_small_strain_historyB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"!\n\x1f\x41rrayOfConstructionStageLoading\"5\n3ArrayOfConstructionStageMemberPropertyModifications\"6\n4ArrayOfConstructionStageSurfacePropertyModifications\"4\n2ArrayOfConstructionStageSolidPropertyModifications*g\n%ConstructionStageGenerateCombinations\x12>\n:CONSTRUCTION_STAGE_GENERATE_COMBINATIONS_LOAD_COMBINATIONS\x10\x00\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.construction_stages.construction_stage_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CONSTRUCTIONSTAGEGENERATECOMBINATIONS']._serialized_start=4689
35
+ _globals['_CONSTRUCTIONSTAGEGENERATECOMBINATIONS']._serialized_end=4792
36
+ _globals['_CONSTRUCTIONSTAGE']._serialized_start=102
37
+ _globals['_CONSTRUCTIONSTAGE']._serialized_end=4487
38
+ _globals['_ARRAYOFCONSTRUCTIONSTAGELOADING']._serialized_start=4489
39
+ _globals['_ARRAYOFCONSTRUCTIONSTAGELOADING']._serialized_end=4522
40
+ _globals['_ARRAYOFCONSTRUCTIONSTAGEMEMBERPROPERTYMODIFICATIONS']._serialized_start=4524
41
+ _globals['_ARRAYOFCONSTRUCTIONSTAGEMEMBERPROPERTYMODIFICATIONS']._serialized_end=4577
42
+ _globals['_ARRAYOFCONSTRUCTIONSTAGESURFACEPROPERTYMODIFICATIONS']._serialized_start=4579
43
+ _globals['_ARRAYOFCONSTRUCTIONSTAGESURFACEPROPERTYMODIFICATIONS']._serialized_end=4633
44
+ _globals['_ARRAYOFCONSTRUCTIONSTAGESOLIDPROPERTYMODIFICATIONS']._serialized_start=4635
45
+ _globals['_ARRAYOFCONSTRUCTIONSTAGESOLIDPROPERTYMODIFICATIONS']._serialized_end=4687
46
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,176 @@
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 ConstructionStageGenerateCombinations(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ CONSTRUCTION_STAGE_GENERATE_COMBINATIONS_LOAD_COMBINATIONS: _ClassVar[ConstructionStageGenerateCombinations]
12
+ CONSTRUCTION_STAGE_GENERATE_COMBINATIONS_LOAD_COMBINATIONS: ConstructionStageGenerateCombinations
13
+
14
+ class ConstructionStage(_message.Message):
15
+ __slots__ = ("no", "user_defined_name_enabled", "name", "to_solve", "continue_on_construction_stage", "start_time", "start_date", "end_time", "end_date", "duration", "loading", "generate_combinations", "static_analysis_settings", "consider_imperfection", "imperfection_case", "structure_modification_enabled", "structure_modification", "stability_analysis_enabled", "stability_analysis", "comment", "load_duration", "are_members_enabled_to_modify", "are_all_members_active", "added_members", "deactivated_members", "active_members", "member_property_modifications", "are_surfaces_enabled_to_modify", "are_all_surfaces_active", "added_surfaces", "deactivated_surfaces", "active_surfaces", "surface_property_modifications", "are_solids_enabled_to_modify", "are_all_solids_active", "added_solids", "deactivated_solids", "active_solids", "solid_property_modifications", "are_nodes_enabled_to_modify", "are_surface_contacts_enabled_to_modify", "are_all_surface_contacts_active", "added_surface_contacts", "deactivated_surface_contacts", "active_surface_contacts", "are_rigid_links_enabled_to_modify", "are_all_rigid_links_active", "added_rigid_links", "deactivated_rigid_links", "active_rigid_links", "support_all_nodes_with_support", "add_nodes_to_support", "deactivated_nodes_for_support", "currently_supported_nodes", "are_line_supports_enabled_to_modify", "support_all_lines_with_support", "add_lines_to_support", "deactivated_lines_for_support", "currently_supported_lines", "are_line_hinges_enabled_to_modify", "are_all_hinges_assigned", "add_line_hinges", "deactivated_line_hinges", "current_line_hinges", "are_line_welded_joints_enabled_to_modify", "are_all_welds_assigned", "add_line_welded_joints", "deactivated_line_welded_joints", "current_line_welded_joints", "geotechnical_analysis_reset_small_strain_history", "id_for_export_import", "metadata_for_export_import")
16
+ NO_FIELD_NUMBER: _ClassVar[int]
17
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
18
+ NAME_FIELD_NUMBER: _ClassVar[int]
19
+ TO_SOLVE_FIELD_NUMBER: _ClassVar[int]
20
+ CONTINUE_ON_CONSTRUCTION_STAGE_FIELD_NUMBER: _ClassVar[int]
21
+ START_TIME_FIELD_NUMBER: _ClassVar[int]
22
+ START_DATE_FIELD_NUMBER: _ClassVar[int]
23
+ END_TIME_FIELD_NUMBER: _ClassVar[int]
24
+ END_DATE_FIELD_NUMBER: _ClassVar[int]
25
+ DURATION_FIELD_NUMBER: _ClassVar[int]
26
+ LOADING_FIELD_NUMBER: _ClassVar[int]
27
+ GENERATE_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
28
+ STATIC_ANALYSIS_SETTINGS_FIELD_NUMBER: _ClassVar[int]
29
+ CONSIDER_IMPERFECTION_FIELD_NUMBER: _ClassVar[int]
30
+ IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
31
+ STRUCTURE_MODIFICATION_ENABLED_FIELD_NUMBER: _ClassVar[int]
32
+ STRUCTURE_MODIFICATION_FIELD_NUMBER: _ClassVar[int]
33
+ STABILITY_ANALYSIS_ENABLED_FIELD_NUMBER: _ClassVar[int]
34
+ STABILITY_ANALYSIS_FIELD_NUMBER: _ClassVar[int]
35
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
36
+ LOAD_DURATION_FIELD_NUMBER: _ClassVar[int]
37
+ ARE_MEMBERS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
38
+ ARE_ALL_MEMBERS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
39
+ ADDED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
40
+ DEACTIVATED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
41
+ ACTIVE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
42
+ MEMBER_PROPERTY_MODIFICATIONS_FIELD_NUMBER: _ClassVar[int]
43
+ ARE_SURFACES_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
44
+ ARE_ALL_SURFACES_ACTIVE_FIELD_NUMBER: _ClassVar[int]
45
+ ADDED_SURFACES_FIELD_NUMBER: _ClassVar[int]
46
+ DEACTIVATED_SURFACES_FIELD_NUMBER: _ClassVar[int]
47
+ ACTIVE_SURFACES_FIELD_NUMBER: _ClassVar[int]
48
+ SURFACE_PROPERTY_MODIFICATIONS_FIELD_NUMBER: _ClassVar[int]
49
+ ARE_SOLIDS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
50
+ ARE_ALL_SOLIDS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
51
+ ADDED_SOLIDS_FIELD_NUMBER: _ClassVar[int]
52
+ DEACTIVATED_SOLIDS_FIELD_NUMBER: _ClassVar[int]
53
+ ACTIVE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
54
+ SOLID_PROPERTY_MODIFICATIONS_FIELD_NUMBER: _ClassVar[int]
55
+ ARE_NODES_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
56
+ ARE_SURFACE_CONTACTS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
57
+ ARE_ALL_SURFACE_CONTACTS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
58
+ ADDED_SURFACE_CONTACTS_FIELD_NUMBER: _ClassVar[int]
59
+ DEACTIVATED_SURFACE_CONTACTS_FIELD_NUMBER: _ClassVar[int]
60
+ ACTIVE_SURFACE_CONTACTS_FIELD_NUMBER: _ClassVar[int]
61
+ ARE_RIGID_LINKS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
62
+ ARE_ALL_RIGID_LINKS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
63
+ ADDED_RIGID_LINKS_FIELD_NUMBER: _ClassVar[int]
64
+ DEACTIVATED_RIGID_LINKS_FIELD_NUMBER: _ClassVar[int]
65
+ ACTIVE_RIGID_LINKS_FIELD_NUMBER: _ClassVar[int]
66
+ SUPPORT_ALL_NODES_WITH_SUPPORT_FIELD_NUMBER: _ClassVar[int]
67
+ ADD_NODES_TO_SUPPORT_FIELD_NUMBER: _ClassVar[int]
68
+ DEACTIVATED_NODES_FOR_SUPPORT_FIELD_NUMBER: _ClassVar[int]
69
+ CURRENTLY_SUPPORTED_NODES_FIELD_NUMBER: _ClassVar[int]
70
+ ARE_LINE_SUPPORTS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
71
+ SUPPORT_ALL_LINES_WITH_SUPPORT_FIELD_NUMBER: _ClassVar[int]
72
+ ADD_LINES_TO_SUPPORT_FIELD_NUMBER: _ClassVar[int]
73
+ DEACTIVATED_LINES_FOR_SUPPORT_FIELD_NUMBER: _ClassVar[int]
74
+ CURRENTLY_SUPPORTED_LINES_FIELD_NUMBER: _ClassVar[int]
75
+ ARE_LINE_HINGES_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
76
+ ARE_ALL_HINGES_ASSIGNED_FIELD_NUMBER: _ClassVar[int]
77
+ ADD_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
78
+ DEACTIVATED_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
79
+ CURRENT_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
80
+ ARE_LINE_WELDED_JOINTS_ENABLED_TO_MODIFY_FIELD_NUMBER: _ClassVar[int]
81
+ ARE_ALL_WELDS_ASSIGNED_FIELD_NUMBER: _ClassVar[int]
82
+ ADD_LINE_WELDED_JOINTS_FIELD_NUMBER: _ClassVar[int]
83
+ DEACTIVATED_LINE_WELDED_JOINTS_FIELD_NUMBER: _ClassVar[int]
84
+ CURRENT_LINE_WELDED_JOINTS_FIELD_NUMBER: _ClassVar[int]
85
+ GEOTECHNICAL_ANALYSIS_RESET_SMALL_STRAIN_HISTORY_FIELD_NUMBER: _ClassVar[int]
86
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
87
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
88
+ no: int
89
+ user_defined_name_enabled: bool
90
+ name: str
91
+ to_solve: bool
92
+ continue_on_construction_stage: int
93
+ start_time: float
94
+ start_date: str
95
+ end_time: float
96
+ end_date: str
97
+ duration: float
98
+ loading: ArrayOfConstructionStageLoading
99
+ generate_combinations: ConstructionStageGenerateCombinations
100
+ static_analysis_settings: int
101
+ consider_imperfection: bool
102
+ imperfection_case: int
103
+ structure_modification_enabled: bool
104
+ structure_modification: int
105
+ stability_analysis_enabled: bool
106
+ stability_analysis: int
107
+ comment: str
108
+ load_duration: str
109
+ are_members_enabled_to_modify: bool
110
+ are_all_members_active: bool
111
+ added_members: _containers.RepeatedScalarFieldContainer[int]
112
+ deactivated_members: _containers.RepeatedScalarFieldContainer[int]
113
+ active_members: _containers.RepeatedScalarFieldContainer[int]
114
+ member_property_modifications: ArrayOfConstructionStageMemberPropertyModifications
115
+ are_surfaces_enabled_to_modify: bool
116
+ are_all_surfaces_active: bool
117
+ added_surfaces: _containers.RepeatedScalarFieldContainer[int]
118
+ deactivated_surfaces: _containers.RepeatedScalarFieldContainer[int]
119
+ active_surfaces: _containers.RepeatedScalarFieldContainer[int]
120
+ surface_property_modifications: ArrayOfConstructionStageSurfacePropertyModifications
121
+ are_solids_enabled_to_modify: bool
122
+ are_all_solids_active: bool
123
+ added_solids: _containers.RepeatedScalarFieldContainer[int]
124
+ deactivated_solids: _containers.RepeatedScalarFieldContainer[int]
125
+ active_solids: _containers.RepeatedScalarFieldContainer[int]
126
+ solid_property_modifications: ArrayOfConstructionStageSolidPropertyModifications
127
+ are_nodes_enabled_to_modify: bool
128
+ are_surface_contacts_enabled_to_modify: bool
129
+ are_all_surface_contacts_active: bool
130
+ added_surface_contacts: _containers.RepeatedScalarFieldContainer[int]
131
+ deactivated_surface_contacts: _containers.RepeatedScalarFieldContainer[int]
132
+ active_surface_contacts: _containers.RepeatedScalarFieldContainer[int]
133
+ are_rigid_links_enabled_to_modify: bool
134
+ are_all_rigid_links_active: bool
135
+ added_rigid_links: _containers.RepeatedScalarFieldContainer[int]
136
+ deactivated_rigid_links: _containers.RepeatedScalarFieldContainer[int]
137
+ active_rigid_links: _containers.RepeatedScalarFieldContainer[int]
138
+ support_all_nodes_with_support: bool
139
+ add_nodes_to_support: _containers.RepeatedScalarFieldContainer[int]
140
+ deactivated_nodes_for_support: _containers.RepeatedScalarFieldContainer[int]
141
+ currently_supported_nodes: _containers.RepeatedScalarFieldContainer[int]
142
+ are_line_supports_enabled_to_modify: bool
143
+ support_all_lines_with_support: bool
144
+ add_lines_to_support: _containers.RepeatedScalarFieldContainer[int]
145
+ deactivated_lines_for_support: _containers.RepeatedScalarFieldContainer[int]
146
+ currently_supported_lines: _containers.RepeatedScalarFieldContainer[int]
147
+ are_line_hinges_enabled_to_modify: bool
148
+ are_all_hinges_assigned: bool
149
+ add_line_hinges: str
150
+ deactivated_line_hinges: str
151
+ current_line_hinges: str
152
+ are_line_welded_joints_enabled_to_modify: bool
153
+ are_all_welds_assigned: bool
154
+ add_line_welded_joints: str
155
+ deactivated_line_welded_joints: str
156
+ current_line_welded_joints: str
157
+ geotechnical_analysis_reset_small_strain_history: bool
158
+ id_for_export_import: str
159
+ metadata_for_export_import: str
160
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., to_solve: bool = ..., continue_on_construction_stage: _Optional[int] = ..., start_time: _Optional[float] = ..., start_date: _Optional[str] = ..., end_time: _Optional[float] = ..., end_date: _Optional[str] = ..., duration: _Optional[float] = ..., loading: _Optional[_Union[ArrayOfConstructionStageLoading, _Mapping]] = ..., generate_combinations: _Optional[_Union[ConstructionStageGenerateCombinations, str]] = ..., static_analysis_settings: _Optional[int] = ..., consider_imperfection: bool = ..., imperfection_case: _Optional[int] = ..., structure_modification_enabled: bool = ..., structure_modification: _Optional[int] = ..., stability_analysis_enabled: bool = ..., stability_analysis: _Optional[int] = ..., comment: _Optional[str] = ..., load_duration: _Optional[str] = ..., are_members_enabled_to_modify: bool = ..., are_all_members_active: bool = ..., added_members: _Optional[_Iterable[int]] = ..., deactivated_members: _Optional[_Iterable[int]] = ..., active_members: _Optional[_Iterable[int]] = ..., member_property_modifications: _Optional[_Union[ArrayOfConstructionStageMemberPropertyModifications, _Mapping]] = ..., are_surfaces_enabled_to_modify: bool = ..., are_all_surfaces_active: bool = ..., added_surfaces: _Optional[_Iterable[int]] = ..., deactivated_surfaces: _Optional[_Iterable[int]] = ..., active_surfaces: _Optional[_Iterable[int]] = ..., surface_property_modifications: _Optional[_Union[ArrayOfConstructionStageSurfacePropertyModifications, _Mapping]] = ..., are_solids_enabled_to_modify: bool = ..., are_all_solids_active: bool = ..., added_solids: _Optional[_Iterable[int]] = ..., deactivated_solids: _Optional[_Iterable[int]] = ..., active_solids: _Optional[_Iterable[int]] = ..., solid_property_modifications: _Optional[_Union[ArrayOfConstructionStageSolidPropertyModifications, _Mapping]] = ..., are_nodes_enabled_to_modify: bool = ..., are_surface_contacts_enabled_to_modify: bool = ..., are_all_surface_contacts_active: bool = ..., added_surface_contacts: _Optional[_Iterable[int]] = ..., deactivated_surface_contacts: _Optional[_Iterable[int]] = ..., active_surface_contacts: _Optional[_Iterable[int]] = ..., are_rigid_links_enabled_to_modify: bool = ..., are_all_rigid_links_active: bool = ..., added_rigid_links: _Optional[_Iterable[int]] = ..., deactivated_rigid_links: _Optional[_Iterable[int]] = ..., active_rigid_links: _Optional[_Iterable[int]] = ..., support_all_nodes_with_support: bool = ..., add_nodes_to_support: _Optional[_Iterable[int]] = ..., deactivated_nodes_for_support: _Optional[_Iterable[int]] = ..., currently_supported_nodes: _Optional[_Iterable[int]] = ..., are_line_supports_enabled_to_modify: bool = ..., support_all_lines_with_support: bool = ..., add_lines_to_support: _Optional[_Iterable[int]] = ..., deactivated_lines_for_support: _Optional[_Iterable[int]] = ..., currently_supported_lines: _Optional[_Iterable[int]] = ..., are_line_hinges_enabled_to_modify: bool = ..., are_all_hinges_assigned: bool = ..., add_line_hinges: _Optional[str] = ..., deactivated_line_hinges: _Optional[str] = ..., current_line_hinges: _Optional[str] = ..., are_line_welded_joints_enabled_to_modify: bool = ..., are_all_welds_assigned: bool = ..., add_line_welded_joints: _Optional[str] = ..., deactivated_line_welded_joints: _Optional[str] = ..., current_line_welded_joints: _Optional[str] = ..., geotechnical_analysis_reset_small_strain_history: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
161
+
162
+ class ArrayOfConstructionStageLoading(_message.Message):
163
+ __slots__ = ()
164
+ def __init__(self) -> None: ...
165
+
166
+ class ArrayOfConstructionStageMemberPropertyModifications(_message.Message):
167
+ __slots__ = ()
168
+ def __init__(self) -> None: ...
169
+
170
+ class ArrayOfConstructionStageSurfacePropertyModifications(_message.Message):
171
+ __slots__ = ()
172
+ def __init__(self) -> None: ...
173
+
174
+ class ArrayOfConstructionStageSolidPropertyModifications(_message.Message):
175
+ __slots__ = ()
176
+ def __init__(self) -> None: ...
@@ -0,0 +1,2 @@
1
+ from .accelerogram_pb2 import *
2
+ from .response_spectrum_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/dynamic_loads/accelerogram.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/dynamic_loads/accelerogram.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/dynamic_loads/accelerogram.proto\x12\x1d\x64lubal.api.rfem.dynamic_loads\"\xc2\x07\n\x0c\x41\x63\x63\x65lerogram\x12\n\n\x02no\x18\x01 \x01(\x05\x12W\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32\x39.dlubal.api.rfem.dynamic_loads.AccelerogramDefinitionTypeH\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\x17\n\nlibrary_id\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x33\n&user_defined_accelerogram_step_enabled\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x30\n#user_defined_accelerogram_time_step\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12-\n user_defined_accelerogram_sorted\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12q\n\x19user_defined_accelerogram\x18\t \x01(\x0b\x32I.dlubal.api.rfem.dynamic_loads.ArrayOfAccelerogramUserDefinedAccelerogramH\x07\x88\x01\x01\x12\x14\n\x07\x63omment\x18\n \x01(\tH\x08\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0b \x01(\x08H\t\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0c \x01(\tH\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\x12\n\x10_definition_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_library_idB)\n\'_user_defined_accelerogram_step_enabledB&\n$_user_defined_accelerogram_time_stepB#\n!_user_defined_accelerogram_sortedB\x1c\n\x1a_user_defined_accelerogramB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\",\n*ArrayOfAccelerogramUserDefinedAccelerogram*\xa4\x01\n\x1a\x41\x63\x63\x65lerogramDefinitionType\x12(\n$ACCELEROGRAM_DEFINITION_TYPE_UNKNOWN\x10\x00\x12-\n)ACCELEROGRAM_DEFINITION_TYPE_FROM_LIBRARY\x10\x02\x12-\n)ACCELEROGRAM_DEFINITION_TYPE_USER_DEFINED\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.dynamic_loads.accelerogram_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ACCELEROGRAMDEFINITIONTYPE']._serialized_start=1095
35
+ _globals['_ACCELEROGRAMDEFINITIONTYPE']._serialized_end=1259
36
+ _globals['_ACCELEROGRAM']._serialized_start=84
37
+ _globals['_ACCELEROGRAM']._serialized_end=1046
38
+ _globals['_ARRAYOFACCELEROGRAMUSERDEFINEDACCELEROGRAM']._serialized_start=1048
39
+ _globals['_ARRAYOFACCELEROGRAMUSERDEFINEDACCELEROGRAM']._serialized_end=1092
40
+ # @@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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class AccelerogramDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ ACCELEROGRAM_DEFINITION_TYPE_UNKNOWN: _ClassVar[AccelerogramDefinitionType]
11
+ ACCELEROGRAM_DEFINITION_TYPE_FROM_LIBRARY: _ClassVar[AccelerogramDefinitionType]
12
+ ACCELEROGRAM_DEFINITION_TYPE_USER_DEFINED: _ClassVar[AccelerogramDefinitionType]
13
+ ACCELEROGRAM_DEFINITION_TYPE_UNKNOWN: AccelerogramDefinitionType
14
+ ACCELEROGRAM_DEFINITION_TYPE_FROM_LIBRARY: AccelerogramDefinitionType
15
+ ACCELEROGRAM_DEFINITION_TYPE_USER_DEFINED: AccelerogramDefinitionType
16
+
17
+ class Accelerogram(_message.Message):
18
+ __slots__ = ("no", "definition_type", "user_defined_name_enabled", "name", "library_id", "user_defined_accelerogram_step_enabled", "user_defined_accelerogram_time_step", "user_defined_accelerogram_sorted", "user_defined_accelerogram", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
19
+ NO_FIELD_NUMBER: _ClassVar[int]
20
+ DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
21
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
22
+ NAME_FIELD_NUMBER: _ClassVar[int]
23
+ LIBRARY_ID_FIELD_NUMBER: _ClassVar[int]
24
+ USER_DEFINED_ACCELEROGRAM_STEP_ENABLED_FIELD_NUMBER: _ClassVar[int]
25
+ USER_DEFINED_ACCELEROGRAM_TIME_STEP_FIELD_NUMBER: _ClassVar[int]
26
+ USER_DEFINED_ACCELEROGRAM_SORTED_FIELD_NUMBER: _ClassVar[int]
27
+ USER_DEFINED_ACCELEROGRAM_FIELD_NUMBER: _ClassVar[int]
28
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
29
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
30
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
31
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
32
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
33
+ no: int
34
+ definition_type: AccelerogramDefinitionType
35
+ user_defined_name_enabled: bool
36
+ name: str
37
+ library_id: int
38
+ user_defined_accelerogram_step_enabled: bool
39
+ user_defined_accelerogram_time_step: float
40
+ user_defined_accelerogram_sorted: bool
41
+ user_defined_accelerogram: ArrayOfAccelerogramUserDefinedAccelerogram
42
+ comment: str
43
+ is_generated: bool
44
+ generating_object_info: str
45
+ id_for_export_import: str
46
+ metadata_for_export_import: str
47
+ def __init__(self, no: _Optional[int] = ..., definition_type: _Optional[_Union[AccelerogramDefinitionType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., library_id: _Optional[int] = ..., user_defined_accelerogram_step_enabled: bool = ..., user_defined_accelerogram_time_step: _Optional[float] = ..., user_defined_accelerogram_sorted: bool = ..., user_defined_accelerogram: _Optional[_Union[ArrayOfAccelerogramUserDefinedAccelerogram, _Mapping]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
48
+
49
+ class ArrayOfAccelerogramUserDefinedAccelerogram(_message.Message):
50
+ __slots__ = ()
51
+ 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/dynamic_loads/response_spectrum.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/dynamic_loads/response_spectrum.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/dynamic_loads/response_spectrum.proto\x12\x1d\x64lubal.api.rfem.dynamic_loads\"\xda\t\n\x10ResponseSpectrum\x12\n\n\x02no\x18\x01 \x01(\x05\x12[\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32=.dlubal.api.rfem.dynamic_loads.ResponseSpectrumDefinitionTypeH\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\x38\n+user_defined_response_spectrum_step_enabled\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x37\n*user_defined_response_spectrum_period_step\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12)\n\x1cuser_defined_spectrum_sorted\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12~\n\x1euser_defined_response_spectrum\x18\x08 \x01(\x0b\x32Q.dlubal.api.rfem.dynamic_loads.ArrayOfResponseSpectrumUserDefinedResponseSpectrumH\x06\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x07\x88\x01\x01\x12\x19\n\x0cis_generated\x18\n \x01(\x08H\x08\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0b \x01(\tH\t\x88\x01\x01\x12\x14\n\x07\x64\x61mping\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x12\n\x05min_t\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x12\n\x05max_t\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12P\n\tdirection\x18\x0f \x01(\x0e\x32\x38.dlubal.api.rfem.dynamic_loads.ResponseSpectrumDirectionH\r\x88\x01\x01\x12\x19\n\x0csample_count\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x19\n\x0c\x61\x63\x63\x65lerogram\x18\x11 \x01(\x05H\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x11\x88\x01\x01\x42\x12\n\x10_definition_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB.\n,_user_defined_response_spectrum_step_enabledB-\n+_user_defined_response_spectrum_period_stepB\x1f\n\x1d_user_defined_spectrum_sortedB!\n\x1f_user_defined_response_spectrumB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_dampingB\x08\n\x06_min_tB\x08\n\x06_max_tB\x0c\n\n_directionB\x0f\n\r_sample_countB\x0f\n\r_accelerogramB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"4\n2ArrayOfResponseSpectrumUserDefinedResponseSpectrum*\x83\x02\n\x1eResponseSpectrumDefinitionType\x12-\n)RESPONSE_SPECTRUM_DEFINITION_TYPE_UNKNOWN\x10\x00\x12;\n7RESPONSE_SPECTRUM_DEFINITION_TYPE_ACCORDING_TO_STANDARD\x10\x03\x12\x41\n=RESPONSE_SPECTRUM_DEFINITION_TYPE_GENERATED_FROM_ACCELEROGRAM\x10\x02\x12\x32\n.RESPONSE_SPECTRUM_DEFINITION_TYPE_USER_DEFINED\x10\x01*\x96\x01\n\x19ResponseSpectrumDirection\x12\'\n#RESPONSE_SPECTRUM_DIRECTION_ALONG_X\x10\x00\x12\'\n#RESPONSE_SPECTRUM_DIRECTION_ALONG_Y\x10\x01\x12\'\n#RESPONSE_SPECTRUM_DIRECTION_ALONG_Z\x10\x02\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.dynamic_loads.response_spectrum_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_RESPONSESPECTRUMDEFINITIONTYPE']._serialized_start=1388
35
+ _globals['_RESPONSESPECTRUMDEFINITIONTYPE']._serialized_end=1647
36
+ _globals['_RESPONSESPECTRUMDIRECTION']._serialized_start=1650
37
+ _globals['_RESPONSESPECTRUMDIRECTION']._serialized_end=1800
38
+ _globals['_RESPONSESPECTRUM']._serialized_start=89
39
+ _globals['_RESPONSESPECTRUM']._serialized_end=1331
40
+ _globals['_ARRAYOFRESPONSESPECTRUMUSERDEFINEDRESPONSESPECTRUM']._serialized_start=1333
41
+ _globals['_ARRAYOFRESPONSESPECTRUMUSERDEFINEDRESPONSESPECTRUM']._serialized_end=1385
42
+ # @@protoc_insertion_point(module_scope)