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,158 @@
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, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class ImperfectionCaseType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ IMPERFECTION_CASE_TYPE_UNKNOWN: _ClassVar[ImperfectionCaseType]
12
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_BUCKLING_MODE: _ClassVar[ImperfectionCaseType]
13
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_DYNAMIC_EIGENMODE: _ClassVar[ImperfectionCaseType]
14
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_IMPERFECTION_CASES_GROUP: _ClassVar[ImperfectionCaseType]
15
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_INITIAL_SWAY_VIA_TABLE: _ClassVar[ImperfectionCaseType]
16
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_LOCAL_IMPERFECTIONS: _ClassVar[ImperfectionCaseType]
17
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_NOTIONAL_LOADS_FROM_LOAD_CASE: _ClassVar[ImperfectionCaseType]
18
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_STATIC_DEFORMATION: _ClassVar[ImperfectionCaseType]
19
+
20
+ class ImperfectionCaseDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
+ __slots__ = ()
22
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_X: _ClassVar[ImperfectionCaseDirection]
23
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
24
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[ImperfectionCaseDirection]
25
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
26
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[ImperfectionCaseDirection]
27
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
28
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[ImperfectionCaseDirection]
29
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y: _ClassVar[ImperfectionCaseDirection]
30
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
31
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z: _ClassVar[ImperfectionCaseDirection]
32
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
33
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL: _ClassVar[ImperfectionCaseDirection]
34
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL_NEGATIVE: _ClassVar[ImperfectionCaseDirection]
35
+
36
+ class ImperfectionCaseDirectionForLevelDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
37
+ __slots__ = ()
38
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_X: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
39
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XY: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
40
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XZ: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
41
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Y: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
42
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_YZ: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
43
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Z: _ClassVar[ImperfectionCaseDirectionForLevelDirection]
44
+
45
+ class ImperfectionCaseSource(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
46
+ __slots__ = ()
47
+ IMPERFECTION_CASE_SOURCE_OWN_LOAD_CASE_OR_COMBINATION: _ClassVar[ImperfectionCaseSource]
48
+ IMPERFECTION_CASE_SOURCE_AUTOMATICALLY: _ClassVar[ImperfectionCaseSource]
49
+ IMPERFECTION_CASE_SOURCE_LOAD_CASE: _ClassVar[ImperfectionCaseSource]
50
+ IMPERFECTION_CASE_SOURCE_LOAD_COMBINATION: _ClassVar[ImperfectionCaseSource]
51
+
52
+ class ImperfectionCaseMagnitudeAssignmentType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
53
+ __slots__ = ()
54
+ IMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_LOCATION_WITH_LARGEST_DISPLACEMENT: _ClassVar[ImperfectionCaseMagnitudeAssignmentType]
55
+ IMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_SPECIFIC_NODE: _ClassVar[ImperfectionCaseMagnitudeAssignmentType]
56
+ IMPERFECTION_CASE_TYPE_UNKNOWN: ImperfectionCaseType
57
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_BUCKLING_MODE: ImperfectionCaseType
58
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_DYNAMIC_EIGENMODE: ImperfectionCaseType
59
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_IMPERFECTION_CASES_GROUP: ImperfectionCaseType
60
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_INITIAL_SWAY_VIA_TABLE: ImperfectionCaseType
61
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_LOCAL_IMPERFECTIONS: ImperfectionCaseType
62
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_NOTIONAL_LOADS_FROM_LOAD_CASE: ImperfectionCaseType
63
+ IMPERFECTION_CASE_TYPE_IMPERFECTION_TYPE_STATIC_DEFORMATION: ImperfectionCaseType
64
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_X: ImperfectionCaseDirection
65
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: ImperfectionCaseDirection
66
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: ImperfectionCaseDirection
67
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: ImperfectionCaseDirection
68
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: ImperfectionCaseDirection
69
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: ImperfectionCaseDirection
70
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: ImperfectionCaseDirection
71
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y: ImperfectionCaseDirection
72
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Y_NEGATIVE: ImperfectionCaseDirection
73
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z: ImperfectionCaseDirection
74
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_LOCAL_Z_NEGATIVE: ImperfectionCaseDirection
75
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL: ImperfectionCaseDirection
76
+ IMPERFECTION_CASE_DIRECTION_IMPERFECTION_CASE_DIRECTION_SPATIAL_NEGATIVE: ImperfectionCaseDirection
77
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_X: ImperfectionCaseDirectionForLevelDirection
78
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XY: ImperfectionCaseDirectionForLevelDirection
79
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_XZ: ImperfectionCaseDirectionForLevelDirection
80
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Y: ImperfectionCaseDirectionForLevelDirection
81
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_YZ: ImperfectionCaseDirectionForLevelDirection
82
+ IMPERFECTION_CASE_DIRECTION_FOR_LEVEL_DIRECTION_ALONG_Z: ImperfectionCaseDirectionForLevelDirection
83
+ IMPERFECTION_CASE_SOURCE_OWN_LOAD_CASE_OR_COMBINATION: ImperfectionCaseSource
84
+ IMPERFECTION_CASE_SOURCE_AUTOMATICALLY: ImperfectionCaseSource
85
+ IMPERFECTION_CASE_SOURCE_LOAD_CASE: ImperfectionCaseSource
86
+ IMPERFECTION_CASE_SOURCE_LOAD_COMBINATION: ImperfectionCaseSource
87
+ IMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_LOCATION_WITH_LARGEST_DISPLACEMENT: ImperfectionCaseMagnitudeAssignmentType
88
+ IMPERFECTION_CASE_MAGNITUDE_ASSIGNMENT_TYPE_SPECIFIC_NODE: ImperfectionCaseMagnitudeAssignmentType
89
+
90
+ class ImperfectionCase(_message.Message):
91
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "assigned_to_load_cases", "assigned_to_load_combinations", "is_active", "assign_to_combinations_without_assigned_imperfection_case", "direction", "direction_for_level_direction", "coordinate_system", "load_case_for_notional_loads", "sway_coefficients_reciprocal", "level_imperfections", "source", "shape_from_load_case", "shape_from_load_combination", "buckling_shape", "delta_zero", "magnitude_assignment_type", "reference_node", "amount_of_modes_to_investigate", "eigenmode_automatically", "imperfection_cases_items", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
92
+ NO_FIELD_NUMBER: _ClassVar[int]
93
+ TYPE_FIELD_NUMBER: _ClassVar[int]
94
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
95
+ NAME_FIELD_NUMBER: _ClassVar[int]
96
+ ASSIGNED_TO_LOAD_CASES_FIELD_NUMBER: _ClassVar[int]
97
+ ASSIGNED_TO_LOAD_COMBINATIONS_FIELD_NUMBER: _ClassVar[int]
98
+ IS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
99
+ ASSIGN_TO_COMBINATIONS_WITHOUT_ASSIGNED_IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
100
+ DIRECTION_FIELD_NUMBER: _ClassVar[int]
101
+ DIRECTION_FOR_LEVEL_DIRECTION_FIELD_NUMBER: _ClassVar[int]
102
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
103
+ LOAD_CASE_FOR_NOTIONAL_LOADS_FIELD_NUMBER: _ClassVar[int]
104
+ SWAY_COEFFICIENTS_RECIPROCAL_FIELD_NUMBER: _ClassVar[int]
105
+ LEVEL_IMPERFECTIONS_FIELD_NUMBER: _ClassVar[int]
106
+ SOURCE_FIELD_NUMBER: _ClassVar[int]
107
+ SHAPE_FROM_LOAD_CASE_FIELD_NUMBER: _ClassVar[int]
108
+ SHAPE_FROM_LOAD_COMBINATION_FIELD_NUMBER: _ClassVar[int]
109
+ BUCKLING_SHAPE_FIELD_NUMBER: _ClassVar[int]
110
+ DELTA_ZERO_FIELD_NUMBER: _ClassVar[int]
111
+ MAGNITUDE_ASSIGNMENT_TYPE_FIELD_NUMBER: _ClassVar[int]
112
+ REFERENCE_NODE_FIELD_NUMBER: _ClassVar[int]
113
+ AMOUNT_OF_MODES_TO_INVESTIGATE_FIELD_NUMBER: _ClassVar[int]
114
+ EIGENMODE_AUTOMATICALLY_FIELD_NUMBER: _ClassVar[int]
115
+ IMPERFECTION_CASES_ITEMS_FIELD_NUMBER: _ClassVar[int]
116
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
117
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
118
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
119
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
120
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
121
+ no: int
122
+ type: ImperfectionCaseType
123
+ user_defined_name_enabled: bool
124
+ name: str
125
+ assigned_to_load_cases: _containers.RepeatedScalarFieldContainer[int]
126
+ assigned_to_load_combinations: _containers.RepeatedScalarFieldContainer[int]
127
+ is_active: bool
128
+ assign_to_combinations_without_assigned_imperfection_case: bool
129
+ direction: ImperfectionCaseDirection
130
+ direction_for_level_direction: ImperfectionCaseDirectionForLevelDirection
131
+ coordinate_system: int
132
+ load_case_for_notional_loads: int
133
+ sway_coefficients_reciprocal: bool
134
+ level_imperfections: ArrayOfImperfectionCaseLevelImperfections
135
+ source: ImperfectionCaseSource
136
+ shape_from_load_case: int
137
+ shape_from_load_combination: int
138
+ buckling_shape: int
139
+ delta_zero: float
140
+ magnitude_assignment_type: ImperfectionCaseMagnitudeAssignmentType
141
+ reference_node: int
142
+ amount_of_modes_to_investigate: int
143
+ eigenmode_automatically: bool
144
+ imperfection_cases_items: ArrayOfImperfectionCaseImperfectionCasesItems
145
+ comment: str
146
+ is_generated: bool
147
+ generating_object_info: str
148
+ id_for_export_import: str
149
+ metadata_for_export_import: str
150
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[ImperfectionCaseType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_load_cases: _Optional[_Iterable[int]] = ..., assigned_to_load_combinations: _Optional[_Iterable[int]] = ..., is_active: bool = ..., assign_to_combinations_without_assigned_imperfection_case: bool = ..., direction: _Optional[_Union[ImperfectionCaseDirection, str]] = ..., direction_for_level_direction: _Optional[_Union[ImperfectionCaseDirectionForLevelDirection, str]] = ..., coordinate_system: _Optional[int] = ..., load_case_for_notional_loads: _Optional[int] = ..., sway_coefficients_reciprocal: bool = ..., level_imperfections: _Optional[_Union[ArrayOfImperfectionCaseLevelImperfections, _Mapping]] = ..., source: _Optional[_Union[ImperfectionCaseSource, str]] = ..., shape_from_load_case: _Optional[int] = ..., shape_from_load_combination: _Optional[int] = ..., buckling_shape: _Optional[int] = ..., delta_zero: _Optional[float] = ..., magnitude_assignment_type: _Optional[_Union[ImperfectionCaseMagnitudeAssignmentType, str]] = ..., reference_node: _Optional[int] = ..., amount_of_modes_to_investigate: _Optional[int] = ..., eigenmode_automatically: bool = ..., imperfection_cases_items: _Optional[_Union[ArrayOfImperfectionCaseImperfectionCasesItems, _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: ...
151
+
152
+ class ArrayOfImperfectionCaseLevelImperfections(_message.Message):
153
+ __slots__ = ()
154
+ def __init__(self) -> None: ...
155
+
156
+ class ArrayOfImperfectionCaseImperfectionCasesItems(_message.Message):
157
+ __slots__ = ()
158
+ 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/imperfections/member_imperfection.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/imperfections/member_imperfection.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/imperfections/member_imperfection.proto\x12\x1d\x64lubal.api.rfem.imperfections\"\xab\x15\n\x12MemberImperfection\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x61\n\x11imperfection_type\x18\x02 \x01(\x0e\x32\x41.dlubal.api.rfem.imperfections.MemberImperfectionImperfectionTypeH\x00\x88\x01\x01\x12\x0f\n\x07members\x18\x03 \x03(\x05\x12\x1e\n\x11imperfection_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12]\n\x0f\x64\x65\x66inition_type\x18\x05 \x01(\x0e\x32?.dlubal.api.rfem.imperfections.MemberImperfectionDefinitionTypeH\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\tH\x03\x88\x01\x01\x12k\n\x16imperfection_direction\x18\x07 \x01(\x0e\x32\x46.dlubal.api.rfem.imperfections.MemberImperfectionImperfectionDirectionH\x04\x88\x01\x01\x12!\n\x14\x62\x61sic_value_absolute\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12$\n\x17\x62\x61sic_value_coefficient\x18\t \x01(\x01H\x06\x88\x01\x01\x12!\n\x14\x62\x61sic_value_relative\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1e\n\x11\x62\x61sic_value_force\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12[\n\x0esection_design\x18\x0c \x01(\x0e\x32>.dlubal.api.rfem.imperfections.MemberImperfectionSectionDesignH\t\x88\x01\x01\x12_\n\x10\x61\x63tive_criterion\x18\r \x01(\x0e\x32@.dlubal.api.rfem.imperfections.MemberImperfectionActiveCriterionH\n\x88\x01\x01\x12\x17\n\nactive_bow\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12t\n\x1bstandard_factor_enumeration\x18\x0f \x01(\x0e\x32J.dlubal.api.rfem.imperfections.MemberImperfectionStandardFactorEnumerationH\x0c\x88\x01\x01\x12#\n\x16standard_factor_number\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06height\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x1a\n\rcolumn_in_row\x18\x12 \x01(\x05H\x0f\x88\x01\x01\x12\x1d\n\x10number_of_floors\x18\x13 \x01(\x05H\x10\x88\x01\x01\x12\x18\n\x0b\x63\x61se_object\x18\x14 \x01(\x05H\x11\x88\x01\x01\x12\x1f\n\x12reduction_factor_h\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12%\n\x18reduction_factor_h_limit\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12\x1f\n\x12reduction_factor_m\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x19\n\x0cinitial_sway\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\"\n\x15initial_sway_inverted\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\x12\n\x05\x64\x65lta\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x12\n\nparameters\x18\x1b \x03(\x05\x12)\n\x1creference_to_list_of_members\x18\x1c \x01(\x08H\x18\x88\x01\x01\x12\x32\n%refer_distance_from_objects_to_assign\x18\x1d \x01(\x08H\x19\x88\x01\x01\x12@\n3imperfection_over_total_length_of_objects_to_assign\x18\x1e \x01(\x08H\x1a\x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18\x1f \x01(\x08H\x1b\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18 \x01(\x08H\x1c\x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18! \x01(\x01H\x1d\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18\" \x01(\x01H\x1e\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18# \x01(\x01H\x1f\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18$ \x01(\x01H \x88\x01\x01\x12\x14\n\x07\x63omment\x18% \x01(\tH!\x88\x01\x01\x12\x19\n\x0cis_generated\x18& \x01(\x08H\"\x88\x01\x01\x12#\n\x16generating_object_info\x18\' \x01(\tH#\x88\x01\x01\x12!\n\x14id_for_export_import\x18( \x01(\tH$\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18) \x01(\tH%\x88\x01\x01\x42\x14\n\x12_imperfection_typeB\x14\n\x12_imperfection_caseB\x12\n\x10_definition_typeB\x14\n\x12_coordinate_systemB\x19\n\x17_imperfection_directionB\x17\n\x15_basic_value_absoluteB\x1a\n\x18_basic_value_coefficientB\x17\n\x15_basic_value_relativeB\x14\n\x12_basic_value_forceB\x11\n\x0f_section_designB\x13\n\x11_active_criterionB\r\n\x0b_active_bowB\x1e\n\x1c_standard_factor_enumerationB\x19\n\x17_standard_factor_numberB\t\n\x07_heightB\x10\n\x0e_column_in_rowB\x13\n\x11_number_of_floorsB\x0e\n\x0c_case_objectB\x15\n\x13_reduction_factor_hB\x1b\n\x19_reduction_factor_h_limitB\x15\n\x13_reduction_factor_mB\x0f\n\r_initial_swayB\x18\n\x16_initial_sway_invertedB\x08\n\x06_deltaB\x1f\n\x1d_reference_to_list_of_membersB(\n&_refer_distance_from_objects_to_assignB6\n4_imperfection_over_total_length_of_objects_to_assignB$\n\"_distance_a_is_defined_as_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_a_relativeB\x16\n\x14_distance_b_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_b_absoluteB\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*\x8b\x02\n\"MemberImperfectionImperfectionType\x12\x31\n-MEMBER_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN\x10\x00\x12\x35\n1MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW\x10\x02\x12\x43\n?MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION\x10\x03\x12\x36\n2MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY\x10\x01*\xe5\x08\n MemberImperfectionDefinitionType\x12\x30\n,MEMBER_IMPERFECTION_DEFINITION_TYPE_RELATIVE\x10\x00\x12\x30\n,MEMBER_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE\x10\x01\x12<\n8MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT\x10\x0e\x12\x41\n=MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD\x10\x0f\x12\x34\n0MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT\x10\x03\x12\x39\n5MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD\x10\x04\x12:\n6MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT\x10\x10\x12?\n;MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD\x10\x11\x12\x33\n/MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT\x10\x07\x12\x38\n4MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD\x10\x08\x12\x31\n-MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1992_1\x10\t\x12\x31\n-MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1993_1\x10\x05\x12\x31\n-MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1995_1\x10\n\x12\x31\n-MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1999_1\x10\x06\x12\x35\n1MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017\x10\x0b\x12=\n9MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT\x10\x0c\x12\x42\n>MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD\x10\r\x12\x42\n>MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD\x10\x12\x12\x35\n1MEMBER_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD\x10\x02*\xc1\x08\n\'MemberImperfectionImperfectionDirection\x12\x36\n2MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN\x10\x00\x12R\nNMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE\x10\x15\x12N\nJMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12R\nNMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE\x10\x16\x12N\nJMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12R\nNMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE\x10\x17\x12N\nJMEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12\x36\n2MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y\x10\x01\x12?\n;MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE\x10\x11\x12\x36\n2MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z\x10\x02\x12?\n;MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE\x10\x12\x12:\n6MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U\x10\x03\x12\x43\n?MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE\x10\x13\x12:\n6MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V\x10\x04\x12\x43\n?MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE\x10\x14*\x81\x01\n\x1fMemberImperfectionSectionDesign\x12.\n*MEMBER_IMPERFECTION_SECTION_DESIGN_ELASTIC\x10\x00\x12.\n*MEMBER_IMPERFECTION_SECTION_DESIGN_PLASTIC\x10\x01*\x9d\x02\n!MemberImperfectionActiveCriterion\x12/\n+MEMBER_IMPERFECTION_ACTIVE_CRITERION_ALWAYS\x10\x00\x12/\n+MEMBER_IMPERFECTION_ACTIVE_CRITERION_DEFINE\x10\x04\x12\x32\n.MEMBER_IMPERFECTION_ACTIVE_CRITERION_DIN_18800\x10\x03\x12\x30\n,MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1993\x10\x01\x12\x30\n,MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1999\x10\x02*\xa0\x01\n+MemberImperfectionStandardFactorEnumeration\x12\x38\n4MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD\x10\x00\x12\x37\n3MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.imperfections.member_imperfection_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERIMPERFECTIONIMPERFECTIONTYPE']._serialized_start=2825
35
+ _globals['_MEMBERIMPERFECTIONIMPERFECTIONTYPE']._serialized_end=3092
36
+ _globals['_MEMBERIMPERFECTIONDEFINITIONTYPE']._serialized_start=3095
37
+ _globals['_MEMBERIMPERFECTIONDEFINITIONTYPE']._serialized_end=4220
38
+ _globals['_MEMBERIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_start=4223
39
+ _globals['_MEMBERIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_end=5312
40
+ _globals['_MEMBERIMPERFECTIONSECTIONDESIGN']._serialized_start=5315
41
+ _globals['_MEMBERIMPERFECTIONSECTIONDESIGN']._serialized_end=5444
42
+ _globals['_MEMBERIMPERFECTIONACTIVECRITERION']._serialized_start=5447
43
+ _globals['_MEMBERIMPERFECTIONACTIVECRITERION']._serialized_end=5732
44
+ _globals['_MEMBERIMPERFECTIONSTANDARDFACTORENUMERATION']._serialized_start=5735
45
+ _globals['_MEMBERIMPERFECTIONSTANDARDFACTORENUMERATION']._serialized_end=5895
46
+ _globals['_MEMBERIMPERFECTION']._serialized_start=91
47
+ _globals['_MEMBERIMPERFECTION']._serialized_end=2822
48
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,205 @@
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 MemberImperfectionImperfectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN: _ClassVar[MemberImperfectionImperfectionType]
12
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW: _ClassVar[MemberImperfectionImperfectionType]
13
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION: _ClassVar[MemberImperfectionImperfectionType]
14
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY: _ClassVar[MemberImperfectionImperfectionType]
15
+
16
+ class MemberImperfectionDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
17
+ __slots__ = ()
18
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_RELATIVE: _ClassVar[MemberImperfectionDefinitionType]
19
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: _ClassVar[MemberImperfectionDefinitionType]
20
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT: _ClassVar[MemberImperfectionDefinitionType]
21
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
22
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT: _ClassVar[MemberImperfectionDefinitionType]
23
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
24
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT: _ClassVar[MemberImperfectionDefinitionType]
25
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
26
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT: _ClassVar[MemberImperfectionDefinitionType]
27
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
28
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1992_1: _ClassVar[MemberImperfectionDefinitionType]
29
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1993_1: _ClassVar[MemberImperfectionDefinitionType]
30
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1995_1: _ClassVar[MemberImperfectionDefinitionType]
31
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1999_1: _ClassVar[MemberImperfectionDefinitionType]
32
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017: _ClassVar[MemberImperfectionDefinitionType]
33
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT: _ClassVar[MemberImperfectionDefinitionType]
34
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
35
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD: _ClassVar[MemberImperfectionDefinitionType]
36
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD: _ClassVar[MemberImperfectionDefinitionType]
37
+
38
+ class MemberImperfectionImperfectionDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
39
+ __slots__ = ()
40
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: _ClassVar[MemberImperfectionImperfectionDirection]
41
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
42
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: _ClassVar[MemberImperfectionImperfectionDirection]
43
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
44
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: _ClassVar[MemberImperfectionImperfectionDirection]
45
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
46
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: _ClassVar[MemberImperfectionImperfectionDirection]
47
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y: _ClassVar[MemberImperfectionImperfectionDirection]
48
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
49
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: _ClassVar[MemberImperfectionImperfectionDirection]
50
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
51
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U: _ClassVar[MemberImperfectionImperfectionDirection]
52
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
53
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V: _ClassVar[MemberImperfectionImperfectionDirection]
54
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE: _ClassVar[MemberImperfectionImperfectionDirection]
55
+
56
+ class MemberImperfectionSectionDesign(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
57
+ __slots__ = ()
58
+ MEMBER_IMPERFECTION_SECTION_DESIGN_ELASTIC: _ClassVar[MemberImperfectionSectionDesign]
59
+ MEMBER_IMPERFECTION_SECTION_DESIGN_PLASTIC: _ClassVar[MemberImperfectionSectionDesign]
60
+
61
+ class MemberImperfectionActiveCriterion(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
62
+ __slots__ = ()
63
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_ALWAYS: _ClassVar[MemberImperfectionActiveCriterion]
64
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_DEFINE: _ClassVar[MemberImperfectionActiveCriterion]
65
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_DIN_18800: _ClassVar[MemberImperfectionActiveCriterion]
66
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1993: _ClassVar[MemberImperfectionActiveCriterion]
67
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1999: _ClassVar[MemberImperfectionActiveCriterion]
68
+
69
+ class MemberImperfectionStandardFactorEnumeration(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
70
+ __slots__ = ()
71
+ MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD: _ClassVar[MemberImperfectionStandardFactorEnumeration]
72
+ MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD: _ClassVar[MemberImperfectionStandardFactorEnumeration]
73
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN: MemberImperfectionImperfectionType
74
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW: MemberImperfectionImperfectionType
75
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION: MemberImperfectionImperfectionType
76
+ MEMBER_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY: MemberImperfectionImperfectionType
77
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_RELATIVE: MemberImperfectionDefinitionType
78
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE: MemberImperfectionDefinitionType
79
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT: MemberImperfectionDefinitionType
80
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD: MemberImperfectionDefinitionType
81
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT: MemberImperfectionDefinitionType
82
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD: MemberImperfectionDefinitionType
83
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT: MemberImperfectionDefinitionType
84
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD: MemberImperfectionDefinitionType
85
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT: MemberImperfectionDefinitionType
86
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD: MemberImperfectionDefinitionType
87
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1992_1: MemberImperfectionDefinitionType
88
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1993_1: MemberImperfectionDefinitionType
89
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1995_1: MemberImperfectionDefinitionType
90
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_EN_1999_1: MemberImperfectionDefinitionType
91
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017: MemberImperfectionDefinitionType
92
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT: MemberImperfectionDefinitionType
93
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD: MemberImperfectionDefinitionType
94
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD: MemberImperfectionDefinitionType
95
+ MEMBER_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD: MemberImperfectionDefinitionType
96
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN: MemberImperfectionImperfectionDirection
97
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE: MemberImperfectionImperfectionDirection
98
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE: MemberImperfectionImperfectionDirection
99
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE: MemberImperfectionImperfectionDirection
100
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE: MemberImperfectionImperfectionDirection
101
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE: MemberImperfectionImperfectionDirection
102
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE: MemberImperfectionImperfectionDirection
103
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y: MemberImperfectionImperfectionDirection
104
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE: MemberImperfectionImperfectionDirection
105
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z: MemberImperfectionImperfectionDirection
106
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE: MemberImperfectionImperfectionDirection
107
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U: MemberImperfectionImperfectionDirection
108
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE: MemberImperfectionImperfectionDirection
109
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V: MemberImperfectionImperfectionDirection
110
+ MEMBER_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE: MemberImperfectionImperfectionDirection
111
+ MEMBER_IMPERFECTION_SECTION_DESIGN_ELASTIC: MemberImperfectionSectionDesign
112
+ MEMBER_IMPERFECTION_SECTION_DESIGN_PLASTIC: MemberImperfectionSectionDesign
113
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_ALWAYS: MemberImperfectionActiveCriterion
114
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_DEFINE: MemberImperfectionActiveCriterion
115
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_DIN_18800: MemberImperfectionActiveCriterion
116
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1993: MemberImperfectionActiveCriterion
117
+ MEMBER_IMPERFECTION_ACTIVE_CRITERION_EN_1999: MemberImperfectionActiveCriterion
118
+ MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD: MemberImperfectionStandardFactorEnumeration
119
+ MEMBER_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD: MemberImperfectionStandardFactorEnumeration
120
+
121
+ class MemberImperfection(_message.Message):
122
+ __slots__ = ("no", "imperfection_type", "members", "imperfection_case", "definition_type", "coordinate_system", "imperfection_direction", "basic_value_absolute", "basic_value_coefficient", "basic_value_relative", "basic_value_force", "section_design", "active_criterion", "active_bow", "standard_factor_enumeration", "standard_factor_number", "height", "column_in_row", "number_of_floors", "case_object", "reduction_factor_h", "reduction_factor_h_limit", "reduction_factor_m", "initial_sway", "initial_sway_inverted", "delta", "parameters", "reference_to_list_of_members", "refer_distance_from_objects_to_assign", "imperfection_over_total_length_of_objects_to_assign", "distance_a_is_defined_as_relative", "distance_b_is_defined_as_relative", "distance_a_relative", "distance_b_relative", "distance_a_absolute", "distance_b_absolute", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
123
+ NO_FIELD_NUMBER: _ClassVar[int]
124
+ IMPERFECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
125
+ MEMBERS_FIELD_NUMBER: _ClassVar[int]
126
+ IMPERFECTION_CASE_FIELD_NUMBER: _ClassVar[int]
127
+ DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
128
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
129
+ IMPERFECTION_DIRECTION_FIELD_NUMBER: _ClassVar[int]
130
+ BASIC_VALUE_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
131
+ BASIC_VALUE_COEFFICIENT_FIELD_NUMBER: _ClassVar[int]
132
+ BASIC_VALUE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
133
+ BASIC_VALUE_FORCE_FIELD_NUMBER: _ClassVar[int]
134
+ SECTION_DESIGN_FIELD_NUMBER: _ClassVar[int]
135
+ ACTIVE_CRITERION_FIELD_NUMBER: _ClassVar[int]
136
+ ACTIVE_BOW_FIELD_NUMBER: _ClassVar[int]
137
+ STANDARD_FACTOR_ENUMERATION_FIELD_NUMBER: _ClassVar[int]
138
+ STANDARD_FACTOR_NUMBER_FIELD_NUMBER: _ClassVar[int]
139
+ HEIGHT_FIELD_NUMBER: _ClassVar[int]
140
+ COLUMN_IN_ROW_FIELD_NUMBER: _ClassVar[int]
141
+ NUMBER_OF_FLOORS_FIELD_NUMBER: _ClassVar[int]
142
+ CASE_OBJECT_FIELD_NUMBER: _ClassVar[int]
143
+ REDUCTION_FACTOR_H_FIELD_NUMBER: _ClassVar[int]
144
+ REDUCTION_FACTOR_H_LIMIT_FIELD_NUMBER: _ClassVar[int]
145
+ REDUCTION_FACTOR_M_FIELD_NUMBER: _ClassVar[int]
146
+ INITIAL_SWAY_FIELD_NUMBER: _ClassVar[int]
147
+ INITIAL_SWAY_INVERTED_FIELD_NUMBER: _ClassVar[int]
148
+ DELTA_FIELD_NUMBER: _ClassVar[int]
149
+ PARAMETERS_FIELD_NUMBER: _ClassVar[int]
150
+ REFERENCE_TO_LIST_OF_MEMBERS_FIELD_NUMBER: _ClassVar[int]
151
+ REFER_DISTANCE_FROM_OBJECTS_TO_ASSIGN_FIELD_NUMBER: _ClassVar[int]
152
+ IMPERFECTION_OVER_TOTAL_LENGTH_OF_OBJECTS_TO_ASSIGN_FIELD_NUMBER: _ClassVar[int]
153
+ DISTANCE_A_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
154
+ DISTANCE_B_IS_DEFINED_AS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
155
+ DISTANCE_A_RELATIVE_FIELD_NUMBER: _ClassVar[int]
156
+ DISTANCE_B_RELATIVE_FIELD_NUMBER: _ClassVar[int]
157
+ DISTANCE_A_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
158
+ DISTANCE_B_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
159
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
160
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
161
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
162
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
163
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
164
+ no: int
165
+ imperfection_type: MemberImperfectionImperfectionType
166
+ members: _containers.RepeatedScalarFieldContainer[int]
167
+ imperfection_case: int
168
+ definition_type: MemberImperfectionDefinitionType
169
+ coordinate_system: str
170
+ imperfection_direction: MemberImperfectionImperfectionDirection
171
+ basic_value_absolute: float
172
+ basic_value_coefficient: float
173
+ basic_value_relative: float
174
+ basic_value_force: float
175
+ section_design: MemberImperfectionSectionDesign
176
+ active_criterion: MemberImperfectionActiveCriterion
177
+ active_bow: float
178
+ standard_factor_enumeration: MemberImperfectionStandardFactorEnumeration
179
+ standard_factor_number: float
180
+ height: float
181
+ column_in_row: int
182
+ number_of_floors: int
183
+ case_object: int
184
+ reduction_factor_h: float
185
+ reduction_factor_h_limit: bool
186
+ reduction_factor_m: float
187
+ initial_sway: float
188
+ initial_sway_inverted: float
189
+ delta: float
190
+ parameters: _containers.RepeatedScalarFieldContainer[int]
191
+ reference_to_list_of_members: bool
192
+ refer_distance_from_objects_to_assign: bool
193
+ imperfection_over_total_length_of_objects_to_assign: bool
194
+ distance_a_is_defined_as_relative: bool
195
+ distance_b_is_defined_as_relative: bool
196
+ distance_a_relative: float
197
+ distance_b_relative: float
198
+ distance_a_absolute: float
199
+ distance_b_absolute: float
200
+ comment: str
201
+ is_generated: bool
202
+ generating_object_info: str
203
+ id_for_export_import: str
204
+ metadata_for_export_import: str
205
+ def __init__(self, no: _Optional[int] = ..., imperfection_type: _Optional[_Union[MemberImperfectionImperfectionType, str]] = ..., members: _Optional[_Iterable[int]] = ..., imperfection_case: _Optional[int] = ..., definition_type: _Optional[_Union[MemberImperfectionDefinitionType, str]] = ..., coordinate_system: _Optional[str] = ..., imperfection_direction: _Optional[_Union[MemberImperfectionImperfectionDirection, str]] = ..., basic_value_absolute: _Optional[float] = ..., basic_value_coefficient: _Optional[float] = ..., basic_value_relative: _Optional[float] = ..., basic_value_force: _Optional[float] = ..., section_design: _Optional[_Union[MemberImperfectionSectionDesign, str]] = ..., active_criterion: _Optional[_Union[MemberImperfectionActiveCriterion, str]] = ..., active_bow: _Optional[float] = ..., standard_factor_enumeration: _Optional[_Union[MemberImperfectionStandardFactorEnumeration, str]] = ..., standard_factor_number: _Optional[float] = ..., height: _Optional[float] = ..., column_in_row: _Optional[int] = ..., number_of_floors: _Optional[int] = ..., case_object: _Optional[int] = ..., reduction_factor_h: _Optional[float] = ..., reduction_factor_h_limit: bool = ..., reduction_factor_m: _Optional[float] = ..., initial_sway: _Optional[float] = ..., initial_sway_inverted: _Optional[float] = ..., delta: _Optional[float] = ..., parameters: _Optional[_Iterable[int]] = ..., reference_to_list_of_members: bool = ..., refer_distance_from_objects_to_assign: bool = ..., imperfection_over_total_length_of_objects_to_assign: bool = ..., distance_a_is_defined_as_relative: bool = ..., distance_b_is_defined_as_relative: bool = ..., distance_a_relative: _Optional[float] = ..., distance_b_relative: _Optional[float] = ..., distance_a_absolute: _Optional[float] = ..., distance_b_absolute: _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,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/imperfections/member_set_imperfection.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/imperfections/member_set_imperfection.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/imperfections/member_set_imperfection.proto\x12\x1d\x64lubal.api.rfem.imperfections\"\xf8\x14\n\x15MemberSetImperfection\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x64\n\x11imperfection_type\x18\x02 \x01(\x0e\x32\x44.dlubal.api.rfem.imperfections.MemberSetImperfectionImperfectionTypeH\x00\x88\x01\x01\x12\x13\n\x0bmember_sets\x18\x03 \x03(\x05\x12\x1e\n\x11imperfection_case\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12`\n\x0f\x64\x65\x66inition_type\x18\x05 \x01(\x0e\x32\x42.dlubal.api.rfem.imperfections.MemberSetImperfectionDefinitionTypeH\x02\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\tH\x03\x88\x01\x01\x12n\n\x16imperfection_direction\x18\x07 \x01(\x0e\x32I.dlubal.api.rfem.imperfections.MemberSetImperfectionImperfectionDirectionH\x04\x88\x01\x01\x12!\n\x14\x62\x61sic_value_absolute\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12!\n\x14\x62\x61sic_value_relative\x18\t \x01(\x01H\x06\x88\x01\x01\x12$\n\x17\x62\x61sic_value_coefficient\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1e\n\x11\x62\x61sic_value_force\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12^\n\x0esection_design\x18\x0c \x01(\x0e\x32\x41.dlubal.api.rfem.imperfections.MemberSetImperfectionSectionDesignH\t\x88\x01\x01\x12\x62\n\x10\x61\x63tive_criterion\x18\r \x01(\x0e\x32\x43.dlubal.api.rfem.imperfections.MemberSetImperfectionActiveCriterionH\n\x88\x01\x01\x12\x17\n\nactive_bow\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x1a\n\rcolumn_in_row\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12\x1d\n\x10number_of_floors\x18\x10 \x01(\x05H\r\x88\x01\x01\x12w\n\x1bstandard_factor_enumeration\x18\x11 \x01(\x0e\x32M.dlubal.api.rfem.imperfections.MemberSetImperfectionStandardFactorEnumerationH\x0e\x88\x01\x01\x12#\n\x16standard_factor_number\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x13\n\x06height\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12\x18\n\x0b\x63\x61se_object\x18\x14 \x01(\x05H\x11\x88\x01\x01\x12\x1f\n\x12reduction_factor_h\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12%\n\x18reduction_factor_h_limit\x18\x16 \x01(\x08H\x13\x88\x01\x01\x12\x1f\n\x12reduction_factor_m\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x19\n\x0cinitial_sway\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\"\n\x15initial_sway_inverted\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\x12\n\x05\x64\x65lta\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x12\n\nparameters\x18\x1b \x03(\x05\x12\x32\n%refer_distance_from_objects_to_assign\x18\x1c \x01(\x08H\x18\x88\x01\x01\x12@\n3imperfection_over_total_length_of_objects_to_assign\x18\x1d \x01(\x08H\x19\x88\x01\x01\x12.\n!distance_a_is_defined_as_relative\x18\x1e \x01(\x08H\x1a\x88\x01\x01\x12.\n!distance_b_is_defined_as_relative\x18\x1f \x01(\x08H\x1b\x88\x01\x01\x12 \n\x13\x64istance_a_relative\x18 \x01(\x01H\x1c\x88\x01\x01\x12 \n\x13\x64istance_b_relative\x18! \x01(\x01H\x1d\x88\x01\x01\x12 \n\x13\x64istance_a_absolute\x18\" \x01(\x01H\x1e\x88\x01\x01\x12 \n\x13\x64istance_b_absolute\x18# \x01(\x01H\x1f\x88\x01\x01\x12\x14\n\x07\x63omment\x18$ \x01(\tH \x88\x01\x01\x12\x19\n\x0cis_generated\x18% \x01(\x08H!\x88\x01\x01\x12#\n\x16generating_object_info\x18& \x01(\tH\"\x88\x01\x01\x12!\n\x14id_for_export_import\x18\' \x01(\tH#\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18( \x01(\tH$\x88\x01\x01\x42\x14\n\x12_imperfection_typeB\x14\n\x12_imperfection_caseB\x12\n\x10_definition_typeB\x14\n\x12_coordinate_systemB\x19\n\x17_imperfection_directionB\x17\n\x15_basic_value_absoluteB\x17\n\x15_basic_value_relativeB\x1a\n\x18_basic_value_coefficientB\x14\n\x12_basic_value_forceB\x11\n\x0f_section_designB\x13\n\x11_active_criterionB\r\n\x0b_active_bowB\x10\n\x0e_column_in_rowB\x13\n\x11_number_of_floorsB\x1e\n\x1c_standard_factor_enumerationB\x19\n\x17_standard_factor_numberB\t\n\x07_heightB\x0e\n\x0c_case_objectB\x15\n\x13_reduction_factor_hB\x1b\n\x19_reduction_factor_h_limitB\x15\n\x13_reduction_factor_mB\x0f\n\r_initial_swayB\x18\n\x16_initial_sway_invertedB\x08\n\x06_deltaB(\n&_refer_distance_from_objects_to_assignB6\n4_imperfection_over_total_length_of_objects_to_assignB$\n\"_distance_a_is_defined_as_relativeB$\n\"_distance_b_is_defined_as_relativeB\x16\n\x14_distance_a_relativeB\x16\n\x14_distance_b_relativeB\x16\n\x14_distance_a_absoluteB\x16\n\x14_distance_b_absoluteB\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*\x9e\x02\n%MemberSetImperfectionImperfectionType\x12\x35\n1MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_UNKNOWN\x10\x00\x12\x39\n5MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW\x10\x02\x12G\nCMEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_BOW_AND_CRITERION\x10\x03\x12:\n6MEMBER_SET_IMPERFECTION_IMPERFECTION_TYPE_INITIAL_SWAY\x10\x01*\xb4\t\n#MemberSetImperfectionDefinitionType\x12\x34\n0MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_RELATIVE\x10\x00\x12\x34\n0MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ABSOLUTE\x10\x01\x12@\n<MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_CURRENT\x10\x0e\x12\x45\nAMEMBER_SET_IMPERFECTION_DEFINITION_TYPE_AISI_S100_16_GRAVITY_LOAD\x10\x0f\x12\x38\n4MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_CURRENT\x10\x03\x12=\n9MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_ANSI_GRAVITY_LOAD\x10\x04\x12>\n:MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_CURRENT\x10\x10\x12\x43\n?MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_136_16_GRAVITY_LOAD\x10\x11\x12\x37\n3MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_CURRENT\x10\x07\x12<\n8MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_CSA_GRAVITY_LOAD\x10\x08\x12\x35\n1MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1992_1\x10\t\x12\x35\n1MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1993_1\x10\x05\x12\x35\n1MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1995_1\x10\n\x12\x35\n1MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_EN_1999_1\x10\x06\x12\x39\n5MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017\x10\x0b\x12\x41\n=MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_CURRENT\x10\x0c\x12\x46\nBMEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50017_2017_GRAVITY_LOAD\x10\r\x12\x46\nBMEMBER_SET_IMPERFECTION_DEFINITION_TYPE_GB_50429_2007_GRAVITY_LOAD\x10\x12\x12\x39\n5MEMBER_SET_IMPERFECTION_DEFINITION_TYPE_NOTIONAL_LOAD\x10\x02*\x80\t\n*MemberSetImperfectionImperfectionDirection\x12:\n6MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_UNKNOWN\x10\x00\x12V\nRMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_NEGATIVE\x10\x15\x12R\nNMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_X_OR_USER_DEFINED_U_TRUE\x10\x0b\x12V\nRMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_NEGATIVE\x10\x16\x12R\nNMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Y_OR_USER_DEFINED_V_TRUE\x10\x0c\x12V\nRMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_NEGATIVE\x10\x17\x12R\nNMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_GLOBAL_Z_OR_USER_DEFINED_W_TRUE\x10\r\x12:\n6MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y\x10\x01\x12\x43\n?MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Y_NEGATIVE\x10\x11\x12:\n6MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z\x10\x02\x12\x43\n?MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_LOCAL_Z_NEGATIVE\x10\x12\x12>\n:MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U\x10\x03\x12G\nCMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_U_NEGATIVE\x10\x13\x12>\n:MEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V\x10\x04\x12G\nCMEMBER_SET_IMPERFECTION_IMPERFECTION_DIRECTION_PRINCIPAL_V_NEGATIVE\x10\x14*\x8c\x01\n\"MemberSetImperfectionSectionDesign\x12\x32\n.MEMBER_SET_IMPERFECTION_SECTION_DESIGN_ELASTIC\x10\x00\x12\x32\n.MEMBER_SET_IMPERFECTION_SECTION_DESIGN_PLASTIC\x10\x01*\xb4\x02\n$MemberSetImperfectionActiveCriterion\x12\x33\n/MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_ALWAYS\x10\x00\x12\x33\n/MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DEFINE\x10\x04\x12\x36\n2MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_DIN_18800\x10\x03\x12\x34\n0MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1993\x10\x01\x12\x34\n0MEMBER_SET_IMPERFECTION_ACTIVE_CRITERION_EN_1999\x10\x02*\xab\x01\n.MemberSetImperfectionStandardFactorEnumeration\x12<\n8MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_LRFD\x10\x00\x12;\n7MEMBER_SET_IMPERFECTION_STANDARD_FACTOR_ENUMERATION_ASD\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.imperfections.member_set_imperfection_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MEMBERSETIMPERFECTIONIMPERFECTIONTYPE']._serialized_start=2778
35
+ _globals['_MEMBERSETIMPERFECTIONIMPERFECTIONTYPE']._serialized_end=3064
36
+ _globals['_MEMBERSETIMPERFECTIONDEFINITIONTYPE']._serialized_start=3067
37
+ _globals['_MEMBERSETIMPERFECTIONDEFINITIONTYPE']._serialized_end=4271
38
+ _globals['_MEMBERSETIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_start=4274
39
+ _globals['_MEMBERSETIMPERFECTIONIMPERFECTIONDIRECTION']._serialized_end=5426
40
+ _globals['_MEMBERSETIMPERFECTIONSECTIONDESIGN']._serialized_start=5429
41
+ _globals['_MEMBERSETIMPERFECTIONSECTIONDESIGN']._serialized_end=5569
42
+ _globals['_MEMBERSETIMPERFECTIONACTIVECRITERION']._serialized_start=5572
43
+ _globals['_MEMBERSETIMPERFECTIONACTIVECRITERION']._serialized_end=5880
44
+ _globals['_MEMBERSETIMPERFECTIONSTANDARDFACTORENUMERATION']._serialized_start=5883
45
+ _globals['_MEMBERSETIMPERFECTIONSTANDARDFACTORENUMERATION']._serialized_end=6054
46
+ _globals['_MEMBERSETIMPERFECTION']._serialized_start=95
47
+ _globals['_MEMBERSETIMPERFECTION']._serialized_end=2775
48
+ # @@protoc_insertion_point(module_scope)