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,3 @@
1
+ from .solid_contacts_pb2 import *
2
+ from .solid_gas_pb2 import *
3
+ from .solid_mesh_refinement_pb2 import *
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/types_for_solids/solid_contacts.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/types_for_solids/solid_contacts.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5dlubal/api/rfem/types_for_solids/solid_contacts.proto\x12 dlubal.api.rfem.types_for_solids\"\xd4\x05\n\rSolidContacts\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x0e\n\x06solids\x18\x05 \x03(\x05\x12l\n\x18perpendicular_to_surface\x18\x06 \x01(\x0e\x32\x45.dlubal.api.rfem.types_for_solids.SolidContactsPerpendicularToSurfaceH\x03\x88\x01\x01\x12\x62\n\x13parallel_to_surface\x18\x07 \x01(\x0e\x32@.dlubal.api.rfem.types_for_solids.SolidContactsParallelToSurfaceH\x04\x88\x01\x01\x12\x1c\n\x0fshear_stiffness\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12!\n\x14\x66riction_coefficient\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x19\n\x0climit_stress\x18\n \x01(\x01H\x07\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0b \x01(\tH\x08\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0c \x01(\tH\t\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x1b\n\x19_perpendicular_to_surfaceB\x16\n\x14_parallel_to_surfaceB\x12\n\x10_shear_stiffnessB\x17\n\x15_friction_coefficientB\x0f\n\r_limit_stressB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xf4\x01\n#SolidContactsPerpendicularToSurface\x12\x43\n?SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION\x10\x00\x12\x45\nASOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION\x10\x01\x12\x41\n=SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION\x10\x02*\xde\x03\n\x1eSolidContactsParallelToSurface\x12Z\nVSOLID_CONTACTS_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED\x10\x00\x12\x37\n3SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION\x10\x04\x12=\n9SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION_LIMIT\x10\x05\x12\x34\n0SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_SOLID\x10\x06\x12>\n:SOLID_CONTACTS_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION\x10\x01\x12\x35\n1SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION\x10\x02\x12;\n7SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION_LIMIT\x10\x03\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_solids.solid_contacts_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SOLIDCONTACTSPERPENDICULARTOSURFACE']._serialized_start=819
35
+ _globals['_SOLIDCONTACTSPERPENDICULARTOSURFACE']._serialized_end=1063
36
+ _globals['_SOLIDCONTACTSPARALLELTOSURFACE']._serialized_start=1066
37
+ _globals['_SOLIDCONTACTSPARALLELTOSURFACE']._serialized_end=1544
38
+ _globals['_SOLIDCONTACTS']._serialized_start=92
39
+ _globals['_SOLIDCONTACTS']._serialized_end=816
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,61 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class SolidContactsPerpendicularToSurface(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION: _ClassVar[SolidContactsPerpendicularToSurface]
12
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION: _ClassVar[SolidContactsPerpendicularToSurface]
13
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION: _ClassVar[SolidContactsPerpendicularToSurface]
14
+
15
+ class SolidContactsParallelToSurface(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED: _ClassVar[SolidContactsParallelToSurface]
18
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION: _ClassVar[SolidContactsParallelToSurface]
19
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION_LIMIT: _ClassVar[SolidContactsParallelToSurface]
20
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_SOLID: _ClassVar[SolidContactsParallelToSurface]
21
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION: _ClassVar[SolidContactsParallelToSurface]
22
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION: _ClassVar[SolidContactsParallelToSurface]
23
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION_LIMIT: _ClassVar[SolidContactsParallelToSurface]
24
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FULL_FORCE_TRANSMISSION: SolidContactsPerpendicularToSurface
25
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_COMPRESSION: SolidContactsPerpendicularToSurface
26
+ SOLID_CONTACTS_PERPENDICULAR_TO_SURFACE_FAILURE_UNDER_TENSION: SolidContactsPerpendicularToSurface
27
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_FAILURE_IF_CONTACT_PERPENDICULAR_TO_SURFACES_FAILED: SolidContactsParallelToSurface
28
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION: SolidContactsParallelToSurface
29
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_FRICTION_LIMIT: SolidContactsParallelToSurface
30
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_ELASTIC_SOLID: SolidContactsParallelToSurface
31
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_FULL_FORCE_TRANSMISSION: SolidContactsParallelToSurface
32
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION: SolidContactsParallelToSurface
33
+ SOLID_CONTACTS_PARALLEL_TO_SURFACE_RIGID_FRICTION_LIMIT: SolidContactsParallelToSurface
34
+
35
+ class SolidContacts(_message.Message):
36
+ __slots__ = ("no", "user_defined_name_enabled", "name", "comment", "solids", "perpendicular_to_surface", "parallel_to_surface", "shear_stiffness", "friction_coefficient", "limit_stress", "id_for_export_import", "metadata_for_export_import")
37
+ NO_FIELD_NUMBER: _ClassVar[int]
38
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
39
+ NAME_FIELD_NUMBER: _ClassVar[int]
40
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
41
+ SOLIDS_FIELD_NUMBER: _ClassVar[int]
42
+ PERPENDICULAR_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
43
+ PARALLEL_TO_SURFACE_FIELD_NUMBER: _ClassVar[int]
44
+ SHEAR_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
45
+ FRICTION_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
46
+ LIMIT_STRESS_FIELD_NUMBER: _ClassVar[int]
47
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
48
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
49
+ no: int
50
+ user_defined_name_enabled: bool
51
+ name: str
52
+ comment: str
53
+ solids: _containers.RepeatedScalarFieldContainer[int]
54
+ perpendicular_to_surface: SolidContactsPerpendicularToSurface
55
+ parallel_to_surface: SolidContactsParallelToSurface
56
+ shear_stiffness: float
57
+ friction_coefficient: float
58
+ limit_stress: float
59
+ id_for_export_import: str
60
+ metadata_for_export_import: str
61
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., solids: _Optional[_Iterable[int]] = ..., perpendicular_to_surface: _Optional[_Union[SolidContactsPerpendicularToSurface, str]] = ..., parallel_to_surface: _Optional[_Union[SolidContactsParallelToSurface, str]] = ..., shear_stiffness: _Optional[float] = ..., friction_coefficient: _Optional[float] = ..., limit_stress: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/types_for_solids/solid_gas.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/types_for_solids/solid_gas.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0dlubal/api/rfem/types_for_solids/solid_gas.proto\x12 dlubal.api.rfem.types_for_solids\"\xfc\x02\n\x08SolidGas\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x14\n\x07\x63omment\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08pressure\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\x0e\n\x06solids\x18\x05 \x03(\x05\x12\x18\n\x0btemperature\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x42\n\n\x08_commentB\x07\n\x05_nameB\x0b\n\t_pressureB\x0e\n\x0c_temperatureB\x1c\n\x1a_user_defined_name_enabledB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_solids.solid_gas_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SOLIDGAS']._serialized_start=87
35
+ _globals['_SOLIDGAS']._serialized_end=467
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,28 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class SolidGas(_message.Message):
9
+ __slots__ = ("no", "comment", "name", "pressure", "solids", "temperature", "user_defined_name_enabled", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ PRESSURE_FIELD_NUMBER: _ClassVar[int]
14
+ SOLIDS_FIELD_NUMBER: _ClassVar[int]
15
+ TEMPERATURE_FIELD_NUMBER: _ClassVar[int]
16
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
17
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
18
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
19
+ no: int
20
+ comment: str
21
+ name: str
22
+ pressure: float
23
+ solids: _containers.RepeatedScalarFieldContainer[int]
24
+ temperature: float
25
+ user_defined_name_enabled: bool
26
+ id_for_export_import: str
27
+ metadata_for_export_import: str
28
+ def __init__(self, no: _Optional[int] = ..., comment: _Optional[str] = ..., name: _Optional[str] = ..., pressure: _Optional[float] = ..., solids: _Optional[_Iterable[int]] = ..., temperature: _Optional[float] = ..., user_defined_name_enabled: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/types_for_solids/solid_mesh_refinement.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/types_for_solids/solid_mesh_refinement.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n<dlubal/api/rfem/types_for_solids/solid_mesh_refinement.proto\x12 dlubal.api.rfem.types_for_solids\"\xd3\x03\n\x13SolidMeshRefinement\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x0e\n\x06solids\x18\x04 \x03(\x05\x12\x1a\n\rtarget_length\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x10\n\x0e_target_lengthB\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_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_solids.solid_mesh_refinement_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SOLIDMESHREFINEMENT']._serialized_start=99
35
+ _globals['_SOLIDMESHREFINEMENT']._serialized_end=566
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,30 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class SolidMeshRefinement(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "solids", "target_length", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ SOLIDS_FIELD_NUMBER: _ClassVar[int]
14
+ TARGET_LENGTH_FIELD_NUMBER: _ClassVar[int]
15
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
16
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
17
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
18
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
19
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
20
+ no: int
21
+ user_defined_name_enabled: bool
22
+ name: str
23
+ solids: _containers.RepeatedScalarFieldContainer[int]
24
+ target_length: float
25
+ comment: str
26
+ is_generated: bool
27
+ generating_object_info: str
28
+ id_for_export_import: str
29
+ metadata_for_export_import: str
30
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., solids: _Optional[_Iterable[int]] = ..., target_length: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,4 @@
1
+ from .line_release_type_pb2 import *
2
+ from .nodal_release_type_pb2 import *
3
+ from .surfaces_contact_type_pb2 import *
4
+ from .surface_release_type_pb2 import *
@@ -0,0 +1,105 @@
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/types_for_special_objects/line_release_type.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/types_for_special_objects/line_release_type.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'\nAdlubal/api/rfem/types_for_special_objects/line_release_type.proto\x12)dlubal.api.rfem.types_for_special_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xa6j\n\x0fLineReleaseType\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x15\n\rline_releases\x18\x04 \x03(\x05\x12&\n\x19translational_release_u_x\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12&\n\x19translational_release_u_y\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12&\n\x19translational_release_u_z\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12%\n\x18rotational_release_phi_x\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x91\x01\n&translational_release_u_x_nonlinearity\x18\t \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeTranslationalReleaseUXNonlinearityH\x06\x88\x01\x01\x12\x91\x01\n&translational_release_u_y_nonlinearity\x18\n \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeTranslationalReleaseUYNonlinearityH\x07\x88\x01\x01\x12\x91\x01\n&translational_release_u_z_nonlinearity\x18\x0b \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeTranslationalReleaseUZNonlinearityH\x08\x88\x01\x01\x12\x8f\x01\n%rotational_release_phi_x_nonlinearity\x18\x0c \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeRotationalReleasePhiXNonlinearityH\t\x88\x01\x01\x12\x90\x01\n&partial_activity_along_x_negative_type\x18\r \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongXNegativeTypeH\n\x88\x01\x01\x12\x90\x01\n&partial_activity_along_x_positive_type\x18\x0e \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongXPositiveTypeH\x0b\x88\x01\x01\x12\x90\x01\n&partial_activity_along_y_negative_type\x18\x0f \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongYNegativeTypeH\x0c\x88\x01\x01\x12\x90\x01\n&partial_activity_along_y_positive_type\x18\x10 \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongYPositiveTypeH\r\x88\x01\x01\x12\x90\x01\n&partial_activity_along_z_negative_type\x18\x11 \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongZNegativeTypeH\x0e\x88\x01\x01\x12\x90\x01\n&partial_activity_along_z_positive_type\x18\x12 \x01(\x0e\x32[.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAlongZPositiveTypeH\x0f\x88\x01\x01\x12\x92\x01\n\'partial_activity_around_x_negative_type\x18\x13 \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAroundXNegativeTypeH\x10\x88\x01\x01\x12\x92\x01\n\'partial_activity_around_x_positive_type\x18\x14 \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypePartialActivityAroundXPositiveTypeH\x11\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12;\n.partial_activity_along_y_negative_displacement\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12;\n.partial_activity_along_y_positive_displacement\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12;\n.partial_activity_along_z_negative_displacement\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12;\n.partial_activity_along_z_positive_displacement\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x36\n)partial_activity_around_x_negative_moment\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12\x36\n)partial_activity_around_x_positive_moment\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18\x1d \x01(\x01H\x1a\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12\x34\n\'partial_activity_along_y_negative_force\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12\x34\n\'partial_activity_along_y_positive_force\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x34\n\'partial_activity_along_z_negative_force\x18! \x01(\x01H\x1e\x88\x01\x01\x12\x34\n\'partial_activity_along_z_positive_force\x18\" \x01(\x01H\x1f\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_rotation\x18# \x01(\x01H \x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_rotation\x18$ \x01(\x01H!\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18% \x01(\x01H\"\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18& \x01(\x01H#\x88\x01\x01\x12\x37\n*partial_activity_along_y_negative_slippage\x18\' \x01(\x01H$\x88\x01\x01\x12\x37\n*partial_activity_along_y_positive_slippage\x18( \x01(\x01H%\x88\x01\x01\x12\x37\n*partial_activity_along_z_negative_slippage\x18) \x01(\x01H&\x88\x01\x01\x12\x37\n*partial_activity_along_z_positive_slippage\x18* \x01(\x01H\'\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_slippage\x18+ \x01(\x01H(\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_slippage\x18, \x01(\x01H)\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18- \x01(\x08H*\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18. \x01(\x08H+\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18/ \x01(\x08H,\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_symmetric\x18\x30 \x01(\x08H-\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18\x31 \x01(\x08H.\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18\x32 \x01(\x08H/\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18\x33 \x01(\x08H0\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_is_sorted\x18\x34 \x01(\x08H1\x88\x01\x01\x12w\n\x15\x64iagram_along_x_table\x18\x35 \x01(\x0b\x32S.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongXTableH2\x88\x01\x01\x12w\n\x15\x64iagram_along_y_table\x18\x36 \x01(\x0b\x32S.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongYTableH3\x88\x01\x01\x12w\n\x15\x64iagram_along_z_table\x18\x37 \x01(\x0b\x32S.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongZTableH4\x88\x01\x01\x12y\n\x16\x64iagram_around_x_table\x18\x38 \x01(\x0b\x32T.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAroundXTableH5\x88\x01\x01\x12p\n\x15\x64iagram_along_x_start\x18\x39 \x01(\x0e\x32L.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongXStartH6\x88\x01\x01\x12p\n\x15\x64iagram_along_y_start\x18: \x01(\x0e\x32L.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongYStartH7\x88\x01\x01\x12p\n\x15\x64iagram_along_z_start\x18; \x01(\x0e\x32L.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongZStartH8\x88\x01\x01\x12r\n\x16\x64iagram_around_x_start\x18< \x01(\x0e\x32M.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAroundXStartH9\x88\x01\x01\x12l\n\x13\x64iagram_along_x_end\x18= \x01(\x0e\x32J.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongXEndH:\x88\x01\x01\x12l\n\x13\x64iagram_along_y_end\x18> \x01(\x0e\x32J.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongYEndH;\x88\x01\x01\x12l\n\x13\x64iagram_along_z_end\x18? \x01(\x0e\x32J.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAlongZEndH<\x88\x01\x01\x12n\n\x14\x64iagram_around_x_end\x18@ \x01(\x0e\x32K.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeDiagramAroundXEndH=\x88\x01\x01\x12+\n\x1e\x64iagram_along_x_ac_yield_minus\x18\x41 \x01(\x01H>\x88\x01\x01\x12+\n\x1e\x64iagram_along_y_ac_yield_minus\x18\x42 \x01(\x01H?\x88\x01\x01\x12+\n\x1e\x64iagram_along_z_ac_yield_minus\x18\x43 \x01(\x01H@\x88\x01\x01\x12,\n\x1f\x64iagram_around_x_ac_yield_minus\x18\x44 \x01(\x01HA\x88\x01\x01\x12*\n\x1d\x64iagram_along_x_ac_yield_plus\x18\x45 \x01(\x01HB\x88\x01\x01\x12*\n\x1d\x64iagram_along_y_ac_yield_plus\x18\x46 \x01(\x01HC\x88\x01\x01\x12*\n\x1d\x64iagram_along_z_ac_yield_plus\x18G \x01(\x01HD\x88\x01\x01\x12+\n\x1e\x64iagram_around_x_ac_yield_plus\x18H \x01(\x01HE\x88\x01\x01\x12\x37\n*diagram_along_x_acceptance_criteria_active\x18I \x01(\x08HF\x88\x01\x01\x12\x37\n*diagram_along_y_acceptance_criteria_active\x18J \x01(\x08HG\x88\x01\x01\x12\x37\n*diagram_along_z_acceptance_criteria_active\x18K \x01(\x08HH\x88\x01\x01\x12\x38\n+diagram_around_x_acceptance_criteria_active\x18L \x01(\x08HI\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_one\x18M \x01(\x0b\x32\x18.dlubal.api.common.ColorHJ\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_one\x18N \x01(\x0b\x32\x18.dlubal.api.common.ColorHK\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_one\x18O \x01(\x0b\x32\x18.dlubal.api.common.ColorHL\x88\x01\x01\x12G\n diagram_around_x_minus_color_one\x18P \x01(\x0b\x32\x18.dlubal.api.common.ColorHM\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_two\x18Q \x01(\x0b\x32\x18.dlubal.api.common.ColorHN\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_two\x18R \x01(\x0b\x32\x18.dlubal.api.common.ColorHO\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_two\x18S \x01(\x0b\x32\x18.dlubal.api.common.ColorHP\x88\x01\x01\x12G\n diagram_around_x_minus_color_two\x18T \x01(\x0b\x32\x18.dlubal.api.common.ColorHQ\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_one\x18U \x01(\x0b\x32\x18.dlubal.api.common.ColorHR\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_one\x18V \x01(\x0b\x32\x18.dlubal.api.common.ColorHS\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_one\x18W \x01(\x0b\x32\x18.dlubal.api.common.ColorHT\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_one\x18X \x01(\x0b\x32\x18.dlubal.api.common.ColorHU\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_two\x18Y \x01(\x0b\x32\x18.dlubal.api.common.ColorHV\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_two\x18Z \x01(\x0b\x32\x18.dlubal.api.common.ColorHW\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_two\x18[ \x01(\x0b\x32\x18.dlubal.api.common.ColorHX\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_two\x18\\ \x01(\x0b\x32\x18.dlubal.api.common.ColorHY\x88\x01\x01\x12\x82\x01\n\x1b\x64iagram_along_x_color_table\x18] \x01(\x0b\x32X.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongXColorTableHZ\x88\x01\x01\x12\x82\x01\n\x1b\x64iagram_along_y_color_table\x18^ \x01(\x0b\x32X.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongYColorTableH[\x88\x01\x01\x12\x82\x01\n\x1b\x64iagram_along_z_color_table\x18_ \x01(\x0b\x32X.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAlongZColorTableH\\\x88\x01\x01\x12\x84\x01\n\x1c\x64iagram_around_x_color_table\x18` \x01(\x0b\x32Y.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeDiagramAroundXColorTableH]\x88\x01\x01\x12\x91\x01\n#force_moment_diagram_around_x_table\x18\x61 \x01(\x0b\x32_.dlubal.api.rfem.types_for_special_objects.ArrayOfLineReleaseTypeForceMomentDiagramAroundXTableH^\x88\x01\x01\x12\x34\n\'force_moment_diagram_around_x_symmetric\x18\x62 \x01(\x08H_\x88\x01\x01\x12\x34\n\'force_moment_diagram_around_x_is_sorted\x18\x63 \x01(\x08H`\x88\x01\x01\x12\x8a\x01\n#force_moment_diagram_around_x_start\x18\x64 \x01(\x0e\x32X.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeForceMomentDiagramAroundXStartHa\x88\x01\x01\x12\x86\x01\n!force_moment_diagram_around_x_end\x18\x65 \x01(\x0e\x32V.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeForceMomentDiagramAroundXEndHb\x88\x01\x01\x12\x93\x01\n(force_moment_diagram_around_x_depends_on\x18\x66 \x01(\x0e\x32\\.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeForceMomentDiagramAroundXDependsOnHc\x88\x01\x01\x12\x1e\n\x11\x66riction_spring_x\x18g \x01(\x01Hd\x88\x01\x01\x12\x1e\n\x11\x66riction_spring_y\x18h \x01(\x01He\x88\x01\x01\x12\x1e\n\x11\x66riction_spring_z\x18i \x01(\x01Hf\x88\x01\x01\x12#\n\x16\x66riction_coefficient_x\x18j \x01(\x01Hg\x88\x01\x01\x12$\n\x17\x66riction_coefficient_xy\x18k \x01(\x01Hh\x88\x01\x01\x12$\n\x17\x66riction_coefficient_xz\x18l \x01(\x01Hi\x88\x01\x01\x12#\n\x16\x66riction_coefficient_y\x18m \x01(\x01Hj\x88\x01\x01\x12$\n\x17\x66riction_coefficient_yx\x18n \x01(\x01Hk\x88\x01\x01\x12$\n\x17\x66riction_coefficient_yz\x18o \x01(\x01Hl\x88\x01\x01\x12#\n\x16\x66riction_coefficient_z\x18p \x01(\x01Hm\x88\x01\x01\x12$\n\x17\x66riction_coefficient_zx\x18q \x01(\x01Hn\x88\x01\x01\x12$\n\x17\x66riction_coefficient_zy\x18r \x01(\x01Ho\x88\x01\x01\x12-\n friction_direction_independent_x\x18s \x01(\x08Hp\x88\x01\x01\x12-\n friction_direction_independent_y\x18t \x01(\x08Hq\x88\x01\x01\x12-\n friction_direction_independent_z\x18u \x01(\x08Hr\x88\x01\x01\x12\x14\n\x07\x63omment\x18v \x01(\tHs\x88\x01\x01\x12\x19\n\x0cis_generated\x18w \x01(\x08Ht\x88\x01\x01\x12#\n\x16generating_object_info\x18x \x01(\tHu\x88\x01\x01\x12\x7f\n\x1dlocal_axis_system_object_type\x18y \x01(\x0e\x32S.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeLocalAxisSystemObjectTypeHv\x88\x01\x01\x12\x86\x01\n!local_axis_system_object_in_plane\x18z \x01(\x0e\x32V.dlubal.api.rfem.types_for_special_objects.LineReleaseTypeLocalAxisSystemObjectInPlaneHw\x88\x01\x01\x12/\n\"local_axis_system_reference_object\x18{ \x01(\x05Hx\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18| \x01(\x01Hy\x88\x01\x01\x12!\n\x14id_for_export_import\x18} \x01(\tHz\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18~ \x01(\tH{\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1c\n\x1a_translational_release_u_xB\x1c\n\x1a_translational_release_u_yB\x1c\n\x1a_translational_release_u_zB\x1b\n\x19_rotational_release_phi_xB)\n\'_translational_release_u_x_nonlinearityB)\n\'_translational_release_u_y_nonlinearityB)\n\'_translational_release_u_z_nonlinearityB(\n&_rotational_release_phi_x_nonlinearityB)\n\'_partial_activity_along_x_negative_typeB)\n\'_partial_activity_along_x_positive_typeB)\n\'_partial_activity_along_y_negative_typeB)\n\'_partial_activity_along_y_positive_typeB)\n\'_partial_activity_along_z_negative_typeB)\n\'_partial_activity_along_z_positive_typeB*\n(_partial_activity_around_x_negative_typeB*\n(_partial_activity_around_x_positive_typeB1\n/_partial_activity_along_x_negative_displacementB1\n/_partial_activity_along_x_positive_displacementB1\n/_partial_activity_along_y_negative_displacementB1\n/_partial_activity_along_y_positive_displacementB1\n/_partial_activity_along_z_negative_displacementB1\n/_partial_activity_along_z_positive_displacementB,\n*_partial_activity_around_x_negative_momentB,\n*_partial_activity_around_x_positive_momentB*\n(_partial_activity_along_x_negative_forceB*\n(_partial_activity_along_x_positive_forceB*\n(_partial_activity_along_y_negative_forceB*\n(_partial_activity_along_y_positive_forceB*\n(_partial_activity_along_z_negative_forceB*\n(_partial_activity_along_z_positive_forceB.\n,_partial_activity_around_x_negative_rotationB.\n,_partial_activity_around_x_positive_rotationB-\n+_partial_activity_along_x_negative_slippageB-\n+_partial_activity_along_x_positive_slippageB-\n+_partial_activity_along_y_negative_slippageB-\n+_partial_activity_along_y_positive_slippageB-\n+_partial_activity_along_z_negative_slippageB-\n+_partial_activity_along_z_positive_slippageB.\n,_partial_activity_around_x_negative_slippageB.\n,_partial_activity_around_x_positive_slippageB\x1c\n\x1a_diagram_along_x_symmetricB\x1c\n\x1a_diagram_along_y_symmetricB\x1c\n\x1a_diagram_along_z_symmetricB\x1d\n\x1b_diagram_around_x_symmetricB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_z_is_sortedB\x1d\n\x1b_diagram_around_x_is_sortedB\x18\n\x16_diagram_along_x_tableB\x18\n\x16_diagram_along_y_tableB\x18\n\x16_diagram_along_z_tableB\x19\n\x17_diagram_around_x_tableB\x18\n\x16_diagram_along_x_startB\x18\n\x16_diagram_along_y_startB\x18\n\x16_diagram_along_z_startB\x19\n\x17_diagram_around_x_startB\x16\n\x14_diagram_along_x_endB\x16\n\x14_diagram_along_y_endB\x16\n\x14_diagram_along_z_endB\x17\n\x15_diagram_around_x_endB!\n\x1f_diagram_along_x_ac_yield_minusB!\n\x1f_diagram_along_y_ac_yield_minusB!\n\x1f_diagram_along_z_ac_yield_minusB\"\n _diagram_around_x_ac_yield_minusB \n\x1e_diagram_along_x_ac_yield_plusB \n\x1e_diagram_along_y_ac_yield_plusB \n\x1e_diagram_along_z_ac_yield_plusB!\n\x1f_diagram_around_x_ac_yield_plusB-\n+_diagram_along_x_acceptance_criteria_activeB-\n+_diagram_along_y_acceptance_criteria_activeB-\n+_diagram_along_z_acceptance_criteria_activeB.\n,_diagram_around_x_acceptance_criteria_activeB\"\n _diagram_along_x_minus_color_oneB\"\n _diagram_along_y_minus_color_oneB\"\n _diagram_along_z_minus_color_oneB#\n!_diagram_around_x_minus_color_oneB\"\n _diagram_along_x_minus_color_twoB\"\n _diagram_along_y_minus_color_twoB\"\n _diagram_along_z_minus_color_twoB#\n!_diagram_around_x_minus_color_twoB!\n\x1f_diagram_along_x_plus_color_oneB!\n\x1f_diagram_along_y_plus_color_oneB!\n\x1f_diagram_along_z_plus_color_oneB\"\n _diagram_around_x_plus_color_oneB!\n\x1f_diagram_along_x_plus_color_twoB!\n\x1f_diagram_along_y_plus_color_twoB!\n\x1f_diagram_along_z_plus_color_twoB\"\n _diagram_around_x_plus_color_twoB\x1e\n\x1c_diagram_along_x_color_tableB\x1e\n\x1c_diagram_along_y_color_tableB\x1e\n\x1c_diagram_along_z_color_tableB\x1f\n\x1d_diagram_around_x_color_tableB&\n$_force_moment_diagram_around_x_tableB*\n(_force_moment_diagram_around_x_symmetricB*\n(_force_moment_diagram_around_x_is_sortedB&\n$_force_moment_diagram_around_x_startB$\n\"_force_moment_diagram_around_x_endB+\n)_force_moment_diagram_around_x_depends_onB\x14\n\x12_friction_spring_xB\x14\n\x12_friction_spring_yB\x14\n\x12_friction_spring_zB\x19\n\x17_friction_coefficient_xB\x1a\n\x18_friction_coefficient_xyB\x1a\n\x18_friction_coefficient_xzB\x19\n\x17_friction_coefficient_yB\x1a\n\x18_friction_coefficient_yxB\x1a\n\x18_friction_coefficient_yzB\x19\n\x17_friction_coefficient_zB\x1a\n\x18_friction_coefficient_zxB\x1a\n\x18_friction_coefficient_zyB#\n!_friction_direction_independent_xB#\n!_friction_direction_independent_yB#\n!_friction_direction_independent_zB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB \n\x1e_local_axis_system_object_typeB$\n\"_local_axis_system_object_in_planeB%\n#_local_axis_system_reference_objectB\x11\n\x0f_rotation_angleB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"*\n(ArrayOfLineReleaseTypeDiagramAlongXTable\"*\n(ArrayOfLineReleaseTypeDiagramAlongYTable\"*\n(ArrayOfLineReleaseTypeDiagramAlongZTable\"+\n)ArrayOfLineReleaseTypeDiagramAroundXTable\"/\n-ArrayOfLineReleaseTypeDiagramAlongXColorTable\"/\n-ArrayOfLineReleaseTypeDiagramAlongYColorTable\"/\n-ArrayOfLineReleaseTypeDiagramAlongZColorTable\"0\n.ArrayOfLineReleaseTypeDiagramAroundXColorTable\"6\n4ArrayOfLineReleaseTypeForceMomentDiagramAroundXTable*\xf9\t\n1LineReleaseTypeTranslationalReleaseUXNonlinearity\x12\x46\nBLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x63\n_LINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_COUPLED_DIAGRAM_PERMANENT_RELEASE\x10\x1d\x12I\nELINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12X\nTLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12]\nYLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12R\nNLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12S\nOLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf9\t\n1LineReleaseTypeTranslationalReleaseUYNonlinearity\x12\x46\nBLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x63\n_LINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_COUPLED_DIAGRAM_PERMANENT_RELEASE\x10\x1d\x12I\nELINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12X\nTLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12]\nYLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12R\nNLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12S\nOLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf9\t\n1LineReleaseTypeTranslationalReleaseUZNonlinearity\x12\x46\nBLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x63\n_LINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_COUPLED_DIAGRAM_PERMANENT_RELEASE\x10\x1d\x12I\nELINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Y\nULINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12U\nQLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12X\nTLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12]\nYLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12V\nRLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12R\nNLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12S\nOLINE_RELEASE_TYPE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xea\t\n0LineReleaseTypeRotationalReleasePhiXNonlinearity\x12\x45\nALINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x62\n^LINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_COUPLED_DIAGRAM_PERMANENT_RELEASE\x10\x1d\x12H\nDLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12X\nTLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12X\nTLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12T\nPLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12T\nPLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12U\nQLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12U\nQLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12W\nSLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12\\\nXLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12U\nQLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12Q\nMLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12R\nNLINE_RELEASE_TYPE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\x9b\x04\n0LineReleaseTypePartialActivityAlongXNegativeType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x9b\x04\n0LineReleaseTypePartialActivityAlongXPositiveType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x9b\x04\n0LineReleaseTypePartialActivityAlongYNegativeType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x9b\x04\n0LineReleaseTypePartialActivityAlongYPositiveType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x9b\x04\n0LineReleaseTypePartialActivityAlongZNegativeType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x9b\x04\n0LineReleaseTypePartialActivityAlongZPositiveType\x12[\nWLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12X\nTLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x66\nbLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xa3\x04\n1LineReleaseTypePartialActivityAroundXNegativeType\x12\\\nXLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12g\ncLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12Y\nULINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12h\ndLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xa3\x04\n1LineReleaseTypePartialActivityAroundXPositiveType\x12\\\nXLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12g\ncLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12Y\nULINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x62\n^LINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12h\ndLINE_RELEASE_TYPE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xc8\x02\n!LineReleaseTypeDiagramAlongXStart\x12G\nCLINE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12J\nFLINE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x44\n@LINE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xc8\x02\n!LineReleaseTypeDiagramAlongYStart\x12G\nCLINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12J\nFLINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x44\n@LINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xc8\x02\n!LineReleaseTypeDiagramAlongZStart\x12G\nCLINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12J\nFLINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x44\n@LINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xcd\x02\n\"LineReleaseTypeDiagramAroundXStart\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12K\nGLINE_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x45\nALINE_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12I\nELINE_RELEASE_TYPE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbe\x02\n\x1fLineReleaseTypeDiagramAlongXEnd\x12\x45\nALINE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x42\n>LINE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x46\nBLINE_RELEASE_TYPE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbe\x02\n\x1fLineReleaseTypeDiagramAlongYEnd\x12\x45\nALINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x42\n>LINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x46\nBLINE_RELEASE_TYPE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbe\x02\n\x1fLineReleaseTypeDiagramAlongZEnd\x12\x45\nALINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12H\nDLINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x42\n>LINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x46\nBLINE_RELEASE_TYPE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xc3\x02\n LineReleaseTypeDiagramAroundXEnd\x12\x46\nBLINE_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12I\nELINE_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x43\n?LINE_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12G\nCLINE_RELEASE_TYPE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xdf\x02\n-LineReleaseTypeForceMomentDiagramAroundXStart\x12\x62\n^LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x65\naLINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x63\n_LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xd7\x02\n+LineReleaseTypeForceMomentDiagramAroundXEnd\x12`\n\\LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x63\n_LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\x61\n]LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xdb\x02\n1LineReleaseTypeForceMomentDiagramAroundXDependsOn\x12`\n\\LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_N\x10\x00\x12\x61\n]LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_VY\x10\x01\x12\x61\n]LINE_RELEASE_TYPE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_VZ\x10\x02*\xce\x02\n(LineReleaseTypeLocalAxisSystemObjectType\x12\x41\n=LINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_ORIGINAL_LINE\x10\x00\x12=\n9LINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_HELP_NODE\x10\x03\x12K\nGLINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_MEMBER_ON_ORIGINAL_LINE\x10\x01\x12S\nOLINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_TYPE_Z_AXIS_PERPENDICULAR_TO_SURFACE\x10\x02*\xa5\x01\n+LineReleaseTypeLocalAxisSystemObjectInPlane\x12:\n6LINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_IN_PLANE_XY\x10\x00\x12:\n6LINE_RELEASE_TYPE_LOCAL_AXIS_SYSTEM_OBJECT_IN_PLANE_XZ\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_special_objects.line_release_type_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_start=14184
36
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_end=15457
37
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_start=15460
38
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_end=16733
39
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_start=16736
40
+ _globals['_LINERELEASETYPETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_end=18009
41
+ _globals['_LINERELEASETYPEROTATIONALRELEASEPHIXNONLINEARITY']._serialized_start=18012
42
+ _globals['_LINERELEASETYPEROTATIONALRELEASEPHIXNONLINEARITY']._serialized_end=19270
43
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=19273
44
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=19812
45
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=19815
46
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=20354
47
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_start=20357
48
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_end=20896
49
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_start=20899
50
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_end=21438
51
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_start=21441
52
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_end=21980
53
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_start=21983
54
+ _globals['_LINERELEASETYPEPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_end=22522
55
+ _globals['_LINERELEASETYPEPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_start=22525
56
+ _globals['_LINERELEASETYPEPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_end=23072
57
+ _globals['_LINERELEASETYPEPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_start=23075
58
+ _globals['_LINERELEASETYPEPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_end=23622
59
+ _globals['_LINERELEASETYPEDIAGRAMALONGXSTART']._serialized_start=23625
60
+ _globals['_LINERELEASETYPEDIAGRAMALONGXSTART']._serialized_end=23953
61
+ _globals['_LINERELEASETYPEDIAGRAMALONGYSTART']._serialized_start=23956
62
+ _globals['_LINERELEASETYPEDIAGRAMALONGYSTART']._serialized_end=24284
63
+ _globals['_LINERELEASETYPEDIAGRAMALONGZSTART']._serialized_start=24287
64
+ _globals['_LINERELEASETYPEDIAGRAMALONGZSTART']._serialized_end=24615
65
+ _globals['_LINERELEASETYPEDIAGRAMAROUNDXSTART']._serialized_start=24618
66
+ _globals['_LINERELEASETYPEDIAGRAMAROUNDXSTART']._serialized_end=24951
67
+ _globals['_LINERELEASETYPEDIAGRAMALONGXEND']._serialized_start=24954
68
+ _globals['_LINERELEASETYPEDIAGRAMALONGXEND']._serialized_end=25272
69
+ _globals['_LINERELEASETYPEDIAGRAMALONGYEND']._serialized_start=25275
70
+ _globals['_LINERELEASETYPEDIAGRAMALONGYEND']._serialized_end=25593
71
+ _globals['_LINERELEASETYPEDIAGRAMALONGZEND']._serialized_start=25596
72
+ _globals['_LINERELEASETYPEDIAGRAMALONGZEND']._serialized_end=25914
73
+ _globals['_LINERELEASETYPEDIAGRAMAROUNDXEND']._serialized_start=25917
74
+ _globals['_LINERELEASETYPEDIAGRAMAROUNDXEND']._serialized_end=26240
75
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXSTART']._serialized_start=26243
76
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXSTART']._serialized_end=26594
77
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXEND']._serialized_start=26597
78
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXEND']._serialized_end=26940
79
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXDEPENDSON']._serialized_start=26943
80
+ _globals['_LINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXDEPENDSON']._serialized_end=27290
81
+ _globals['_LINERELEASETYPELOCALAXISSYSTEMOBJECTTYPE']._serialized_start=27293
82
+ _globals['_LINERELEASETYPELOCALAXISSYSTEMOBJECTTYPE']._serialized_end=27627
83
+ _globals['_LINERELEASETYPELOCALAXISSYSTEMOBJECTINPLANE']._serialized_start=27630
84
+ _globals['_LINERELEASETYPELOCALAXISSYSTEMOBJECTINPLANE']._serialized_end=27795
85
+ _globals['_LINERELEASETYPE']._serialized_start=145
86
+ _globals['_LINERELEASETYPE']._serialized_end=13751
87
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGXTABLE']._serialized_start=13753
88
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGXTABLE']._serialized_end=13795
89
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGYTABLE']._serialized_start=13797
90
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGYTABLE']._serialized_end=13839
91
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGZTABLE']._serialized_start=13841
92
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGZTABLE']._serialized_end=13883
93
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMAROUNDXTABLE']._serialized_start=13885
94
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMAROUNDXTABLE']._serialized_end=13928
95
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGXCOLORTABLE']._serialized_start=13930
96
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGXCOLORTABLE']._serialized_end=13977
97
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGYCOLORTABLE']._serialized_start=13979
98
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGYCOLORTABLE']._serialized_end=14026
99
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGZCOLORTABLE']._serialized_start=14028
100
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMALONGZCOLORTABLE']._serialized_end=14075
101
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMAROUNDXCOLORTABLE']._serialized_start=14077
102
+ _globals['_ARRAYOFLINERELEASETYPEDIAGRAMAROUNDXCOLORTABLE']._serialized_end=14125
103
+ _globals['_ARRAYOFLINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXTABLE']._serialized_start=14127
104
+ _globals['_ARRAYOFLINERELEASETYPEFORCEMOMENTDIAGRAMAROUNDXTABLE']._serialized_end=14181
105
+ # @@protoc_insertion_point(module_scope)