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,388 @@
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 MemberSetLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ MEMBER_SET_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[MemberSetLoadLoadType]
13
+ MEMBER_SET_LOAD_LOAD_TYPE_E_TYPE_MASS: _ClassVar[MemberSetLoadLoadType]
14
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT: _ClassVar[MemberSetLoadLoadType]
15
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN: _ClassVar[MemberSetLoadLoadType]
16
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR: _ClassVar[MemberSetLoadLoadType]
17
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON: _ClassVar[MemberSetLoadLoadType]
18
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT: _ClassVar[MemberSetLoadLoadType]
19
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS: _ClassVar[MemberSetLoadLoadType]
20
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: _ClassVar[MemberSetLoadLoadType]
21
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING: _ClassVar[MemberSetLoadLoadType]
22
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS: _ClassVar[MemberSetLoadLoadType]
23
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: _ClassVar[MemberSetLoadLoadType]
24
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL: _ClassVar[MemberSetLoadLoadType]
25
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL: _ClassVar[MemberSetLoadLoadType]
26
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE: _ClassVar[MemberSetLoadLoadType]
27
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER: _ClassVar[MemberSetLoadLoadType]
28
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION: _ClassVar[MemberSetLoadLoadType]
29
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION: _ClassVar[MemberSetLoadLoadType]
30
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE: _ClassVar[MemberSetLoadLoadType]
31
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE: _ClassVar[MemberSetLoadLoadType]
32
+
33
+ class MemberSetLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[MemberSetLoadLoadDistribution]
36
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: _ClassVar[MemberSetLoadLoadDistribution]
37
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: _ClassVar[MemberSetLoadLoadDistribution]
38
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: _ClassVar[MemberSetLoadLoadDistribution]
39
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: _ClassVar[MemberSetLoadLoadDistribution]
40
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: _ClassVar[MemberSetLoadLoadDistribution]
41
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC: _ClassVar[MemberSetLoadLoadDistribution]
42
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TAPERED: _ClassVar[MemberSetLoadLoadDistribution]
43
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: _ClassVar[MemberSetLoadLoadDistribution]
44
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: _ClassVar[MemberSetLoadLoadDistribution]
45
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING: _ClassVar[MemberSetLoadLoadDistribution]
46
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: _ClassVar[MemberSetLoadLoadDistribution]
47
+
48
+ class MemberSetLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
49
+ __slots__ = ()
50
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[MemberSetLoadLoadDirection]
51
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[MemberSetLoadLoadDirection]
52
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[MemberSetLoadLoadDirection]
53
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[MemberSetLoadLoadDirection]
54
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[MemberSetLoadLoadDirection]
55
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[MemberSetLoadLoadDirection]
56
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[MemberSetLoadLoadDirection]
57
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[MemberSetLoadLoadDirection]
58
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[MemberSetLoadLoadDirection]
59
+ MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_U: _ClassVar[MemberSetLoadLoadDirection]
60
+ MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_V: _ClassVar[MemberSetLoadLoadDirection]
61
+
62
+ class MemberSetLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
63
+ __slots__ = ()
64
+ MEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[MemberSetLoadLoadDirectionOrientation]
65
+ MEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[MemberSetLoadLoadDirectionOrientation]
66
+
67
+ class MemberSetLoadFormFindingDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
68
+ __slots__ = ()
69
+ MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC: _ClassVar[MemberSetLoadFormFindingDefinitionType]
70
+ MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE: _ClassVar[MemberSetLoadFormFindingDefinitionType]
71
+
72
+ class MemberSetLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
73
+ __slots__ = ()
74
+ MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[MemberSetLoadAxisDefinitionType]
75
+ MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[MemberSetLoadAxisDefinitionType]
76
+
77
+ class MemberSetLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
78
+ __slots__ = ()
79
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[MemberSetLoadAxisDefinitionAxis]
80
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[MemberSetLoadAxisDefinitionAxis]
81
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[MemberSetLoadAxisDefinitionAxis]
82
+
83
+ class MemberSetLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
84
+ __slots__ = ()
85
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[MemberSetLoadAxisDefinitionAxisOrientation]
86
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[MemberSetLoadAxisDefinitionAxisOrientation]
87
+
88
+ class MemberSetLoadEccentricityHorizontalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
89
+ __slots__ = ()
90
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: _ClassVar[MemberSetLoadEccentricityHorizontalAlignment]
91
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: _ClassVar[MemberSetLoadEccentricityHorizontalAlignment]
92
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: _ClassVar[MemberSetLoadEccentricityHorizontalAlignment]
93
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: _ClassVar[MemberSetLoadEccentricityHorizontalAlignment]
94
+
95
+ class MemberSetLoadEccentricityVerticalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
96
+ __slots__ = ()
97
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: _ClassVar[MemberSetLoadEccentricityVerticalAlignment]
98
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: _ClassVar[MemberSetLoadEccentricityVerticalAlignment]
99
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: _ClassVar[MemberSetLoadEccentricityVerticalAlignment]
100
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: _ClassVar[MemberSetLoadEccentricityVerticalAlignment]
101
+
102
+ class MemberSetLoadEccentricitySectionMiddle(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
103
+ __slots__ = ()
104
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY: _ClassVar[MemberSetLoadEccentricitySectionMiddle]
105
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE: _ClassVar[MemberSetLoadEccentricitySectionMiddle]
106
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER: _ClassVar[MemberSetLoadEccentricitySectionMiddle]
107
+
108
+ class MemberSetLoadFormFindingInternalForce(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
109
+ __slots__ = ()
110
+ MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION: _ClassVar[MemberSetLoadFormFindingInternalForce]
111
+ MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION: _ClassVar[MemberSetLoadFormFindingInternalForce]
112
+
113
+ class MemberSetLoadFormFindingGeometryDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
114
+ __slots__ = ()
115
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH: _ClassVar[MemberSetLoadFormFindingGeometryDefinition]
116
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG: _ClassVar[MemberSetLoadFormFindingGeometryDefinition]
117
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG: _ClassVar[MemberSetLoadFormFindingGeometryDefinition]
118
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG: _ClassVar[MemberSetLoadFormFindingGeometryDefinition]
119
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH: _ClassVar[MemberSetLoadFormFindingGeometryDefinition]
120
+
121
+ class MemberSetLoadFormFindingForceDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
122
+ __slots__ = ()
123
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN: _ClassVar[MemberSetLoadFormFindingForceDefinition]
124
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE: _ClassVar[MemberSetLoadFormFindingForceDefinition]
125
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY: _ClassVar[MemberSetLoadFormFindingForceDefinition]
126
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT: _ClassVar[MemberSetLoadFormFindingForceDefinition]
127
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER: _ClassVar[MemberSetLoadFormFindingForceDefinition]
128
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND: _ClassVar[MemberSetLoadFormFindingForceDefinition]
129
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND: _ClassVar[MemberSetLoadFormFindingForceDefinition]
130
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER: _ClassVar[MemberSetLoadFormFindingForceDefinition]
131
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND: _ClassVar[MemberSetLoadFormFindingForceDefinition]
132
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND: _ClassVar[MemberSetLoadFormFindingForceDefinition]
133
+ MEMBER_SET_LOAD_LOAD_TYPE_UNKNOWN: MemberSetLoadLoadType
134
+ MEMBER_SET_LOAD_LOAD_TYPE_E_TYPE_MASS: MemberSetLoadLoadType
135
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT: MemberSetLoadLoadType
136
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN: MemberSetLoadLoadType
137
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR: MemberSetLoadLoadType
138
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON: MemberSetLoadLoadType
139
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT: MemberSetLoadLoadType
140
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS: MemberSetLoadLoadType
141
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: MemberSetLoadLoadType
142
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING: MemberSetLoadLoadType
143
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS: MemberSetLoadLoadType
144
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: MemberSetLoadLoadType
145
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL: MemberSetLoadLoadType
146
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL: MemberSetLoadLoadType
147
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE: MemberSetLoadLoadType
148
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER: MemberSetLoadLoadType
149
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION: MemberSetLoadLoadType
150
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION: MemberSetLoadLoadType
151
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE: MemberSetLoadLoadType
152
+ MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE: MemberSetLoadLoadType
153
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM: MemberSetLoadLoadDistribution
154
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: MemberSetLoadLoadDistribution
155
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: MemberSetLoadLoadDistribution
156
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: MemberSetLoadLoadDistribution
157
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: MemberSetLoadLoadDistribution
158
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: MemberSetLoadLoadDistribution
159
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC: MemberSetLoadLoadDistribution
160
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TAPERED: MemberSetLoadLoadDistribution
161
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: MemberSetLoadLoadDistribution
162
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: MemberSetLoadLoadDistribution
163
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING: MemberSetLoadLoadDistribution
164
+ MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: MemberSetLoadLoadDistribution
165
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_X: MemberSetLoadLoadDirection
166
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: MemberSetLoadLoadDirection
167
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: MemberSetLoadLoadDirection
168
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: MemberSetLoadLoadDirection
169
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: MemberSetLoadLoadDirection
170
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: MemberSetLoadLoadDirection
171
+ MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: MemberSetLoadLoadDirection
172
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Y: MemberSetLoadLoadDirection
173
+ MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Z: MemberSetLoadLoadDirection
174
+ MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_U: MemberSetLoadLoadDirection
175
+ MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_V: MemberSetLoadLoadDirection
176
+ MEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: MemberSetLoadLoadDirectionOrientation
177
+ MEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: MemberSetLoadLoadDirectionOrientation
178
+ MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC: MemberSetLoadFormFindingDefinitionType
179
+ MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE: MemberSetLoadFormFindingDefinitionType
180
+ MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: MemberSetLoadAxisDefinitionType
181
+ MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: MemberSetLoadAxisDefinitionType
182
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_X: MemberSetLoadAxisDefinitionAxis
183
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Y: MemberSetLoadAxisDefinitionAxis
184
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Z: MemberSetLoadAxisDefinitionAxis
185
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: MemberSetLoadAxisDefinitionAxisOrientation
186
+ MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: MemberSetLoadAxisDefinitionAxisOrientation
187
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: MemberSetLoadEccentricityHorizontalAlignment
188
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: MemberSetLoadEccentricityHorizontalAlignment
189
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: MemberSetLoadEccentricityHorizontalAlignment
190
+ MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: MemberSetLoadEccentricityHorizontalAlignment
191
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: MemberSetLoadEccentricityVerticalAlignment
192
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: MemberSetLoadEccentricityVerticalAlignment
193
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: MemberSetLoadEccentricityVerticalAlignment
194
+ MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: MemberSetLoadEccentricityVerticalAlignment
195
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY: MemberSetLoadEccentricitySectionMiddle
196
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE: MemberSetLoadEccentricitySectionMiddle
197
+ MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER: MemberSetLoadEccentricitySectionMiddle
198
+ MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION: MemberSetLoadFormFindingInternalForce
199
+ MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION: MemberSetLoadFormFindingInternalForce
200
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH: MemberSetLoadFormFindingGeometryDefinition
201
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG: MemberSetLoadFormFindingGeometryDefinition
202
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG: MemberSetLoadFormFindingGeometryDefinition
203
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG: MemberSetLoadFormFindingGeometryDefinition
204
+ MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH: MemberSetLoadFormFindingGeometryDefinition
205
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN: MemberSetLoadFormFindingForceDefinition
206
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE: MemberSetLoadFormFindingForceDefinition
207
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY: MemberSetLoadFormFindingForceDefinition
208
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT: MemberSetLoadFormFindingForceDefinition
209
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER: MemberSetLoadFormFindingForceDefinition
210
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND: MemberSetLoadFormFindingForceDefinition
211
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND: MemberSetLoadFormFindingForceDefinition
212
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER: MemberSetLoadFormFindingForceDefinition
213
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND: MemberSetLoadFormFindingForceDefinition
214
+ MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND: MemberSetLoadFormFindingForceDefinition
215
+
216
+ class MemberSetLoad(_message.Message):
217
+ __slots__ = ("no", "load_type", "member_sets", "load_case", "coordinate_system", "load_distribution", "load_direction", "load_direction_orientation", "form_finding_definition_type", "magnitude", "magnitude_1", "magnitude_2", "magnitude_3", "magnitude_t_c", "magnitude_t_c_1", "magnitude_t_c_2", "magnitude_t_c_3", "magnitude_delta_t", "magnitude_delta_t_1", "magnitude_delta_t_2", "magnitude_delta_t_3", "magnitude_t_t", "magnitude_t_t_1", "magnitude_t_t_2", "magnitude_t_t_3", "magnitude_t_b", "magnitude_t_b_1", "magnitude_t_b_2", "magnitude_t_b_3", "mass_global", "mass_x", "mass_y", "mass_z", "distance_a_is_defined_as_relative", "distance_a_absolute", "distance_a_relative", "distance_b_is_defined_as_relative", "distance_b_absolute", "distance_b_relative", "distance_c_is_defined_as_relative", "distance_c_absolute", "distance_c_relative", "count_n", "varying_load_parameters_are_defined_as_relative", "varying_load_parameters", "varying_load_parameters_sorted", "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", "filling_height", "distance_from_member_set_end", "load_is_over_total_length", "has_force_eccentricity", "eccentricity_horizontal_alignment", "eccentricity_vertical_alignment", "eccentricity_section_middle", "is_eccentricity_at_end_different_from_start", "eccentricity_y_at_start", "eccentricity_z_at_start", "eccentricity_y_at_end", "eccentricity_z_at_end", "form_finding_internal_force", "form_finding_geometry_definition", "form_finding_force_definition", "form_finding_magnitude_is_defined_as_relative", "form_finding_magnitude_absolute", "form_finding_magnitude_relative", "individual_mass_components", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
218
+ NO_FIELD_NUMBER: _ClassVar[int]
219
+ LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
220
+ MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
221
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
222
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
223
+ LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
224
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
225
+ LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
226
+ FORM_FINDING_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
227
+ MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
228
+ MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
229
+ MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
230
+ MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
231
+ MAGNITUDE_T_C_FIELD_NUMBER: _ClassVar[int]
232
+ MAGNITUDE_T_C_1_FIELD_NUMBER: _ClassVar[int]
233
+ MAGNITUDE_T_C_2_FIELD_NUMBER: _ClassVar[int]
234
+ MAGNITUDE_T_C_3_FIELD_NUMBER: _ClassVar[int]
235
+ MAGNITUDE_DELTA_T_FIELD_NUMBER: _ClassVar[int]
236
+ MAGNITUDE_DELTA_T_1_FIELD_NUMBER: _ClassVar[int]
237
+ MAGNITUDE_DELTA_T_2_FIELD_NUMBER: _ClassVar[int]
238
+ MAGNITUDE_DELTA_T_3_FIELD_NUMBER: _ClassVar[int]
239
+ MAGNITUDE_T_T_FIELD_NUMBER: _ClassVar[int]
240
+ MAGNITUDE_T_T_1_FIELD_NUMBER: _ClassVar[int]
241
+ MAGNITUDE_T_T_2_FIELD_NUMBER: _ClassVar[int]
242
+ MAGNITUDE_T_T_3_FIELD_NUMBER: _ClassVar[int]
243
+ MAGNITUDE_T_B_FIELD_NUMBER: _ClassVar[int]
244
+ MAGNITUDE_T_B_1_FIELD_NUMBER: _ClassVar[int]
245
+ MAGNITUDE_T_B_2_FIELD_NUMBER: _ClassVar[int]
246
+ MAGNITUDE_T_B_3_FIELD_NUMBER: _ClassVar[int]
247
+ MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
248
+ MASS_X_FIELD_NUMBER: _ClassVar[int]
249
+ MASS_Y_FIELD_NUMBER: _ClassVar[int]
250
+ MASS_Z_FIELD_NUMBER: _ClassVar[int]
251
+ DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
252
+ DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
253
+ DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
254
+ DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
255
+ DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
256
+ DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
257
+ DISTANCE_C_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
258
+ DISTANCE_C_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
259
+ DISTANCE_C_RELATIVE_FIELD_NUMBER: _ClassVar[int]
260
+ COUNT_N_FIELD_NUMBER: _ClassVar[int]
261
+ VARYING_LOAD_PARAMETERS_ARE_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
262
+ VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
263
+ VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
264
+ ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
265
+ ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
266
+ AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
267
+ AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
268
+ AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
269
+ AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
270
+ AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
271
+ AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
272
+ AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
273
+ AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
274
+ AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
275
+ AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
276
+ AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
277
+ FILLING_HEIGHT_FIELD_NUMBER: _ClassVar[int]
278
+ DISTANCE_FROM_MEMBER_SET_END_FIELD_NUMBER: _ClassVar[int]
279
+ LOAD_IS_OVER_TOTAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
280
+ HAS_FORCE_ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
281
+ ECCENTRICITY_HORIZONTAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
282
+ ECCENTRICITY_VERTICAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
283
+ ECCENTRICITY_SECTION_MIDDLE_FIELD_NUMBER: _ClassVar[int]
284
+ IS_ECCENTRICITY_AT_END_DIFFERENT_FROM_START_FIELD_NUMBER: _ClassVar[int]
285
+ ECCENTRICITY_Y_AT_START_FIELD_NUMBER: _ClassVar[int]
286
+ ECCENTRICITY_Z_AT_START_FIELD_NUMBER: _ClassVar[int]
287
+ ECCENTRICITY_Y_AT_END_FIELD_NUMBER: _ClassVar[int]
288
+ ECCENTRICITY_Z_AT_END_FIELD_NUMBER: _ClassVar[int]
289
+ FORM_FINDING_INTERNAL_FORCE_FIELD_NUMBER: _ClassVar[int]
290
+ FORM_FINDING_GEOMETRY_DEFINITION_FIELD_NUMBER: _ClassVar[int]
291
+ FORM_FINDING_FORCE_DEFINITION_FIELD_NUMBER: _ClassVar[int]
292
+ FORM_FINDING_MAGNITUDE_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
293
+ FORM_FINDING_MAGNITUDE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
294
+ FORM_FINDING_MAGNITUDE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
295
+ INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
296
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
297
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
298
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
299
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
300
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
301
+ no: int
302
+ load_type: MemberSetLoadLoadType
303
+ member_sets: _containers.RepeatedScalarFieldContainer[int]
304
+ load_case: int
305
+ coordinate_system: str
306
+ load_distribution: MemberSetLoadLoadDistribution
307
+ load_direction: MemberSetLoadLoadDirection
308
+ load_direction_orientation: MemberSetLoadLoadDirectionOrientation
309
+ form_finding_definition_type: MemberSetLoadFormFindingDefinitionType
310
+ magnitude: float
311
+ magnitude_1: float
312
+ magnitude_2: float
313
+ magnitude_3: float
314
+ magnitude_t_c: float
315
+ magnitude_t_c_1: float
316
+ magnitude_t_c_2: float
317
+ magnitude_t_c_3: float
318
+ magnitude_delta_t: float
319
+ magnitude_delta_t_1: float
320
+ magnitude_delta_t_2: float
321
+ magnitude_delta_t_3: float
322
+ magnitude_t_t: float
323
+ magnitude_t_t_1: float
324
+ magnitude_t_t_2: float
325
+ magnitude_t_t_3: float
326
+ magnitude_t_b: float
327
+ magnitude_t_b_1: float
328
+ magnitude_t_b_2: float
329
+ magnitude_t_b_3: float
330
+ mass_global: float
331
+ mass_x: float
332
+ mass_y: float
333
+ mass_z: float
334
+ distance_a_is_defined_as_relative: bool
335
+ distance_a_absolute: float
336
+ distance_a_relative: float
337
+ distance_b_is_defined_as_relative: bool
338
+ distance_b_absolute: float
339
+ distance_b_relative: float
340
+ distance_c_is_defined_as_relative: bool
341
+ distance_c_absolute: float
342
+ distance_c_relative: float
343
+ count_n: int
344
+ varying_load_parameters_are_defined_as_relative: bool
345
+ varying_load_parameters: ArrayOfMemberSetLoadVaryingLoadParameters
346
+ varying_load_parameters_sorted: bool
347
+ angular_velocity: float
348
+ angular_acceleration: float
349
+ axis_definition_type: MemberSetLoadAxisDefinitionType
350
+ axis_definition_p1: _common_pb2.Vector3d
351
+ axis_definition_p1_x: float
352
+ axis_definition_p1_y: float
353
+ axis_definition_p1_z: float
354
+ axis_definition_p2: _common_pb2.Vector3d
355
+ axis_definition_p2_x: float
356
+ axis_definition_p2_y: float
357
+ axis_definition_p2_z: float
358
+ axis_definition_axis: MemberSetLoadAxisDefinitionAxis
359
+ axis_definition_axis_orientation: MemberSetLoadAxisDefinitionAxisOrientation
360
+ filling_height: float
361
+ distance_from_member_set_end: bool
362
+ load_is_over_total_length: bool
363
+ has_force_eccentricity: bool
364
+ eccentricity_horizontal_alignment: MemberSetLoadEccentricityHorizontalAlignment
365
+ eccentricity_vertical_alignment: MemberSetLoadEccentricityVerticalAlignment
366
+ eccentricity_section_middle: MemberSetLoadEccentricitySectionMiddle
367
+ is_eccentricity_at_end_different_from_start: bool
368
+ eccentricity_y_at_start: float
369
+ eccentricity_z_at_start: float
370
+ eccentricity_y_at_end: float
371
+ eccentricity_z_at_end: float
372
+ form_finding_internal_force: MemberSetLoadFormFindingInternalForce
373
+ form_finding_geometry_definition: MemberSetLoadFormFindingGeometryDefinition
374
+ form_finding_force_definition: MemberSetLoadFormFindingForceDefinition
375
+ form_finding_magnitude_is_defined_as_relative: bool
376
+ form_finding_magnitude_absolute: float
377
+ form_finding_magnitude_relative: float
378
+ individual_mass_components: bool
379
+ comment: str
380
+ is_generated: bool
381
+ generating_object_info: str
382
+ id_for_export_import: str
383
+ metadata_for_export_import: str
384
+ def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[MemberSetLoadLoadType, str]] = ..., member_sets: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_distribution: _Optional[_Union[MemberSetLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[MemberSetLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[MemberSetLoadLoadDirectionOrientation, str]] = ..., form_finding_definition_type: _Optional[_Union[MemberSetLoadFormFindingDefinitionType, str]] = ..., magnitude: _Optional[float] = ..., magnitude_1: _Optional[float] = ..., magnitude_2: _Optional[float] = ..., magnitude_3: _Optional[float] = ..., magnitude_t_c: _Optional[float] = ..., magnitude_t_c_1: _Optional[float] = ..., magnitude_t_c_2: _Optional[float] = ..., magnitude_t_c_3: _Optional[float] = ..., magnitude_delta_t: _Optional[float] = ..., magnitude_delta_t_1: _Optional[float] = ..., magnitude_delta_t_2: _Optional[float] = ..., magnitude_delta_t_3: _Optional[float] = ..., magnitude_t_t: _Optional[float] = ..., magnitude_t_t_1: _Optional[float] = ..., magnitude_t_t_2: _Optional[float] = ..., magnitude_t_t_3: _Optional[float] = ..., magnitude_t_b: _Optional[float] = ..., magnitude_t_b_1: _Optional[float] = ..., magnitude_t_b_2: _Optional[float] = ..., magnitude_t_b_3: _Optional[float] = ..., mass_global: _Optional[float] = ..., mass_x: _Optional[float] = ..., mass_y: _Optional[float] = ..., mass_z: _Optional[float] = ..., distance_a_is_defined_as_relative: bool = ..., distance_a_absolute: _Optional[float] = ..., distance_a_relative: _Optional[float] = ..., distance_b_is_defined_as_relative: bool = ..., distance_b_absolute: _Optional[float] = ..., distance_b_relative: _Optional[float] = ..., distance_c_is_defined_as_relative: bool = ..., distance_c_absolute: _Optional[float] = ..., distance_c_relative: _Optional[float] = ..., count_n: _Optional[int] = ..., varying_load_parameters_are_defined_as_relative: bool = ..., varying_load_parameters: _Optional[_Union[ArrayOfMemberSetLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., angular_velocity: _Optional[float] = ..., angular_acceleration: _Optional[float] = ..., axis_definition_type: _Optional[_Union[MemberSetLoadAxisDefinitionType, 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[MemberSetLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[MemberSetLoadAxisDefinitionAxisOrientation, str]] = ..., filling_height: _Optional[float] = ..., distance_from_member_set_end: bool = ..., load_is_over_total_length: bool = ..., has_force_eccentricity: bool = ..., eccentricity_horizontal_alignment: _Optional[_Union[MemberSetLoadEccentricityHorizontalAlignment, str]] = ..., eccentricity_vertical_alignment: _Optional[_Union[MemberSetLoadEccentricityVerticalAlignment, str]] = ..., eccentricity_section_middle: _Optional[_Union[MemberSetLoadEccentricitySectionMiddle, str]] = ..., is_eccentricity_at_end_different_from_start: bool = ..., eccentricity_y_at_start: _Optional[float] = ..., eccentricity_z_at_start: _Optional[float] = ..., eccentricity_y_at_end: _Optional[float] = ..., eccentricity_z_at_end: _Optional[float] = ..., form_finding_internal_force: _Optional[_Union[MemberSetLoadFormFindingInternalForce, str]] = ..., form_finding_geometry_definition: _Optional[_Union[MemberSetLoadFormFindingGeometryDefinition, str]] = ..., form_finding_force_definition: _Optional[_Union[MemberSetLoadFormFindingForceDefinition, str]] = ..., form_finding_magnitude_is_defined_as_relative: bool = ..., form_finding_magnitude_absolute: _Optional[float] = ..., form_finding_magnitude_relative: _Optional[float] = ..., individual_mass_components: 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: ...
385
+
386
+ class ArrayOfMemberSetLoadVaryingLoadParameters(_message.Message):
387
+ __slots__ = ()
388
+ def __init__(self) -> None: ...
@@ -0,0 +1,47 @@
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/nodal_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/nodal_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/nodal_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xb0\x1d\n\tNodalLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12@\n\tload_type\x18\x02 \x01(\x0e\x32(.dlubal.api.rfem.loads.NodalLoadLoadTypeH\x00\x88\x01\x01\x12\r\n\x05nodes\x18\x03 \x03(\x05\x12<\n\x12\x66orce_eccentricity\x18\x04 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x01\x88\x01\x01\x12!\n\x14\x66orce_eccentricity_x\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12!\n\x14\x66orce_eccentricity_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12!\n\x14\x66orce_eccentricity_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\t \x01(\x05H\x05\x88\x01\x01\x12#\n\x16has_specific_direction\x18\n \x01(\x08H\x06\x88\x01\x01\x12[\n\x17specific_direction_type\x18\x0b \x01(\x0e\x32\x35.dlubal.api.rfem.loads.NodalLoadSpecificDirectionTypeH\x07\x88\x01\x01\x12H\n\raxes_sequence\x18\x0c \x01(\x0e\x32,.dlubal.api.rfem.loads.NodalLoadAxesSequenceH\x08\x88\x01\x01\x12\"\n\x15rotated_about_angle_x\x18\r \x01(\x01H\t\x88\x01\x01\x12\"\n\x15rotated_about_angle_y\x18\x0e \x01(\x01H\n\x88\x01\x01\x12\"\n\x15rotated_about_angle_z\x18\x0f \x01(\x01H\x0b\x88\x01\x01\x12\"\n\x15rotated_about_angle_1\x18\x10 \x01(\x01H\x0c\x88\x01\x01\x12\"\n\x15rotated_about_angle_2\x18\x11 \x01(\x01H\r\x88\x01\x01\x12\"\n\x15rotated_about_angle_3\x18\x12 \x01(\x01H\x0e\x88\x01\x01\x12,\n\x1f\x64irected_to_node_direction_node\x18\x13 \x01(\x05H\x0f\x88\x01\x01\x12-\n parallel_to_two_nodes_first_node\x18\x14 \x01(\x05H\x10\x88\x01\x01\x12.\n!parallel_to_two_nodes_second_node\x18\x15 \x01(\x05H\x11\x88\x01\x01\x12\x1d\n\x10parallel_to_line\x18\x16 \x01(\x05H\x12\x88\x01\x01\x12\x1f\n\x12parallel_to_member\x18\x17 \x01(\x05H\x13\x88\x01\x01\x12:\n\x10\x63omponents_force\x18\x18 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x14\x88\x01\x01\x12\x1f\n\x12\x63omponents_force_x\x18\x19 \x01(\x01H\x15\x88\x01\x01\x12\x1f\n\x12\x63omponents_force_y\x18\x1a \x01(\x01H\x16\x88\x01\x01\x12\x1f\n\x12\x63omponents_force_z\x18\x1b \x01(\x01H\x17\x88\x01\x01\x12;\n\x11\x63omponents_moment\x18\x1c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x18\x88\x01\x01\x12 \n\x13\x63omponents_moment_x\x18\x1d \x01(\x01H\x19\x88\x01\x01\x12 \n\x13\x63omponents_moment_y\x18\x1e \x01(\x01H\x1a\x88\x01\x01\x12 \n\x13\x63omponents_moment_z\x18\x1f \x01(\x01H\x1b\x88\x01\x01\x12\x1c\n\x0f\x66orce_magnitude\x18 \x01(\x01H\x1c\x88\x01\x01\x12J\n\x0eload_direction\x18! \x01(\x0e\x32-.dlubal.api.rfem.loads.NodalLoadLoadDirectionH\x1d\x88\x01\x01\x12\x1d\n\x10moment_magnitude\x18\" \x01(\x01H\x1e\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18# \x01(\x08H\x1f\x88\x01\x01\x12\x18\n\x0bmass_global\x18$ \x01(\x01H \x88\x01\x01\x12.\n\x04mass\x18% \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH!\x88\x01\x01\x12\x13\n\x06mass_x\x18& \x01(\x01H\"\x88\x01\x01\x12\x13\n\x06mass_y\x18\' \x01(\x01H#\x88\x01\x01\x12\x13\n\x06mass_z\x18( \x01(\x01H$\x88\x01\x01\x12@\n\x16mass_moment_of_inertia\x18) \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH%\x88\x01\x01\x12%\n\x18mass_moment_of_inertia_x\x18* \x01(\x01H&\x88\x01\x01\x12%\n\x18mass_moment_of_inertia_y\x18+ \x01(\x01H\'\x88\x01\x01\x12%\n\x18mass_moment_of_inertia_z\x18, \x01(\x01H(\x88\x01\x01\x12%\n\x18mass_has_rotational_mass\x18- \x01(\x08H)\x88\x01\x01\x12!\n\x14mass_rotational_mass\x18. \x01(\x01H*\x88\x01\x01\x12\"\n\x15mass_angular_velocity\x18/ \x01(\x01H+\x88\x01\x01\x12&\n\x19mass_angular_acceleration\x18\x30 \x01(\x01H,\x88\x01\x01\x12\x18\n\x0bmass_radius\x18\x31 \x01(\x01H-\x88\x01\x01\x12V\n\x15mass_axis_of_rotation\x18\x32 \x01(\x0e\x32\x32.dlubal.api.rfem.loads.NodalLoadMassAxisOfRotationH.\x88\x01\x01\x12\x17\n\nmass_angle\x18\x33 \x01(\x01H/\x88\x01\x01\x12 \n\x13has_shifted_display\x18\x34 \x01(\x08H0\x88\x01\x01\x12\x30\n\x06offset\x18\x35 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH1\x88\x01\x01\x12\x15\n\x08offset_x\x18\x36 \x01(\x01H2\x88\x01\x01\x12\x15\n\x08offset_y\x18\x37 \x01(\x01H3\x88\x01\x01\x12\x15\n\x08offset_z\x18\x38 \x01(\x01H4\x88\x01\x01\x12\x1d\n\x10size_or_distance\x18\x39 \x01(\x01H5\x88\x01\x01\x12\x14\n\x07\x63omment\x18: \x01(\tH6\x88\x01\x01\x12\x16\n\tload_case\x18; \x01(\x05H7\x88\x01\x01\x12\x19\n\x0cis_generated\x18< \x01(\x08H8\x88\x01\x01\x12#\n\x16generating_object_info\x18= \x01(\tH9\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\x15\n\x13_force_eccentricityB\x17\n\x15_force_eccentricity_xB\x17\n\x15_force_eccentricity_yB\x17\n\x15_force_eccentricity_zB\x14\n\x12_coordinate_systemB\x19\n\x17_has_specific_directionB\x1a\n\x18_specific_direction_typeB\x10\n\x0e_axes_sequenceB\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\"\n _directed_to_node_direction_nodeB#\n!_parallel_to_two_nodes_first_nodeB$\n\"_parallel_to_two_nodes_second_nodeB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB\x13\n\x11_components_forceB\x15\n\x13_components_force_xB\x15\n\x13_components_force_yB\x15\n\x13_components_force_zB\x14\n\x12_components_momentB\x16\n\x14_components_moment_xB\x16\n\x14_components_moment_yB\x16\n\x14_components_moment_zB\x12\n\x10_force_magnitudeB\x11\n\x0f_load_directionB\x13\n\x11_moment_magnitudeB\x1d\n\x1b_individual_mass_componentsB\x0e\n\x0c_mass_globalB\x07\n\x05_massB\t\n\x07_mass_xB\t\n\x07_mass_yB\t\n\x07_mass_zB\x19\n\x17_mass_moment_of_inertiaB\x1b\n\x19_mass_moment_of_inertia_xB\x1b\n\x19_mass_moment_of_inertia_yB\x1b\n\x19_mass_moment_of_inertia_zB\x1b\n\x19_mass_has_rotational_massB\x17\n\x15_mass_rotational_massB\x18\n\x16_mass_angular_velocityB\x1c\n\x1a_mass_angular_accelerationB\x0e\n\x0c_mass_radiusB\x18\n\x16_mass_axis_of_rotationB\r\n\x0b_mass_angleB\x16\n\x14_has_shifted_displayB\t\n\x07_offsetB\x0b\n\t_offset_xB\x0b\n\t_offset_yB\x0b\n\t_offset_zB\x13\n\x11_size_or_distanceB\n\n\x08_commentB\x0c\n\n_load_caseB\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*\xba\x01\n\x11NodalLoadLoadType\x12 \n\x1cNODAL_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12#\n\x1fNODAL_LOAD_LOAD_TYPE_COMPONENTS\x10\x03\x12\x1e\n\x1aNODAL_LOAD_LOAD_TYPE_FORCE\x10\x01\x12\x1d\n\x19NODAL_LOAD_LOAD_TYPE_MASS\x10\x04\x12\x1f\n\x1bNODAL_LOAD_LOAD_TYPE_MOMENT\x10\x02*\xd4\x02\n\x1eNodalLoadSpecificDirectionType\x12;\n7NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12\x37\n3NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12=\n9NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12?\n;NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12<\n8NODAL_LOAD_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02*\xe3\x01\n\x15NodalLoadAxesSequence\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_XYZ\x10\x00\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_XZY\x10\x01\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_YXZ\x10\x02\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_YZX\x10\x03\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_ZXY\x10\x04\x12 \n\x1cNODAL_LOAD_AXES_SEQUENCE_ZYX\x10\x05*\xbb\x02\n\x16NodalLoadLoadDirection\x12%\n!NODAL_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x38\n4NODAL_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U\x10\x0b\x12\x38\n4NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V\x10\x0c\x12\x38\n4NODAL_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W\x10\r\x12%\n!NODAL_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12%\n!NODAL_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02*\xc3\x02\n\x1bNodalLoadMassAxisOfRotation\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_POSITIVE\x10\x00\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_X_NEGATIVE\x10\x01\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_NEGATIVE\x10\x03\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_Y_POSITIVE\x10\x02\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_NEGATIVE\x10\x05\x12/\n+NODAL_LOAD_MASS_AXIS_OF_ROTATION_Z_POSITIVE\x10\x04\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.nodal_load_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_NODALLOADLOADTYPE']._serialized_start=3861
36
+ _globals['_NODALLOADLOADTYPE']._serialized_end=4047
37
+ _globals['_NODALLOADSPECIFICDIRECTIONTYPE']._serialized_start=4050
38
+ _globals['_NODALLOADSPECIFICDIRECTIONTYPE']._serialized_end=4390
39
+ _globals['_NODALLOADAXESSEQUENCE']._serialized_start=4393
40
+ _globals['_NODALLOADAXESSEQUENCE']._serialized_end=4620
41
+ _globals['_NODALLOADLOADDIRECTION']._serialized_start=4623
42
+ _globals['_NODALLOADLOADDIRECTION']._serialized_end=4938
43
+ _globals['_NODALLOADMASSAXISOFROTATION']._serialized_start=4941
44
+ _globals['_NODALLOADMASSAXISOFROTATION']._serialized_end=5264
45
+ _globals['_NODALLOAD']._serialized_start=98
46
+ _globals['_NODALLOAD']._serialized_end=3858
47
+ # @@protoc_insertion_point(module_scope)