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,298 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class LineType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ LINE_TYPE_UNKNOWN: _ClassVar[LineType]
13
+ LINE_TYPE_ARC: _ClassVar[LineType]
14
+ LINE_TYPE_CIRCLE: _ClassVar[LineType]
15
+ LINE_TYPE_CUT_VIA_SECTION: _ClassVar[LineType]
16
+ LINE_TYPE_CUT_VIA_TWO_LINES: _ClassVar[LineType]
17
+ LINE_TYPE_ELLIPSE: _ClassVar[LineType]
18
+ LINE_TYPE_ELLIPTICAL_ARC: _ClassVar[LineType]
19
+ LINE_TYPE_NURBS: _ClassVar[LineType]
20
+ LINE_TYPE_PARABOLA: _ClassVar[LineType]
21
+ LINE_TYPE_POLYLINE: _ClassVar[LineType]
22
+ LINE_TYPE_SPLINE: _ClassVar[LineType]
23
+
24
+ class LineArcAlphaAdjustmentTarget(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
25
+ __slots__ = ()
26
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_BEGINNING_OF_ARC: _ClassVar[LineArcAlphaAdjustmentTarget]
27
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_ARC_CONTROL_POINT: _ClassVar[LineArcAlphaAdjustmentTarget]
28
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_END_OF_ARC: _ClassVar[LineArcAlphaAdjustmentTarget]
29
+
30
+ class LineRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
31
+ __slots__ = ()
32
+ LINE_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: _ClassVar[LineRotationSpecificationType]
33
+ LINE_ROTATION_SPECIFICATION_TYPE_INSIDE: _ClassVar[LineRotationSpecificationType]
34
+ LINE_ROTATION_SPECIFICATION_TYPE_SURFACE: _ClassVar[LineRotationSpecificationType]
35
+ LINE_ROTATION_SPECIFICATION_TYPE_TO_NODE: _ClassVar[LineRotationSpecificationType]
36
+
37
+ class LineRotationPlane(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
38
+ __slots__ = ()
39
+ LINE_ROTATION_PLANE_XY: _ClassVar[LineRotationPlane]
40
+ LINE_ROTATION_PLANE_XZ: _ClassVar[LineRotationPlane]
41
+ LINE_TYPE_UNKNOWN: LineType
42
+ LINE_TYPE_ARC: LineType
43
+ LINE_TYPE_CIRCLE: LineType
44
+ LINE_TYPE_CUT_VIA_SECTION: LineType
45
+ LINE_TYPE_CUT_VIA_TWO_LINES: LineType
46
+ LINE_TYPE_ELLIPSE: LineType
47
+ LINE_TYPE_ELLIPTICAL_ARC: LineType
48
+ LINE_TYPE_NURBS: LineType
49
+ LINE_TYPE_PARABOLA: LineType
50
+ LINE_TYPE_POLYLINE: LineType
51
+ LINE_TYPE_SPLINE: LineType
52
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_BEGINNING_OF_ARC: LineArcAlphaAdjustmentTarget
53
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_ARC_CONTROL_POINT: LineArcAlphaAdjustmentTarget
54
+ LINE_ARC_ALPHA_ADJUSTMENT_TARGET_END_OF_ARC: LineArcAlphaAdjustmentTarget
55
+ LINE_ROTATION_SPECIFICATION_TYPE_BY_ANGLE: LineRotationSpecificationType
56
+ LINE_ROTATION_SPECIFICATION_TYPE_INSIDE: LineRotationSpecificationType
57
+ LINE_ROTATION_SPECIFICATION_TYPE_SURFACE: LineRotationSpecificationType
58
+ LINE_ROTATION_SPECIFICATION_TYPE_TO_NODE: LineRotationSpecificationType
59
+ LINE_ROTATION_PLANE_XY: LineRotationPlane
60
+ LINE_ROTATION_PLANE_XZ: LineRotationPlane
61
+
62
+ class Line(_message.Message):
63
+ __slots__ = ("no", "type", "definition_nodes", "length", "comment", "arc_first_node", "arc_second_node", "arc_control_point", "arc_control_point_x", "arc_control_point_y", "arc_control_point_z", "arc_center", "arc_center_x", "arc_center_y", "arc_center_z", "arc_radius", "arc_height", "arc_alpha", "arc_alpha_adjustment_target", "circle_center", "circle_center_coordinate_1", "circle_center_coordinate_2", "circle_center_coordinate_3", "circle_normal", "circle_normal_coordinate_1", "circle_normal_coordinate_2", "circle_normal_coordinate_3", "circle_rotation", "circle_node", "circle_node_coordinate_1", "circle_node_coordinate_2", "circle_node_coordinate_3", "circle_radius", "ellipse_first_node", "ellipse_second_node", "ellipse_control_point", "ellipse_control_point_x", "ellipse_control_point_y", "ellipse_control_point_z", "elliptical_arc_first_node", "elliptical_arc_second_node", "elliptical_arc_alpha", "elliptical_arc_beta", "elliptical_arc_normal", "elliptical_arc_normal_x", "elliptical_arc_normal_y", "elliptical_arc_normal_z", "elliptical_arc_major_radius", "elliptical_arc_minor_radius", "elliptical_arc_center", "elliptical_arc_center_x", "elliptical_arc_center_y", "elliptical_arc_center_z", "elliptical_arc_focus_1", "elliptical_arc_focus_1_x", "elliptical_arc_focus_1_y", "elliptical_arc_focus_1_z", "elliptical_arc_focus_2", "elliptical_arc_focus_2_x", "elliptical_arc_focus_2_y", "elliptical_arc_focus_2_z", "elliptical_arc_first_control_point", "elliptical_arc_first_control_point_x", "elliptical_arc_first_control_point_y", "elliptical_arc_first_control_point_z", "elliptical_arc_second_control_point", "elliptical_arc_second_control_point_x", "elliptical_arc_second_control_point_y", "elliptical_arc_second_control_point_z", "elliptical_arc_perimeter_control_point", "elliptical_arc_perimeter_control_point_x", "elliptical_arc_perimeter_control_point_y", "elliptical_arc_perimeter_control_point_z", "parabola_first_node", "parabola_second_node", "parabola_control_point", "parabola_control_point_x", "parabola_control_point_y", "parabola_control_point_z", "parabola_alpha", "parabola_focus_directrix_distance", "parabola_focus", "parabola_focus_x", "parabola_focus_y", "parabola_focus_z", "nurbs_order", "nurbs_control_points_by_components", "nurbs_control_points", "nurbs_knots", "rotation_specification_type", "rotation_angle", "rotation_help_node", "rotation_plane", "is_rotated", "member", "support", "mesh_refinement", "line_weld_assignment", "has_line_welds", "is_generated", "generating_object_info", "arc_control_point_object", "ellipse_control_point_object", "elliptical_arc_first_control_point_object", "elliptical_arc_perimeter_control_point_object", "elliptical_arc_second_control_point_object", "parabola_control_point_object", "id_for_export_import", "metadata_for_export_import")
64
+ NO_FIELD_NUMBER: _ClassVar[int]
65
+ TYPE_FIELD_NUMBER: _ClassVar[int]
66
+ DEFINITION_NODES_FIELD_NUMBER: _ClassVar[int]
67
+ LENGTH_FIELD_NUMBER: _ClassVar[int]
68
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
69
+ ARC_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
70
+ ARC_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
71
+ ARC_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
72
+ ARC_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
73
+ ARC_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
74
+ ARC_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
75
+ ARC_CENTER_FIELD_NUMBER: _ClassVar[int]
76
+ ARC_CENTER_X_FIELD_NUMBER: _ClassVar[int]
77
+ ARC_CENTER_Y_FIELD_NUMBER: _ClassVar[int]
78
+ ARC_CENTER_Z_FIELD_NUMBER: _ClassVar[int]
79
+ ARC_RADIUS_FIELD_NUMBER: _ClassVar[int]
80
+ ARC_HEIGHT_FIELD_NUMBER: _ClassVar[int]
81
+ ARC_ALPHA_FIELD_NUMBER: _ClassVar[int]
82
+ ARC_ALPHA_ADJUSTMENT_TARGET_FIELD_NUMBER: _ClassVar[int]
83
+ CIRCLE_CENTER_FIELD_NUMBER: _ClassVar[int]
84
+ CIRCLE_CENTER_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
85
+ CIRCLE_CENTER_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
86
+ CIRCLE_CENTER_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
87
+ CIRCLE_NORMAL_FIELD_NUMBER: _ClassVar[int]
88
+ CIRCLE_NORMAL_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
89
+ CIRCLE_NORMAL_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
90
+ CIRCLE_NORMAL_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
91
+ CIRCLE_ROTATION_FIELD_NUMBER: _ClassVar[int]
92
+ CIRCLE_NODE_FIELD_NUMBER: _ClassVar[int]
93
+ CIRCLE_NODE_COORDINATE_1_FIELD_NUMBER: _ClassVar[int]
94
+ CIRCLE_NODE_COORDINATE_2_FIELD_NUMBER: _ClassVar[int]
95
+ CIRCLE_NODE_COORDINATE_3_FIELD_NUMBER: _ClassVar[int]
96
+ CIRCLE_RADIUS_FIELD_NUMBER: _ClassVar[int]
97
+ ELLIPSE_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
98
+ ELLIPSE_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
99
+ ELLIPSE_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
100
+ ELLIPSE_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
101
+ ELLIPSE_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
102
+ ELLIPSE_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
103
+ ELLIPTICAL_ARC_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
104
+ ELLIPTICAL_ARC_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
105
+ ELLIPTICAL_ARC_ALPHA_FIELD_NUMBER: _ClassVar[int]
106
+ ELLIPTICAL_ARC_BETA_FIELD_NUMBER: _ClassVar[int]
107
+ ELLIPTICAL_ARC_NORMAL_FIELD_NUMBER: _ClassVar[int]
108
+ ELLIPTICAL_ARC_NORMAL_X_FIELD_NUMBER: _ClassVar[int]
109
+ ELLIPTICAL_ARC_NORMAL_Y_FIELD_NUMBER: _ClassVar[int]
110
+ ELLIPTICAL_ARC_NORMAL_Z_FIELD_NUMBER: _ClassVar[int]
111
+ ELLIPTICAL_ARC_MAJOR_RADIUS_FIELD_NUMBER: _ClassVar[int]
112
+ ELLIPTICAL_ARC_MINOR_RADIUS_FIELD_NUMBER: _ClassVar[int]
113
+ ELLIPTICAL_ARC_CENTER_FIELD_NUMBER: _ClassVar[int]
114
+ ELLIPTICAL_ARC_CENTER_X_FIELD_NUMBER: _ClassVar[int]
115
+ ELLIPTICAL_ARC_CENTER_Y_FIELD_NUMBER: _ClassVar[int]
116
+ ELLIPTICAL_ARC_CENTER_Z_FIELD_NUMBER: _ClassVar[int]
117
+ ELLIPTICAL_ARC_FOCUS_1_FIELD_NUMBER: _ClassVar[int]
118
+ ELLIPTICAL_ARC_FOCUS_1_X_FIELD_NUMBER: _ClassVar[int]
119
+ ELLIPTICAL_ARC_FOCUS_1_Y_FIELD_NUMBER: _ClassVar[int]
120
+ ELLIPTICAL_ARC_FOCUS_1_Z_FIELD_NUMBER: _ClassVar[int]
121
+ ELLIPTICAL_ARC_FOCUS_2_FIELD_NUMBER: _ClassVar[int]
122
+ ELLIPTICAL_ARC_FOCUS_2_X_FIELD_NUMBER: _ClassVar[int]
123
+ ELLIPTICAL_ARC_FOCUS_2_Y_FIELD_NUMBER: _ClassVar[int]
124
+ ELLIPTICAL_ARC_FOCUS_2_Z_FIELD_NUMBER: _ClassVar[int]
125
+ ELLIPTICAL_ARC_FIRST_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
126
+ ELLIPTICAL_ARC_FIRST_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
127
+ ELLIPTICAL_ARC_FIRST_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
128
+ ELLIPTICAL_ARC_FIRST_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
129
+ ELLIPTICAL_ARC_SECOND_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
130
+ ELLIPTICAL_ARC_SECOND_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
131
+ ELLIPTICAL_ARC_SECOND_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
132
+ ELLIPTICAL_ARC_SECOND_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
133
+ ELLIPTICAL_ARC_PERIMETER_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
134
+ ELLIPTICAL_ARC_PERIMETER_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
135
+ ELLIPTICAL_ARC_PERIMETER_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
136
+ ELLIPTICAL_ARC_PERIMETER_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
137
+ PARABOLA_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
138
+ PARABOLA_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
139
+ PARABOLA_CONTROL_POINT_FIELD_NUMBER: _ClassVar[int]
140
+ PARABOLA_CONTROL_POINT_X_FIELD_NUMBER: _ClassVar[int]
141
+ PARABOLA_CONTROL_POINT_Y_FIELD_NUMBER: _ClassVar[int]
142
+ PARABOLA_CONTROL_POINT_Z_FIELD_NUMBER: _ClassVar[int]
143
+ PARABOLA_ALPHA_FIELD_NUMBER: _ClassVar[int]
144
+ PARABOLA_FOCUS_DIRECTRIX_DISTANCE_FIELD_NUMBER: _ClassVar[int]
145
+ PARABOLA_FOCUS_FIELD_NUMBER: _ClassVar[int]
146
+ PARABOLA_FOCUS_X_FIELD_NUMBER: _ClassVar[int]
147
+ PARABOLA_FOCUS_Y_FIELD_NUMBER: _ClassVar[int]
148
+ PARABOLA_FOCUS_Z_FIELD_NUMBER: _ClassVar[int]
149
+ NURBS_ORDER_FIELD_NUMBER: _ClassVar[int]
150
+ NURBS_CONTROL_POINTS_BY_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
151
+ NURBS_CONTROL_POINTS_FIELD_NUMBER: _ClassVar[int]
152
+ NURBS_KNOTS_FIELD_NUMBER: _ClassVar[int]
153
+ ROTATION_SPECIFICATION_TYPE_FIELD_NUMBER: _ClassVar[int]
154
+ ROTATION_ANGLE_FIELD_NUMBER: _ClassVar[int]
155
+ ROTATION_HELP_NODE_FIELD_NUMBER: _ClassVar[int]
156
+ ROTATION_PLANE_FIELD_NUMBER: _ClassVar[int]
157
+ IS_ROTATED_FIELD_NUMBER: _ClassVar[int]
158
+ MEMBER_FIELD_NUMBER: _ClassVar[int]
159
+ SUPPORT_FIELD_NUMBER: _ClassVar[int]
160
+ MESH_REFINEMENT_FIELD_NUMBER: _ClassVar[int]
161
+ LINE_WELD_ASSIGNMENT_FIELD_NUMBER: _ClassVar[int]
162
+ HAS_LINE_WELDS_FIELD_NUMBER: _ClassVar[int]
163
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
164
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
165
+ ARC_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
166
+ ELLIPSE_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
167
+ ELLIPTICAL_ARC_FIRST_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
168
+ ELLIPTICAL_ARC_PERIMETER_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
169
+ ELLIPTICAL_ARC_SECOND_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
170
+ PARABOLA_CONTROL_POINT_OBJECT_FIELD_NUMBER: _ClassVar[int]
171
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
172
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
173
+ no: int
174
+ type: LineType
175
+ definition_nodes: _containers.RepeatedScalarFieldContainer[int]
176
+ length: float
177
+ comment: str
178
+ arc_first_node: int
179
+ arc_second_node: int
180
+ arc_control_point: _common_pb2.Vector3d
181
+ arc_control_point_x: float
182
+ arc_control_point_y: float
183
+ arc_control_point_z: float
184
+ arc_center: _common_pb2.Vector3d
185
+ arc_center_x: float
186
+ arc_center_y: float
187
+ arc_center_z: float
188
+ arc_radius: float
189
+ arc_height: float
190
+ arc_alpha: float
191
+ arc_alpha_adjustment_target: LineArcAlphaAdjustmentTarget
192
+ circle_center: _common_pb2.Vector3d
193
+ circle_center_coordinate_1: float
194
+ circle_center_coordinate_2: float
195
+ circle_center_coordinate_3: float
196
+ circle_normal: _common_pb2.Vector3d
197
+ circle_normal_coordinate_1: float
198
+ circle_normal_coordinate_2: float
199
+ circle_normal_coordinate_3: float
200
+ circle_rotation: float
201
+ circle_node: _common_pb2.Vector3d
202
+ circle_node_coordinate_1: float
203
+ circle_node_coordinate_2: float
204
+ circle_node_coordinate_3: float
205
+ circle_radius: float
206
+ ellipse_first_node: int
207
+ ellipse_second_node: int
208
+ ellipse_control_point: _common_pb2.Vector3d
209
+ ellipse_control_point_x: float
210
+ ellipse_control_point_y: float
211
+ ellipse_control_point_z: float
212
+ elliptical_arc_first_node: int
213
+ elliptical_arc_second_node: int
214
+ elliptical_arc_alpha: float
215
+ elliptical_arc_beta: float
216
+ elliptical_arc_normal: _common_pb2.Vector3d
217
+ elliptical_arc_normal_x: float
218
+ elliptical_arc_normal_y: float
219
+ elliptical_arc_normal_z: float
220
+ elliptical_arc_major_radius: float
221
+ elliptical_arc_minor_radius: float
222
+ elliptical_arc_center: _common_pb2.Vector3d
223
+ elliptical_arc_center_x: float
224
+ elliptical_arc_center_y: float
225
+ elliptical_arc_center_z: float
226
+ elliptical_arc_focus_1: _common_pb2.Vector3d
227
+ elliptical_arc_focus_1_x: float
228
+ elliptical_arc_focus_1_y: float
229
+ elliptical_arc_focus_1_z: float
230
+ elliptical_arc_focus_2: _common_pb2.Vector3d
231
+ elliptical_arc_focus_2_x: float
232
+ elliptical_arc_focus_2_y: float
233
+ elliptical_arc_focus_2_z: float
234
+ elliptical_arc_first_control_point: _common_pb2.Vector3d
235
+ elliptical_arc_first_control_point_x: float
236
+ elliptical_arc_first_control_point_y: float
237
+ elliptical_arc_first_control_point_z: float
238
+ elliptical_arc_second_control_point: _common_pb2.Vector3d
239
+ elliptical_arc_second_control_point_x: float
240
+ elliptical_arc_second_control_point_y: float
241
+ elliptical_arc_second_control_point_z: float
242
+ elliptical_arc_perimeter_control_point: _common_pb2.Vector3d
243
+ elliptical_arc_perimeter_control_point_x: float
244
+ elliptical_arc_perimeter_control_point_y: float
245
+ elliptical_arc_perimeter_control_point_z: float
246
+ parabola_first_node: int
247
+ parabola_second_node: int
248
+ parabola_control_point: _common_pb2.Vector3d
249
+ parabola_control_point_x: float
250
+ parabola_control_point_y: float
251
+ parabola_control_point_z: float
252
+ parabola_alpha: float
253
+ parabola_focus_directrix_distance: float
254
+ parabola_focus: _common_pb2.Vector3d
255
+ parabola_focus_x: float
256
+ parabola_focus_y: float
257
+ parabola_focus_z: float
258
+ nurbs_order: int
259
+ nurbs_control_points_by_components: ArrayOfLineNurbsControlPointsByComponents
260
+ nurbs_control_points: ArrayOfLineNurbsControlPoints
261
+ nurbs_knots: ArrayOfLineNurbsKnots
262
+ rotation_specification_type: LineRotationSpecificationType
263
+ rotation_angle: float
264
+ rotation_help_node: int
265
+ rotation_plane: LineRotationPlane
266
+ is_rotated: bool
267
+ member: int
268
+ support: int
269
+ mesh_refinement: int
270
+ line_weld_assignment: ArrayOfLineLineWeldAssignment
271
+ has_line_welds: bool
272
+ is_generated: bool
273
+ generating_object_info: str
274
+ arc_control_point_object: int
275
+ ellipse_control_point_object: int
276
+ elliptical_arc_first_control_point_object: int
277
+ elliptical_arc_perimeter_control_point_object: int
278
+ elliptical_arc_second_control_point_object: int
279
+ parabola_control_point_object: int
280
+ id_for_export_import: str
281
+ metadata_for_export_import: str
282
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[LineType, str]] = ..., definition_nodes: _Optional[_Iterable[int]] = ..., length: _Optional[float] = ..., comment: _Optional[str] = ..., arc_first_node: _Optional[int] = ..., arc_second_node: _Optional[int] = ..., arc_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., arc_control_point_x: _Optional[float] = ..., arc_control_point_y: _Optional[float] = ..., arc_control_point_z: _Optional[float] = ..., arc_center: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., arc_center_x: _Optional[float] = ..., arc_center_y: _Optional[float] = ..., arc_center_z: _Optional[float] = ..., arc_radius: _Optional[float] = ..., arc_height: _Optional[float] = ..., arc_alpha: _Optional[float] = ..., arc_alpha_adjustment_target: _Optional[_Union[LineArcAlphaAdjustmentTarget, str]] = ..., circle_center: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., circle_center_coordinate_1: _Optional[float] = ..., circle_center_coordinate_2: _Optional[float] = ..., circle_center_coordinate_3: _Optional[float] = ..., circle_normal: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., circle_normal_coordinate_1: _Optional[float] = ..., circle_normal_coordinate_2: _Optional[float] = ..., circle_normal_coordinate_3: _Optional[float] = ..., circle_rotation: _Optional[float] = ..., circle_node: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., circle_node_coordinate_1: _Optional[float] = ..., circle_node_coordinate_2: _Optional[float] = ..., circle_node_coordinate_3: _Optional[float] = ..., circle_radius: _Optional[float] = ..., ellipse_first_node: _Optional[int] = ..., ellipse_second_node: _Optional[int] = ..., ellipse_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., ellipse_control_point_x: _Optional[float] = ..., ellipse_control_point_y: _Optional[float] = ..., ellipse_control_point_z: _Optional[float] = ..., elliptical_arc_first_node: _Optional[int] = ..., elliptical_arc_second_node: _Optional[int] = ..., elliptical_arc_alpha: _Optional[float] = ..., elliptical_arc_beta: _Optional[float] = ..., elliptical_arc_normal: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_normal_x: _Optional[float] = ..., elliptical_arc_normal_y: _Optional[float] = ..., elliptical_arc_normal_z: _Optional[float] = ..., elliptical_arc_major_radius: _Optional[float] = ..., elliptical_arc_minor_radius: _Optional[float] = ..., elliptical_arc_center: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_center_x: _Optional[float] = ..., elliptical_arc_center_y: _Optional[float] = ..., elliptical_arc_center_z: _Optional[float] = ..., elliptical_arc_focus_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_focus_1_x: _Optional[float] = ..., elliptical_arc_focus_1_y: _Optional[float] = ..., elliptical_arc_focus_1_z: _Optional[float] = ..., elliptical_arc_focus_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_focus_2_x: _Optional[float] = ..., elliptical_arc_focus_2_y: _Optional[float] = ..., elliptical_arc_focus_2_z: _Optional[float] = ..., elliptical_arc_first_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_first_control_point_x: _Optional[float] = ..., elliptical_arc_first_control_point_y: _Optional[float] = ..., elliptical_arc_first_control_point_z: _Optional[float] = ..., elliptical_arc_second_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_second_control_point_x: _Optional[float] = ..., elliptical_arc_second_control_point_y: _Optional[float] = ..., elliptical_arc_second_control_point_z: _Optional[float] = ..., elliptical_arc_perimeter_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., elliptical_arc_perimeter_control_point_x: _Optional[float] = ..., elliptical_arc_perimeter_control_point_y: _Optional[float] = ..., elliptical_arc_perimeter_control_point_z: _Optional[float] = ..., parabola_first_node: _Optional[int] = ..., parabola_second_node: _Optional[int] = ..., parabola_control_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., parabola_control_point_x: _Optional[float] = ..., parabola_control_point_y: _Optional[float] = ..., parabola_control_point_z: _Optional[float] = ..., parabola_alpha: _Optional[float] = ..., parabola_focus_directrix_distance: _Optional[float] = ..., parabola_focus: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., parabola_focus_x: _Optional[float] = ..., parabola_focus_y: _Optional[float] = ..., parabola_focus_z: _Optional[float] = ..., nurbs_order: _Optional[int] = ..., nurbs_control_points_by_components: _Optional[_Union[ArrayOfLineNurbsControlPointsByComponents, _Mapping]] = ..., nurbs_control_points: _Optional[_Union[ArrayOfLineNurbsControlPoints, _Mapping]] = ..., nurbs_knots: _Optional[_Union[ArrayOfLineNurbsKnots, _Mapping]] = ..., rotation_specification_type: _Optional[_Union[LineRotationSpecificationType, str]] = ..., rotation_angle: _Optional[float] = ..., rotation_help_node: _Optional[int] = ..., rotation_plane: _Optional[_Union[LineRotationPlane, str]] = ..., is_rotated: bool = ..., member: _Optional[int] = ..., support: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., line_weld_assignment: _Optional[_Union[ArrayOfLineLineWeldAssignment, _Mapping]] = ..., has_line_welds: bool = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., arc_control_point_object: _Optional[int] = ..., ellipse_control_point_object: _Optional[int] = ..., elliptical_arc_first_control_point_object: _Optional[int] = ..., elliptical_arc_perimeter_control_point_object: _Optional[int] = ..., elliptical_arc_second_control_point_object: _Optional[int] = ..., parabola_control_point_object: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
283
+
284
+ class ArrayOfLineNurbsControlPointsByComponents(_message.Message):
285
+ __slots__ = ()
286
+ def __init__(self) -> None: ...
287
+
288
+ class ArrayOfLineNurbsControlPoints(_message.Message):
289
+ __slots__ = ()
290
+ def __init__(self) -> None: ...
291
+
292
+ class ArrayOfLineNurbsKnots(_message.Message):
293
+ __slots__ = ()
294
+ def __init__(self) -> None: ...
295
+
296
+ class ArrayOfLineLineWeldAssignment(_message.Message):
297
+ __slots__ = ()
298
+ def __init__(self) -> None: ...
@@ -0,0 +1,39 @@
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/structure_core/line_set.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/structure_core/line_set.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-dlubal/api/rfem/structure_core/line_set.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xe1\x06\n\x07LineSet\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\x45\n\x08set_type\x18\x04 \x01(\x0e\x32..dlubal.api.rfem.structure_core.LineSetSetTypeH\x02\x88\x01\x01\x12\r\n\x05lines\x18\x05 \x03(\x05\x12\x13\n\x06length\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x07 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\t \x01(\x01H\x06\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x15\n\x08position\x18\x0b \x01(\tH\x08\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x0c \x01(\tH\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\r \x01(\tH\n\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0e \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16generating_object_info\x18\x0f \x01(\tH\x0c\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\r\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\x0e\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_set_typeB\t\n\x07_lengthB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x0b\n\t_positionB\x11\n\x0f_position_shortB\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*O\n\x0eLineSetSetType\x12 \n\x1cLINE_SET_SET_TYPE_CONTINUOUS\x10\x00\x12\x1b\n\x17LINE_SET_SET_TYPE_GROUP\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.line_set_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_LINESETSETTYPE']._serialized_start=981
36
+ _globals['_LINESETSETTYPE']._serialized_end=1060
37
+ _globals['_LINESET']._serialized_start=114
38
+ _globals['_LINESET']._serialized_end=979
39
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,53 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class LineSetSetType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ LINE_SET_SET_TYPE_CONTINUOUS: _ClassVar[LineSetSetType]
13
+ LINE_SET_SET_TYPE_GROUP: _ClassVar[LineSetSetType]
14
+ LINE_SET_SET_TYPE_CONTINUOUS: LineSetSetType
15
+ LINE_SET_SET_TYPE_GROUP: LineSetSetType
16
+
17
+ class LineSet(_message.Message):
18
+ __slots__ = ("no", "user_defined_name_enabled", "name", "set_type", "lines", "length", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
19
+ NO_FIELD_NUMBER: _ClassVar[int]
20
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
21
+ NAME_FIELD_NUMBER: _ClassVar[int]
22
+ SET_TYPE_FIELD_NUMBER: _ClassVar[int]
23
+ LINES_FIELD_NUMBER: _ClassVar[int]
24
+ LENGTH_FIELD_NUMBER: _ClassVar[int]
25
+ CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
26
+ CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
27
+ CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
28
+ CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
29
+ POSITION_FIELD_NUMBER: _ClassVar[int]
30
+ POSITION_SHORT_FIELD_NUMBER: _ClassVar[int]
31
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
32
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
33
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
34
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
35
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
36
+ no: int
37
+ user_defined_name_enabled: bool
38
+ name: str
39
+ set_type: LineSetSetType
40
+ lines: _containers.RepeatedScalarFieldContainer[int]
41
+ length: float
42
+ center_of_gravity: _common_pb2.Vector3d
43
+ center_of_gravity_x: float
44
+ center_of_gravity_y: float
45
+ center_of_gravity_z: float
46
+ position: str
47
+ position_short: str
48
+ comment: str
49
+ is_generated: bool
50
+ generating_object_info: str
51
+ id_for_export_import: str
52
+ metadata_for_export_import: str
53
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., set_type: _Optional[_Union[LineSetSetType, str]] = ..., lines: _Optional[_Iterable[int]] = ..., length: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., 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,100 @@
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/structure_core/material.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/structure_core/material.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/structure_core/material.proto\x12\x1e\x64lubal.api.rfem.structure_core\"\xff`\n\x08Material\x12\n\n\x02no\x18\x01 \x01(\x05\x12P\n\rmaterial_type\x18\x02 \x01(\x0e\x32\x34.dlubal.api.rfem.structure_core.MaterialMaterialTypeH\x00\x88\x01\x01\x12R\n\x0ematerial_model\x18\x03 \x01(\x0e\x32\x35.dlubal.api.rfem.structure_core.MaterialMaterialModelH\x01\x88\x01\x01\x12\\\n\x13\x61pplication_context\x18\x04 \x01(\x0e\x32:.dlubal.api.rfem.structure_core.MaterialApplicationContextH\x02\x88\x01\x01\x12N\n\x0c\x64iagram_type\x18\x05 \x01(\x0e\x32\x33.dlubal.api.rfem.structure_core.MaterialDiagramTypeH\x03\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x11\n\x04name\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x19\n\x0cuser_defined\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12T\n\x0f\x64\x65\x66inition_type\x18\t \x01(\x0e\x32\x36.dlubal.api.rfem.structure_core.MaterialDefinitionTypeH\x07\x88\x01\x01\x12g\n\x19stress_failure_hypothesis\x18\n \x01(\x0e\x32?.dlubal.api.rfem.structure_core.MaterialStressFailureHypothesisH\x08\x88\x01\x01\x12%\n\x18is_temperature_dependent\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\'\n\x1ais_dynamic_increase_factor\x18\x0c \x01(\x08H\n\x88\x01\x01\x12 \n\x13has_cost_estimation\x18\r \x01(\x08H\x0b\x88\x01\x01\x12\x19\n\x0coptimization\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12%\n\x18has_emissions_estimation\x18\x0f \x01(\x08H\r\x88\x01\x01\x12\"\n\x15reference_temperature\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12*\n\x1dtemperature_properties_sorted\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12T\n\x0btemperature\x18\x12 \x01(\x0b\x32:.dlubal.api.rfem.structure_core.ArrayOfMaterialTemperatureH\x10\x88\x01\x01\x12&\n\x19stiffness_matrix_editable\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12#\n\x16stiffness_modification\x18\x14 \x01(\x08H\x12\x88\x01\x01\x12k\n\x1bstiffness_modification_type\x18\x15 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.MaterialStiffnessModificationTypeH\x13\x88\x01\x01\x12\x37\n*has_linear_elastic_with_nonlinear_criteria\x18\x16 \x01(\x08H\x14\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x17 \x01(\tH\x15\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12#\n\x16generating_object_info\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\"\n\x15members_weight_active\x18\x1a \x01(\x08H\x18\x88\x01\x01\x12%\n\x18members_weight_unit_cost\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12[\n\x13members_weight_unit\x18\x1c \x01(\x0e\x32\x39.dlubal.api.rfem.structure_core.MaterialMembersWeightUnitH\x1a\x88\x01\x01\x12$\n\x17members_weight_quantity\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12 \n\x13members_weight_cost\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\"\n\x15members_volume_active\x18\x1f \x01(\x08H\x1d\x88\x01\x01\x12%\n\x18members_volume_unit_cost\x18 \x01(\x01H\x1e\x88\x01\x01\x12[\n\x13members_volume_unit\x18! \x01(\x0e\x32\x39.dlubal.api.rfem.structure_core.MaterialMembersVolumeUnitH\x1f\x88\x01\x01\x12$\n\x17members_volume_quantity\x18\" \x01(\x01H \x88\x01\x01\x12 \n\x13members_volume_cost\x18# \x01(\x01H!\x88\x01\x01\x12#\n\x16members_surface_active\x18$ \x01(\x08H\"\x88\x01\x01\x12&\n\x19members_surface_unit_cost\x18% \x01(\x01H#\x88\x01\x01\x12]\n\x14members_surface_unit\x18& \x01(\x0e\x32:.dlubal.api.rfem.structure_core.MaterialMembersSurfaceUnitH$\x88\x01\x01\x12%\n\x18members_surface_quantity\x18\' \x01(\x01H%\x88\x01\x01\x12!\n\x14members_surface_cost\x18( \x01(\x01H&\x88\x01\x01\x12#\n\x16surfaces_weight_active\x18) \x01(\x08H\'\x88\x01\x01\x12&\n\x19surfaces_weight_unit_cost\x18* \x01(\x01H(\x88\x01\x01\x12]\n\x14surfaces_weight_unit\x18+ \x01(\x0e\x32:.dlubal.api.rfem.structure_core.MaterialSurfacesWeightUnitH)\x88\x01\x01\x12%\n\x18surfaces_weight_quantity\x18, \x01(\x01H*\x88\x01\x01\x12!\n\x14surfaces_weight_cost\x18- \x01(\x01H+\x88\x01\x01\x12#\n\x16surfaces_volume_active\x18. \x01(\x08H,\x88\x01\x01\x12&\n\x19surfaces_volume_unit_cost\x18/ \x01(\x01H-\x88\x01\x01\x12]\n\x14surfaces_volume_unit\x18\x30 \x01(\x0e\x32:.dlubal.api.rfem.structure_core.MaterialSurfacesVolumeUnitH.\x88\x01\x01\x12%\n\x18surfaces_volume_quantity\x18\x31 \x01(\x01H/\x88\x01\x01\x12!\n\x14surfaces_volume_cost\x18\x32 \x01(\x01H0\x88\x01\x01\x12%\n\x18surfaces_top_face_active\x18\x33 \x01(\x08H1\x88\x01\x01\x12(\n\x1bsurfaces_top_face_unit_cost\x18\x34 \x01(\x01H2\x88\x01\x01\x12`\n\x16surfaces_top_face_unit\x18\x35 \x01(\x0e\x32;.dlubal.api.rfem.structure_core.MaterialSurfacesTopFaceUnitH3\x88\x01\x01\x12\'\n\x1asurfaces_top_face_quantity\x18\x36 \x01(\x01H4\x88\x01\x01\x12#\n\x16surfaces_top_face_cost\x18\x37 \x01(\x01H5\x88\x01\x01\x12!\n\x14surfaces_area_active\x18\x38 \x01(\x08H6\x88\x01\x01\x12$\n\x17surfaces_area_unit_cost\x18\x39 \x01(\x01H7\x88\x01\x01\x12Y\n\x12surfaces_area_unit\x18: \x01(\x0e\x32\x38.dlubal.api.rfem.structure_core.MaterialSurfacesAreaUnitH8\x88\x01\x01\x12#\n\x16surfaces_area_quantity\x18; \x01(\x01H9\x88\x01\x01\x12\x1f\n\x12surfaces_area_cost\x18< \x01(\x01H:\x88\x01\x01\x12(\n\x1bsurfaces_bottom_face_active\x18= \x01(\x08H;\x88\x01\x01\x12+\n\x1esurfaces_bottom_face_unit_cost\x18> \x01(\x01H<\x88\x01\x01\x12\x66\n\x19surfaces_bottom_face_unit\x18? \x01(\x0e\x32>.dlubal.api.rfem.structure_core.MaterialSurfacesBottomFaceUnitH=\x88\x01\x01\x12*\n\x1dsurfaces_bottom_face_quantity\x18@ \x01(\x01H>\x88\x01\x01\x12&\n\x19surfaces_bottom_face_cost\x18\x41 \x01(\x01H?\x88\x01\x01\x12!\n\x14solids_weight_active\x18\x42 \x01(\x08H@\x88\x01\x01\x12$\n\x17solids_weight_unit_cost\x18\x43 \x01(\x01HA\x88\x01\x01\x12Y\n\x12solids_weight_unit\x18\x44 \x01(\x0e\x32\x38.dlubal.api.rfem.structure_core.MaterialSolidsWeightUnitHB\x88\x01\x01\x12#\n\x16solids_weight_quantity\x18\x45 \x01(\x01HC\x88\x01\x01\x12\x1f\n\x12solids_weight_cost\x18\x46 \x01(\x01HD\x88\x01\x01\x12!\n\x14solids_volume_active\x18G \x01(\x08HE\x88\x01\x01\x12$\n\x17solids_volume_unit_cost\x18H \x01(\x01HF\x88\x01\x01\x12Y\n\x12solids_volume_unit\x18I \x01(\x0e\x32\x38.dlubal.api.rfem.structure_core.MaterialSolidsVolumeUnitHG\x88\x01\x01\x12#\n\x16solids_volume_quantity\x18J \x01(\x01HH\x88\x01\x01\x12\x1f\n\x12solids_volume_cost\x18K \x01(\x01HI\x88\x01\x01\x12\x1f\n\x12solids_area_active\x18L \x01(\x08HJ\x88\x01\x01\x12\"\n\x15solids_area_unit_cost\x18M \x01(\x01HK\x88\x01\x01\x12U\n\x10solids_area_unit\x18N \x01(\x0e\x32\x36.dlubal.api.rfem.structure_core.MaterialSolidsAreaUnitHL\x88\x01\x01\x12!\n\x14solids_area_quantity\x18O \x01(\x01HM\x88\x01\x01\x12\x1d\n\x10solids_area_cost\x18P \x01(\x01HN\x88\x01\x01\x12\x17\n\nsum_weight\x18Q \x01(\x01HO\x88\x01\x01\x12\x1e\n\x11weight_percentage\x18R \x01(\x01HP\x88\x01\x01\x12\x1c\n\x0f\x63ost_percentage\x18S \x01(\x01HQ\x88\x01\x01\x12\x15\n\x08sum_cost\x18T \x01(\x01HR\x88\x01\x01\x12\x17\n\ntotal_cost\x18U \x01(\x01HS\x88\x01\x01\x12,\n\x1f\x65missions_members_weight_active\x18V \x01(\x08HT\x88\x01\x01\x12\x33\n&emissions_members_weight_unit_emission\x18W \x01(\x01HU\x88\x01\x01\x12n\n\x1d\x65missions_members_weight_unit\x18X \x01(\x0e\x32\x42.dlubal.api.rfem.structure_core.MaterialEmissionsMembersWeightUnitHV\x88\x01\x01\x12.\n!emissions_members_weight_quantity\x18Y \x01(\x01HW\x88\x01\x01\x12.\n!emissions_members_weight_emission\x18Z \x01(\x01HX\x88\x01\x01\x12,\n\x1f\x65missions_members_volume_active\x18[ \x01(\x08HY\x88\x01\x01\x12\x33\n&emissions_members_volume_unit_emission\x18\\ \x01(\x01HZ\x88\x01\x01\x12n\n\x1d\x65missions_members_volume_unit\x18] \x01(\x0e\x32\x42.dlubal.api.rfem.structure_core.MaterialEmissionsMembersVolumeUnitH[\x88\x01\x01\x12.\n!emissions_members_volume_quantity\x18^ \x01(\x01H\\\x88\x01\x01\x12.\n!emissions_members_volume_emission\x18_ \x01(\x01H]\x88\x01\x01\x12-\n emissions_members_surface_active\x18` \x01(\x08H^\x88\x01\x01\x12\x34\n\'emissions_members_surface_unit_emission\x18\x61 \x01(\x01H_\x88\x01\x01\x12p\n\x1e\x65missions_members_surface_unit\x18\x62 \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.MaterialEmissionsMembersSurfaceUnitH`\x88\x01\x01\x12/\n\"emissions_members_surface_quantity\x18\x63 \x01(\x01Ha\x88\x01\x01\x12/\n\"emissions_members_surface_emission\x18\x64 \x01(\x01Hb\x88\x01\x01\x12-\n emissions_surfaces_weight_active\x18\x65 \x01(\x08Hc\x88\x01\x01\x12\x34\n\'emissions_surfaces_weight_unit_emission\x18\x66 \x01(\x01Hd\x88\x01\x01\x12p\n\x1e\x65missions_surfaces_weight_unit\x18g \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.MaterialEmissionsSurfacesWeightUnitHe\x88\x01\x01\x12/\n\"emissions_surfaces_weight_quantity\x18h \x01(\x01Hf\x88\x01\x01\x12/\n\"emissions_surfaces_weight_emission\x18i \x01(\x01Hg\x88\x01\x01\x12-\n emissions_surfaces_volume_active\x18j \x01(\x08Hh\x88\x01\x01\x12\x34\n\'emissions_surfaces_volume_unit_emission\x18k \x01(\x01Hi\x88\x01\x01\x12p\n\x1e\x65missions_surfaces_volume_unit\x18l \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.MaterialEmissionsSurfacesVolumeUnitHj\x88\x01\x01\x12/\n\"emissions_surfaces_volume_quantity\x18m \x01(\x01Hk\x88\x01\x01\x12/\n\"emissions_surfaces_volume_emission\x18n \x01(\x01Hl\x88\x01\x01\x12/\n\"emissions_surfaces_top_face_active\x18o \x01(\x08Hm\x88\x01\x01\x12\x36\n)emissions_surfaces_top_face_unit_emission\x18p \x01(\x01Hn\x88\x01\x01\x12s\n emissions_surfaces_top_face_unit\x18q \x01(\x0e\x32\x44.dlubal.api.rfem.structure_core.MaterialEmissionsSurfacesTopFaceUnitHo\x88\x01\x01\x12\x31\n$emissions_surfaces_top_face_quantity\x18r \x01(\x01Hp\x88\x01\x01\x12\x31\n$emissions_surfaces_top_face_emission\x18s \x01(\x01Hq\x88\x01\x01\x12+\n\x1e\x65missions_surfaces_area_active\x18t \x01(\x08Hr\x88\x01\x01\x12\x32\n%emissions_surfaces_area_unit_emission\x18u \x01(\x01Hs\x88\x01\x01\x12l\n\x1c\x65missions_surfaces_area_unit\x18v \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.MaterialEmissionsSurfacesAreaUnitHt\x88\x01\x01\x12-\n emissions_surfaces_area_quantity\x18w \x01(\x01Hu\x88\x01\x01\x12-\n emissions_surfaces_area_emission\x18x \x01(\x01Hv\x88\x01\x01\x12\x32\n%emissions_surfaces_bottom_face_active\x18y \x01(\x08Hw\x88\x01\x01\x12\x39\n,emissions_surfaces_bottom_face_unit_emission\x18z \x01(\x01Hx\x88\x01\x01\x12y\n#emissions_surfaces_bottom_face_unit\x18{ \x01(\x0e\x32G.dlubal.api.rfem.structure_core.MaterialEmissionsSurfacesBottomFaceUnitHy\x88\x01\x01\x12\x34\n\'emissions_surfaces_bottom_face_quantity\x18| \x01(\x01Hz\x88\x01\x01\x12\x34\n\'emissions_surfaces_bottom_face_emission\x18} \x01(\x01H{\x88\x01\x01\x12+\n\x1e\x65missions_solids_weight_active\x18~ \x01(\x08H|\x88\x01\x01\x12\x32\n%emissions_solids_weight_unit_emission\x18\x7f \x01(\x01H}\x88\x01\x01\x12m\n\x1c\x65missions_solids_weight_unit\x18\x80\x01 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.MaterialEmissionsSolidsWeightUnitH~\x88\x01\x01\x12.\n emissions_solids_weight_quantity\x18\x81\x01 \x01(\x01H\x7f\x88\x01\x01\x12/\n emissions_solids_weight_emission\x18\x82\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12-\n\x1e\x65missions_solids_volume_active\x18\x83\x01 \x01(\x08H\x81\x01\x88\x01\x01\x12\x34\n%emissions_solids_volume_unit_emission\x18\x84\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12n\n\x1c\x65missions_solids_volume_unit\x18\x85\x01 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.MaterialEmissionsSolidsVolumeUnitH\x83\x01\x88\x01\x01\x12/\n emissions_solids_volume_quantity\x18\x86\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12/\n emissions_solids_volume_emission\x18\x87\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12+\n\x1c\x65missions_solids_area_active\x18\x88\x01 \x01(\x08H\x86\x01\x88\x01\x01\x12\x32\n#emissions_solids_area_unit_emission\x18\x89\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12j\n\x1a\x65missions_solids_area_unit\x18\x8a\x01 \x01(\x0e\x32?.dlubal.api.rfem.structure_core.MaterialEmissionsSolidsAreaUnitH\x88\x01\x88\x01\x01\x12-\n\x1e\x65missions_solids_area_quantity\x18\x8b\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12-\n\x1e\x65missions_solids_area_emission\x18\x8c\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12#\n\x14\x65missions_percentage\x18\x8d\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12\x1c\n\remissions_sum\x18\x8e\x01 \x01(\x01H\x8c\x01\x88\x01\x01\x12\x1e\n\x0f\x65missions_total\x18\x8f\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12w\n!use_of_material_model_orientation\x18\x90\x01 \x01(\x0e\x32\x45.dlubal.api.rfem.structure_core.MaterialUseOfMaterialModelOrientationH\x8e\x01\x88\x01\x01\x12s\n\x1fuse_of_material_model_alignment\x18\x91\x01 \x01(\x0e\x32\x43.dlubal.api.rfem.structure_core.MaterialUseOfMaterialModelAlignmentH\x8f\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\x92\x01 \x01(\tH\x90\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\x93\x01 \x01(\tH\x91\x01\x88\x01\x01\x42\x10\n\x0e_material_typeB\x11\n\x0f_material_modelB\x16\n\x14_application_contextB\x0f\n\r_diagram_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0f\n\r_user_definedB\x12\n\x10_definition_typeB\x1c\n\x1a_stress_failure_hypothesisB\x1b\n\x19_is_temperature_dependentB\x1d\n\x1b_is_dynamic_increase_factorB\x16\n\x14_has_cost_estimationB\x0f\n\r_optimizationB\x1b\n\x19_has_emissions_estimationB\x18\n\x16_reference_temperatureB \n\x1e_temperature_properties_sortedB\x0e\n\x0c_temperatureB\x1c\n\x1a_stiffness_matrix_editableB\x19\n\x17_stiffness_modificationB\x1e\n\x1c_stiffness_modification_typeB-\n+_has_linear_elastic_with_nonlinear_criteriaB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x18\n\x16_members_weight_activeB\x1b\n\x19_members_weight_unit_costB\x16\n\x14_members_weight_unitB\x1a\n\x18_members_weight_quantityB\x16\n\x14_members_weight_costB\x18\n\x16_members_volume_activeB\x1b\n\x19_members_volume_unit_costB\x16\n\x14_members_volume_unitB\x1a\n\x18_members_volume_quantityB\x16\n\x14_members_volume_costB\x19\n\x17_members_surface_activeB\x1c\n\x1a_members_surface_unit_costB\x17\n\x15_members_surface_unitB\x1b\n\x19_members_surface_quantityB\x17\n\x15_members_surface_costB\x19\n\x17_surfaces_weight_activeB\x1c\n\x1a_surfaces_weight_unit_costB\x17\n\x15_surfaces_weight_unitB\x1b\n\x19_surfaces_weight_quantityB\x17\n\x15_surfaces_weight_costB\x19\n\x17_surfaces_volume_activeB\x1c\n\x1a_surfaces_volume_unit_costB\x17\n\x15_surfaces_volume_unitB\x1b\n\x19_surfaces_volume_quantityB\x17\n\x15_surfaces_volume_costB\x1b\n\x19_surfaces_top_face_activeB\x1e\n\x1c_surfaces_top_face_unit_costB\x19\n\x17_surfaces_top_face_unitB\x1d\n\x1b_surfaces_top_face_quantityB\x19\n\x17_surfaces_top_face_costB\x17\n\x15_surfaces_area_activeB\x1a\n\x18_surfaces_area_unit_costB\x15\n\x13_surfaces_area_unitB\x19\n\x17_surfaces_area_quantityB\x15\n\x13_surfaces_area_costB\x1e\n\x1c_surfaces_bottom_face_activeB!\n\x1f_surfaces_bottom_face_unit_costB\x1c\n\x1a_surfaces_bottom_face_unitB \n\x1e_surfaces_bottom_face_quantityB\x1c\n\x1a_surfaces_bottom_face_costB\x17\n\x15_solids_weight_activeB\x1a\n\x18_solids_weight_unit_costB\x15\n\x13_solids_weight_unitB\x19\n\x17_solids_weight_quantityB\x15\n\x13_solids_weight_costB\x17\n\x15_solids_volume_activeB\x1a\n\x18_solids_volume_unit_costB\x15\n\x13_solids_volume_unitB\x19\n\x17_solids_volume_quantityB\x15\n\x13_solids_volume_costB\x15\n\x13_solids_area_activeB\x18\n\x16_solids_area_unit_costB\x13\n\x11_solids_area_unitB\x17\n\x15_solids_area_quantityB\x13\n\x11_solids_area_costB\r\n\x0b_sum_weightB\x14\n\x12_weight_percentageB\x12\n\x10_cost_percentageB\x0b\n\t_sum_costB\r\n\x0b_total_costB\"\n _emissions_members_weight_activeB)\n\'_emissions_members_weight_unit_emissionB \n\x1e_emissions_members_weight_unitB$\n\"_emissions_members_weight_quantityB$\n\"_emissions_members_weight_emissionB\"\n _emissions_members_volume_activeB)\n\'_emissions_members_volume_unit_emissionB \n\x1e_emissions_members_volume_unitB$\n\"_emissions_members_volume_quantityB$\n\"_emissions_members_volume_emissionB#\n!_emissions_members_surface_activeB*\n(_emissions_members_surface_unit_emissionB!\n\x1f_emissions_members_surface_unitB%\n#_emissions_members_surface_quantityB%\n#_emissions_members_surface_emissionB#\n!_emissions_surfaces_weight_activeB*\n(_emissions_surfaces_weight_unit_emissionB!\n\x1f_emissions_surfaces_weight_unitB%\n#_emissions_surfaces_weight_quantityB%\n#_emissions_surfaces_weight_emissionB#\n!_emissions_surfaces_volume_activeB*\n(_emissions_surfaces_volume_unit_emissionB!\n\x1f_emissions_surfaces_volume_unitB%\n#_emissions_surfaces_volume_quantityB%\n#_emissions_surfaces_volume_emissionB%\n#_emissions_surfaces_top_face_activeB,\n*_emissions_surfaces_top_face_unit_emissionB#\n!_emissions_surfaces_top_face_unitB\'\n%_emissions_surfaces_top_face_quantityB\'\n%_emissions_surfaces_top_face_emissionB!\n\x1f_emissions_surfaces_area_activeB(\n&_emissions_surfaces_area_unit_emissionB\x1f\n\x1d_emissions_surfaces_area_unitB#\n!_emissions_surfaces_area_quantityB#\n!_emissions_surfaces_area_emissionB(\n&_emissions_surfaces_bottom_face_activeB/\n-_emissions_surfaces_bottom_face_unit_emissionB&\n$_emissions_surfaces_bottom_face_unitB*\n(_emissions_surfaces_bottom_face_quantityB*\n(_emissions_surfaces_bottom_face_emissionB!\n\x1f_emissions_solids_weight_activeB(\n&_emissions_solids_weight_unit_emissionB\x1f\n\x1d_emissions_solids_weight_unitB#\n!_emissions_solids_weight_quantityB#\n!_emissions_solids_weight_emissionB!\n\x1f_emissions_solids_volume_activeB(\n&_emissions_solids_volume_unit_emissionB\x1f\n\x1d_emissions_solids_volume_unitB#\n!_emissions_solids_volume_quantityB#\n!_emissions_solids_volume_emissionB\x1f\n\x1d_emissions_solids_area_activeB&\n$_emissions_solids_area_unit_emissionB\x1d\n\x1b_emissions_solids_area_unitB!\n\x1f_emissions_solids_area_quantityB!\n\x1f_emissions_solids_area_emissionB\x17\n\x15_emissions_percentageB\x10\n\x0e_emissions_sumB\x12\n\x10_emissions_totalB$\n\"_use_of_material_model_orientationB\"\n _use_of_material_model_alignmentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x1c\n\x1a\x41rrayOfMaterialTemperature*\xed\x04\n\x14MaterialMaterialType\x12 \n\x1cMATERIAL_MATERIAL_TYPE_BASIC\x10\x00\x12#\n\x1fMATERIAL_MATERIAL_TYPE_ALUMINUM\x10\x04\x12#\n\x1fMATERIAL_MATERIAL_TYPE_CONCRETE\x10\x01\x12!\n\x1dMATERIAL_MATERIAL_TYPE_FABRIC\x10\x0c\x12)\n%MATERIAL_MATERIAL_TYPE_FIBER_CONCRETE\x10\r\x12\x1f\n\x1bMATERIAL_MATERIAL_TYPE_FOIL\x10\x07\x12\x1e\n\x1aMATERIAL_MATERIAL_TYPE_GAS\x10\x08\x12 \n\x1cMATERIAL_MATERIAL_TYPE_GLASS\x10\x06\x12\"\n\x1eMATERIAL_MATERIAL_TYPE_MASONRY\x10\x05\x12 \n\x1cMATERIAL_MATERIAL_TYPE_METAL\x10\x02\x12-\n)MATERIAL_MATERIAL_TYPE_PRESTRESSING_STEEL\x10\x0f\x12,\n(MATERIAL_MATERIAL_TYPE_REINFORCING_STEEL\x10\t\x12\x1f\n\x1bMATERIAL_MATERIAL_TYPE_SOIL\x10\x0b\x12 \n\x1cMATERIAL_MATERIAL_TYPE_STEEL\x10\n\x12!\n\x1dMATERIAL_MATERIAL_TYPE_TIMBER\x10\x03\x12/\n+MATERIAL_MATERIAL_TYPE_VIRTUAL_JOIST_GIRDER\x10\x0e*\xdb\n\n\x15MaterialMaterialModel\x12:\n6MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_LINEAR_ELASTIC\x10\x00\x12^\nZMATERIAL_MATERIAL_MODEL_E_MATERIAL_MODEL_ISOTROPIC_SOIL_PLASTIC_MODIFIED_HARDENING_SOIL_3D\x10\x13\x12\x34\n0MATERIAL_MATERIAL_MODEL_MODEL_ANISOTROPIC_DAMAGE\x10\x12\x12\x38\n4MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_DAMAGE_2D_3D\x10\n\x12>\n:MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_MASONRY_PLASTIC_2D\x10\t\x12@\n<MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_NONLINEAR_ELASTIC_1D\x10\x03\x12\x43\n?MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_NONLINEAR_ELASTIC_2D_3D\x10\x04\x12\x36\n2MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_PLASTIC_1D\x10\x01\x12\x39\n5MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_PLASTIC_2D_3D\x10\x02\x12\x46\nBMATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_ROCK_PLASTIC_HOEK_BROWN_3D\x10\x10\x12\x45\nAMATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_SOIL_NONLINEAR_ELASTIC_3D\x10\x0f\x12;\n7MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_SOIL_PLASTIC_3D\x10\x0e\x12\x44\n@MATERIAL_MATERIAL_MODEL_MODEL_ISOTROPIC_TIMBER_LINEAR_ELASTIC_1D\x10\x0c\x12\x30\n,MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_2D\x10\x05\x12\x30\n,MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_3D\x10\x06\x12I\nEMATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_FABRIC_NONLINEAR_ELASTIC_2D\x10\x14\x12@\n<MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_MASONRY_PLASTIC_2D\x10\x0b\x12\x38\n4MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_PLASTIC_2D\x10\x07\x12\x38\n4MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_PLASTIC_3D\x10\x08\x12\x46\nBMATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_TIMBER_LINEAR_ELASTIC_2D\x10\r\x12=\n9MATERIAL_MATERIAL_MODEL_MODEL_ORTHOTROPIC_WELD_PLASTIC_2D\x10\x11*\xab\x07\n\x1aMaterialApplicationContext\x12(\n$MATERIAL_APPLICATION_CONTEXT_INVALID\x10\x00\x12\x30\n,MATERIAL_APPLICATION_CONTEXT_ALUMINUM_DESIGN\x10\x01\x12\x33\n/MATERIAL_APPLICATION_CONTEXT_COMBINATION_WIZARD\x10\x02\x12\x30\n,MATERIAL_APPLICATION_CONTEXT_CONCRETE_DESIGN\x10\x03\x12;\n7MATERIAL_APPLICATION_CONTEXT_CONCRETE_FOUNDATION_DESIGN\x10\x04\x12\x30\n,MATERIAL_APPLICATION_CONTEXT_CRANEWAY_DESIGN\x10\x11\x12\x31\n-MATERIAL_APPLICATION_CONTEXT_DYNAMIC_ANALYSIS\x10\t\x12\x36\n2MATERIAL_APPLICATION_CONTEXT_GEOTECHNICAL_ANALYSIS\x10\n\x12-\n)MATERIAL_APPLICATION_CONTEXT_GLASS_DESIGN\x10\x05\x12,\n(MATERIAL_APPLICATION_CONTEXT_LOAD_WIZARD\x10\x07\x12/\n+MATERIAL_APPLICATION_CONTEXT_MASONRY_DESIGN\x10\x10\x12.\n*MATERIAL_APPLICATION_CONTEXT_PIPING_DESIGN\x10\x08\x12-\n)MATERIAL_APPLICATION_CONTEXT_STEEL_DESIGN\x10\x0b\x12\x39\n5MATERIAL_APPLICATION_CONTEXT_STEEL_DESIGN_COLD_FORMED\x10\x06\x12\x33\n/MATERIAL_APPLICATION_CONTEXT_STEEL_JOINT_DESIGN\x10\x0c\x12.\n*MATERIAL_APPLICATION_CONTEXT_TIMBER_DESIGN\x10\r\x12\x34\n0MATERIAL_APPLICATION_CONTEXT_TIMBER_JOINT_DESIGN\x10\x0e\x12-\n)MATERIAL_APPLICATION_CONTEXT_TOWER_DESIGN\x10\x0f*\x8b\x01\n\x13MaterialDiagramType\x12\x1f\n\x1bMATERIAL_DIAGRAM_TYPE_BASIC\x10\x00\x12\"\n\x1eMATERIAL_DIAGRAM_TYPE_BILINEAR\x10\x01\x12/\n+MATERIAL_DIAGRAM_TYPE_STRESS_STRAIN_DIAGRAM\x10\x02*\xd9\x01\n\x16MaterialDefinitionType\x12\'\n#MATERIAL_DEFINITION_TYPE_DERIVED_NU\x10\x00\x12&\n\"MATERIAL_DEFINITION_TYPE_DERIVED_G\x10\x01\x12&\n\"MATERIAL_DEFINITION_TYPE_E_G_NO_NU\x10\x03\x12#\n\x1fMATERIAL_DEFINITION_TYPE_E_G_NU\x10\x02\x12!\n\x1dMATERIAL_DEFINITION_TYPE_NONE\x10\x04*\x86\x03\n\x1fMaterialStressFailureHypothesis\x12\x30\n,MATERIAL_STRESS_FAILURE_HYPOTHESIS_VON_MISES\x10\x00\x12\x35\n1MATERIAL_STRESS_FAILURE_HYPOTHESIS_DRUCKER_PRAGER\x10\x02\x12\x33\n/MATERIAL_STRESS_FAILURE_HYPOTHESIS_MOHR_COULOMB\x10\x03\x12<\n8MATERIAL_STRESS_FAILURE_HYPOTHESIS_OEDOMETRIC_CONDITIONS\x10\x06\x12X\nTMATERIAL_STRESS_FAILURE_HYPOTHESIS_OEDOMETRIC_CONDITIONS_WITH_SMALL_STRAIN_STIFFNESS\x10\x07\x12-\n)MATERIAL_STRESS_FAILURE_HYPOTHESIS_TRESCA\x10\x01*\x8f\x01\n!MaterialStiffnessModificationType\x12\x31\n-MATERIAL_STIFFNESS_MODIFICATION_TYPE_DIVISION\x10\x00\x12\x37\n3MATERIAL_STIFFNESS_MODIFICATION_TYPE_MULTIPLICATION\x10\x01*\x97\x03\n\x19MaterialMembersWeightUnit\x12(\n$MATERIAL_MEMBERS_WEIGHT_UNIT_UNKNOWN\x10\x00\x12%\n!MATERIAL_MEMBERS_WEIGHT_UNIT_GRAM\x10\x1d\x12.\n*MATERIAL_MEMBERS_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12)\n%MATERIAL_MEMBERS_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12+\n\'MATERIAL_MEMBERS_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12&\n\"MATERIAL_MEMBERS_WEIGHT_UNIT_OUNCE\x10#\x12&\n\"MATERIAL_MEMBERS_WEIGHT_UNIT_POUND\x10!\x12*\n&MATERIAL_MEMBERS_WEIGHT_UNIT_SHORT_TON\x10$\x12%\n!MATERIAL_MEMBERS_WEIGHT_UNIT_SLUG\x10\"*\xe9\x04\n\x19MaterialMembersVolumeUnit\x12(\n$MATERIAL_MEMBERS_VOLUME_UNIT_UNKNOWN\x10\x00\x12\x31\n-MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12+\n\'MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_FOOT\x10*\x12+\n\'MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_INCH\x10)\x12,\n(MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_METER\x10%\x12\x30\n,MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12+\n\'MATERIAL_MEMBERS_VOLUME_UNIT_CUBIC_YARD\x10+\x12,\n(MATERIAL_MEMBERS_VOLUME_UNIT_FLUID_OUNCE\x10,\x12\x30\n,MATERIAL_MEMBERS_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12&\n\"MATERIAL_MEMBERS_VOLUME_UNIT_LITER\x10\x30\x12%\n!MATERIAL_MEMBERS_VOLUME_UNIT_PINT\x10-\x12&\n\"MATERIAL_MEMBERS_VOLUME_UNIT_QUART\x10.\x12\x31\n-MATERIAL_MEMBERS_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\xf3\x02\n\x1aMaterialMembersSurfaceUnit\x12)\n%MATERIAL_MEMBERS_SURFACE_UNIT_UNKNOWN\x10\x00\x12\x34\n0MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12.\n*MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_FOOT\x10\x0b\x12.\n*MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_INCH\x10\n\x12/\n+MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_METER\x10\x07\x12\x33\n/MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_MILIMETER\x10\t\x12.\n*MATERIAL_MEMBERS_SURFACE_UNIT_SQUARED_YARD\x10\x0c*\xa1\x03\n\x1aMaterialSurfacesWeightUnit\x12)\n%MATERIAL_SURFACES_WEIGHT_UNIT_UNKNOWN\x10\x00\x12&\n\"MATERIAL_SURFACES_WEIGHT_UNIT_GRAM\x10\x1d\x12/\n+MATERIAL_SURFACES_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12*\n&MATERIAL_SURFACES_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12,\n(MATERIAL_SURFACES_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12\'\n#MATERIAL_SURFACES_WEIGHT_UNIT_OUNCE\x10#\x12\'\n#MATERIAL_SURFACES_WEIGHT_UNIT_POUND\x10!\x12+\n\'MATERIAL_SURFACES_WEIGHT_UNIT_SHORT_TON\x10$\x12&\n\"MATERIAL_SURFACES_WEIGHT_UNIT_SLUG\x10\"*\xf7\x04\n\x1aMaterialSurfacesVolumeUnit\x12)\n%MATERIAL_SURFACES_VOLUME_UNIT_UNKNOWN\x10\x00\x12\x32\n.MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12,\n(MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_FOOT\x10*\x12,\n(MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_INCH\x10)\x12-\n)MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_METER\x10%\x12\x31\n-MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12,\n(MATERIAL_SURFACES_VOLUME_UNIT_CUBIC_YARD\x10+\x12-\n)MATERIAL_SURFACES_VOLUME_UNIT_FLUID_OUNCE\x10,\x12\x31\n-MATERIAL_SURFACES_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12\'\n#MATERIAL_SURFACES_VOLUME_UNIT_LITER\x10\x30\x12&\n\"MATERIAL_SURFACES_VOLUME_UNIT_PINT\x10-\x12\'\n#MATERIAL_SURFACES_VOLUME_UNIT_QUART\x10.\x12\x32\n.MATERIAL_SURFACES_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\x82\x03\n\x1bMaterialSurfacesTopFaceUnit\x12+\n\'MATERIAL_SURFACES_TOP_FACE_UNIT_UNKNOWN\x10\x00\x12\x36\n2MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12\x30\n,MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_FOOT\x10\x0b\x12\x30\n,MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_INCH\x10\n\x12\x31\n-MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_METER\x10\x07\x12\x35\n1MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_MILIMETER\x10\t\x12\x30\n,MATERIAL_SURFACES_TOP_FACE_UNIT_SQUARED_YARD\x10\x0c*\xe3\x02\n\x18MaterialSurfacesAreaUnit\x12\'\n#MATERIAL_SURFACES_AREA_UNIT_UNKNOWN\x10\x00\x12\x32\n.MATERIAL_SURFACES_AREA_UNIT_SQUARED_CENTIMETER\x10\x08\x12,\n(MATERIAL_SURFACES_AREA_UNIT_SQUARED_FOOT\x10\x0b\x12,\n(MATERIAL_SURFACES_AREA_UNIT_SQUARED_INCH\x10\n\x12-\n)MATERIAL_SURFACES_AREA_UNIT_SQUARED_METER\x10\x07\x12\x31\n-MATERIAL_SURFACES_AREA_UNIT_SQUARED_MILIMETER\x10\t\x12,\n(MATERIAL_SURFACES_AREA_UNIT_SQUARED_YARD\x10\x0c*\x9a\x03\n\x1eMaterialSurfacesBottomFaceUnit\x12.\n*MATERIAL_SURFACES_BOTTOM_FACE_UNIT_UNKNOWN\x10\x00\x12\x39\n5MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12\x33\n/MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_FOOT\x10\x0b\x12\x33\n/MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_INCH\x10\n\x12\x34\n0MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_METER\x10\x07\x12\x38\n4MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_MILIMETER\x10\t\x12\x33\n/MATERIAL_SURFACES_BOTTOM_FACE_UNIT_SQUARED_YARD\x10\x0c*\x8d\x03\n\x18MaterialSolidsWeightUnit\x12\'\n#MATERIAL_SOLIDS_WEIGHT_UNIT_UNKNOWN\x10\x00\x12$\n MATERIAL_SOLIDS_WEIGHT_UNIT_GRAM\x10\x1d\x12-\n)MATERIAL_SOLIDS_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12(\n$MATERIAL_SOLIDS_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12*\n&MATERIAL_SOLIDS_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12%\n!MATERIAL_SOLIDS_WEIGHT_UNIT_OUNCE\x10#\x12%\n!MATERIAL_SOLIDS_WEIGHT_UNIT_POUND\x10!\x12)\n%MATERIAL_SOLIDS_WEIGHT_UNIT_SHORT_TON\x10$\x12$\n MATERIAL_SOLIDS_WEIGHT_UNIT_SLUG\x10\"*\xdb\x04\n\x18MaterialSolidsVolumeUnit\x12\'\n#MATERIAL_SOLIDS_VOLUME_UNIT_UNKNOWN\x10\x00\x12\x30\n,MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12*\n&MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_FOOT\x10*\x12*\n&MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_INCH\x10)\x12+\n\'MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_METER\x10%\x12/\n+MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12*\n&MATERIAL_SOLIDS_VOLUME_UNIT_CUBIC_YARD\x10+\x12+\n\'MATERIAL_SOLIDS_VOLUME_UNIT_FLUID_OUNCE\x10,\x12/\n+MATERIAL_SOLIDS_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12%\n!MATERIAL_SOLIDS_VOLUME_UNIT_LITER\x10\x30\x12$\n MATERIAL_SOLIDS_VOLUME_UNIT_PINT\x10-\x12%\n!MATERIAL_SOLIDS_VOLUME_UNIT_QUART\x10.\x12\x30\n,MATERIAL_SOLIDS_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\xd3\x02\n\x16MaterialSolidsAreaUnit\x12%\n!MATERIAL_SOLIDS_AREA_UNIT_UNKNOWN\x10\x00\x12\x30\n,MATERIAL_SOLIDS_AREA_UNIT_SQUARED_CENTIMETER\x10\x08\x12*\n&MATERIAL_SOLIDS_AREA_UNIT_SQUARED_FOOT\x10\x0b\x12*\n&MATERIAL_SOLIDS_AREA_UNIT_SQUARED_INCH\x10\n\x12+\n\'MATERIAL_SOLIDS_AREA_UNIT_SQUARED_METER\x10\x07\x12/\n+MATERIAL_SOLIDS_AREA_UNIT_SQUARED_MILIMETER\x10\t\x12*\n&MATERIAL_SOLIDS_AREA_UNIT_SQUARED_YARD\x10\x0c*\xfa\x03\n\"MaterialEmissionsMembersWeightUnit\x12\x32\n.MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_UNKNOWN\x10\x00\x12/\n+MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_GRAM\x10\x1d\x12\x38\n4MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12\x33\n/MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12\x35\n1MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12\x30\n,MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_OUNCE\x10#\x12\x30\n,MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_POUND\x10!\x12\x34\n0MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_SHORT_TON\x10$\x12/\n+MATERIAL_EMISSIONS_MEMBERS_WEIGHT_UNIT_SLUG\x10\"*\xf4\x05\n\"MaterialEmissionsMembersVolumeUnit\x12\x32\n.MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_UNKNOWN\x10\x00\x12;\n7MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12\x35\n1MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_FOOT\x10*\x12\x35\n1MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_INCH\x10)\x12\x36\n2MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_METER\x10%\x12:\n6MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12\x35\n1MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_CUBIC_YARD\x10+\x12\x36\n2MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_FLUID_OUNCE\x10,\x12:\n6MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12\x30\n,MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_LITER\x10\x30\x12/\n+MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_PINT\x10-\x12\x30\n,MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_QUART\x10.\x12;\n7MATERIAL_EMISSIONS_MEMBERS_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\xc2\x03\n#MaterialEmissionsMembersSurfaceUnit\x12\x33\n/MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_UNKNOWN\x10\x00\x12>\n:MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12\x38\n4MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_FOOT\x10\x0b\x12\x38\n4MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_INCH\x10\n\x12\x39\n5MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_METER\x10\x07\x12=\n9MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_MILIMETER\x10\t\x12\x38\n4MATERIAL_EMISSIONS_MEMBERS_SURFACE_UNIT_SQUARED_YARD\x10\x0c*\x84\x04\n#MaterialEmissionsSurfacesWeightUnit\x12\x33\n/MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_UNKNOWN\x10\x00\x12\x30\n,MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_GRAM\x10\x1d\x12\x39\n5MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12\x34\n0MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12\x31\n-MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_OUNCE\x10#\x12\x31\n-MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_POUND\x10!\x12\x35\n1MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_SHORT_TON\x10$\x12\x30\n,MATERIAL_EMISSIONS_SURFACES_WEIGHT_UNIT_SLUG\x10\"*\x82\x06\n#MaterialEmissionsSurfacesVolumeUnit\x12\x33\n/MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_UNKNOWN\x10\x00\x12<\n8MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_FOOT\x10*\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_INCH\x10)\x12\x37\n3MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_METER\x10%\x12;\n7MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_CUBIC_YARD\x10+\x12\x37\n3MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_FLUID_OUNCE\x10,\x12;\n7MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12\x31\n-MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_LITER\x10\x30\x12\x30\n,MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_PINT\x10-\x12\x31\n-MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_QUART\x10.\x12<\n8MATERIAL_EMISSIONS_SURFACES_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\xd1\x03\n$MaterialEmissionsSurfacesTopFaceUnit\x12\x35\n1MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_UNKNOWN\x10\x00\x12@\n<MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12:\n6MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_FOOT\x10\x0b\x12:\n6MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_INCH\x10\n\x12;\n7MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_METER\x10\x07\x12?\n;MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_MILIMETER\x10\t\x12:\n6MATERIAL_EMISSIONS_SURFACES_TOP_FACE_UNIT_SQUARED_YARD\x10\x0c*\xb2\x03\n!MaterialEmissionsSurfacesAreaUnit\x12\x31\n-MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_UNKNOWN\x10\x00\x12<\n8MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_CENTIMETER\x10\x08\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_FOOT\x10\x0b\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_INCH\x10\n\x12\x37\n3MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_METER\x10\x07\x12;\n7MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_MILIMETER\x10\t\x12\x36\n2MATERIAL_EMISSIONS_SURFACES_AREA_UNIT_SQUARED_YARD\x10\x0c*\xe9\x03\n\'MaterialEmissionsSurfacesBottomFaceUnit\x12\x38\n4MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_UNKNOWN\x10\x00\x12\x43\n?MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_CENTIMETER\x10\x08\x12=\n9MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_FOOT\x10\x0b\x12=\n9MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_INCH\x10\n\x12>\n:MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_METER\x10\x07\x12\x42\n>MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_MILIMETER\x10\t\x12=\n9MATERIAL_EMISSIONS_SURFACES_BOTTOM_FACE_UNIT_SQUARED_YARD\x10\x0c*\xf0\x03\n!MaterialEmissionsSolidsWeightUnit\x12\x31\n-MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_UNKNOWN\x10\x00\x12.\n*MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_GRAM\x10\x1d\x12\x37\n3MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_HUNDREDWEIGHT\x10 \x12\x32\n.MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_KILOGRAM\x10\x1e\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_METRIC_TON\x10\x1f\x12/\n+MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_OUNCE\x10#\x12/\n+MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_POUND\x10!\x12\x33\n/MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_SHORT_TON\x10$\x12.\n*MATERIAL_EMISSIONS_SOLIDS_WEIGHT_UNIT_SLUG\x10\"*\xe6\x05\n!MaterialEmissionsSolidsVolumeUnit\x12\x31\n-MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_UNKNOWN\x10\x00\x12:\n6MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_CENTIMETER\x10&\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_FOOT\x10*\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_INCH\x10)\x12\x35\n1MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_METER\x10%\x12\x39\n5MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_MILIMETER\x10\'\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_CUBIC_YARD\x10+\x12\x35\n1MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_FLUID_OUNCE\x10,\x12\x39\n5MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_IMPERIAL_GALLON\x10(\x12/\n+MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_LITER\x10\x30\x12.\n*MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_PINT\x10-\x12/\n+MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_QUART\x10.\x12:\n6MATERIAL_EMISSIONS_SOLIDS_VOLUME_UNIT_US_LIQUID_GALLON\x10/*\xa2\x03\n\x1fMaterialEmissionsSolidsAreaUnit\x12/\n+MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_UNKNOWN\x10\x00\x12:\n6MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_CENTIMETER\x10\x08\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_FOOT\x10\x0b\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_INCH\x10\n\x12\x35\n1MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_METER\x10\x07\x12\x39\n5MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_MILIMETER\x10\t\x12\x34\n0MATERIAL_EMISSIONS_SOLIDS_AREA_UNIT_SQUARED_YARD\x10\x0c*\x9e\x01\n%MaterialUseOfMaterialModelOrientation\x12\x37\n3MATERIAL_USE_OF_MATERIAL_MODEL_ORIENTATION_PARALLEL\x10\x00\x12<\n8MATERIAL_USE_OF_MATERIAL_MODEL_ORIENTATION_PERPENDICULAR\x10\x01*\x93\x01\n#MaterialUseOfMaterialModelAlignment\x12\x35\n1MATERIAL_USE_OF_MATERIAL_MODEL_ALIGNMENT_EDGEWISE\x10\x00\x12\x35\n1MATERIAL_USE_OF_MATERIAL_MODEL_ALIGNMENT_FLATWISE\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.material_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_MATERIALMATERIALTYPE']._serialized_start=12530
35
+ _globals['_MATERIALMATERIALTYPE']._serialized_end=13151
36
+ _globals['_MATERIALMATERIALMODEL']._serialized_start=13154
37
+ _globals['_MATERIALMATERIALMODEL']._serialized_end=14525
38
+ _globals['_MATERIALAPPLICATIONCONTEXT']._serialized_start=14528
39
+ _globals['_MATERIALAPPLICATIONCONTEXT']._serialized_end=15467
40
+ _globals['_MATERIALDIAGRAMTYPE']._serialized_start=15470
41
+ _globals['_MATERIALDIAGRAMTYPE']._serialized_end=15609
42
+ _globals['_MATERIALDEFINITIONTYPE']._serialized_start=15612
43
+ _globals['_MATERIALDEFINITIONTYPE']._serialized_end=15829
44
+ _globals['_MATERIALSTRESSFAILUREHYPOTHESIS']._serialized_start=15832
45
+ _globals['_MATERIALSTRESSFAILUREHYPOTHESIS']._serialized_end=16222
46
+ _globals['_MATERIALSTIFFNESSMODIFICATIONTYPE']._serialized_start=16225
47
+ _globals['_MATERIALSTIFFNESSMODIFICATIONTYPE']._serialized_end=16368
48
+ _globals['_MATERIALMEMBERSWEIGHTUNIT']._serialized_start=16371
49
+ _globals['_MATERIALMEMBERSWEIGHTUNIT']._serialized_end=16778
50
+ _globals['_MATERIALMEMBERSVOLUMEUNIT']._serialized_start=16781
51
+ _globals['_MATERIALMEMBERSVOLUMEUNIT']._serialized_end=17398
52
+ _globals['_MATERIALMEMBERSSURFACEUNIT']._serialized_start=17401
53
+ _globals['_MATERIALMEMBERSSURFACEUNIT']._serialized_end=17772
54
+ _globals['_MATERIALSURFACESWEIGHTUNIT']._serialized_start=17775
55
+ _globals['_MATERIALSURFACESWEIGHTUNIT']._serialized_end=18192
56
+ _globals['_MATERIALSURFACESVOLUMEUNIT']._serialized_start=18195
57
+ _globals['_MATERIALSURFACESVOLUMEUNIT']._serialized_end=18826
58
+ _globals['_MATERIALSURFACESTOPFACEUNIT']._serialized_start=18829
59
+ _globals['_MATERIALSURFACESTOPFACEUNIT']._serialized_end=19215
60
+ _globals['_MATERIALSURFACESAREAUNIT']._serialized_start=19218
61
+ _globals['_MATERIALSURFACESAREAUNIT']._serialized_end=19573
62
+ _globals['_MATERIALSURFACESBOTTOMFACEUNIT']._serialized_start=19576
63
+ _globals['_MATERIALSURFACESBOTTOMFACEUNIT']._serialized_end=19986
64
+ _globals['_MATERIALSOLIDSWEIGHTUNIT']._serialized_start=19989
65
+ _globals['_MATERIALSOLIDSWEIGHTUNIT']._serialized_end=20386
66
+ _globals['_MATERIALSOLIDSVOLUMEUNIT']._serialized_start=20389
67
+ _globals['_MATERIALSOLIDSVOLUMEUNIT']._serialized_end=20992
68
+ _globals['_MATERIALSOLIDSAREAUNIT']._serialized_start=20995
69
+ _globals['_MATERIALSOLIDSAREAUNIT']._serialized_end=21334
70
+ _globals['_MATERIALEMISSIONSMEMBERSWEIGHTUNIT']._serialized_start=21337
71
+ _globals['_MATERIALEMISSIONSMEMBERSWEIGHTUNIT']._serialized_end=21843
72
+ _globals['_MATERIALEMISSIONSMEMBERSVOLUMEUNIT']._serialized_start=21846
73
+ _globals['_MATERIALEMISSIONSMEMBERSVOLUMEUNIT']._serialized_end=22602
74
+ _globals['_MATERIALEMISSIONSMEMBERSSURFACEUNIT']._serialized_start=22605
75
+ _globals['_MATERIALEMISSIONSMEMBERSSURFACEUNIT']._serialized_end=23055
76
+ _globals['_MATERIALEMISSIONSSURFACESWEIGHTUNIT']._serialized_start=23058
77
+ _globals['_MATERIALEMISSIONSSURFACESWEIGHTUNIT']._serialized_end=23574
78
+ _globals['_MATERIALEMISSIONSSURFACESVOLUMEUNIT']._serialized_start=23577
79
+ _globals['_MATERIALEMISSIONSSURFACESVOLUMEUNIT']._serialized_end=24347
80
+ _globals['_MATERIALEMISSIONSSURFACESTOPFACEUNIT']._serialized_start=24350
81
+ _globals['_MATERIALEMISSIONSSURFACESTOPFACEUNIT']._serialized_end=24815
82
+ _globals['_MATERIALEMISSIONSSURFACESAREAUNIT']._serialized_start=24818
83
+ _globals['_MATERIALEMISSIONSSURFACESAREAUNIT']._serialized_end=25252
84
+ _globals['_MATERIALEMISSIONSSURFACESBOTTOMFACEUNIT']._serialized_start=25255
85
+ _globals['_MATERIALEMISSIONSSURFACESBOTTOMFACEUNIT']._serialized_end=25744
86
+ _globals['_MATERIALEMISSIONSSOLIDSWEIGHTUNIT']._serialized_start=25747
87
+ _globals['_MATERIALEMISSIONSSOLIDSWEIGHTUNIT']._serialized_end=26243
88
+ _globals['_MATERIALEMISSIONSSOLIDSVOLUMEUNIT']._serialized_start=26246
89
+ _globals['_MATERIALEMISSIONSSOLIDSVOLUMEUNIT']._serialized_end=26988
90
+ _globals['_MATERIALEMISSIONSSOLIDSAREAUNIT']._serialized_start=26991
91
+ _globals['_MATERIALEMISSIONSSOLIDSAREAUNIT']._serialized_end=27409
92
+ _globals['_MATERIALUSEOFMATERIALMODELORIENTATION']._serialized_start=27412
93
+ _globals['_MATERIALUSEOFMATERIALMODELORIENTATION']._serialized_end=27570
94
+ _globals['_MATERIALUSEOFMATERIALMODELALIGNMENT']._serialized_start=27573
95
+ _globals['_MATERIALUSEOFMATERIALMODELALIGNMENT']._serialized_end=27720
96
+ _globals['_MATERIAL']._serialized_start=82
97
+ _globals['_MATERIAL']._serialized_end=12497
98
+ _globals['_ARRAYOFMATERIALTEMPERATURE']._serialized_start=12499
99
+ _globals['_ARRAYOFMATERIALTEMPERATURE']._serialized_end=12527
100
+ # @@protoc_insertion_point(module_scope)