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,207 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class NodalLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ NODAL_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[NodalLoadLoadType]
13
+ NODAL_LOAD_LOAD_TYPE_COMPONENTS: _ClassVar[NodalLoadLoadType]
14
+ NODAL_LOAD_LOAD_TYPE_FORCE: _ClassVar[NodalLoadLoadType]
15
+ NODAL_LOAD_LOAD_TYPE_MASS: _ClassVar[NodalLoadLoadType]
16
+ NODAL_LOAD_LOAD_TYPE_MOMENT: _ClassVar[NodalLoadLoadType]
17
+
18
+ class NodalLoadSpecificDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: _ClassVar[NodalLoadSpecificDirectionType]
21
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: _ClassVar[NodalLoadSpecificDirectionType]
22
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: _ClassVar[NodalLoadSpecificDirectionType]
23
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: _ClassVar[NodalLoadSpecificDirectionType]
24
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: _ClassVar[NodalLoadSpecificDirectionType]
25
+
26
+ class NodalLoadAxesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
27
+ __slots__ = ()
28
+ NODAL_LOAD_AXES_SEQUENCE_XYZ: _ClassVar[NodalLoadAxesSequence]
29
+ NODAL_LOAD_AXES_SEQUENCE_XZY: _ClassVar[NodalLoadAxesSequence]
30
+ NODAL_LOAD_AXES_SEQUENCE_YXZ: _ClassVar[NodalLoadAxesSequence]
31
+ NODAL_LOAD_AXES_SEQUENCE_YZX: _ClassVar[NodalLoadAxesSequence]
32
+ NODAL_LOAD_AXES_SEQUENCE_ZXY: _ClassVar[NodalLoadAxesSequence]
33
+ NODAL_LOAD_AXES_SEQUENCE_ZYX: _ClassVar[NodalLoadAxesSequence]
34
+
35
+ class NodalLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
36
+ __slots__ = ()
37
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[NodalLoadLoadDirection]
38
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U: _ClassVar[NodalLoadLoadDirection]
39
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V: _ClassVar[NodalLoadLoadDirection]
40
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W: _ClassVar[NodalLoadLoadDirection]
41
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[NodalLoadLoadDirection]
42
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[NodalLoadLoadDirection]
43
+
44
+ class NodalLoadMassAxisOfRotation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
+ __slots__ = ()
46
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_POSITIVE: _ClassVar[NodalLoadMassAxisOfRotation]
47
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_NEGATIVE: _ClassVar[NodalLoadMassAxisOfRotation]
48
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_NEGATIVE: _ClassVar[NodalLoadMassAxisOfRotation]
49
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_POSITIVE: _ClassVar[NodalLoadMassAxisOfRotation]
50
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_NEGATIVE: _ClassVar[NodalLoadMassAxisOfRotation]
51
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_POSITIVE: _ClassVar[NodalLoadMassAxisOfRotation]
52
+ NODAL_LOAD_LOAD_TYPE_UNKNOWN: NodalLoadLoadType
53
+ NODAL_LOAD_LOAD_TYPE_COMPONENTS: NodalLoadLoadType
54
+ NODAL_LOAD_LOAD_TYPE_FORCE: NodalLoadLoadType
55
+ NODAL_LOAD_LOAD_TYPE_MASS: NodalLoadLoadType
56
+ NODAL_LOAD_LOAD_TYPE_MOMENT: NodalLoadLoadType
57
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: NodalLoadSpecificDirectionType
58
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: NodalLoadSpecificDirectionType
59
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: NodalLoadSpecificDirectionType
60
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: NodalLoadSpecificDirectionType
61
+ NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: NodalLoadSpecificDirectionType
62
+ NODAL_LOAD_AXES_SEQUENCE_XYZ: NodalLoadAxesSequence
63
+ NODAL_LOAD_AXES_SEQUENCE_XZY: NodalLoadAxesSequence
64
+ NODAL_LOAD_AXES_SEQUENCE_YXZ: NodalLoadAxesSequence
65
+ NODAL_LOAD_AXES_SEQUENCE_YZX: NodalLoadAxesSequence
66
+ NODAL_LOAD_AXES_SEQUENCE_ZXY: NodalLoadAxesSequence
67
+ NODAL_LOAD_AXES_SEQUENCE_ZYX: NodalLoadAxesSequence
68
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_X: NodalLoadLoadDirection
69
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U: NodalLoadLoadDirection
70
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V: NodalLoadLoadDirection
71
+ NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W: NodalLoadLoadDirection
72
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_Y: NodalLoadLoadDirection
73
+ NODAL_LOAD_LOAD_DIRECTION_LOCAL_Z: NodalLoadLoadDirection
74
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_POSITIVE: NodalLoadMassAxisOfRotation
75
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_NEGATIVE: NodalLoadMassAxisOfRotation
76
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_NEGATIVE: NodalLoadMassAxisOfRotation
77
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_POSITIVE: NodalLoadMassAxisOfRotation
78
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_NEGATIVE: NodalLoadMassAxisOfRotation
79
+ NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_POSITIVE: NodalLoadMassAxisOfRotation
80
+
81
+ class NodalLoad(_message.Message):
82
+ __slots__ = ("no", "load_type", "nodes", "force_eccentricity", "force_eccentricity_x", "force_eccentricity_y", "force_eccentricity_z", "coordinate_system", "has_specific_direction", "specific_direction_type", "axes_sequence", "rotated_about_angle_x", "rotated_about_angle_y", "rotated_about_angle_z", "rotated_about_angle_1", "rotated_about_angle_2", "rotated_about_angle_3", "directed_to_node_direction_node", "parallel_to_two_nodes_first_node", "parallel_to_two_nodes_second_node", "parallel_to_line", "parallel_to_member", "components_force", "components_force_x", "components_force_y", "components_force_z", "components_moment", "components_moment_x", "components_moment_y", "components_moment_z", "force_magnitude", "load_direction", "moment_magnitude", "individual_mass_components", "mass_global", "mass", "mass_x", "mass_y", "mass_z", "mass_moment_of_inertia", "mass_moment_of_inertia_x", "mass_moment_of_inertia_y", "mass_moment_of_inertia_z", "mass_has_rotational_mass", "mass_rotational_mass", "mass_angular_velocity", "mass_angular_acceleration", "mass_radius", "mass_axis_of_rotation", "mass_angle", "has_shifted_display", "offset", "offset_x", "offset_y", "offset_z", "size_or_distance", "comment", "load_case", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
83
+ NO_FIELD_NUMBER: _ClassVar[int]
84
+ LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
85
+ NODES_FIELD_NUMBER: _ClassVar[int]
86
+ FORCE_ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
87
+ FORCE_ECCENTRICITY_X_FIELD_NUMBER: _ClassVar[int]
88
+ FORCE_ECCENTRICITY_Y_FIELD_NUMBER: _ClassVar[int]
89
+ FORCE_ECCENTRICITY_Z_FIELD_NUMBER: _ClassVar[int]
90
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
91
+ HAS_SPECIFIC_DIRECTION_FIELD_NUMBER: _ClassVar[int]
92
+ SPECIFIC_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
93
+ AXES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
94
+ ROTATED_ABOUT_ANGLE_X_FIELD_NUMBER: _ClassVar[int]
95
+ ROTATED_ABOUT_ANGLE_Y_FIELD_NUMBER: _ClassVar[int]
96
+ ROTATED_ABOUT_ANGLE_Z_FIELD_NUMBER: _ClassVar[int]
97
+ ROTATED_ABOUT_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
98
+ ROTATED_ABOUT_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
99
+ ROTATED_ABOUT_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
100
+ DIRECTED_TO_NODE_DIRECTION_NODE_FIELD_NUMBER: _ClassVar[int]
101
+ PARALLEL_TO_TWO_NODES_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
102
+ PARALLEL_TO_TWO_NODES_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
103
+ PARALLEL_TO_LINE_FIELD_NUMBER: _ClassVar[int]
104
+ PARALLEL_TO_MEMBER_FIELD_NUMBER: _ClassVar[int]
105
+ COMPONENTS_FORCE_FIELD_NUMBER: _ClassVar[int]
106
+ COMPONENTS_FORCE_X_FIELD_NUMBER: _ClassVar[int]
107
+ COMPONENTS_FORCE_Y_FIELD_NUMBER: _ClassVar[int]
108
+ COMPONENTS_FORCE_Z_FIELD_NUMBER: _ClassVar[int]
109
+ COMPONENTS_MOMENT_FIELD_NUMBER: _ClassVar[int]
110
+ COMPONENTS_MOMENT_X_FIELD_NUMBER: _ClassVar[int]
111
+ COMPONENTS_MOMENT_Y_FIELD_NUMBER: _ClassVar[int]
112
+ COMPONENTS_MOMENT_Z_FIELD_NUMBER: _ClassVar[int]
113
+ FORCE_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
114
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
115
+ MOMENT_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
116
+ INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
117
+ MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
118
+ MASS_FIELD_NUMBER: _ClassVar[int]
119
+ MASS_X_FIELD_NUMBER: _ClassVar[int]
120
+ MASS_Y_FIELD_NUMBER: _ClassVar[int]
121
+ MASS_Z_FIELD_NUMBER: _ClassVar[int]
122
+ MASS_MOMENT_OF_INERTIA_FIELD_NUMBER: _ClassVar[int]
123
+ MASS_MOMENT_OF_INERTIA_X_FIELD_NUMBER: _ClassVar[int]
124
+ MASS_MOMENT_OF_INERTIA_Y_FIELD_NUMBER: _ClassVar[int]
125
+ MASS_MOMENT_OF_INERTIA_Z_FIELD_NUMBER: _ClassVar[int]
126
+ MASS_HAS_ROTATIONAL_MASS_FIELD_NUMBER: _ClassVar[int]
127
+ MASS_ROTATIONAL_MASS_FIELD_NUMBER: _ClassVar[int]
128
+ MASS_ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
129
+ MASS_ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
130
+ MASS_RADIUS_FIELD_NUMBER: _ClassVar[int]
131
+ MASS_AXIS_OF_ROTATION_FIELD_NUMBER: _ClassVar[int]
132
+ MASS_ANGLE_FIELD_NUMBER: _ClassVar[int]
133
+ HAS_SHIFTED_DISPLAY_FIELD_NUMBER: _ClassVar[int]
134
+ OFFSET_FIELD_NUMBER: _ClassVar[int]
135
+ OFFSET_X_FIELD_NUMBER: _ClassVar[int]
136
+ OFFSET_Y_FIELD_NUMBER: _ClassVar[int]
137
+ OFFSET_Z_FIELD_NUMBER: _ClassVar[int]
138
+ SIZE_OR_DISTANCE_FIELD_NUMBER: _ClassVar[int]
139
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
140
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
141
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
142
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
143
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
144
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
145
+ no: int
146
+ load_type: NodalLoadLoadType
147
+ nodes: _containers.RepeatedScalarFieldContainer[int]
148
+ force_eccentricity: _common_pb2.Vector3d
149
+ force_eccentricity_x: float
150
+ force_eccentricity_y: float
151
+ force_eccentricity_z: float
152
+ coordinate_system: int
153
+ has_specific_direction: bool
154
+ specific_direction_type: NodalLoadSpecificDirectionType
155
+ axes_sequence: NodalLoadAxesSequence
156
+ rotated_about_angle_x: float
157
+ rotated_about_angle_y: float
158
+ rotated_about_angle_z: float
159
+ rotated_about_angle_1: float
160
+ rotated_about_angle_2: float
161
+ rotated_about_angle_3: float
162
+ directed_to_node_direction_node: int
163
+ parallel_to_two_nodes_first_node: int
164
+ parallel_to_two_nodes_second_node: int
165
+ parallel_to_line: int
166
+ parallel_to_member: int
167
+ components_force: _common_pb2.Vector3d
168
+ components_force_x: float
169
+ components_force_y: float
170
+ components_force_z: float
171
+ components_moment: _common_pb2.Vector3d
172
+ components_moment_x: float
173
+ components_moment_y: float
174
+ components_moment_z: float
175
+ force_magnitude: float
176
+ load_direction: NodalLoadLoadDirection
177
+ moment_magnitude: float
178
+ individual_mass_components: bool
179
+ mass_global: float
180
+ mass: _common_pb2.Vector3d
181
+ mass_x: float
182
+ mass_y: float
183
+ mass_z: float
184
+ mass_moment_of_inertia: _common_pb2.Vector3d
185
+ mass_moment_of_inertia_x: float
186
+ mass_moment_of_inertia_y: float
187
+ mass_moment_of_inertia_z: float
188
+ mass_has_rotational_mass: bool
189
+ mass_rotational_mass: float
190
+ mass_angular_velocity: float
191
+ mass_angular_acceleration: float
192
+ mass_radius: float
193
+ mass_axis_of_rotation: NodalLoadMassAxisOfRotation
194
+ mass_angle: float
195
+ has_shifted_display: bool
196
+ offset: _common_pb2.Vector3d
197
+ offset_x: float
198
+ offset_y: float
199
+ offset_z: float
200
+ size_or_distance: float
201
+ comment: str
202
+ load_case: int
203
+ is_generated: bool
204
+ generating_object_info: str
205
+ id_for_export_import: str
206
+ metadata_for_export_import: str
207
+ def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[NodalLoadLoadType, str]] = ..., nodes: _Optional[_Iterable[int]] = ..., force_eccentricity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., force_eccentricity_x: _Optional[float] = ..., force_eccentricity_y: _Optional[float] = ..., force_eccentricity_z: _Optional[float] = ..., coordinate_system: _Optional[int] = ..., has_specific_direction: bool = ..., specific_direction_type: _Optional[_Union[NodalLoadSpecificDirectionType, str]] = ..., axes_sequence: _Optional[_Union[NodalLoadAxesSequence, str]] = ..., rotated_about_angle_x: _Optional[float] = ..., rotated_about_angle_y: _Optional[float] = ..., rotated_about_angle_z: _Optional[float] = ..., rotated_about_angle_1: _Optional[float] = ..., rotated_about_angle_2: _Optional[float] = ..., rotated_about_angle_3: _Optional[float] = ..., directed_to_node_direction_node: _Optional[int] = ..., parallel_to_two_nodes_first_node: _Optional[int] = ..., parallel_to_two_nodes_second_node: _Optional[int] = ..., parallel_to_line: _Optional[int] = ..., parallel_to_member: _Optional[int] = ..., components_force: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., components_force_x: _Optional[float] = ..., components_force_y: _Optional[float] = ..., components_force_z: _Optional[float] = ..., components_moment: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., components_moment_x: _Optional[float] = ..., components_moment_y: _Optional[float] = ..., components_moment_z: _Optional[float] = ..., force_magnitude: _Optional[float] = ..., load_direction: _Optional[_Union[NodalLoadLoadDirection, str]] = ..., moment_magnitude: _Optional[float] = ..., individual_mass_components: bool = ..., mass_global: _Optional[float] = ..., mass: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., mass_x: _Optional[float] = ..., mass_y: _Optional[float] = ..., mass_z: _Optional[float] = ..., mass_moment_of_inertia: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., mass_moment_of_inertia_x: _Optional[float] = ..., mass_moment_of_inertia_y: _Optional[float] = ..., mass_moment_of_inertia_z: _Optional[float] = ..., mass_has_rotational_mass: bool = ..., mass_rotational_mass: _Optional[float] = ..., mass_angular_velocity: _Optional[float] = ..., mass_angular_acceleration: _Optional[float] = ..., mass_radius: _Optional[float] = ..., mass_axis_of_rotation: _Optional[_Union[NodalLoadMassAxisOfRotation, str]] = ..., mass_angle: _Optional[float] = ..., has_shifted_display: bool = ..., offset: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., offset_x: _Optional[float] = ..., offset_y: _Optional[float] = ..., offset_z: _Optional[float] = ..., size_or_distance: _Optional[float] = ..., comment: _Optional[str] = ..., load_case: _Optional[int] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,42 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loads/opening_load.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/loads/opening_load.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(dlubal/api/rfem/loads/opening_load.proto\x12\x15\x64lubal.api.rfem.loads\"\x86\x08\n\x0bOpeningLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x42\n\tload_type\x18\x02 \x01(\x0e\x32*.dlubal.api.rfem.loads.OpeningLoadLoadTypeH\x00\x88\x01\x01\x12\x10\n\x08openings\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x05 \x01(\tH\x02\x88\x01\x01\x12L\n\x0eload_direction\x18\x06 \x01(\x0e\x32/.dlubal.api.rfem.loads.OpeningLoadLoadDirectionH\x03\x88\x01\x01\x12R\n\x11load_distribution\x18\x07 \x01(\x0e\x32\x32.dlubal.api.rfem.loads.OpeningLoadLoadDistributionH\x04\x88\x01\x01\x12\x16\n\tmagnitude\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x18\n\x0bmagnitude_3\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x13\n\x06node_1\x18\x0c \x01(\x05H\t\x88\x01\x01\x12\x13\n\x06node_2\x18\r \x01(\x05H\n\x88\x01\x01\x12\x13\n\x06node_3\x18\x0e \x01(\x05H\x0b\x88\x01\x01\x12)\n\x1csmooth_punctual_load_enabled\x18\x0f \x01(\x08H\x0c\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\r\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x11 \x01(\x08H\x0e\x88\x01\x01\x12#\n\x16generating_object_info\x18\x12 \x01(\tH\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x13 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x14 \x01(\tH\x11\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x11\n\x0f_load_directionB\x14\n\x12_load_distributionB\x0c\n\n_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\t\n\x07_node_1B\t\n\x07_node_2B\t\n\x07_node_3B\x1f\n\x1d_smooth_punctual_load_enabledB\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\x13OpeningLoadLoadType\x12\"\n\x1eOPENING_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12 \n\x1cOPENING_LOAD_LOAD_TYPE_FORCE\x10\x01*\x81\x04\n\x18OpeningLoadLoadDirection\x12\'\n#OPENING_LOAD_LOAD_DIRECTION_UNKNOWN\x10\x00\x12\x44\n@OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12?\n;OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x44\n@OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12?\n;OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x44\n@OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12?\n;OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12\'\n#OPENING_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\x8c\x01\n\x1bOpeningLoadLoadDistribution\x12\x36\n2OPENING_LOAD_LOAD_DISTRIBUTION_UNIFORM_TRAPEZOIDAL\x10\x00\x12\x35\n1OPENING_LOAD_LOAD_DISTRIBUTION_LINEAR_TRAPEZOIDAL\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.opening_load_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_OPENINGLOADLOADTYPE']._serialized_start=1100
35
+ _globals['_OPENINGLOADLOADTYPE']._serialized_end=1191
36
+ _globals['_OPENINGLOADLOADDIRECTION']._serialized_start=1194
37
+ _globals['_OPENINGLOADLOADDIRECTION']._serialized_end=1707
38
+ _globals['_OPENINGLOADLOADDISTRIBUTION']._serialized_start=1710
39
+ _globals['_OPENINGLOADLOADDISTRIBUTION']._serialized_end=1850
40
+ _globals['_OPENINGLOAD']._serialized_start=68
41
+ _globals['_OPENINGLOAD']._serialized_end=1098
42
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,84 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class OpeningLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ OPENING_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[OpeningLoadLoadType]
12
+ OPENING_LOAD_LOAD_TYPE_FORCE: _ClassVar[OpeningLoadLoadType]
13
+
14
+ class OpeningLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ OPENING_LOAD_LOAD_DIRECTION_UNKNOWN: _ClassVar[OpeningLoadLoadDirection]
17
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[OpeningLoadLoadDirection]
18
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[OpeningLoadLoadDirection]
19
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[OpeningLoadLoadDirection]
20
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[OpeningLoadLoadDirection]
21
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[OpeningLoadLoadDirection]
22
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[OpeningLoadLoadDirection]
23
+ OPENING_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[OpeningLoadLoadDirection]
24
+
25
+ class OpeningLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
26
+ __slots__ = ()
27
+ OPENING_LOAD_LOAD_DISTRIBUTION_UNIFORM_TRAPEZOIDAL: _ClassVar[OpeningLoadLoadDistribution]
28
+ OPENING_LOAD_LOAD_DISTRIBUTION_LINEAR_TRAPEZOIDAL: _ClassVar[OpeningLoadLoadDistribution]
29
+ OPENING_LOAD_LOAD_TYPE_UNKNOWN: OpeningLoadLoadType
30
+ OPENING_LOAD_LOAD_TYPE_FORCE: OpeningLoadLoadType
31
+ OPENING_LOAD_LOAD_DIRECTION_UNKNOWN: OpeningLoadLoadDirection
32
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: OpeningLoadLoadDirection
33
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: OpeningLoadLoadDirection
34
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: OpeningLoadLoadDirection
35
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: OpeningLoadLoadDirection
36
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: OpeningLoadLoadDirection
37
+ OPENING_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: OpeningLoadLoadDirection
38
+ OPENING_LOAD_LOAD_DIRECTION_LOCAL_Z: OpeningLoadLoadDirection
39
+ OPENING_LOAD_LOAD_DISTRIBUTION_UNIFORM_TRAPEZOIDAL: OpeningLoadLoadDistribution
40
+ OPENING_LOAD_LOAD_DISTRIBUTION_LINEAR_TRAPEZOIDAL: OpeningLoadLoadDistribution
41
+
42
+ class OpeningLoad(_message.Message):
43
+ __slots__ = ("no", "load_type", "openings", "load_case", "coordinate_system", "load_direction", "load_distribution", "magnitude", "magnitude_1", "magnitude_2", "magnitude_3", "node_1", "node_2", "node_3", "smooth_punctual_load_enabled", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
44
+ NO_FIELD_NUMBER: _ClassVar[int]
45
+ LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
46
+ OPENINGS_FIELD_NUMBER: _ClassVar[int]
47
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
48
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
49
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
50
+ LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
51
+ MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
52
+ MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
53
+ MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
54
+ MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
55
+ NODE_1_FIELD_NUMBER: _ClassVar[int]
56
+ NODE_2_FIELD_NUMBER: _ClassVar[int]
57
+ NODE_3_FIELD_NUMBER: _ClassVar[int]
58
+ SMOOTH_PUNCTUAL_LOAD_ENABLED_FIELD_NUMBER: _ClassVar[int]
59
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
60
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
61
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
62
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
63
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
64
+ no: int
65
+ load_type: OpeningLoadLoadType
66
+ openings: _containers.RepeatedScalarFieldContainer[int]
67
+ load_case: int
68
+ coordinate_system: str
69
+ load_direction: OpeningLoadLoadDirection
70
+ load_distribution: OpeningLoadLoadDistribution
71
+ magnitude: float
72
+ magnitude_1: float
73
+ magnitude_2: float
74
+ magnitude_3: float
75
+ node_1: int
76
+ node_2: int
77
+ node_3: int
78
+ smooth_punctual_load_enabled: bool
79
+ comment: str
80
+ is_generated: bool
81
+ generating_object_info: str
82
+ id_for_export_import: str
83
+ metadata_for_export_import: str
84
+ def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[OpeningLoadLoadType, str]] = ..., openings: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_direction: _Optional[_Union[OpeningLoadLoadDirection, str]] = ..., load_distribution: _Optional[_Union[OpeningLoadLoadDistribution, str]] = ..., magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., magnitude_3: _Optional[float] = ..., node_1: _Optional[int] = ..., node_2: _Optional[int] = ..., node_3: _Optional[int] = ..., smooth_punctual_load_enabled: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,53 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/loads/solid_load.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/loads/solid_load.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&dlubal/api/rfem/loads/solid_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\x9f\x16\n\tSolidLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12@\n\tload_type\x18\x02 \x01(\x0e\x32(.dlubal.api.rfem.loads.SolidLoadLoadTypeH\x00\x88\x01\x01\x12\x0e\n\x06solids\x18\x03 \x03(\x05\x12\x16\n\tload_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12P\n\x11load_distribution\x18\x05 \x01(\x0e\x32\x30.dlubal.api.rfem.loads.SolidLoadLoadDistributionH\x02\x88\x01\x01\x12J\n\x0eload_direction\x18\x06 \x01(\x0e\x32-.dlubal.api.rfem.loads.SolidLoadLoadDirectionH\x03\x88\x01\x01\x12\x61\n\x1aload_direction_orientation\x18\x07 \x01(\x0e\x32\x38.dlubal.api.rfem.loads.SolidLoadLoadDirectionOrientationH\x04\x88\x01\x01\x12\x1e\n\x11uniform_magnitude\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\n \x01(\x01H\x07\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_x\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_y\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\'\n\x1astrain_uniform_magnitude_z\x18\r \x01(\x01H\n\x88\x01\x01\x12 \n\x13strain_magnitude_x1\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12 \n\x13strain_magnitude_y1\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12 \n\x13strain_magnitude_z1\x18\x10 \x01(\x01H\r\x88\x01\x01\x12 \n\x13strain_magnitude_x2\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13strain_magnitude_y2\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13strain_magnitude_z2\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12\x13\n\x06node_1\x18\x14 \x01(\x05H\x11\x88\x01\x01\x12\x13\n\x06node_2\x18\x15 \x01(\x05H\x12\x88\x01\x01\x12+\n\x1eis_density_defined_by_altitude\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12\x15\n\x08\x61ltitude\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12U\n\x14\x61xis_definition_type\x18\x1a \x01(\x0e\x32\x32.dlubal.api.rfem.loads.SolidLoadAxisDefinitionTypeH\x17\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\x1b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x18\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18\x1f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1c\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18 \x01(\x01H\x1d\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18! \x01(\x01H\x1e\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18\" \x01(\x01H\x1f\x88\x01\x01\x12U\n\x14\x61xis_definition_axis\x18# \x01(\x0e\x32\x32.dlubal.api.rfem.loads.SolidLoadAxisDefinitionAxisH \x88\x01\x01\x12l\n axis_definition_axis_orientation\x18$ \x01(\x0e\x32=.dlubal.api.rfem.loads.SolidLoadAxisDefinitionAxisOrientationH!\x88\x01\x01\x12\x1a\n\rgas_magnitude\x18% \x01(\x01H\"\x88\x01\x01\x12H\n\rgas_behaviour\x18& \x01(\x0e\x32,.dlubal.api.rfem.loads.SolidLoadGasBehaviourH#\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\' \x01(\x05H$\x88\x01\x01\x12\x14\n\x07\x63omment\x18( \x01(\tH%\x88\x01\x01\x12\x19\n\x0cis_generated\x18) \x01(\x08H&\x88\x01\x01\x12#\n\x16generating_object_info\x18* \x01(\tH\'\x88\x01\x01\x12!\n\x14id_for_export_import\x18+ \x01(\tH(\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18, \x01(\tH)\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x14\n\x12_uniform_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x1d\n\x1b_strain_uniform_magnitude_xB\x1d\n\x1b_strain_uniform_magnitude_yB\x1d\n\x1b_strain_uniform_magnitude_zB\x16\n\x14_strain_magnitude_x1B\x16\n\x14_strain_magnitude_y1B\x16\n\x14_strain_magnitude_z1B\x16\n\x14_strain_magnitude_x2B\x16\n\x14_strain_magnitude_y2B\x16\n\x14_strain_magnitude_z2B\t\n\x07_node_1B\t\n\x07_node_2B!\n\x1f_is_density_defined_by_altitudeB\x0b\n\t_altitudeB\x13\n\x11_angular_velocityB\x17\n\x15_angular_accelerationB\x17\n\x15_axis_definition_typeB\x15\n\x13_axis_definition_p1B\x17\n\x15_axis_definition_p1_xB\x17\n\x15_axis_definition_p1_yB\x17\n\x15_axis_definition_p1_zB\x15\n\x13_axis_definition_p2B\x17\n\x15_axis_definition_p2_xB\x17\n\x15_axis_definition_p2_yB\x17\n\x15_axis_definition_p2_zB\x17\n\x15_axis_definition_axisB#\n!_axis_definition_axis_orientationB\x10\n\x0e_gas_magnitudeB\x10\n\x0e_gas_behaviourB\x14\n\x12_coordinate_systemB\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*\x85\x02\n\x11SolidLoadLoadType\x12 \n\x1cSOLID_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12!\n\x1dSOLID_LOAD_LOAD_TYPE_BUOYANCY\x10\x04\x12\x1e\n\x1aSOLID_LOAD_LOAD_TYPE_FORCE\x10\x01\x12\x1c\n\x18SOLID_LOAD_LOAD_TYPE_GAS\x10\x06\x12&\n\"SOLID_LOAD_LOAD_TYPE_ROTARY_MOTION\x10\x05\x12\x1f\n\x1bSOLID_LOAD_LOAD_TYPE_STRAIN\x10\x03\x12$\n SOLID_LOAD_LOAD_TYPE_TEMPERATURE\x10\x02*\xcf\x01\n\x19SolidLoadLoadDistribution\x12(\n$SOLID_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12,\n(SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X\x10\x01\x12,\n(SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y\x10\x02\x12,\n(SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z\x10\x03*\xfc\x01\n\x16SolidLoadLoadDirection\x12%\n!SOLID_LOAD_LOAD_DIRECTION_UNKNOWN\x10\x00\x12=\n9SOLID_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12=\n9SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12=\n9SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r*\xa8\x01\n!SolidLoadLoadDirectionOrientation\x12@\n<SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12\x41\n=SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01*\x81\x01\n\x1bSolidLoadAxisDefinitionType\x12.\n*SOLID_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x32\n.SOLID_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\x92\x01\n\x1bSolidLoadAxisDefinitionAxis\x12%\n!SOLID_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12%\n!SOLID_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12%\n!SOLID_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\x9c\x01\n&SolidLoadAxisDefinitionAxisOrientation\x12\x38\n4SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12\x38\n4SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\xdf\x01\n\x15SolidLoadGasBehaviour\x12\x33\n/SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE\x10\x00\x12\x33\n/SOLID_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT\x10\x01\x12-\n)SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME\x10\x02\x12-\n)SOLID_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT\x10\x03\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.solid_load_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SOLIDLOADLOADTYPE']._serialized_start=2948
36
+ _globals['_SOLIDLOADLOADTYPE']._serialized_end=3209
37
+ _globals['_SOLIDLOADLOADDISTRIBUTION']._serialized_start=3212
38
+ _globals['_SOLIDLOADLOADDISTRIBUTION']._serialized_end=3419
39
+ _globals['_SOLIDLOADLOADDIRECTION']._serialized_start=3422
40
+ _globals['_SOLIDLOADLOADDIRECTION']._serialized_end=3674
41
+ _globals['_SOLIDLOADLOADDIRECTIONORIENTATION']._serialized_start=3677
42
+ _globals['_SOLIDLOADLOADDIRECTIONORIENTATION']._serialized_end=3845
43
+ _globals['_SOLIDLOADAXISDEFINITIONTYPE']._serialized_start=3848
44
+ _globals['_SOLIDLOADAXISDEFINITIONTYPE']._serialized_end=3977
45
+ _globals['_SOLIDLOADAXISDEFINITIONAXIS']._serialized_start=3980
46
+ _globals['_SOLIDLOADAXISDEFINITIONAXIS']._serialized_end=4126
47
+ _globals['_SOLIDLOADAXISDEFINITIONAXISORIENTATION']._serialized_start=4129
48
+ _globals['_SOLIDLOADAXISDEFINITIONAXISORIENTATION']._serialized_end=4285
49
+ _globals['_SOLIDLOADGASBEHAVIOUR']._serialized_start=4288
50
+ _globals['_SOLIDLOADGASBEHAVIOUR']._serialized_end=4511
51
+ _globals['_SOLIDLOAD']._serialized_start=98
52
+ _globals['_SOLIDLOAD']._serialized_end=2945
53
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,180 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class SolidLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ SOLID_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[SolidLoadLoadType]
13
+ SOLID_LOAD_LOAD_TYPE_BUOYANCY: _ClassVar[SolidLoadLoadType]
14
+ SOLID_LOAD_LOAD_TYPE_FORCE: _ClassVar[SolidLoadLoadType]
15
+ SOLID_LOAD_LOAD_TYPE_GAS: _ClassVar[SolidLoadLoadType]
16
+ SOLID_LOAD_LOAD_TYPE_ROTARY_MOTION: _ClassVar[SolidLoadLoadType]
17
+ SOLID_LOAD_LOAD_TYPE_STRAIN: _ClassVar[SolidLoadLoadType]
18
+ SOLID_LOAD_LOAD_TYPE_TEMPERATURE: _ClassVar[SolidLoadLoadType]
19
+
20
+ class SolidLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ SOLID_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SolidLoadLoadDistribution]
23
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: _ClassVar[SolidLoadLoadDistribution]
24
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: _ClassVar[SolidLoadLoadDistribution]
25
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: _ClassVar[SolidLoadLoadDistribution]
26
+
27
+ class SolidLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
28
+ __slots__ = ()
29
+ SOLID_LOAD_LOAD_DIRECTION_UNKNOWN: _ClassVar[SolidLoadLoadDirection]
30
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[SolidLoadLoadDirection]
31
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[SolidLoadLoadDirection]
32
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[SolidLoadLoadDirection]
33
+
34
+ class SolidLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[SolidLoadLoadDirectionOrientation]
37
+ SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[SolidLoadLoadDirectionOrientation]
38
+
39
+ class SolidLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
40
+ __slots__ = ()
41
+ SOLID_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[SolidLoadAxisDefinitionType]
42
+ SOLID_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[SolidLoadAxisDefinitionType]
43
+
44
+ class SolidLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
+ __slots__ = ()
46
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[SolidLoadAxisDefinitionAxis]
47
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[SolidLoadAxisDefinitionAxis]
48
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[SolidLoadAxisDefinitionAxis]
49
+
50
+ class SolidLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
51
+ __slots__ = ()
52
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[SolidLoadAxisDefinitionAxisOrientation]
53
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[SolidLoadAxisDefinitionAxisOrientation]
54
+
55
+ class SolidLoadGasBehaviour(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
56
+ __slots__ = ()
57
+ SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE: _ClassVar[SolidLoadGasBehaviour]
58
+ SOLID_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT: _ClassVar[SolidLoadGasBehaviour]
59
+ SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME: _ClassVar[SolidLoadGasBehaviour]
60
+ SOLID_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT: _ClassVar[SolidLoadGasBehaviour]
61
+ SOLID_LOAD_LOAD_TYPE_UNKNOWN: SolidLoadLoadType
62
+ SOLID_LOAD_LOAD_TYPE_BUOYANCY: SolidLoadLoadType
63
+ SOLID_LOAD_LOAD_TYPE_FORCE: SolidLoadLoadType
64
+ SOLID_LOAD_LOAD_TYPE_GAS: SolidLoadLoadType
65
+ SOLID_LOAD_LOAD_TYPE_ROTARY_MOTION: SolidLoadLoadType
66
+ SOLID_LOAD_LOAD_TYPE_STRAIN: SolidLoadLoadType
67
+ SOLID_LOAD_LOAD_TYPE_TEMPERATURE: SolidLoadLoadType
68
+ SOLID_LOAD_LOAD_DISTRIBUTION_UNIFORM: SolidLoadLoadDistribution
69
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_X: SolidLoadLoadDistribution
70
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Y: SolidLoadLoadDistribution
71
+ SOLID_LOAD_LOAD_DISTRIBUTION_LINEAR_IN_Z: SolidLoadLoadDistribution
72
+ SOLID_LOAD_LOAD_DIRECTION_UNKNOWN: SolidLoadLoadDirection
73
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: SolidLoadLoadDirection
74
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: SolidLoadLoadDirection
75
+ SOLID_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: SolidLoadLoadDirection
76
+ SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: SolidLoadLoadDirectionOrientation
77
+ SOLID_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: SolidLoadLoadDirectionOrientation
78
+ SOLID_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: SolidLoadAxisDefinitionType
79
+ SOLID_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: SolidLoadAxisDefinitionType
80
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_X: SolidLoadAxisDefinitionAxis
81
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_Y: SolidLoadAxisDefinitionAxis
82
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_Z: SolidLoadAxisDefinitionAxis
83
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: SolidLoadAxisDefinitionAxisOrientation
84
+ SOLID_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: SolidLoadAxisDefinitionAxisOrientation
85
+ SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_OVERPRESSURE: SolidLoadGasBehaviour
86
+ SOLID_LOAD_GAS_BEHAVIOUR_OVERPRESSURE_INCREMENT: SolidLoadGasBehaviour
87
+ SOLID_LOAD_GAS_BEHAVIOUR_RESULTING_VOLUME: SolidLoadGasBehaviour
88
+ SOLID_LOAD_GAS_BEHAVIOUR_VOLUME_INCREMENT: SolidLoadGasBehaviour
89
+
90
+ class SolidLoad(_message.Message):
91
+ __slots__ = ("no", "load_type", "solids", "load_case", "load_distribution", "load_direction", "load_direction_orientation", "uniform_magnitude", "magnitude_1", "magnitude_2", "strain_uniform_magnitude_x", "strain_uniform_magnitude_y", "strain_uniform_magnitude_z", "strain_magnitude_x1", "strain_magnitude_y1", "strain_magnitude_z1", "strain_magnitude_x2", "strain_magnitude_y2", "strain_magnitude_z2", "node_1", "node_2", "is_density_defined_by_altitude", "altitude", "angular_velocity", "angular_acceleration", "axis_definition_type", "axis_definition_p1", "axis_definition_p1_x", "axis_definition_p1_y", "axis_definition_p1_z", "axis_definition_p2", "axis_definition_p2_x", "axis_definition_p2_y", "axis_definition_p2_z", "axis_definition_axis", "axis_definition_axis_orientation", "gas_magnitude", "gas_behaviour", "coordinate_system", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
92
+ NO_FIELD_NUMBER: _ClassVar[int]
93
+ LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
94
+ SOLIDS_FIELD_NUMBER: _ClassVar[int]
95
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
96
+ LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
97
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
98
+ LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
99
+ UNIFORM_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
100
+ MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
101
+ MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
102
+ STRAIN_UNIFORM_MAGNITUDE_X_FIELD_NUMBER: _ClassVar[int]
103
+ STRAIN_UNIFORM_MAGNITUDE_Y_FIELD_NUMBER: _ClassVar[int]
104
+ STRAIN_UNIFORM_MAGNITUDE_Z_FIELD_NUMBER: _ClassVar[int]
105
+ STRAIN_MAGNITUDE_X1_FIELD_NUMBER: _ClassVar[int]
106
+ STRAIN_MAGNITUDE_Y1_FIELD_NUMBER: _ClassVar[int]
107
+ STRAIN_MAGNITUDE_Z1_FIELD_NUMBER: _ClassVar[int]
108
+ STRAIN_MAGNITUDE_X2_FIELD_NUMBER: _ClassVar[int]
109
+ STRAIN_MAGNITUDE_Y2_FIELD_NUMBER: _ClassVar[int]
110
+ STRAIN_MAGNITUDE_Z2_FIELD_NUMBER: _ClassVar[int]
111
+ NODE_1_FIELD_NUMBER: _ClassVar[int]
112
+ NODE_2_FIELD_NUMBER: _ClassVar[int]
113
+ IS_DENSITY_DEFINED_BY_ALTITUDE_FIELD_NUMBER: _ClassVar[int]
114
+ ALTITUDE_FIELD_NUMBER: _ClassVar[int]
115
+ ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
116
+ ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
117
+ AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
118
+ AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
119
+ AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
120
+ AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
121
+ AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
122
+ AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
123
+ AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
124
+ AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
125
+ AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
126
+ AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
127
+ AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
128
+ GAS_MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
129
+ GAS_BEHAVIOUR_FIELD_NUMBER: _ClassVar[int]
130
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
131
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
132
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
133
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
134
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
135
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
136
+ no: int
137
+ load_type: SolidLoadLoadType
138
+ solids: _containers.RepeatedScalarFieldContainer[int]
139
+ load_case: int
140
+ load_distribution: SolidLoadLoadDistribution
141
+ load_direction: SolidLoadLoadDirection
142
+ load_direction_orientation: SolidLoadLoadDirectionOrientation
143
+ uniform_magnitude: float
144
+ magnitude_1: float
145
+ magnitude_2: float
146
+ strain_uniform_magnitude_x: float
147
+ strain_uniform_magnitude_y: float
148
+ strain_uniform_magnitude_z: float
149
+ strain_magnitude_x1: float
150
+ strain_magnitude_y1: float
151
+ strain_magnitude_z1: float
152
+ strain_magnitude_x2: float
153
+ strain_magnitude_y2: float
154
+ strain_magnitude_z2: float
155
+ node_1: int
156
+ node_2: int
157
+ is_density_defined_by_altitude: bool
158
+ altitude: float
159
+ angular_velocity: float
160
+ angular_acceleration: float
161
+ axis_definition_type: SolidLoadAxisDefinitionType
162
+ axis_definition_p1: _common_pb2.Vector3d
163
+ axis_definition_p1_x: float
164
+ axis_definition_p1_y: float
165
+ axis_definition_p1_z: float
166
+ axis_definition_p2: _common_pb2.Vector3d
167
+ axis_definition_p2_x: float
168
+ axis_definition_p2_y: float
169
+ axis_definition_p2_z: float
170
+ axis_definition_axis: SolidLoadAxisDefinitionAxis
171
+ axis_definition_axis_orientation: SolidLoadAxisDefinitionAxisOrientation
172
+ gas_magnitude: float
173
+ gas_behaviour: SolidLoadGasBehaviour
174
+ coordinate_system: int
175
+ comment: str
176
+ is_generated: bool
177
+ generating_object_info: str
178
+ id_for_export_import: str
179
+ metadata_for_export_import: str
180
+ def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[SolidLoadLoadType, str]] = ..., solids: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., load_distribution: _Optional[_Union[SolidLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[SolidLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[SolidLoadLoadDirectionOrientation, str]] = ..., uniform_magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., strain_uniform_magnitude_x: _Optional[float] = ..., strain_uniform_magnitude_y: _Optional[float] = ..., strain_uniform_magnitude_z: _Optional[float] = ..., strain_magnitude_x1: _Optional[float] = ..., strain_magnitude_y1: _Optional[float] = ..., strain_magnitude_z1: _Optional[float] = ..., strain_magnitude_x2: _Optional[float] = ..., strain_magnitude_y2: _Optional[float] = ..., strain_magnitude_z2: _Optional[float] = ..., node_1: _Optional[int] = ..., node_2: _Optional[int] = ..., is_density_defined_by_altitude: bool = ..., altitude: _Optional[float] = ..., angular_velocity: _Optional[float] = ..., angular_acceleration: _Optional[float] = ..., axis_definition_type: _Optional[_Union[SolidLoadAxisDefinitionType, str]] = ..., axis_definition_p1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., axis_definition_p1_x: _Optional[float] = ..., axis_definition_p1_y: _Optional[float] = ..., axis_definition_p1_z: _Optional[float] = ..., axis_definition_p2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., axis_definition_p2_x: _Optional[float] = ..., axis_definition_p2_y: _Optional[float] = ..., axis_definition_p2_z: _Optional[float] = ..., axis_definition_axis: _Optional[_Union[SolidLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[SolidLoadAxisDefinitionAxisOrientation, str]] = ..., gas_magnitude: _Optional[float] = ..., gas_behaviour: _Optional[_Union[SolidLoadGasBehaviour, str]] = ..., coordinate_system: _Optional[int] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...