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,67 @@
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/member_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/member_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/member_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xb3.\n\nMemberLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x41\n\tload_type\x18\x02 \x01(\x0e\x32).dlubal.api.rfem.loads.MemberLoadLoadTypeH\x00\x88\x01\x01\x12)\n\x1creference_to_list_of_members\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x0f\n\x07members\x18\x04 \x03(\x05\x12\x16\n\tload_case\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\tH\x03\x88\x01\x01\x12Q\n\x11load_distribution\x18\x07 \x01(\x0e\x32\x31.dlubal.api.rfem.loads.MemberLoadLoadDistributionH\x04\x88\x01\x01\x12K\n\x0eload_direction\x18\x08 \x01(\x0e\x32..dlubal.api.rfem.loads.MemberLoadLoadDirectionH\x05\x88\x01\x01\x12\x62\n\x1aload_direction_orientation\x18\t \x01(\x0e\x32\x39.dlubal.api.rfem.loads.MemberLoadLoadDirectionOrientationH\x06\x88\x01\x01\x12\x65\n\x1c\x66orm_finding_definition_type\x18\n \x01(\x0e\x32:.dlubal.api.rfem.loads.MemberLoadFormFindingDefinitionTypeH\x07\x88\x01\x01\x12\x16\n\tmagnitude\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\r \x01(\x01H\n\x88\x01\x01\x12\x18\n\x0bmagnitude_3\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x1a\n\rmagnitude_t_c\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_1\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_2\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_3\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x1e\n\x11magnitude_delta_t\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13magnitude_delta_t_1\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12 \n\x13magnitude_delta_t_2\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12 \n\x13magnitude_delta_t_3\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12\x1a\n\rmagnitude_t_t\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_1\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_2\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_3\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x1a\n\rmagnitude_t_b\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_1\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_2\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_3\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18\x1f \x01(\x08H\x1c\x88\x01\x01\x12\x18\n\x0bmass_global\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x13\n\x06mass_x\x18! \x01(\x01H\x1e\x88\x01\x01\x12\x13\n\x06mass_y\x18\" \x01(\x01H\x1f\x88\x01\x01\x12\x13\n\x06mass_z\x18# \x01(\x01H \x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18$ \x01(\x08H!\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18% \x01(\x01H\"\x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18& \x01(\x01H#\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18\' \x01(\x08H$\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18( \x01(\x01H%\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18) \x01(\x01H&\x88\x01\x01\x12.\n!distance_c_is_defined_as_relative\x18* \x01(\x08H\'\x88\x01\x01\x12 \n\x13\x64istance_c_absolute\x18+ \x01(\x01H(\x88\x01\x01\x12 \n\x13\x64istance_c_relative\x18, \x01(\x01H)\x88\x01\x01\x12\x14\n\x07\x63ount_n\x18- \x01(\x05H*\x88\x01\x01\x12<\n/varying_load_parameters_are_defined_as_relative\x18. \x01(\x08H+\x88\x01\x01\x12\x63\n\x17varying_load_parameters\x18/ \x01(\x0b\x32=.dlubal.api.rfem.loads.ArrayOfMemberLoadVaryingLoadParametersH,\x88\x01\x01\x12+\n\x1evarying_load_parameters_sorted\x18\x30 \x01(\x08H-\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18\x31 \x01(\x01H.\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x32 \x01(\x01H/\x88\x01\x01\x12V\n\x14\x61xis_definition_type\x18\x33 \x01(\x0e\x32\x33.dlubal.api.rfem.loads.MemberLoadAxisDefinitionTypeH0\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\x34 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH1\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18\x35 \x01(\x01H2\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18\x36 \x01(\x01H3\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18\x37 \x01(\x01H4\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18\x38 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH5\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18\x39 \x01(\x01H6\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18: \x01(\x01H7\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18; \x01(\x01H8\x88\x01\x01\x12V\n\x14\x61xis_definition_axis\x18< \x01(\x0e\x32\x33.dlubal.api.rfem.loads.MemberLoadAxisDefinitionAxisH9\x88\x01\x01\x12m\n axis_definition_axis_orientation\x18= \x01(\x0e\x32>.dlubal.api.rfem.loads.MemberLoadAxisDefinitionAxisOrientationH:\x88\x01\x01\x12\x1b\n\x0e\x66illing_height\x18> \x01(\x01H;\x88\x01\x01\x12%\n\x18\x64istance_from_member_end\x18? \x01(\x08H<\x88\x01\x01\x12&\n\x19load_is_over_total_length\x18@ \x01(\x08H=\x88\x01\x01\x12#\n\x16has_force_eccentricity\x18\x41 \x01(\x08H>\x88\x01\x01\x12p\n!eccentricity_horizontal_alignment\x18\x42 \x01(\x0e\x32@.dlubal.api.rfem.loads.MemberLoadEccentricityHorizontalAlignmentH?\x88\x01\x01\x12l\n\x1f\x65\x63\x63\x65ntricity_vertical_alignment\x18\x43 \x01(\x0e\x32>.dlubal.api.rfem.loads.MemberLoadEccentricityVerticalAlignmentH@\x88\x01\x01\x12\x64\n\x1b\x65\x63\x63\x65ntricity_section_middle\x18\x44 \x01(\x0e\x32:.dlubal.api.rfem.loads.MemberLoadEccentricitySectionMiddleHA\x88\x01\x01\x12\x38\n+is_eccentricity_at_end_different_from_start\x18\x45 \x01(\x08HB\x88\x01\x01\x12$\n\x17\x65\x63\x63\x65ntricity_y_at_start\x18\x46 \x01(\x01HC\x88\x01\x01\x12$\n\x17\x65\x63\x63\x65ntricity_z_at_start\x18G \x01(\x01HD\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_y_at_end\x18H \x01(\x01HE\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_z_at_end\x18I \x01(\x01HF\x88\x01\x01\x12\x14\n\x07\x63omment\x18J \x01(\tHG\x88\x01\x01\x12\x19\n\x0cis_generated\x18K \x01(\x08HH\x88\x01\x01\x12#\n\x16generating_object_info\x18L \x01(\tHI\x88\x01\x01\x12\x63\n\x1b\x66orm_finding_internal_force\x18M \x01(\x0e\x32\x39.dlubal.api.rfem.loads.MemberLoadFormFindingInternalForceHJ\x88\x01\x01\x12m\n form_finding_geometry_definition\x18N \x01(\x0e\x32>.dlubal.api.rfem.loads.MemberLoadFormFindingGeometryDefinitionHK\x88\x01\x01\x12g\n\x1d\x66orm_finding_force_definition\x18O \x01(\x0e\x32;.dlubal.api.rfem.loads.MemberLoadFormFindingForceDefinitionHL\x88\x01\x01\x12:\n-form_finding_magnitude_is_defined_as_relative\x18P \x01(\x08HM\x88\x01\x01\x12,\n\x1f\x66orm_finding_magnitude_absolute\x18Q \x01(\x01HN\x88\x01\x01\x12,\n\x1f\x66orm_finding_magnitude_relative\x18R \x01(\x01HO\x88\x01\x01\x12!\n\x14id_for_export_import\x18S \x01(\tHP\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18T \x01(\tHQ\x88\x01\x01\x42\x0c\n\n_load_typeB\x1f\n\x1d_reference_to_list_of_membersB\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x1f\n\x1d_form_finding_definition_typeB\x0c\n\n_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\x10\n\x0e_magnitude_t_cB\x12\n\x10_magnitude_t_c_1B\x12\n\x10_magnitude_t_c_2B\x12\n\x10_magnitude_t_c_3B\x14\n\x12_magnitude_delta_tB\x16\n\x14_magnitude_delta_t_1B\x16\n\x14_magnitude_delta_t_2B\x16\n\x14_magnitude_delta_t_3B\x10\n\x0e_magnitude_t_tB\x12\n\x10_magnitude_t_t_1B\x12\n\x10_magnitude_t_t_2B\x12\n\x10_magnitude_t_t_3B\x10\n\x0e_magnitude_t_bB\x12\n\x10_magnitude_t_b_1B\x12\n\x10_magnitude_t_b_2B\x12\n\x10_magnitude_t_b_3B\x1d\n\x1b_individual_mass_componentsB\x0e\n\x0c_mass_globalB\t\n\x07_mass_xB\t\n\x07_mass_yB\t\n\x07_mass_zB$\n\"_distance_a_is_defined_as_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_a_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_b_absoluteB\x16\n\x14_distance_b_relativeB$\n\"_distance_c_is_defined_as_relativeB\x16\n\x14_distance_c_absoluteB\x16\n\x14_distance_c_relativeB\n\n\x08_count_nB2\n0_varying_load_parameters_are_defined_as_relativeB\x1a\n\x18_varying_load_parametersB!\n\x1f_varying_load_parameters_sortedB\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\x11\n\x0f_filling_heightB\x1b\n\x19_distance_from_member_endB\x1c\n\x1a_load_is_over_total_lengthB\x19\n\x17_has_force_eccentricityB$\n\"_eccentricity_horizontal_alignmentB\"\n _eccentricity_vertical_alignmentB\x1e\n\x1c_eccentricity_section_middleB.\n,_is_eccentricity_at_end_different_from_startB\x1a\n\x18_eccentricity_y_at_startB\x1a\n\x18_eccentricity_z_at_startB\x18\n\x16_eccentricity_y_at_endB\x18\n\x16_eccentricity_z_at_endB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1e\n\x1c_form_finding_internal_forceB#\n!_form_finding_geometry_definitionB \n\x1e_form_finding_force_definitionB0\n._form_finding_magnitude_is_defined_as_relativeB\"\n _form_finding_magnitude_absoluteB\"\n _form_finding_magnitude_relativeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"(\n&ArrayOfMemberLoadVaryingLoadParameters*\xfd\x07\n\x12MemberLoadLoadType\x12!\n\x1dMEMBER_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12%\n!MEMBER_LOAD_LOAD_TYPE_E_TYPE_MASS\x10\x03\x12\x36\n2MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT\x10\x07\x12\x30\n,MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN\x10\x06\x12\x33\n/MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR\x10\x12\x12\x33\n/MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON\x10\x13\x12\x30\n,MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT\x10\x0b\x12\x31\n-MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS\x10\x11\x12)\n%MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE\x10\x01\x12\x30\n,MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING\x10\n\x12\x35\n1MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS\x10\t\x12*\n&MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT\x10\x02\x12\x35\n1MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL\x10\r\x12\x38\n4MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL\x10\x0e\x12:\n6MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE\x10\x0f\x12-\n)MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER\x10\x08\x12\x31\n-MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION\x10\x10\x12,\n(MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION\x10\x0c\x12/\n+MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE\x10\x04\x12\x36\n2MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE\x10\x05*\xdc\x04\n\x1aMemberLoadLoadDistribution\x12)\n%MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12\x30\n,MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1\x10\x02\x12\x30\n,MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2\x10\x05\x12\x32\n.MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2\x10\x04\x12\x30\n,MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N\x10\x03\x12\x36\n2MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING\x10\x06\x12+\n\'MEMBER_LOAD_LOAD_DISTRIBUTION_PARABOLIC\x10\t\x12)\n%MEMBER_LOAD_LOAD_DISTRIBUTION_TAPERED\x10\x08\x12-\n)MEMBER_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL\x10\x07\x12/\n+MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL\x10\x01\x12)\n%MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING\x10\n\x12.\n*MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z\x10\x0b*\xf8\x04\n\x17MemberLoadLoadDirection\x12&\n\"MEMBER_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12\x43\n?MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12>\n:MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12\x43\n?MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12>\n:MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12\x43\n?MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12>\n:MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12&\n\"MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12&\n\"MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12*\n&MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_U\x10\x03\x12*\n&MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_V\x10\x04*\xab\x01\n\"MemberLoadLoadDirectionOrientation\x12\x41\n=MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12\x42\n>MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01*\x91\x01\n#MemberLoadFormFindingDefinitionType\x12\x36\n2MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC\x10\x00\x12\x32\n.MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE\x10\x01*\x84\x01\n\x1cMemberLoadAxisDefinitionType\x12/\n+MEMBER_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x33\n/MEMBER_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\x96\x01\n\x1cMemberLoadAxisDefinitionAxis\x12&\n\"MEMBER_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12&\n\"MEMBER_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12&\n\"MEMBER_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\x9f\x01\n\'MemberLoadAxisDefinitionAxisOrientation\x12\x39\n5MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12\x39\n5MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\x8e\x02\n)MemberLoadEccentricityHorizontalAlignment\x12\x36\n2MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT\x10\x00\x12\x38\n4MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER\x10\x01\x12\x36\n2MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE\x10\x03\x12\x37\n3MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT\x10\x02*\x84\x02\n\'MemberLoadEccentricityVerticalAlignment\x12\x33\n/MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP\x10\x00\x12\x36\n2MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM\x10\x02\x12\x36\n2MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER\x10\x01\x12\x34\n0MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE\x10\x03*\xd0\x01\n#MemberLoadEccentricitySectionMiddle\x12=\n9MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY\x10\x00\x12\x30\n,MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE\x10\x02\x12\x38\n4MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER\x10\x01*\x92\x01\n\"MemberLoadFormFindingInternalForce\x12\x33\n/MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION\x10\x00\x12\x37\n3MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION\x10\x01*\xe8\x02\n\'MemberLoadFormFindingGeometryDefinition\x12\x37\n3MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH\x10\x00\x12G\nCMEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG\x10\x04\x12\x41\n=MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG\x10\x03\x12\x34\n0MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG\x10\x02\x12\x42\n>MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH\x10\x01*\xa3\x05\n$MemberLoadFormFindingForceDefinition\x12\x35\n1MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN\x10\x00\x12\x35\n1MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE\x10\n\x12\x35\n1MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY\x10\x14\x12J\nFMEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT\x10\r\x12>\n:MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER\x10\x0b\x12\x45\nAMEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND\x10\x12\x12\x45\nAMEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND\x10\x13\x12>\n:MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER\x10\x0c\x12=\n9MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND\x10\x0e\x12=\n9MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND\x10\x0f\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.member_load_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_MEMBERLOADLOADTYPE']._serialized_start=6083
36
+ _globals['_MEMBERLOADLOADTYPE']._serialized_end=7104
37
+ _globals['_MEMBERLOADLOADDISTRIBUTION']._serialized_start=7107
38
+ _globals['_MEMBERLOADLOADDISTRIBUTION']._serialized_end=7711
39
+ _globals['_MEMBERLOADLOADDIRECTION']._serialized_start=7714
40
+ _globals['_MEMBERLOADLOADDIRECTION']._serialized_end=8346
41
+ _globals['_MEMBERLOADLOADDIRECTIONORIENTATION']._serialized_start=8349
42
+ _globals['_MEMBERLOADLOADDIRECTIONORIENTATION']._serialized_end=8520
43
+ _globals['_MEMBERLOADFORMFINDINGDEFINITIONTYPE']._serialized_start=8523
44
+ _globals['_MEMBERLOADFORMFINDINGDEFINITIONTYPE']._serialized_end=8668
45
+ _globals['_MEMBERLOADAXISDEFINITIONTYPE']._serialized_start=8671
46
+ _globals['_MEMBERLOADAXISDEFINITIONTYPE']._serialized_end=8803
47
+ _globals['_MEMBERLOADAXISDEFINITIONAXIS']._serialized_start=8806
48
+ _globals['_MEMBERLOADAXISDEFINITIONAXIS']._serialized_end=8956
49
+ _globals['_MEMBERLOADAXISDEFINITIONAXISORIENTATION']._serialized_start=8959
50
+ _globals['_MEMBERLOADAXISDEFINITIONAXISORIENTATION']._serialized_end=9118
51
+ _globals['_MEMBERLOADECCENTRICITYHORIZONTALALIGNMENT']._serialized_start=9121
52
+ _globals['_MEMBERLOADECCENTRICITYHORIZONTALALIGNMENT']._serialized_end=9391
53
+ _globals['_MEMBERLOADECCENTRICITYVERTICALALIGNMENT']._serialized_start=9394
54
+ _globals['_MEMBERLOADECCENTRICITYVERTICALALIGNMENT']._serialized_end=9654
55
+ _globals['_MEMBERLOADECCENTRICITYSECTIONMIDDLE']._serialized_start=9657
56
+ _globals['_MEMBERLOADECCENTRICITYSECTIONMIDDLE']._serialized_end=9865
57
+ _globals['_MEMBERLOADFORMFINDINGINTERNALFORCE']._serialized_start=9868
58
+ _globals['_MEMBERLOADFORMFINDINGINTERNALFORCE']._serialized_end=10014
59
+ _globals['_MEMBERLOADFORMFINDINGGEOMETRYDEFINITION']._serialized_start=10017
60
+ _globals['_MEMBERLOADFORMFINDINGGEOMETRYDEFINITION']._serialized_end=10377
61
+ _globals['_MEMBERLOADFORMFINDINGFORCEDEFINITION']._serialized_start=10380
62
+ _globals['_MEMBERLOADFORMFINDINGFORCEDEFINITION']._serialized_end=11055
63
+ _globals['_MEMBERLOAD']._serialized_start=99
64
+ _globals['_MEMBERLOAD']._serialized_end=6038
65
+ _globals['_ARRAYOFMEMBERLOADVARYINGLOADPARAMETERS']._serialized_start=6040
66
+ _globals['_ARRAYOFMEMBERLOADVARYINGLOADPARAMETERS']._serialized_end=6080
67
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,390 @@
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 MemberLoadLoadType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ MEMBER_LOAD_LOAD_TYPE_UNKNOWN: _ClassVar[MemberLoadLoadType]
13
+ MEMBER_LOAD_LOAD_TYPE_E_TYPE_MASS: _ClassVar[MemberLoadLoadType]
14
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT: _ClassVar[MemberLoadLoadType]
15
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN: _ClassVar[MemberLoadLoadType]
16
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR: _ClassVar[MemberLoadLoadType]
17
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON: _ClassVar[MemberLoadLoadType]
18
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT: _ClassVar[MemberLoadLoadType]
19
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS: _ClassVar[MemberLoadLoadType]
20
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: _ClassVar[MemberLoadLoadType]
21
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING: _ClassVar[MemberLoadLoadType]
22
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS: _ClassVar[MemberLoadLoadType]
23
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: _ClassVar[MemberLoadLoadType]
24
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL: _ClassVar[MemberLoadLoadType]
25
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL: _ClassVar[MemberLoadLoadType]
26
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE: _ClassVar[MemberLoadLoadType]
27
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER: _ClassVar[MemberLoadLoadType]
28
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION: _ClassVar[MemberLoadLoadType]
29
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION: _ClassVar[MemberLoadLoadType]
30
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE: _ClassVar[MemberLoadLoadType]
31
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE: _ClassVar[MemberLoadLoadType]
32
+
33
+ class MemberLoadLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
34
+ __slots__ = ()
35
+ MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[MemberLoadLoadDistribution]
36
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: _ClassVar[MemberLoadLoadDistribution]
37
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: _ClassVar[MemberLoadLoadDistribution]
38
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: _ClassVar[MemberLoadLoadDistribution]
39
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: _ClassVar[MemberLoadLoadDistribution]
40
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: _ClassVar[MemberLoadLoadDistribution]
41
+ MEMBER_LOAD_LOAD_DISTRIBUTION_PARABOLIC: _ClassVar[MemberLoadLoadDistribution]
42
+ MEMBER_LOAD_LOAD_DISTRIBUTION_TAPERED: _ClassVar[MemberLoadLoadDistribution]
43
+ MEMBER_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: _ClassVar[MemberLoadLoadDistribution]
44
+ MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: _ClassVar[MemberLoadLoadDistribution]
45
+ MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING: _ClassVar[MemberLoadLoadDistribution]
46
+ MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: _ClassVar[MemberLoadLoadDistribution]
47
+
48
+ class MemberLoadLoadDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
49
+ __slots__ = ()
50
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_X: _ClassVar[MemberLoadLoadDirection]
51
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: _ClassVar[MemberLoadLoadDirection]
52
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[MemberLoadLoadDirection]
53
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: _ClassVar[MemberLoadLoadDirection]
54
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[MemberLoadLoadDirection]
55
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: _ClassVar[MemberLoadLoadDirection]
56
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[MemberLoadLoadDirection]
57
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Y: _ClassVar[MemberLoadLoadDirection]
58
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Z: _ClassVar[MemberLoadLoadDirection]
59
+ MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_U: _ClassVar[MemberLoadLoadDirection]
60
+ MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_V: _ClassVar[MemberLoadLoadDirection]
61
+
62
+ class MemberLoadLoadDirectionOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
63
+ __slots__ = ()
64
+ MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: _ClassVar[MemberLoadLoadDirectionOrientation]
65
+ MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: _ClassVar[MemberLoadLoadDirectionOrientation]
66
+
67
+ class MemberLoadFormFindingDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
68
+ __slots__ = ()
69
+ MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC: _ClassVar[MemberLoadFormFindingDefinitionType]
70
+ MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE: _ClassVar[MemberLoadFormFindingDefinitionType]
71
+
72
+ class MemberLoadAxisDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
73
+ __slots__ = ()
74
+ MEMBER_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: _ClassVar[MemberLoadAxisDefinitionType]
75
+ MEMBER_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: _ClassVar[MemberLoadAxisDefinitionType]
76
+
77
+ class MemberLoadAxisDefinitionAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
78
+ __slots__ = ()
79
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_X: _ClassVar[MemberLoadAxisDefinitionAxis]
80
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_Y: _ClassVar[MemberLoadAxisDefinitionAxis]
81
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_Z: _ClassVar[MemberLoadAxisDefinitionAxis]
82
+
83
+ class MemberLoadAxisDefinitionAxisOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
84
+ __slots__ = ()
85
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: _ClassVar[MemberLoadAxisDefinitionAxisOrientation]
86
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: _ClassVar[MemberLoadAxisDefinitionAxisOrientation]
87
+
88
+ class MemberLoadEccentricityHorizontalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
89
+ __slots__ = ()
90
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: _ClassVar[MemberLoadEccentricityHorizontalAlignment]
91
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: _ClassVar[MemberLoadEccentricityHorizontalAlignment]
92
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: _ClassVar[MemberLoadEccentricityHorizontalAlignment]
93
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: _ClassVar[MemberLoadEccentricityHorizontalAlignment]
94
+
95
+ class MemberLoadEccentricityVerticalAlignment(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
96
+ __slots__ = ()
97
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: _ClassVar[MemberLoadEccentricityVerticalAlignment]
98
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: _ClassVar[MemberLoadEccentricityVerticalAlignment]
99
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: _ClassVar[MemberLoadEccentricityVerticalAlignment]
100
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: _ClassVar[MemberLoadEccentricityVerticalAlignment]
101
+
102
+ class MemberLoadEccentricitySectionMiddle(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
103
+ __slots__ = ()
104
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY: _ClassVar[MemberLoadEccentricitySectionMiddle]
105
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE: _ClassVar[MemberLoadEccentricitySectionMiddle]
106
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER: _ClassVar[MemberLoadEccentricitySectionMiddle]
107
+
108
+ class MemberLoadFormFindingInternalForce(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
109
+ __slots__ = ()
110
+ MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION: _ClassVar[MemberLoadFormFindingInternalForce]
111
+ MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION: _ClassVar[MemberLoadFormFindingInternalForce]
112
+
113
+ class MemberLoadFormFindingGeometryDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
114
+ __slots__ = ()
115
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH: _ClassVar[MemberLoadFormFindingGeometryDefinition]
116
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG: _ClassVar[MemberLoadFormFindingGeometryDefinition]
117
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG: _ClassVar[MemberLoadFormFindingGeometryDefinition]
118
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG: _ClassVar[MemberLoadFormFindingGeometryDefinition]
119
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH: _ClassVar[MemberLoadFormFindingGeometryDefinition]
120
+
121
+ class MemberLoadFormFindingForceDefinition(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
122
+ __slots__ = ()
123
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN: _ClassVar[MemberLoadFormFindingForceDefinition]
124
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE: _ClassVar[MemberLoadFormFindingForceDefinition]
125
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY: _ClassVar[MemberLoadFormFindingForceDefinition]
126
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT: _ClassVar[MemberLoadFormFindingForceDefinition]
127
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER: _ClassVar[MemberLoadFormFindingForceDefinition]
128
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND: _ClassVar[MemberLoadFormFindingForceDefinition]
129
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND: _ClassVar[MemberLoadFormFindingForceDefinition]
130
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER: _ClassVar[MemberLoadFormFindingForceDefinition]
131
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND: _ClassVar[MemberLoadFormFindingForceDefinition]
132
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND: _ClassVar[MemberLoadFormFindingForceDefinition]
133
+ MEMBER_LOAD_LOAD_TYPE_UNKNOWN: MemberLoadLoadType
134
+ MEMBER_LOAD_LOAD_TYPE_E_TYPE_MASS: MemberLoadLoadType
135
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT: MemberLoadLoadType
136
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN: MemberLoadLoadType
137
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR: MemberLoadLoadType
138
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON: MemberLoadLoadType
139
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT: MemberLoadLoadType
140
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS: MemberLoadLoadType
141
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE: MemberLoadLoadType
142
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING: MemberLoadLoadType
143
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS: MemberLoadLoadType
144
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT: MemberLoadLoadType
145
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL: MemberLoadLoadType
146
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL: MemberLoadLoadType
147
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE: MemberLoadLoadType
148
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER: MemberLoadLoadType
149
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION: MemberLoadLoadType
150
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION: MemberLoadLoadType
151
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE: MemberLoadLoadType
152
+ MEMBER_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE: MemberLoadLoadType
153
+ MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM: MemberLoadLoadDistribution
154
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1: MemberLoadLoadDistribution
155
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2: MemberLoadLoadDistribution
156
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2: MemberLoadLoadDistribution
157
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N: MemberLoadLoadDistribution
158
+ MEMBER_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING: MemberLoadLoadDistribution
159
+ MEMBER_LOAD_LOAD_DISTRIBUTION_PARABOLIC: MemberLoadLoadDistribution
160
+ MEMBER_LOAD_LOAD_DISTRIBUTION_TAPERED: MemberLoadLoadDistribution
161
+ MEMBER_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL: MemberLoadLoadDistribution
162
+ MEMBER_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL: MemberLoadLoadDistribution
163
+ MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING: MemberLoadLoadDistribution
164
+ MEMBER_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z: MemberLoadLoadDistribution
165
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_X: MemberLoadLoadDirection
166
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED: MemberLoadLoadDirection
167
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: MemberLoadLoadDirection
168
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED: MemberLoadLoadDirection
169
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: MemberLoadLoadDirection
170
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED: MemberLoadLoadDirection
171
+ MEMBER_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: MemberLoadLoadDirection
172
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Y: MemberLoadLoadDirection
173
+ MEMBER_LOAD_LOAD_DIRECTION_LOCAL_Z: MemberLoadLoadDirection
174
+ MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_U: MemberLoadLoadDirection
175
+ MEMBER_LOAD_LOAD_DIRECTION_PRINCIPAL_V: MemberLoadLoadDirection
176
+ MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD: MemberLoadLoadDirectionOrientation
177
+ MEMBER_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED: MemberLoadLoadDirectionOrientation
178
+ MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC: MemberLoadFormFindingDefinitionType
179
+ MEMBER_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE: MemberLoadFormFindingDefinitionType
180
+ MEMBER_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS: MemberLoadAxisDefinitionType
181
+ MEMBER_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS: MemberLoadAxisDefinitionType
182
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_X: MemberLoadAxisDefinitionAxis
183
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_Y: MemberLoadAxisDefinitionAxis
184
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_Z: MemberLoadAxisDefinitionAxis
185
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE: MemberLoadAxisDefinitionAxisOrientation
186
+ MEMBER_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE: MemberLoadAxisDefinitionAxisOrientation
187
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT: MemberLoadEccentricityHorizontalAlignment
188
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER: MemberLoadEccentricityHorizontalAlignment
189
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE: MemberLoadEccentricityHorizontalAlignment
190
+ MEMBER_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT: MemberLoadEccentricityHorizontalAlignment
191
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP: MemberLoadEccentricityVerticalAlignment
192
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM: MemberLoadEccentricityVerticalAlignment
193
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER: MemberLoadEccentricityVerticalAlignment
194
+ MEMBER_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE: MemberLoadEccentricityVerticalAlignment
195
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY: MemberLoadEccentricitySectionMiddle
196
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE: MemberLoadEccentricitySectionMiddle
197
+ MEMBER_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER: MemberLoadEccentricitySectionMiddle
198
+ MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION: MemberLoadFormFindingInternalForce
199
+ MEMBER_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION: MemberLoadFormFindingInternalForce
200
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH: MemberLoadFormFindingGeometryDefinition
201
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG: MemberLoadFormFindingGeometryDefinition
202
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG: MemberLoadFormFindingGeometryDefinition
203
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG: MemberLoadFormFindingGeometryDefinition
204
+ MEMBER_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH: MemberLoadFormFindingGeometryDefinition
205
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN: MemberLoadFormFindingForceDefinition
206
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE: MemberLoadFormFindingForceDefinition
207
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY: MemberLoadFormFindingForceDefinition
208
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT: MemberLoadFormFindingForceDefinition
209
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER: MemberLoadFormFindingForceDefinition
210
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND: MemberLoadFormFindingForceDefinition
211
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND: MemberLoadFormFindingForceDefinition
212
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER: MemberLoadFormFindingForceDefinition
213
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND: MemberLoadFormFindingForceDefinition
214
+ MEMBER_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND: MemberLoadFormFindingForceDefinition
215
+
216
+ class MemberLoad(_message.Message):
217
+ __slots__ = ("no", "load_type", "reference_to_list_of_members", "members", "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", "individual_mass_components", "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_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", "comment", "is_generated", "generating_object_info", "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", "id_for_export_import", "metadata_for_export_import")
218
+ NO_FIELD_NUMBER: _ClassVar[int]
219
+ LOAD_TYPE_FIELD_NUMBER: _ClassVar[int]
220
+ REFERENCE_TO_LIST_OF_MEMBERS_FIELD_NUMBER: _ClassVar[int]
221
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
222
+ LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
223
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
224
+ LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
225
+ LOAD_DIRECTION_FIELD_NUMBER: _ClassVar[int]
226
+ LOAD_DIRECTION_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
227
+ FORM_FINDING_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
228
+ MAGNITUDE_FIELD_NUMBER: _ClassVar[int]
229
+ MAGNITUDE_1_FIELD_NUMBER: _ClassVar[int]
230
+ MAGNITUDE_2_FIELD_NUMBER: _ClassVar[int]
231
+ MAGNITUDE_3_FIELD_NUMBER: _ClassVar[int]
232
+ MAGNITUDE_T_C_FIELD_NUMBER: _ClassVar[int]
233
+ MAGNITUDE_T_C_1_FIELD_NUMBER: _ClassVar[int]
234
+ MAGNITUDE_T_C_2_FIELD_NUMBER: _ClassVar[int]
235
+ MAGNITUDE_T_C_3_FIELD_NUMBER: _ClassVar[int]
236
+ MAGNITUDE_DELTA_T_FIELD_NUMBER: _ClassVar[int]
237
+ MAGNITUDE_DELTA_T_1_FIELD_NUMBER: _ClassVar[int]
238
+ MAGNITUDE_DELTA_T_2_FIELD_NUMBER: _ClassVar[int]
239
+ MAGNITUDE_DELTA_T_3_FIELD_NUMBER: _ClassVar[int]
240
+ MAGNITUDE_T_T_FIELD_NUMBER: _ClassVar[int]
241
+ MAGNITUDE_T_T_1_FIELD_NUMBER: _ClassVar[int]
242
+ MAGNITUDE_T_T_2_FIELD_NUMBER: _ClassVar[int]
243
+ MAGNITUDE_T_T_3_FIELD_NUMBER: _ClassVar[int]
244
+ MAGNITUDE_T_B_FIELD_NUMBER: _ClassVar[int]
245
+ MAGNITUDE_T_B_1_FIELD_NUMBER: _ClassVar[int]
246
+ MAGNITUDE_T_B_2_FIELD_NUMBER: _ClassVar[int]
247
+ MAGNITUDE_T_B_3_FIELD_NUMBER: _ClassVar[int]
248
+ INDIVIDUAL_MASS_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
249
+ MASS_GLOBAL_FIELD_NUMBER: _ClassVar[int]
250
+ MASS_X_FIELD_NUMBER: _ClassVar[int]
251
+ MASS_Y_FIELD_NUMBER: _ClassVar[int]
252
+ MASS_Z_FIELD_NUMBER: _ClassVar[int]
253
+ DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
254
+ DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
255
+ DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
256
+ DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
257
+ DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
258
+ DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
259
+ DISTANCE_C_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
260
+ DISTANCE_C_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
261
+ DISTANCE_C_RELATIVE_FIELD_NUMBER: _ClassVar[int]
262
+ COUNT_N_FIELD_NUMBER: _ClassVar[int]
263
+ VARYING_LOAD_PARAMETERS_ARE_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
264
+ VARYING_LOAD_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
265
+ VARYING_LOAD_PARAMETERS_SORTED_FIELD_NUMBER: _ClassVar[int]
266
+ ANGULAR_VELOCITY_FIELD_NUMBER: _ClassVar[int]
267
+ ANGULAR_ACCELERATION_FIELD_NUMBER: _ClassVar[int]
268
+ AXIS_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
269
+ AXIS_DEFINITION_P1_FIELD_NUMBER: _ClassVar[int]
270
+ AXIS_DEFINITION_P1_X_FIELD_NUMBER: _ClassVar[int]
271
+ AXIS_DEFINITION_P1_Y_FIELD_NUMBER: _ClassVar[int]
272
+ AXIS_DEFINITION_P1_Z_FIELD_NUMBER: _ClassVar[int]
273
+ AXIS_DEFINITION_P2_FIELD_NUMBER: _ClassVar[int]
274
+ AXIS_DEFINITION_P2_X_FIELD_NUMBER: _ClassVar[int]
275
+ AXIS_DEFINITION_P2_Y_FIELD_NUMBER: _ClassVar[int]
276
+ AXIS_DEFINITION_P2_Z_FIELD_NUMBER: _ClassVar[int]
277
+ AXIS_DEFINITION_AXIS_FIELD_NUMBER: _ClassVar[int]
278
+ AXIS_DEFINITION_AXIS_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
279
+ FILLING_HEIGHT_FIELD_NUMBER: _ClassVar[int]
280
+ DISTANCE_FROM_MEMBER_END_FIELD_NUMBER: _ClassVar[int]
281
+ LOAD_IS_OVER_TOTAL_LENGTH_FIELD_NUMBER: _ClassVar[int]
282
+ HAS_FORCE_ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
283
+ ECCENTRICITY_HORIZONTAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
284
+ ECCENTRICITY_VERTICAL_ALIGNMENT_FIELD_NUMBER: _ClassVar[int]
285
+ ECCENTRICITY_SECTION_MIDDLE_FIELD_NUMBER: _ClassVar[int]
286
+ IS_ECCENTRICITY_AT_END_DIFFERENT_FROM_START_FIELD_NUMBER: _ClassVar[int]
287
+ ECCENTRICITY_Y_AT_START_FIELD_NUMBER: _ClassVar[int]
288
+ ECCENTRICITY_Z_AT_START_FIELD_NUMBER: _ClassVar[int]
289
+ ECCENTRICITY_Y_AT_END_FIELD_NUMBER: _ClassVar[int]
290
+ ECCENTRICITY_Z_AT_END_FIELD_NUMBER: _ClassVar[int]
291
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
292
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
293
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
294
+ FORM_FINDING_INTERNAL_FORCE_FIELD_NUMBER: _ClassVar[int]
295
+ FORM_FINDING_GEOMETRY_DEFINITION_FIELD_NUMBER: _ClassVar[int]
296
+ FORM_FINDING_FORCE_DEFINITION_FIELD_NUMBER: _ClassVar[int]
297
+ FORM_FINDING_MAGNITUDE_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
298
+ FORM_FINDING_MAGNITUDE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
299
+ FORM_FINDING_MAGNITUDE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
300
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
301
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
302
+ no: int
303
+ load_type: MemberLoadLoadType
304
+ reference_to_list_of_members: bool
305
+ members: _containers.RepeatedScalarFieldContainer[int]
306
+ load_case: int
307
+ coordinate_system: str
308
+ load_distribution: MemberLoadLoadDistribution
309
+ load_direction: MemberLoadLoadDirection
310
+ load_direction_orientation: MemberLoadLoadDirectionOrientation
311
+ form_finding_definition_type: MemberLoadFormFindingDefinitionType
312
+ magnitude: float
313
+ magnitude_1: float
314
+ magnitude_2: float
315
+ magnitude_3: float
316
+ magnitude_t_c: float
317
+ magnitude_t_c_1: float
318
+ magnitude_t_c_2: float
319
+ magnitude_t_c_3: float
320
+ magnitude_delta_t: float
321
+ magnitude_delta_t_1: float
322
+ magnitude_delta_t_2: float
323
+ magnitude_delta_t_3: float
324
+ magnitude_t_t: float
325
+ magnitude_t_t_1: float
326
+ magnitude_t_t_2: float
327
+ magnitude_t_t_3: float
328
+ magnitude_t_b: float
329
+ magnitude_t_b_1: float
330
+ magnitude_t_b_2: float
331
+ magnitude_t_b_3: float
332
+ individual_mass_components: bool
333
+ mass_global: float
334
+ mass_x: float
335
+ mass_y: float
336
+ mass_z: float
337
+ distance_a_is_defined_as_relative: bool
338
+ distance_a_absolute: float
339
+ distance_a_relative: float
340
+ distance_b_is_defined_as_relative: bool
341
+ distance_b_absolute: float
342
+ distance_b_relative: float
343
+ distance_c_is_defined_as_relative: bool
344
+ distance_c_absolute: float
345
+ distance_c_relative: float
346
+ count_n: int
347
+ varying_load_parameters_are_defined_as_relative: bool
348
+ varying_load_parameters: ArrayOfMemberLoadVaryingLoadParameters
349
+ varying_load_parameters_sorted: bool
350
+ angular_velocity: float
351
+ angular_acceleration: float
352
+ axis_definition_type: MemberLoadAxisDefinitionType
353
+ axis_definition_p1: _common_pb2.Vector3d
354
+ axis_definition_p1_x: float
355
+ axis_definition_p1_y: float
356
+ axis_definition_p1_z: float
357
+ axis_definition_p2: _common_pb2.Vector3d
358
+ axis_definition_p2_x: float
359
+ axis_definition_p2_y: float
360
+ axis_definition_p2_z: float
361
+ axis_definition_axis: MemberLoadAxisDefinitionAxis
362
+ axis_definition_axis_orientation: MemberLoadAxisDefinitionAxisOrientation
363
+ filling_height: float
364
+ distance_from_member_end: bool
365
+ load_is_over_total_length: bool
366
+ has_force_eccentricity: bool
367
+ eccentricity_horizontal_alignment: MemberLoadEccentricityHorizontalAlignment
368
+ eccentricity_vertical_alignment: MemberLoadEccentricityVerticalAlignment
369
+ eccentricity_section_middle: MemberLoadEccentricitySectionMiddle
370
+ is_eccentricity_at_end_different_from_start: bool
371
+ eccentricity_y_at_start: float
372
+ eccentricity_z_at_start: float
373
+ eccentricity_y_at_end: float
374
+ eccentricity_z_at_end: float
375
+ comment: str
376
+ is_generated: bool
377
+ generating_object_info: str
378
+ form_finding_internal_force: MemberLoadFormFindingInternalForce
379
+ form_finding_geometry_definition: MemberLoadFormFindingGeometryDefinition
380
+ form_finding_force_definition: MemberLoadFormFindingForceDefinition
381
+ form_finding_magnitude_is_defined_as_relative: bool
382
+ form_finding_magnitude_absolute: float
383
+ form_finding_magnitude_relative: float
384
+ id_for_export_import: str
385
+ metadata_for_export_import: str
386
+ def __init__(self, no: _Optional[int] = ..., load_type: _Optional[_Union[MemberLoadLoadType, str]] = ..., reference_to_list_of_members: bool = ..., members: _Optional[_Iterable[int]] = ..., load_case: _Optional[int] = ..., coordinate_system: _Optional[str] = ..., load_distribution: _Optional[_Union[MemberLoadLoadDistribution, str]] = ..., load_direction: _Optional[_Union[MemberLoadLoadDirection, str]] = ..., load_direction_orientation: _Optional[_Union[MemberLoadLoadDirectionOrientation, str]] = ..., form_finding_definition_type: _Optional[_Union[MemberLoadFormFindingDefinitionType, 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] = ..., individual_mass_components: bool = ..., 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[ArrayOfMemberLoadVaryingLoadParameters, _Mapping]] = ..., varying_load_parameters_sorted: bool = ..., angular_velocity: _Optional[float] = ..., angular_acceleration: _Optional[float] = ..., axis_definition_type: _Optional[_Union[MemberLoadAxisDefinitionType, 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[MemberLoadAxisDefinitionAxis, str]] = ..., axis_definition_axis_orientation: _Optional[_Union[MemberLoadAxisDefinitionAxisOrientation, str]] = ..., filling_height: _Optional[float] = ..., distance_from_member_end: bool = ..., load_is_over_total_length: bool = ..., has_force_eccentricity: bool = ..., eccentricity_horizontal_alignment: _Optional[_Union[MemberLoadEccentricityHorizontalAlignment, str]] = ..., eccentricity_vertical_alignment: _Optional[_Union[MemberLoadEccentricityVerticalAlignment, str]] = ..., eccentricity_section_middle: _Optional[_Union[MemberLoadEccentricitySectionMiddle, 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] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., form_finding_internal_force: _Optional[_Union[MemberLoadFormFindingInternalForce, str]] = ..., form_finding_geometry_definition: _Optional[_Union[MemberLoadFormFindingGeometryDefinition, str]] = ..., form_finding_force_definition: _Optional[_Union[MemberLoadFormFindingForceDefinition, str]] = ..., form_finding_magnitude_is_defined_as_relative: bool = ..., form_finding_magnitude_absolute: _Optional[float] = ..., form_finding_magnitude_relative: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
387
+
388
+ class ArrayOfMemberLoadVaryingLoadParameters(_message.Message):
389
+ __slots__ = ()
390
+ def __init__(self) -> None: ...
@@ -0,0 +1,67 @@
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/member_set_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/member_set_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/member_set_load.proto\x12\x15\x64lubal.api.rfem.loads\x1a\x1e\x64lubal/api/common/common.proto\"\xa3.\n\rMemberSetLoad\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x44\n\tload_type\x18\x02 \x01(\x0e\x32,.dlubal.api.rfem.loads.MemberSetLoadLoadTypeH\x00\x88\x01\x01\x12\x13\n\x0bmember_sets\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\x12T\n\x11load_distribution\x18\x06 \x01(\x0e\x32\x34.dlubal.api.rfem.loads.MemberSetLoadLoadDistributionH\x03\x88\x01\x01\x12N\n\x0eload_direction\x18\x07 \x01(\x0e\x32\x31.dlubal.api.rfem.loads.MemberSetLoadLoadDirectionH\x04\x88\x01\x01\x12\x65\n\x1aload_direction_orientation\x18\x08 \x01(\x0e\x32<.dlubal.api.rfem.loads.MemberSetLoadLoadDirectionOrientationH\x05\x88\x01\x01\x12h\n\x1c\x66orm_finding_definition_type\x18\t \x01(\x0e\x32=.dlubal.api.rfem.loads.MemberSetLoadFormFindingDefinitionTypeH\x06\x88\x01\x01\x12\x16\n\tmagnitude\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x18\n\x0bmagnitude_1\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x18\n\x0bmagnitude_2\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x18\n\x0bmagnitude_3\x18\r \x01(\x01H\n\x88\x01\x01\x12\x1a\n\rmagnitude_t_c\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_1\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_2\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_c_3\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x1e\n\x11magnitude_delta_t\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12 \n\x13magnitude_delta_t_1\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12 \n\x13magnitude_delta_t_2\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12 \n\x13magnitude_delta_t_3\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12\x1a\n\rmagnitude_t_t\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_1\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_2\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_t_3\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\x1a\n\rmagnitude_t_b\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_1\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_2\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12\x1c\n\x0fmagnitude_t_b_3\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12\x18\n\x0bmass_global\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12\x13\n\x06mass_x\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12\x13\n\x06mass_y\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x13\n\x06mass_z\x18! \x01(\x01H\x1e\x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18\" \x01(\x08H\x1f\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18# \x01(\x01H \x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18$ \x01(\x01H!\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18% \x01(\x08H\"\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18& \x01(\x01H#\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18\' \x01(\x01H$\x88\x01\x01\x12.\n!distance_c_is_defined_as_relative\x18( \x01(\x08H%\x88\x01\x01\x12 \n\x13\x64istance_c_absolute\x18) \x01(\x01H&\x88\x01\x01\x12 \n\x13\x64istance_c_relative\x18* \x01(\x01H\'\x88\x01\x01\x12\x14\n\x07\x63ount_n\x18+ \x01(\x05H(\x88\x01\x01\x12<\n/varying_load_parameters_are_defined_as_relative\x18, \x01(\x08H)\x88\x01\x01\x12\x66\n\x17varying_load_parameters\x18- \x01(\x0b\x32@.dlubal.api.rfem.loads.ArrayOfMemberSetLoadVaryingLoadParametersH*\x88\x01\x01\x12+\n\x1evarying_load_parameters_sorted\x18. \x01(\x08H+\x88\x01\x01\x12\x1d\n\x10\x61ngular_velocity\x18/ \x01(\x01H,\x88\x01\x01\x12!\n\x14\x61ngular_acceleration\x18\x30 \x01(\x01H-\x88\x01\x01\x12Y\n\x14\x61xis_definition_type\x18\x31 \x01(\x0e\x32\x36.dlubal.api.rfem.loads.MemberSetLoadAxisDefinitionTypeH.\x88\x01\x01\x12<\n\x12\x61xis_definition_p1\x18\x32 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH/\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_x\x18\x33 \x01(\x01H0\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_y\x18\x34 \x01(\x01H1\x88\x01\x01\x12!\n\x14\x61xis_definition_p1_z\x18\x35 \x01(\x01H2\x88\x01\x01\x12<\n\x12\x61xis_definition_p2\x18\x36 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH3\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_x\x18\x37 \x01(\x01H4\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_y\x18\x38 \x01(\x01H5\x88\x01\x01\x12!\n\x14\x61xis_definition_p2_z\x18\x39 \x01(\x01H6\x88\x01\x01\x12Y\n\x14\x61xis_definition_axis\x18: \x01(\x0e\x32\x36.dlubal.api.rfem.loads.MemberSetLoadAxisDefinitionAxisH7\x88\x01\x01\x12p\n axis_definition_axis_orientation\x18; \x01(\x0e\x32\x41.dlubal.api.rfem.loads.MemberSetLoadAxisDefinitionAxisOrientationH8\x88\x01\x01\x12\x1b\n\x0e\x66illing_height\x18< \x01(\x01H9\x88\x01\x01\x12)\n\x1c\x64istance_from_member_set_end\x18= \x01(\x08H:\x88\x01\x01\x12&\n\x19load_is_over_total_length\x18> \x01(\x08H;\x88\x01\x01\x12#\n\x16has_force_eccentricity\x18? \x01(\x08H<\x88\x01\x01\x12s\n!eccentricity_horizontal_alignment\x18@ \x01(\x0e\x32\x43.dlubal.api.rfem.loads.MemberSetLoadEccentricityHorizontalAlignmentH=\x88\x01\x01\x12o\n\x1f\x65\x63\x63\x65ntricity_vertical_alignment\x18\x41 \x01(\x0e\x32\x41.dlubal.api.rfem.loads.MemberSetLoadEccentricityVerticalAlignmentH>\x88\x01\x01\x12g\n\x1b\x65\x63\x63\x65ntricity_section_middle\x18\x42 \x01(\x0e\x32=.dlubal.api.rfem.loads.MemberSetLoadEccentricitySectionMiddleH?\x88\x01\x01\x12\x38\n+is_eccentricity_at_end_different_from_start\x18\x43 \x01(\x08H@\x88\x01\x01\x12$\n\x17\x65\x63\x63\x65ntricity_y_at_start\x18\x44 \x01(\x01HA\x88\x01\x01\x12$\n\x17\x65\x63\x63\x65ntricity_z_at_start\x18\x45 \x01(\x01HB\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_y_at_end\x18\x46 \x01(\x01HC\x88\x01\x01\x12\"\n\x15\x65\x63\x63\x65ntricity_z_at_end\x18G \x01(\x01HD\x88\x01\x01\x12\x66\n\x1b\x66orm_finding_internal_force\x18H \x01(\x0e\x32<.dlubal.api.rfem.loads.MemberSetLoadFormFindingInternalForceHE\x88\x01\x01\x12p\n form_finding_geometry_definition\x18I \x01(\x0e\x32\x41.dlubal.api.rfem.loads.MemberSetLoadFormFindingGeometryDefinitionHF\x88\x01\x01\x12j\n\x1d\x66orm_finding_force_definition\x18J \x01(\x0e\x32>.dlubal.api.rfem.loads.MemberSetLoadFormFindingForceDefinitionHG\x88\x01\x01\x12:\n-form_finding_magnitude_is_defined_as_relative\x18K \x01(\x08HH\x88\x01\x01\x12,\n\x1f\x66orm_finding_magnitude_absolute\x18L \x01(\x01HI\x88\x01\x01\x12,\n\x1f\x66orm_finding_magnitude_relative\x18M \x01(\x01HJ\x88\x01\x01\x12\'\n\x1aindividual_mass_components\x18N \x01(\x08HK\x88\x01\x01\x12\x14\n\x07\x63omment\x18O \x01(\tHL\x88\x01\x01\x12\x19\n\x0cis_generated\x18P \x01(\x08HM\x88\x01\x01\x12#\n\x16generating_object_info\x18Q \x01(\tHN\x88\x01\x01\x12!\n\x14id_for_export_import\x18R \x01(\tHO\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18S \x01(\tHP\x88\x01\x01\x42\x0c\n\n_load_typeB\x0c\n\n_load_caseB\x14\n\x12_coordinate_systemB\x14\n\x12_load_distributionB\x11\n\x0f_load_directionB\x1d\n\x1b_load_direction_orientationB\x1f\n\x1d_form_finding_definition_typeB\x0c\n\n_magnitudeB\x0e\n\x0c_magnitude_1B\x0e\n\x0c_magnitude_2B\x0e\n\x0c_magnitude_3B\x10\n\x0e_magnitude_t_cB\x12\n\x10_magnitude_t_c_1B\x12\n\x10_magnitude_t_c_2B\x12\n\x10_magnitude_t_c_3B\x14\n\x12_magnitude_delta_tB\x16\n\x14_magnitude_delta_t_1B\x16\n\x14_magnitude_delta_t_2B\x16\n\x14_magnitude_delta_t_3B\x10\n\x0e_magnitude_t_tB\x12\n\x10_magnitude_t_t_1B\x12\n\x10_magnitude_t_t_2B\x12\n\x10_magnitude_t_t_3B\x10\n\x0e_magnitude_t_bB\x12\n\x10_magnitude_t_b_1B\x12\n\x10_magnitude_t_b_2B\x12\n\x10_magnitude_t_b_3B\x0e\n\x0c_mass_globalB\t\n\x07_mass_xB\t\n\x07_mass_yB\t\n\x07_mass_zB$\n\"_distance_a_is_defined_as_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_a_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_b_absoluteB\x16\n\x14_distance_b_relativeB$\n\"_distance_c_is_defined_as_relativeB\x16\n\x14_distance_c_absoluteB\x16\n\x14_distance_c_relativeB\n\n\x08_count_nB2\n0_varying_load_parameters_are_defined_as_relativeB\x1a\n\x18_varying_load_parametersB!\n\x1f_varying_load_parameters_sortedB\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\x11\n\x0f_filling_heightB\x1f\n\x1d_distance_from_member_set_endB\x1c\n\x1a_load_is_over_total_lengthB\x19\n\x17_has_force_eccentricityB$\n\"_eccentricity_horizontal_alignmentB\"\n _eccentricity_vertical_alignmentB\x1e\n\x1c_eccentricity_section_middleB.\n,_is_eccentricity_at_end_different_from_startB\x1a\n\x18_eccentricity_y_at_startB\x1a\n\x18_eccentricity_z_at_startB\x18\n\x16_eccentricity_y_at_endB\x18\n\x16_eccentricity_z_at_endB\x1e\n\x1c_form_finding_internal_forceB#\n!_form_finding_geometry_definitionB \n\x1e_form_finding_force_definitionB0\n._form_finding_magnitude_is_defined_as_relativeB\"\n _form_finding_magnitude_absoluteB\"\n _form_finding_magnitude_relativeB\x1d\n\x1b_individual_mass_componentsB\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)ArrayOfMemberSetLoadVaryingLoadParameters*\xd0\x08\n\x15MemberSetLoadLoadType\x12%\n!MEMBER_SET_LOAD_LOAD_TYPE_UNKNOWN\x10\x00\x12)\n%MEMBER_SET_LOAD_LOAD_TYPE_E_TYPE_MASS\x10\x03\x12:\n6MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_DISPLACEMENT\x10\x07\x12\x34\n0MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_AXIAL_STRAIN\x10\x06\x12\x37\n3MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_CONTOUR\x10\x12\x12\x37\n3MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_COATING_POLYGON\x10\x13\x12\x34\n0MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_DISPLACEMENT\x10\x0b\x12\x35\n1MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_END_PRESTRESS\x10\x11\x12-\n)MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORCE\x10\x01\x12\x34\n0MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_FORM_FINDING\x10\n\x12\x39\n5MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_INITIAL_PRESTRESS\x10\t\x12.\n*MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_MOMENT\x10\x02\x12\x39\n5MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_FULL\x10\r\x12<\n8MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_CONTENT_PARTIAL\x10\x0e\x12>\n:MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PIPE_INTERNAL_PRESSURE\x10\x0f\x12\x31\n-MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_PRECAMBER\x10\x08\x12\x35\n1MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTARY_MOTION\x10\x10\x12\x30\n,MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_ROTATION\x10\x0c\x12\x33\n/MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE\x10\x04\x12:\n6MEMBER_SET_LOAD_LOAD_TYPE_LOAD_TYPE_TEMPERATURE_CHANGE\x10\x05*\x8f\x05\n\x1dMemberSetLoadLoadDistribution\x12-\n)MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM\x10\x00\x12\x34\n0MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_1\x10\x02\x12\x34\n0MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2\x10\x05\x12\x36\n2MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_2_2\x10\x04\x12\x34\n0MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_N\x10\x03\x12:\n6MEMBER_SET_LOAD_LOAD_DISTRIBUTION_CONCENTRATED_VARYING\x10\x06\x12/\n+MEMBER_SET_LOAD_LOAD_DISTRIBUTION_PARABOLIC\x10\t\x12-\n)MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TAPERED\x10\x08\x12\x31\n-MEMBER_SET_LOAD_LOAD_DISTRIBUTION_TRAPEZOIDAL\x10\x07\x12\x33\n/MEMBER_SET_LOAD_LOAD_DISTRIBUTION_UNIFORM_TOTAL\x10\x01\x12-\n)MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING\x10\n\x12\x32\n.MEMBER_SET_LOAD_LOAD_DISTRIBUTION_VARYING_IN_Z\x10\x0b*\xa7\x05\n\x1aMemberSetLoadLoadDirection\x12*\n&MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_X\x10\x00\x12G\nCMEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_PROJECTED\x10\x0e\x12\x42\n>MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12G\nCMEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_PROJECTED\x10\x0f\x12\x42\n>MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12G\nCMEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_PROJECTED\x10\x10\x12\x42\n>MEMBER_SET_LOAD_LOAD_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12*\n&MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Y\x10\x01\x12*\n&MEMBER_SET_LOAD_LOAD_DIRECTION_LOCAL_Z\x10\x02\x12.\n*MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_U\x10\x03\x12.\n*MEMBER_SET_LOAD_LOAD_DIRECTION_PRINCIPAL_V\x10\x04*\xb6\x01\n%MemberSetLoadLoadDirectionOrientation\x12\x45\nAMEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_FORWARD\x10\x00\x12\x46\nBMEMBER_SET_LOAD_LOAD_DIRECTION_ORIENTATION_LOAD_DIRECTION_REVERSED\x10\x01*\x9c\x01\n&MemberSetLoadFormFindingDefinitionType\x12:\n6MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_GEOMETRIC\x10\x00\x12\x36\n2MEMBER_SET_LOAD_FORM_FINDING_DEFINITION_TYPE_FORCE\x10\x01*\x8f\x01\n\x1fMemberSetLoadAxisDefinitionType\x12\x33\n/MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_TWO_POINTS\x10\x00\x12\x37\n3MEMBER_SET_LOAD_AXIS_DEFINITION_TYPE_POINT_AND_AXIS\x10\x01*\xa5\x01\n\x1fMemberSetLoadAxisDefinitionAxis\x12*\n&MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_X\x10\x00\x12*\n&MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Y\x10\x01\x12*\n&MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_Z\x10\x02*\xaa\x01\n*MemberSetLoadAxisDefinitionAxisOrientation\x12=\n9MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_POSITIVE\x10\x00\x12=\n9MEMBER_SET_LOAD_AXIS_DEFINITION_AXIS_ORIENTATION_NEGATIVE\x10\x01*\xa1\x02\n,MemberSetLoadEccentricityHorizontalAlignment\x12:\n6MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_LEFT\x10\x00\x12<\n8MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_CENTER\x10\x01\x12:\n6MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_NONE\x10\x03\x12;\n7MEMBER_SET_LOAD_ECCENTRICITY_HORIZONTAL_ALIGNMENT_RIGHT\x10\x02*\x97\x02\n*MemberSetLoadEccentricityVerticalAlignment\x12\x37\n3MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_TOP\x10\x00\x12:\n6MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_BOTTOM\x10\x02\x12:\n6MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_CENTER\x10\x01\x12\x38\n4MEMBER_SET_LOAD_ECCENTRICITY_VERTICAL_ALIGNMENT_NONE\x10\x03*\xdf\x01\n&MemberSetLoadEccentricitySectionMiddle\x12\x41\n=MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_CENTER_OF_GRAVITY\x10\x00\x12\x34\n0MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_NONE\x10\x02\x12<\n8MEMBER_SET_LOAD_ECCENTRICITY_SECTION_MIDDLE_SHEAR_CENTER\x10\x01*\x9d\x01\n%MemberSetLoadFormFindingInternalForce\x12\x37\n3MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_TENSION\x10\x00\x12;\n7MEMBER_SET_LOAD_FORM_FINDING_INTERNAL_FORCE_COMPRESSION\x10\x01*\xff\x02\n*MemberSetLoadFormFindingGeometryDefinition\x12;\n7MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LENGTH\x10\x00\x12K\nGMEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_LOW_POINT_VERTICAL_SAG\x10\x04\x12\x45\nAMEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_MAX_VERTICAL_SAG\x10\x03\x12\x38\n4MEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_SAG\x10\x02\x12\x46\nBMEMBER_SET_LOAD_FORM_FINDING_GEOMETRY_DEFINITION_UNSTRESSED_LENGTH\x10\x01*\xce\x05\n\'MemberSetLoadFormFindingForceDefinition\x12\x39\n5MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_UNKNOWN\x10\x00\x12\x39\n5MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_AVERAGE\x10\n\x12\x39\n5MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_DENSITY\x10\x14\x12N\nJMEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_HORIZONTAL_TENSION_COMPONENT\x10\r\x12\x42\n>MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MAX_FORCE_MEMBER\x10\x0b\x12I\nEMEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_IEND\x10\x12\x12I\nEMEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MINIMAL_TENSION_AT_JEND\x10\x13\x12\x42\n>MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_MIN_FORCE_MEMBER\x10\x0c\x12\x41\n=MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_IEND\x10\x0e\x12\x41\n=MEMBER_SET_LOAD_FORM_FINDING_FORCE_DEFINITION_TENSION_AT_JEND\x10\x0f\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loads.member_set_load_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_MEMBERSETLOADLOADTYPE']._serialized_start=6074
36
+ _globals['_MEMBERSETLOADLOADTYPE']._serialized_end=7178
37
+ _globals['_MEMBERSETLOADLOADDISTRIBUTION']._serialized_start=7181
38
+ _globals['_MEMBERSETLOADLOADDISTRIBUTION']._serialized_end=7836
39
+ _globals['_MEMBERSETLOADLOADDIRECTION']._serialized_start=7839
40
+ _globals['_MEMBERSETLOADLOADDIRECTION']._serialized_end=8518
41
+ _globals['_MEMBERSETLOADLOADDIRECTIONORIENTATION']._serialized_start=8521
42
+ _globals['_MEMBERSETLOADLOADDIRECTIONORIENTATION']._serialized_end=8703
43
+ _globals['_MEMBERSETLOADFORMFINDINGDEFINITIONTYPE']._serialized_start=8706
44
+ _globals['_MEMBERSETLOADFORMFINDINGDEFINITIONTYPE']._serialized_end=8862
45
+ _globals['_MEMBERSETLOADAXISDEFINITIONTYPE']._serialized_start=8865
46
+ _globals['_MEMBERSETLOADAXISDEFINITIONTYPE']._serialized_end=9008
47
+ _globals['_MEMBERSETLOADAXISDEFINITIONAXIS']._serialized_start=9011
48
+ _globals['_MEMBERSETLOADAXISDEFINITIONAXIS']._serialized_end=9176
49
+ _globals['_MEMBERSETLOADAXISDEFINITIONAXISORIENTATION']._serialized_start=9179
50
+ _globals['_MEMBERSETLOADAXISDEFINITIONAXISORIENTATION']._serialized_end=9349
51
+ _globals['_MEMBERSETLOADECCENTRICITYHORIZONTALALIGNMENT']._serialized_start=9352
52
+ _globals['_MEMBERSETLOADECCENTRICITYHORIZONTALALIGNMENT']._serialized_end=9641
53
+ _globals['_MEMBERSETLOADECCENTRICITYVERTICALALIGNMENT']._serialized_start=9644
54
+ _globals['_MEMBERSETLOADECCENTRICITYVERTICALALIGNMENT']._serialized_end=9923
55
+ _globals['_MEMBERSETLOADECCENTRICITYSECTIONMIDDLE']._serialized_start=9926
56
+ _globals['_MEMBERSETLOADECCENTRICITYSECTIONMIDDLE']._serialized_end=10149
57
+ _globals['_MEMBERSETLOADFORMFINDINGINTERNALFORCE']._serialized_start=10152
58
+ _globals['_MEMBERSETLOADFORMFINDINGINTERNALFORCE']._serialized_end=10309
59
+ _globals['_MEMBERSETLOADFORMFINDINGGEOMETRYDEFINITION']._serialized_start=10312
60
+ _globals['_MEMBERSETLOADFORMFINDINGGEOMETRYDEFINITION']._serialized_end=10695
61
+ _globals['_MEMBERSETLOADFORMFINDINGFORCEDEFINITION']._serialized_start=10698
62
+ _globals['_MEMBERSETLOADFORMFINDINGFORCEDEFINITION']._serialized_end=11416
63
+ _globals['_MEMBERSETLOAD']._serialized_start=103
64
+ _globals['_MEMBERSETLOAD']._serialized_end=6026
65
+ _globals['_ARRAYOFMEMBERSETLOADVARYINGLOADPARAMETERS']._serialized_start=6028
66
+ _globals['_ARRAYOFMEMBERSETLOADVARYINGLOADPARAMETERS']._serialized_end=6071
67
+ # @@protoc_insertion_point(module_scope)