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,38 @@
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_members/member_nonlinearity.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_members/member_nonlinearity.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_members/member_nonlinearity.proto\x12!dlubal.api.rfem.types_for_members\"\x88\x05\n\x12MemberNonlinearity\x12\n\n\x02no\x18\x01 \x01(\x05\x12L\n\x04type\x18\x02 \x01(\x0e\x32\x39.dlubal.api.rfem.types_for_members.MemberNonlinearityTypeH\x00\x88\x01\x01\x12\x13\n\x0b\x61ssigned_to\x18\x03 \x03(\x05\x12\x14\n\x07\x63omment\x18\x04 \x01(\tH\x01\x88\x01\x01\x12\x1e\n\x11\x63ompression_force\x18\x05 \x01(\x01H\x02\x88\x01\x01\x12#\n\x16generating_object_info\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12\x11\n\x04name\x18\x08 \x01(\tH\x05\x88\x01\x01\x12\x15\n\x08slippage\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x1a\n\rtension_force\x18\n \x01(\x01H\x07\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x0b \x01(\x08H\x08\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0c \x01(\tH\t\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\r \x01(\tH\n\x88\x01\x01\x42\x07\n\x05_typeB\n\n\x08_commentB\x14\n\x12_compression_forceB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\x07\n\x05_nameB\x0b\n\t_slippageB\x10\n\x0e_tension_forceB\x1c\n\x1a_user_defined_name_enabledB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xce\x04\n\x16MemberNonlinearityType\x12/\n+MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION\x10\x00\x12$\n MEMBER_NONLINEARITY_TYPE_FAILURE\x10\t\x12\x33\n/MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION\x10\x01\x12\x41\n=MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION_WITH_SLIPPAGE\x10\x03\x12=\n9MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION_WITH_SLIPPAGE\x10\x02\x12\x36\n2MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_COMPRESSION\x10\x07\x12\x32\n.MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_TENSION\x10\x05\x12%\n!MEMBER_NONLINEARITY_TYPE_SLIPPAGE\x10\x04\x12%\n!MEMBER_NONLINEARITY_TYPE_YIELDING\x10\n\x12\x37\n3MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_COMPRESSION\x10\x08\x12\x33\n/MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_TENSION\x10\x06\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_nonlinearity_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERNONLINEARITYTYPE']._serialized_start=750
35
+ _globals['_MEMBERNONLINEARITYTYPE']._serialized_end=1340
36
+ _globals['_MEMBERNONLINEARITY']._serialized_start=99
37
+ _globals['_MEMBERNONLINEARITY']._serialized_end=747
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,62 @@
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 MemberNonlinearityType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION: _ClassVar[MemberNonlinearityType]
12
+ MEMBER_NONLINEARITY_TYPE_FAILURE: _ClassVar[MemberNonlinearityType]
13
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION: _ClassVar[MemberNonlinearityType]
14
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION_WITH_SLIPPAGE: _ClassVar[MemberNonlinearityType]
15
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION_WITH_SLIPPAGE: _ClassVar[MemberNonlinearityType]
16
+ MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_COMPRESSION: _ClassVar[MemberNonlinearityType]
17
+ MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_TENSION: _ClassVar[MemberNonlinearityType]
18
+ MEMBER_NONLINEARITY_TYPE_SLIPPAGE: _ClassVar[MemberNonlinearityType]
19
+ MEMBER_NONLINEARITY_TYPE_YIELDING: _ClassVar[MemberNonlinearityType]
20
+ MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_COMPRESSION: _ClassVar[MemberNonlinearityType]
21
+ MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_TENSION: _ClassVar[MemberNonlinearityType]
22
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION: MemberNonlinearityType
23
+ MEMBER_NONLINEARITY_TYPE_FAILURE: MemberNonlinearityType
24
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION: MemberNonlinearityType
25
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_COMPRESSION_WITH_SLIPPAGE: MemberNonlinearityType
26
+ MEMBER_NONLINEARITY_TYPE_FAILURE_IF_TENSION_WITH_SLIPPAGE: MemberNonlinearityType
27
+ MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_COMPRESSION: MemberNonlinearityType
28
+ MEMBER_NONLINEARITY_TYPE_FAILURE_UNDER_TENSION: MemberNonlinearityType
29
+ MEMBER_NONLINEARITY_TYPE_SLIPPAGE: MemberNonlinearityType
30
+ MEMBER_NONLINEARITY_TYPE_YIELDING: MemberNonlinearityType
31
+ MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_COMPRESSION: MemberNonlinearityType
32
+ MEMBER_NONLINEARITY_TYPE_YIELDING_UNDER_TENSION: MemberNonlinearityType
33
+
34
+ class MemberNonlinearity(_message.Message):
35
+ __slots__ = ("no", "type", "assigned_to", "comment", "compression_force", "generating_object_info", "is_generated", "name", "slippage", "tension_force", "user_defined_name_enabled", "id_for_export_import", "metadata_for_export_import")
36
+ NO_FIELD_NUMBER: _ClassVar[int]
37
+ TYPE_FIELD_NUMBER: _ClassVar[int]
38
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
39
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
40
+ COMPRESSION_FORCE_FIELD_NUMBER: _ClassVar[int]
41
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
42
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
43
+ NAME_FIELD_NUMBER: _ClassVar[int]
44
+ SLIPPAGE_FIELD_NUMBER: _ClassVar[int]
45
+ TENSION_FORCE_FIELD_NUMBER: _ClassVar[int]
46
+ USER_DEFINED_NAME_ENABLED_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
+ type: MemberNonlinearityType
51
+ assigned_to: _containers.RepeatedScalarFieldContainer[int]
52
+ comment: str
53
+ compression_force: float
54
+ generating_object_info: str
55
+ is_generated: bool
56
+ name: str
57
+ slippage: float
58
+ tension_force: float
59
+ user_defined_name_enabled: bool
60
+ id_for_export_import: str
61
+ metadata_for_export_import: str
62
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[MemberNonlinearityType, str]] = ..., assigned_to: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., compression_force: _Optional[float] = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., name: _Optional[str] = ..., slippage: _Optional[float] = ..., tension_force: _Optional[float] = ..., user_defined_name_enabled: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,38 @@
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_members/member_openings.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_members/member_openings.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'\n7dlubal/api/rfem/types_for_members/member_openings.proto\x12!dlubal.api.rfem.types_for_members\"\xa2\x04\n\x0eMemberOpenings\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\x0f\n\x07members\x18\x04 \x03(\x05\x12\x13\n\x0bmember_sets\x18\x05 \x03(\x05\x12[\n\ncomponents\x18\x06 \x01(\x0b\x32\x42.dlubal.api.rfem.types_for_members.ArrayOfMemberOpeningsComponentsH\x02\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x03\x88\x01\x01\x12#\n\x16generating_object_info\x18\x08 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0b \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\r\n\x0b_componentsB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"!\n\x1f\x41rrayOfMemberOpeningsComponentsb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_openings_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBEROPENINGS']._serialized_start=95
35
+ _globals['_MEMBEROPENINGS']._serialized_end=641
36
+ _globals['_ARRAYOFMEMBEROPENINGSCOMPONENTS']._serialized_start=643
37
+ _globals['_ARRAYOFMEMBEROPENINGSCOMPONENTS']._serialized_end=676
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class MemberOpenings(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "members", "member_sets", "components", "is_generated", "generating_object_info", "comment", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
12
+ NAME_FIELD_NUMBER: _ClassVar[int]
13
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
14
+ MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
15
+ COMPONENTS_FIELD_NUMBER: _ClassVar[int]
16
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
17
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
18
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
19
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
20
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
21
+ no: int
22
+ user_defined_name_enabled: bool
23
+ name: str
24
+ members: _containers.RepeatedScalarFieldContainer[int]
25
+ member_sets: _containers.RepeatedScalarFieldContainer[int]
26
+ components: ArrayOfMemberOpeningsComponents
27
+ is_generated: bool
28
+ generating_object_info: str
29
+ comment: str
30
+ id_for_export_import: str
31
+ metadata_for_export_import: str
32
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., member_sets: _Optional[_Iterable[int]] = ..., components: _Optional[_Union[ArrayOfMemberOpeningsComponents, _Mapping]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
33
+
34
+ class ArrayOfMemberOpeningsComponents(_message.Message):
35
+ __slots__ = ()
36
+ def __init__(self) -> None: ...
@@ -0,0 +1,38 @@
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_members/member_result_intermediate_point.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_members/member_result_intermediate_point.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'\nHdlubal/api/rfem/types_for_members/member_result_intermediate_point.proto\x12!dlubal.api.rfem.types_for_members\"\xe4\x05\n\x1dMemberResultIntermediatePoint\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\x0f\n\x07members\x18\x04 \x03(\x05\x12\x18\n\x0bpoint_count\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12!\n\x14uniform_distribution\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12.\n!distances_are_defined_as_absolute\x18\x07 \x01(\x08H\x04\x88\x01\x01\x12h\n\tdistances\x18\x08 \x01(\x0b\x32P.dlubal.api.rfem.types_for_members.ArrayOfMemberResultIntermediatePointDistancesH\x05\x88\x01\x01\x12\x14\n\x07\x63omment\x18\t \x01(\tH\x06\x88\x01\x01\x12\x19\n\x0cis_generated\x18\n \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0b \x01(\tH\x08\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0c \x01(\tH\t\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\r \x01(\tH\n\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0e\n\x0c_point_countB\x17\n\x15_uniform_distributionB$\n\"_distances_are_defined_as_absoluteB\x0c\n\n_distancesB\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-ArrayOfMemberResultIntermediatePointDistancesb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_result_intermediate_point_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERRESULTINTERMEDIATEPOINT']._serialized_start=112
35
+ _globals['_MEMBERRESULTINTERMEDIATEPOINT']._serialized_end=852
36
+ _globals['_ARRAYOFMEMBERRESULTINTERMEDIATEPOINTDISTANCES']._serialized_start=854
37
+ _globals['_ARRAYOFMEMBERRESULTINTERMEDIATEPOINTDISTANCES']._serialized_end=901
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,40 @@
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, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class MemberResultIntermediatePoint(_message.Message):
9
+ __slots__ = ("no", "user_defined_name_enabled", "name", "members", "point_count", "uniform_distribution", "distances_are_defined_as_absolute", "distances", "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
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
14
+ POINT_COUNT_FIELD_NUMBER: _ClassVar[int]
15
+ UNIFORM_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
16
+ DISTANCES_ARE_DEFINED_AS_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
17
+ DISTANCES_FIELD_NUMBER: _ClassVar[int]
18
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
19
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
20
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
21
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
22
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
23
+ no: int
24
+ user_defined_name_enabled: bool
25
+ name: str
26
+ members: _containers.RepeatedScalarFieldContainer[int]
27
+ point_count: int
28
+ uniform_distribution: bool
29
+ distances_are_defined_as_absolute: bool
30
+ distances: ArrayOfMemberResultIntermediatePointDistances
31
+ comment: str
32
+ is_generated: bool
33
+ generating_object_info: str
34
+ id_for_export_import: str
35
+ metadata_for_export_import: str
36
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., members: _Optional[_Iterable[int]] = ..., point_count: _Optional[int] = ..., uniform_distribution: bool = ..., distances_are_defined_as_absolute: bool = ..., distances: _Optional[_Union[ArrayOfMemberResultIntermediatePointDistances, _Mapping]] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
37
+
38
+ class ArrayOfMemberResultIntermediatePointDistances(_message.Message):
39
+ __slots__ = ()
40
+ def __init__(self) -> None: ...
@@ -0,0 +1,48 @@
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_members/member_rotational_restraint.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_members/member_rotational_restraint.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'\nCdlubal/api/rfem/types_for_members/member_rotational_restraint.proto\x12!dlubal.api.rfem.types_for_members\"\xbe\x11\n\x19MemberRotationalRestraint\x12\n\n\x02no\x18\x01 \x01(\x05\x12S\n\x04type\x18\x02 \x01(\x0e\x32@.dlubal.api.rfem.types_for_members.MemberRotationalRestraintTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12#\n\x16generating_object_info\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x1a\n\rmaterial_name\x18\x08 \x01(\tH\x06\x88\x01\x01\x12\"\n\x15modulus_of_elasticity\x18\t \x01(\x01H\x07\x88\x01\x01\x12u\n\x16\x63ontinuous_beam_effect\x18\n \x01(\x0e\x32P.dlubal.api.rfem.types_for_members.MemberRotationalRestraintContinuousBeamEffectH\x08\x88\x01\x01\x12$\n\x17section_deformation_cdb\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\x19\n\x0c\x62\x65\x61m_spacing\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x1a\n\rsheeting_name\x18\r \x01(\tH\x0b\x88\x01\x01\x12q\n\x14position_of_sheeting\x18\x0e \x01(\x0e\x32N.dlubal.api.rfem.types_for_members.MemberRotationalRestraintPositionOfSheetingH\x0c\x88\x01\x01\x12\x1f\n\x12sheeting_thickness\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\'\n\x1asheeting_moment_of_inertia\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12&\n\x19sheeting_distance_of_ribs\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12$\n\x17width_of_section_flange\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x1d\n\x10spring_stiffness\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\'\n\x1a\x64ifferent_spring_stiffness\x18\x14 \x01(\x08H\x12\x88\x01\x01\x12\x8d\x01\n\x1f\x64ifferent_spring_stiffness_list\x18\x15 \x01(\x0b\x32_.dlubal.api.rfem.types_for_members.ArrayOfMemberRotationalRestraintDifferentSpringStiffnessListH\x13\x88\x01\x01\x12z\n\x19method_of_determining_cda\x18\x16 \x01(\x0e\x32R.dlubal.api.rfem.types_for_members.MemberRotationalRestraintMethodOfDeterminingCdaH\x14\x88\x01\x01\x12\x19\n\x0csection_name\x18\x17 \x01(\tH\x15\x88\x01\x01\x12r\n\x14rotational_stiffness\x18\x18 \x01(\x0e\x32O.dlubal.api.rfem.types_for_members.MemberRotationalRestraintRotationalStiffnessH\x16\x88\x01\x01\x12\'\n\x1arotational_stiffness_value\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12&\n\x19section_moment_of_inertia\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x1b\n\x0epurlin_spacing\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12.\n!total_rotational_spring_stiffness\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1d \x01(\tH\x1b\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1e \x01(\tH\x1c\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x10\n\x0e_material_nameB\x18\n\x16_modulus_of_elasticityB\x19\n\x17_continuous_beam_effectB\x1a\n\x18_section_deformation_cdbB\x0f\n\r_beam_spacingB\x10\n\x0e_sheeting_nameB\x17\n\x15_position_of_sheetingB\x15\n\x13_sheeting_thicknessB\x1d\n\x1b_sheeting_moment_of_inertiaB\x1c\n\x1a_sheeting_distance_of_ribsB\x1a\n\x18_width_of_section_flangeB\x13\n\x11_spring_stiffnessB\x1d\n\x1b_different_spring_stiffnessB\"\n _different_spring_stiffness_listB\x1c\n\x1a_method_of_determining_cdaB\x0f\n\r_section_nameB\x17\n\x15_rotational_stiffnessB\x1d\n\x1b_rotational_stiffness_valueB\x1c\n\x1a_section_moment_of_inertiaB\x11\n\x0f_purlin_spacingB$\n\"_total_rotational_spring_stiffnessB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\">\n<ArrayOfMemberRotationalRestraintDifferentSpringStiffnessList*\xdc\x01\n\x1dMemberRotationalRestraintType\x12,\n(MEMBER_ROTATIONAL_RESTRAINT_TYPE_UNKNOWN\x10\x00\x12/\n+MEMBER_ROTATIONAL_RESTRAINT_TYPE_CONTINUOUS\x10\x01\x12-\n)MEMBER_ROTATIONAL_RESTRAINT_TYPE_DISCRETE\x10\x02\x12-\n)MEMBER_ROTATIONAL_RESTRAINT_TYPE_MANUALLY\x10\x03*\xb8\x01\n-MemberRotationalRestraintContinuousBeamEffect\x12@\n<MEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_END_PANEL\x10\x00\x12\x45\nAMEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_INTERNAL_PANEL\x10\x01*\xab\x01\n+MemberRotationalRestraintPositionOfSheeting\x12=\n9MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_POSITIVE\x10\x00\x12=\n9MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_NEGATIVE\x10\x01*\x83\x01\n/MemberRotationalRestraintMethodOfDeterminingCda\x12P\nLMEMBER_ROTATIONAL_RESTRAINT_METHOD_OF_DETERMINING_CDA_EN_1993_1_3_TABLE_10_3\x10\x00*\xae\x01\n,MemberRotationalRestraintRotationalStiffness\x12?\n;MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_INFINITELY\x10\x00\x12=\n9MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_MANUALLY\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_rotational_restraint_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERROTATIONALRESTRAINTTYPE']._serialized_start=2412
35
+ _globals['_MEMBERROTATIONALRESTRAINTTYPE']._serialized_end=2632
36
+ _globals['_MEMBERROTATIONALRESTRAINTCONTINUOUSBEAMEFFECT']._serialized_start=2635
37
+ _globals['_MEMBERROTATIONALRESTRAINTCONTINUOUSBEAMEFFECT']._serialized_end=2819
38
+ _globals['_MEMBERROTATIONALRESTRAINTPOSITIONOFSHEETING']._serialized_start=2822
39
+ _globals['_MEMBERROTATIONALRESTRAINTPOSITIONOFSHEETING']._serialized_end=2993
40
+ _globals['_MEMBERROTATIONALRESTRAINTMETHODOFDETERMININGCDA']._serialized_start=2996
41
+ _globals['_MEMBERROTATIONALRESTRAINTMETHODOFDETERMININGCDA']._serialized_end=3127
42
+ _globals['_MEMBERROTATIONALRESTRAINTROTATIONALSTIFFNESS']._serialized_start=3130
43
+ _globals['_MEMBERROTATIONALRESTRAINTROTATIONALSTIFFNESS']._serialized_end=3304
44
+ _globals['_MEMBERROTATIONALRESTRAINT']._serialized_start=107
45
+ _globals['_MEMBERROTATIONALRESTRAINT']._serialized_end=2345
46
+ _globals['_ARRAYOFMEMBERROTATIONALRESTRAINTDIFFERENTSPRINGSTIFFNESSLIST']._serialized_start=2347
47
+ _globals['_ARRAYOFMEMBERROTATIONALRESTRAINTDIFFERENTSPRINGSTIFFNESSLIST']._serialized_end=2409
48
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,111 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class MemberRotationalRestraintType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_UNKNOWN: _ClassVar[MemberRotationalRestraintType]
11
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_CONTINUOUS: _ClassVar[MemberRotationalRestraintType]
12
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_DISCRETE: _ClassVar[MemberRotationalRestraintType]
13
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_MANUALLY: _ClassVar[MemberRotationalRestraintType]
14
+
15
+ class MemberRotationalRestraintContinuousBeamEffect(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
16
+ __slots__ = ()
17
+ MEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_END_PANEL: _ClassVar[MemberRotationalRestraintContinuousBeamEffect]
18
+ MEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_INTERNAL_PANEL: _ClassVar[MemberRotationalRestraintContinuousBeamEffect]
19
+
20
+ class MemberRotationalRestraintPositionOfSheeting(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_POSITIVE: _ClassVar[MemberRotationalRestraintPositionOfSheeting]
23
+ MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_NEGATIVE: _ClassVar[MemberRotationalRestraintPositionOfSheeting]
24
+
25
+ class MemberRotationalRestraintMethodOfDeterminingCda(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
26
+ __slots__ = ()
27
+ MEMBER_ROTATIONAL_RESTRAINT_METHOD_OF_DETERMINING_CDA_EN_1993_1_3_TABLE_10_3: _ClassVar[MemberRotationalRestraintMethodOfDeterminingCda]
28
+
29
+ class MemberRotationalRestraintRotationalStiffness(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
30
+ __slots__ = ()
31
+ MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_INFINITELY: _ClassVar[MemberRotationalRestraintRotationalStiffness]
32
+ MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_MANUALLY: _ClassVar[MemberRotationalRestraintRotationalStiffness]
33
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_UNKNOWN: MemberRotationalRestraintType
34
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_CONTINUOUS: MemberRotationalRestraintType
35
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_DISCRETE: MemberRotationalRestraintType
36
+ MEMBER_ROTATIONAL_RESTRAINT_TYPE_MANUALLY: MemberRotationalRestraintType
37
+ MEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_END_PANEL: MemberRotationalRestraintContinuousBeamEffect
38
+ MEMBER_ROTATIONAL_RESTRAINT_CONTINUOUS_BEAM_EFFECT_INTERNAL_PANEL: MemberRotationalRestraintContinuousBeamEffect
39
+ MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_POSITIVE: MemberRotationalRestraintPositionOfSheeting
40
+ MEMBER_ROTATIONAL_RESTRAINT_POSITION_OF_SHEETING_NEGATIVE: MemberRotationalRestraintPositionOfSheeting
41
+ MEMBER_ROTATIONAL_RESTRAINT_METHOD_OF_DETERMINING_CDA_EN_1993_1_3_TABLE_10_3: MemberRotationalRestraintMethodOfDeterminingCda
42
+ MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_INFINITELY: MemberRotationalRestraintRotationalStiffness
43
+ MEMBER_ROTATIONAL_RESTRAINT_ROTATIONAL_STIFFNESS_MANUALLY: MemberRotationalRestraintRotationalStiffness
44
+
45
+ class MemberRotationalRestraint(_message.Message):
46
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "comment", "is_generated", "generating_object_info", "material_name", "modulus_of_elasticity", "continuous_beam_effect", "section_deformation_cdb", "beam_spacing", "sheeting_name", "position_of_sheeting", "sheeting_thickness", "sheeting_moment_of_inertia", "sheeting_distance_of_ribs", "width_of_section_flange", "spring_stiffness", "different_spring_stiffness", "different_spring_stiffness_list", "method_of_determining_cda", "section_name", "rotational_stiffness", "rotational_stiffness_value", "section_moment_of_inertia", "purlin_spacing", "total_rotational_spring_stiffness", "id_for_export_import", "metadata_for_export_import")
47
+ NO_FIELD_NUMBER: _ClassVar[int]
48
+ TYPE_FIELD_NUMBER: _ClassVar[int]
49
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
50
+ NAME_FIELD_NUMBER: _ClassVar[int]
51
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
52
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
53
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
54
+ MATERIAL_NAME_FIELD_NUMBER: _ClassVar[int]
55
+ MODULUS_OF_ELASTICITY_FIELD_NUMBER: _ClassVar[int]
56
+ CONTINUOUS_BEAM_EFFECT_FIELD_NUMBER: _ClassVar[int]
57
+ SECTION_DEFORMATION_CDB_FIELD_NUMBER: _ClassVar[int]
58
+ BEAM_SPACING_FIELD_NUMBER: _ClassVar[int]
59
+ SHEETING_NAME_FIELD_NUMBER: _ClassVar[int]
60
+ POSITION_OF_SHEETING_FIELD_NUMBER: _ClassVar[int]
61
+ SHEETING_THICKNESS_FIELD_NUMBER: _ClassVar[int]
62
+ SHEETING_MOMENT_OF_INERTIA_FIELD_NUMBER: _ClassVar[int]
63
+ SHEETING_DISTANCE_OF_RIBS_FIELD_NUMBER: _ClassVar[int]
64
+ WIDTH_OF_SECTION_FLANGE_FIELD_NUMBER: _ClassVar[int]
65
+ SPRING_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
66
+ DIFFERENT_SPRING_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
67
+ DIFFERENT_SPRING_STIFFNESS_LIST_FIELD_NUMBER: _ClassVar[int]
68
+ METHOD_OF_DETERMINING_CDA_FIELD_NUMBER: _ClassVar[int]
69
+ SECTION_NAME_FIELD_NUMBER: _ClassVar[int]
70
+ ROTATIONAL_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
71
+ ROTATIONAL_STIFFNESS_VALUE_FIELD_NUMBER: _ClassVar[int]
72
+ SECTION_MOMENT_OF_INERTIA_FIELD_NUMBER: _ClassVar[int]
73
+ PURLIN_SPACING_FIELD_NUMBER: _ClassVar[int]
74
+ TOTAL_ROTATIONAL_SPRING_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
75
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
76
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
77
+ no: int
78
+ type: MemberRotationalRestraintType
79
+ user_defined_name_enabled: bool
80
+ name: str
81
+ comment: str
82
+ is_generated: bool
83
+ generating_object_info: str
84
+ material_name: str
85
+ modulus_of_elasticity: float
86
+ continuous_beam_effect: MemberRotationalRestraintContinuousBeamEffect
87
+ section_deformation_cdb: bool
88
+ beam_spacing: float
89
+ sheeting_name: str
90
+ position_of_sheeting: MemberRotationalRestraintPositionOfSheeting
91
+ sheeting_thickness: float
92
+ sheeting_moment_of_inertia: float
93
+ sheeting_distance_of_ribs: float
94
+ width_of_section_flange: float
95
+ spring_stiffness: float
96
+ different_spring_stiffness: bool
97
+ different_spring_stiffness_list: ArrayOfMemberRotationalRestraintDifferentSpringStiffnessList
98
+ method_of_determining_cda: MemberRotationalRestraintMethodOfDeterminingCda
99
+ section_name: str
100
+ rotational_stiffness: MemberRotationalRestraintRotationalStiffness
101
+ rotational_stiffness_value: float
102
+ section_moment_of_inertia: float
103
+ purlin_spacing: float
104
+ total_rotational_spring_stiffness: float
105
+ id_for_export_import: str
106
+ metadata_for_export_import: str
107
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[MemberRotationalRestraintType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., material_name: _Optional[str] = ..., modulus_of_elasticity: _Optional[float] = ..., continuous_beam_effect: _Optional[_Union[MemberRotationalRestraintContinuousBeamEffect, str]] = ..., section_deformation_cdb: bool = ..., beam_spacing: _Optional[float] = ..., sheeting_name: _Optional[str] = ..., position_of_sheeting: _Optional[_Union[MemberRotationalRestraintPositionOfSheeting, str]] = ..., sheeting_thickness: _Optional[float] = ..., sheeting_moment_of_inertia: _Optional[float] = ..., sheeting_distance_of_ribs: _Optional[float] = ..., width_of_section_flange: _Optional[float] = ..., spring_stiffness: _Optional[float] = ..., different_spring_stiffness: bool = ..., different_spring_stiffness_list: _Optional[_Union[ArrayOfMemberRotationalRestraintDifferentSpringStiffnessList, _Mapping]] = ..., method_of_determining_cda: _Optional[_Union[MemberRotationalRestraintMethodOfDeterminingCda, str]] = ..., section_name: _Optional[str] = ..., rotational_stiffness: _Optional[_Union[MemberRotationalRestraintRotationalStiffness, str]] = ..., rotational_stiffness_value: _Optional[float] = ..., section_moment_of_inertia: _Optional[float] = ..., purlin_spacing: _Optional[float] = ..., total_rotational_spring_stiffness: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
108
+
109
+ class ArrayOfMemberRotationalRestraintDifferentSpringStiffnessList(_message.Message):
110
+ __slots__ = ()
111
+ def __init__(self) -> None: ...
@@ -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_members/member_shear_panel.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_members/member_shear_panel.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_members/member_shear_panel.proto\x12!dlubal.api.rfem.types_for_members\"\xe0\x0b\n\x10MemberShearPanel\x12\n\n\x02no\x18\x01 \x01(\x05\x12_\n\x0f\x64\x65\x66inition_type\x18\x02 \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_members.MemberShearPanelDefinitionTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12#\n\x16generating_object_info\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x05\x88\x01\x01\x12/\n\"define_girder_length_automatically\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x1a\n\rgirder_length\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x1a\n\rsheeting_name\x18\n \x01(\tH\x08\x88\x01\x01\x12\x1a\n\rmaterial_name\x18\x0b \x01(\tH\t\x88\x01\x01\x12#\n\x16\x64iagonals_section_name\x18\x0c \x01(\tH\n\x88\x01\x01\x12\"\n\x15modulus_of_elasticity\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x1f\n\x12posts_section_name\x18\x0e \x01(\tH\x0c\x88\x01\x01\x12\x16\n\tstiffness\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x19\n\x0cpanel_length\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x19\n\x0c\x62\x65\x61m_spacing\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12k\n\x15\x66\x61stening_arrangement\x18\x12 \x01(\x0e\x32G.dlubal.api.rfem.types_for_members.MemberShearPanelFasteningArrangementH\x10\x88\x01\x01\x12\x1b\n\x0e\x63oefficient_k1\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1b\n\x0e\x63oefficient_k2\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x19\n\x0cpost_spacing\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x1f\n\x12number_of_bracings\x18\x16 \x01(\x05H\x14\x88\x01\x01\x12#\n\x16\x64iagonals_section_area\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x1f\n\x12posts_section_area\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1a \x01(\tH\x18\x88\x01\x01\x42\x12\n\x10_definition_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\n\n\x08_commentB%\n#_define_girder_length_automaticallyB\x10\n\x0e_girder_lengthB\x10\n\x0e_sheeting_nameB\x10\n\x0e_material_nameB\x19\n\x17_diagonals_section_nameB\x18\n\x16_modulus_of_elasticityB\x15\n\x13_posts_section_nameB\x0c\n\n_stiffnessB\x0f\n\r_panel_lengthB\x0f\n\r_beam_spacingB\x18\n\x16_fastening_arrangementB\x11\n\x0f_coefficient_k1B\x11\n\x0f_coefficient_k2B\x0f\n\r_post_spacingB\x15\n\x13_number_of_bracingsB\x19\n\x17_diagonals_section_areaB\x15\n\x13_posts_section_areaB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xbc\x02\n\x1eMemberShearPanelDefinitionType\x12.\n*MEMBER_SHEAR_PANEL_DEFINITION_TYPE_UNKNOWN\x10\x00\x12.\n*MEMBER_SHEAR_PANEL_DEFINITION_TYPE_BRACING\x10\x02\x12\x34\n0MEMBER_SHEAR_PANEL_DEFINITION_TYPE_DEFINE_S_PROV\x10\x04\x12;\n7MEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING\x10\x01\x12G\nCMEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING_AND_BRACING\x10\x03*\x9d\x01\n$MemberShearPanelFasteningArrangement\x12\x36\n2MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_RIB\x10\x00\x12=\n9MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_SECOND_RIB\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_shear_panel_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERSHEARPANELDEFINITIONTYPE']._serialized_start=1605
35
+ _globals['_MEMBERSHEARPANELDEFINITIONTYPE']._serialized_end=1921
36
+ _globals['_MEMBERSHEARPANELFASTENINGARRANGEMENT']._serialized_start=1924
37
+ _globals['_MEMBERSHEARPANELFASTENINGARRANGEMENT']._serialized_end=2081
38
+ _globals['_MEMBERSHEARPANEL']._serialized_start=98
39
+ _globals['_MEMBERSHEARPANEL']._serialized_end=1602
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,82 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class MemberShearPanelDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_UNKNOWN: _ClassVar[MemberShearPanelDefinitionType]
11
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_BRACING: _ClassVar[MemberShearPanelDefinitionType]
12
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_DEFINE_S_PROV: _ClassVar[MemberShearPanelDefinitionType]
13
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING: _ClassVar[MemberShearPanelDefinitionType]
14
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING_AND_BRACING: _ClassVar[MemberShearPanelDefinitionType]
15
+
16
+ class MemberShearPanelFasteningArrangement(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
17
+ __slots__ = ()
18
+ MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_RIB: _ClassVar[MemberShearPanelFasteningArrangement]
19
+ MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_SECOND_RIB: _ClassVar[MemberShearPanelFasteningArrangement]
20
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_UNKNOWN: MemberShearPanelDefinitionType
21
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_BRACING: MemberShearPanelDefinitionType
22
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_DEFINE_S_PROV: MemberShearPanelDefinitionType
23
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING: MemberShearPanelDefinitionType
24
+ MEMBER_SHEAR_PANEL_DEFINITION_TYPE_TRAPEZOIDAL_SHEETING_AND_BRACING: MemberShearPanelDefinitionType
25
+ MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_RIB: MemberShearPanelFasteningArrangement
26
+ MEMBER_SHEAR_PANEL_FASTENING_ARRANGEMENT_EVERY_SECOND_RIB: MemberShearPanelFasteningArrangement
27
+
28
+ class MemberShearPanel(_message.Message):
29
+ __slots__ = ("no", "definition_type", "user_defined_name_enabled", "name", "is_generated", "generating_object_info", "comment", "define_girder_length_automatically", "girder_length", "sheeting_name", "material_name", "diagonals_section_name", "modulus_of_elasticity", "posts_section_name", "stiffness", "panel_length", "beam_spacing", "fastening_arrangement", "coefficient_k1", "coefficient_k2", "post_spacing", "number_of_bracings", "diagonals_section_area", "posts_section_area", "id_for_export_import", "metadata_for_export_import")
30
+ NO_FIELD_NUMBER: _ClassVar[int]
31
+ DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
32
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
33
+ NAME_FIELD_NUMBER: _ClassVar[int]
34
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
35
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
36
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
37
+ DEFINE_GIRDER_LENGTH_AUTOMATICALLY_FIELD_NUMBER: _ClassVar[int]
38
+ GIRDER_LENGTH_FIELD_NUMBER: _ClassVar[int]
39
+ SHEETING_NAME_FIELD_NUMBER: _ClassVar[int]
40
+ MATERIAL_NAME_FIELD_NUMBER: _ClassVar[int]
41
+ DIAGONALS_SECTION_NAME_FIELD_NUMBER: _ClassVar[int]
42
+ MODULUS_OF_ELASTICITY_FIELD_NUMBER: _ClassVar[int]
43
+ POSTS_SECTION_NAME_FIELD_NUMBER: _ClassVar[int]
44
+ STIFFNESS_FIELD_NUMBER: _ClassVar[int]
45
+ PANEL_LENGTH_FIELD_NUMBER: _ClassVar[int]
46
+ BEAM_SPACING_FIELD_NUMBER: _ClassVar[int]
47
+ FASTENING_ARRANGEMENT_FIELD_NUMBER: _ClassVar[int]
48
+ COEFFICIENT_K1_FIELD_NUMBER: _ClassVar[int]
49
+ COEFFICIENT_K2_FIELD_NUMBER: _ClassVar[int]
50
+ POST_SPACING_FIELD_NUMBER: _ClassVar[int]
51
+ NUMBER_OF_BRACINGS_FIELD_NUMBER: _ClassVar[int]
52
+ DIAGONALS_SECTION_AREA_FIELD_NUMBER: _ClassVar[int]
53
+ POSTS_SECTION_AREA_FIELD_NUMBER: _ClassVar[int]
54
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
55
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
56
+ no: int
57
+ definition_type: MemberShearPanelDefinitionType
58
+ user_defined_name_enabled: bool
59
+ name: str
60
+ is_generated: bool
61
+ generating_object_info: str
62
+ comment: str
63
+ define_girder_length_automatically: bool
64
+ girder_length: float
65
+ sheeting_name: str
66
+ material_name: str
67
+ diagonals_section_name: str
68
+ modulus_of_elasticity: float
69
+ posts_section_name: str
70
+ stiffness: float
71
+ panel_length: float
72
+ beam_spacing: float
73
+ fastening_arrangement: MemberShearPanelFasteningArrangement
74
+ coefficient_k1: float
75
+ coefficient_k2: float
76
+ post_spacing: float
77
+ number_of_bracings: int
78
+ diagonals_section_area: float
79
+ posts_section_area: float
80
+ id_for_export_import: str
81
+ metadata_for_export_import: str
82
+ def __init__(self, no: _Optional[int] = ..., definition_type: _Optional[_Union[MemberShearPanelDefinitionType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., comment: _Optional[str] = ..., define_girder_length_automatically: bool = ..., girder_length: _Optional[float] = ..., sheeting_name: _Optional[str] = ..., material_name: _Optional[str] = ..., diagonals_section_name: _Optional[str] = ..., modulus_of_elasticity: _Optional[float] = ..., posts_section_name: _Optional[str] = ..., stiffness: _Optional[float] = ..., panel_length: _Optional[float] = ..., beam_spacing: _Optional[float] = ..., fastening_arrangement: _Optional[_Union[MemberShearPanelFasteningArrangement, str]] = ..., coefficient_k1: _Optional[float] = ..., coefficient_k2: _Optional[float] = ..., post_spacing: _Optional[float] = ..., number_of_bracings: _Optional[int] = ..., diagonals_section_area: _Optional[float] = ..., posts_section_area: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,50 @@
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_members/member_spring.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_members/member_spring.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_members/member_spring.proto\x12!dlubal.api.rfem.types_for_members\"\xe1\x12\n\x0cMemberSpring\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\x13\n\x0b\x61ssigned_to\x18\x04 \x03(\x05\x12[\n\x0f\x64\x65\x66inition_type\x18\x05 \x01(\x0e\x32=.dlubal.api.rfem.types_for_members.MemberSpringDefinitionTypeH\x02\x88\x01\x01\x12\x1c\n\x0f\x61xial_stiffness\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12h\n\x16self_weight_definition\x18\x07 \x01(\x0e\x32\x43.dlubal.api.rfem.types_for_members.MemberSpringSelfWeightDefinitionH\x04\x88\x01\x01\x12\x11\n\x04mass\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x1c\n\x0fmass_per_length\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0fspecific_weight\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x19\n\x0csection_area\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x85\x01\n&partial_activity_along_x_negative_type\x18\x0c \x01(\x0e\x32P.dlubal.api.rfem.types_for_members.MemberSpringPartialActivityAlongXNegativeTypeH\t\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18\r \x01(\x01H\n\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x85\x01\n&partial_activity_along_x_positive_type\x18\x10 \x01(\x0e\x32P.dlubal.api.rfem.types_for_members.MemberSpringPartialActivityAlongXPositiveTypeH\r\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18\x14 \x01(\x08H\x11\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12l\n\x15\x64iagram_along_x_table\x18\x16 \x01(\x0b\x32H.dlubal.api.rfem.types_for_members.ArrayOfMemberSpringDiagramAlongXTableH\x13\x88\x01\x01\x12\x65\n\x15\x64iagram_along_x_start\x18\x17 \x01(\x0e\x32\x41.dlubal.api.rfem.types_for_members.MemberSpringDiagramAlongXStartH\x14\x88\x01\x01\x12\x61\n\x13\x64iagram_along_x_end\x18\x18 \x01(\x0e\x32?.dlubal.api.rfem.types_for_members.MemberSpringDiagramAlongXEndH\x15\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x19 \x01(\tH\x16\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1a \x01(\x08H\x17\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1b \x01(\tH\x18\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1c \x01(\tH\x19\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1d \x01(\tH\x1a\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x12\n\x10_definition_typeB\x12\n\x10_axial_stiffnessB\x19\n\x17_self_weight_definitionB\x07\n\x05_massB\x12\n\x10_mass_per_lengthB\x12\n\x10_specific_weightB\x0f\n\r_section_areaB)\n\'_partial_activity_along_x_negative_typeB1\n/_partial_activity_along_x_negative_displacementB*\n(_partial_activity_along_x_negative_forceB-\n+_partial_activity_along_x_negative_slippageB)\n\'_partial_activity_along_x_positive_typeB1\n/_partial_activity_along_x_positive_displacementB*\n(_partial_activity_along_x_positive_forceB-\n+_partial_activity_along_x_positive_slippageB\x1c\n\x1a_diagram_along_x_symmetricB\x1c\n\x1a_diagram_along_x_is_sortedB\x18\n\x16_diagram_along_x_tableB\x18\n\x16_diagram_along_x_startB\x16\n\x14_diagram_along_x_endB\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%ArrayOfMemberSpringDiagramAlongXTable*\xa6\x01\n\x1aMemberSpringDefinitionType\x12)\n%MEMBER_SPRING_DEFINITION_TYPE_UNKNOWN\x10\x00\x12)\n%MEMBER_SPRING_DEFINITION_TYPE_DIAGRAM\x10\x06\x12\x32\n.MEMBER_SPRING_DEFINITION_TYPE_PARTIAL_ACTIVITY\x10\x05*\xc5\x01\n MemberSpringSelfWeightDefinition\x12-\n)MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS\x10\x00\x12\x38\n4MEMBER_SPRING_SELF_WEIGHT_DEFINITION_MASS_PER_LENGTH\x10\x01\x12\x38\n4MEMBER_SPRING_SELF_WEIGHT_DEFINITION_SPECIFIC_WEIGHT\x10\x02*\x84\x04\n-MemberSpringPartialActivityAlongXNegativeType\x12W\nSMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x61\n]MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12]\nYMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x62\n^MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\x84\x04\n-MemberSpringPartialActivityAlongXPositiveType\x12W\nSMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12\x61\n]MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12T\nPMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12]\nYMEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x62\n^MEMBER_SPRING_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xb5\x02\n\x1eMemberSpringDiagramAlongXStart\x12\x43\n?MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBMEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@MEMBER_SPRING_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cMemberSpringDiagramAlongXEnd\x12\x41\n=MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>MEMBER_SPRING_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_members.member_spring_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERSPRINGDEFINITIONTYPE']._serialized_start=2538
35
+ _globals['_MEMBERSPRINGDEFINITIONTYPE']._serialized_end=2704
36
+ _globals['_MEMBERSPRINGSELFWEIGHTDEFINITION']._serialized_start=2707
37
+ _globals['_MEMBERSPRINGSELFWEIGHTDEFINITION']._serialized_end=2904
38
+ _globals['_MEMBERSPRINGPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=2907
39
+ _globals['_MEMBERSPRINGPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=3423
40
+ _globals['_MEMBERSPRINGPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=3426
41
+ _globals['_MEMBERSPRINGPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=3942
42
+ _globals['_MEMBERSPRINGDIAGRAMALONGXSTART']._serialized_start=3945
43
+ _globals['_MEMBERSPRINGDIAGRAMALONGXSTART']._serialized_end=4254
44
+ _globals['_MEMBERSPRINGDIAGRAMALONGXEND']._serialized_start=4257
45
+ _globals['_MEMBERSPRINGDIAGRAMALONGXEND']._serialized_end=4556
46
+ _globals['_MEMBERSPRING']._serialized_start=93
47
+ _globals['_MEMBERSPRING']._serialized_end=2494
48
+ _globals['_ARRAYOFMEMBERSPRINGDIAGRAMALONGXTABLE']._serialized_start=2496
49
+ _globals['_ARRAYOFMEMBERSPRINGDIAGRAMALONGXTABLE']._serialized_end=2535
50
+ # @@protoc_insertion_point(module_scope)