dlubal.api 2.12.1__py3-none-any.whl → 2.12.3__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 (228) hide show
  1. dlubal/api/rfem/__init__.py +8 -6
  2. dlubal/api/rfem/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  3. dlubal/api/rfem/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  4. dlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  5. dlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  6. dlubal/api/rfem/application.py +17 -17
  7. dlubal/api/rfem/base_data_objects/terrain_pb2.py +8 -8
  8. dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +6 -2
  9. dlubal/api/rfem/base_data_pb2.py +69 -69
  10. dlubal/api/rfem/base_data_pb2.pyi +8 -2
  11. dlubal/api/rfem/concrete_design_objects/__init__.py +1 -0
  12. dlubal/api/rfem/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  13. dlubal/api/rfem/concrete_foundations/single_foundation_pb2.py +79 -0
  14. dlubal/api/rfem/digital_twins/__init__.py +1 -0
  15. dlubal/api/rfem/digital_twins/digital_twins/__init__.py +2 -0
  16. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.py +47 -0
  17. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  18. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  19. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  20. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +1 -1
  21. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +2 -2
  22. dlubal/api/rfem/glass_design/glass_composition_model_pb2.py +91 -0
  23. dlubal/api/rfem/guide_objects/visual_object_pb2.py +6 -6
  24. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +10 -2
  25. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  26. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  27. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +13 -13
  28. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +2 -0
  29. dlubal/api/rfem/loading/design_situation_pb2.py +12 -12
  30. dlubal/api/rfem/loading/design_situation_pb2.pyi +28 -2
  31. dlubal/api/rfem/loads/line_load_pb2.py +21 -21
  32. dlubal/api/rfem/loads/line_load_pb2.pyi +10 -2
  33. dlubal/api/rfem/loads/line_set_load_pb2.py +21 -21
  34. dlubal/api/rfem/loads/line_set_load_pb2.pyi +10 -2
  35. dlubal/api/rfem/loads/member_load_pb2.py +41 -41
  36. dlubal/api/rfem/loads/member_load_pb2.pyi +10 -2
  37. dlubal/api/rfem/loads/member_set_load_pb2.py +41 -41
  38. dlubal/api/rfem/loads/member_set_load_pb2.pyi +10 -2
  39. dlubal/api/rfem/loads/surface_load_pb2.py +27 -27
  40. dlubal/api/rfem/loads/surface_load_pb2.pyi +10 -2
  41. dlubal/api/rfem/loads/surface_set_load_pb2.py +27 -27
  42. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +10 -2
  43. dlubal/api/rfem/mesh/mesh_settings_pb2.py +7 -11
  44. dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +18 -76
  45. dlubal/api/rfem/object_type_pb2.py +2 -2
  46. dlubal/api/rfem/object_type_pb2.pyi +8 -0
  47. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/__init__.py +0 -1
  48. dlubal/api/rfem/reinforcement/concrete_durability_pb2.py +68 -0
  49. dlubal/api/rfem/reinforcement/punching_reinforcement_pb2.py +58 -0
  50. dlubal/api/rfem/reinforcement/reinforcement_direction_pb2.py +38 -0
  51. dlubal/api/rfem/reinforcement/surface_reinforcement_pb2.py +84 -0
  52. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/surface_reinforcement_pb2.pyi +183 -165
  53. dlubal/api/rfem/steel_design/steel_boundary_conditions_pb2.py +51 -0
  54. dlubal/api/rfem/steel_design/steel_effective_lengths_pb2.py +117 -0
  55. dlubal/api/rfem/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  56. dlubal/api/rfem/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  57. dlubal/api/rfem/structure_core/line_pb2.py +17 -17
  58. dlubal/api/rfem/structure_core/line_pb2.pyi +2 -0
  59. dlubal/api/rfem/structure_core/member_pb2.py +192 -190
  60. dlubal/api/rfem/structure_core/member_pb2.pyi +20 -2
  61. dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -286
  62. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +20 -2
  63. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -404
  64. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +20 -2
  65. dlubal/api/rfem/structure_core/solid_pb2.py +28 -28
  66. dlubal/api/rfem/structure_core/solid_pb2.pyi +10 -2
  67. dlubal/api/rfem/structure_core/surface_pb2.py +62 -62
  68. dlubal/api/rfem/structure_core/surface_pb2.pyi +14 -2
  69. dlubal/api/rfem/timber_design/timber_effective_lengths_pb2.py +105 -0
  70. dlubal/api/rfem/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  71. dlubal/api/rfem/timber_design/timber_moisture_class_pb2.py +38 -0
  72. dlubal/api/rfem/timber_design/timber_screw_type_pb2.py +38 -0
  73. dlubal/api/rfem/timber_design/timber_service_class_pb2.py +38 -0
  74. dlubal/api/rfem/timber_design/timber_service_conditions_pb2.py +42 -0
  75. dlubal/api/rfem/types_for_lines/line_support_pb2.py +1 -1
  76. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +14 -14
  77. dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
  78. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  79. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
  80. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  81. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
  82. dlubal/api/rsection/application.py +16 -0
  83. dlubal/api/rstab/__init__.py +7 -5
  84. dlubal/api/rstab/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  85. dlubal/api/rstab/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  86. dlubal/api/rstab/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  87. dlubal/api/rstab/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  88. dlubal/api/rstab/application.py +17 -17
  89. dlubal/api/rstab/base_data_objects/terrain_pb2.py +8 -8
  90. dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +6 -2
  91. dlubal/api/rstab/base_data_pb2.py +53 -53
  92. dlubal/api/rstab/base_data_pb2.pyi +8 -2
  93. dlubal/api/rstab/concrete_design_objects/__init__.py +1 -0
  94. dlubal/api/rstab/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  95. dlubal/api/{rfem/types_for_foundations → rstab/concrete_foundations}/single_foundation_pb2.py +12 -12
  96. dlubal/api/rstab/digital_twins/__init__.py +1 -0
  97. dlubal/api/rstab/digital_twins/digital_twins/__init__.py +2 -0
  98. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.py +47 -0
  99. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  100. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  101. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  102. dlubal/api/rstab/guide_objects/visual_object_pb2.py +6 -6
  103. dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +10 -2
  104. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  105. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  106. dlubal/api/rstab/loading/design_situation_pb2.py +12 -12
  107. dlubal/api/rstab/loading/design_situation_pb2.pyi +28 -2
  108. dlubal/api/rstab/loads/member_load_pb2.py +41 -41
  109. dlubal/api/rstab/loads/member_load_pb2.pyi +10 -2
  110. dlubal/api/rstab/loads/member_set_load_pb2.py +41 -41
  111. dlubal/api/rstab/loads/member_set_load_pb2.pyi +10 -2
  112. dlubal/api/rstab/object_type_pb2.py +2 -2
  113. dlubal/api/rstab/object_type_pb2.pyi +8 -0
  114. dlubal/api/rstab/reinforcement/__init__.py +1 -0
  115. dlubal/api/rstab/reinforcement/concrete_durability_pb2.py +68 -0
  116. dlubal/api/rstab/steel_design/steel_boundary_conditions_pb2.py +51 -0
  117. dlubal/api/rstab/steel_design/steel_effective_lengths_pb2.py +117 -0
  118. dlubal/api/rstab/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  119. dlubal/api/rstab/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  120. dlubal/api/rstab/structure_core/member_pb2.py +180 -178
  121. dlubal/api/rstab/structure_core/member_pb2.pyi +20 -2
  122. dlubal/api/rstab/structure_core/member_representative_pb2.py +276 -274
  123. dlubal/api/rstab/structure_core/member_representative_pb2.pyi +20 -2
  124. dlubal/api/rstab/structure_core/member_set_representative_pb2.py +396 -394
  125. dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +20 -2
  126. dlubal/api/rstab/timber_design/timber_effective_lengths_pb2.py +105 -0
  127. dlubal/api/rstab/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  128. dlubal/api/rstab/timber_design/timber_moisture_class_pb2.py +38 -0
  129. dlubal/api/rstab/timber_design/timber_screw_type_pb2.py +38 -0
  130. dlubal/api/rstab/timber_design/timber_service_class_pb2.py +38 -0
  131. dlubal/api/rstab/timber_design/timber_service_conditions_pb2.py +42 -0
  132. dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
  133. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  134. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
  135. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  136. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
  137. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/METADATA +2 -2
  138. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/RECORD +190 -168
  139. examples/rfem/column.py +1 -1
  140. examples/rfem/import_from_ifc.py +3 -3
  141. examples/rstab/column.py +7 -7
  142. examples/rstab/import_from_ifc.py +1 -1
  143. dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  144. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  145. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  146. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  147. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  148. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  149. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -58
  150. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -38
  151. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -80
  152. dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +0 -91
  153. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  154. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  155. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  156. dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  157. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  158. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  159. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  160. dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  161. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -38
  162. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  163. dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  164. dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  165. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  166. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  167. dlubal/api/rstab/types_for_concrete_design/__init__.py +0 -2
  168. dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  169. dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  170. dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +0 -79
  171. dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  172. dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  173. dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  174. dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  175. dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  176. dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  177. dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  178. dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  179. dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +0 -38
  180. dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  181. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  182. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  183. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  184. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  185. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  186. /dlubal/api/rfem/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  187. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  188. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  189. /dlubal/api/rfem/{types_for_glass_design → glass_design}/__init__.py +0 -0
  190. /dlubal/api/rfem/{types_for_glass_design → glass_design}/glass_composition_model_pb2.pyi +0 -0
  191. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  192. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/punching_reinforcement_pb2.pyi +0 -0
  193. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/reinforcement_direction_pb2.pyi +0 -0
  194. /dlubal/api/rfem/{types_for_steel_design → steel_design}/__init__.py +0 -0
  195. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  196. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  197. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  198. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  199. /dlubal/api/rfem/{types_for_timber_design → timber_design}/__init__.py +0 -0
  200. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  201. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  202. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  203. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  204. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  205. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  206. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  207. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  208. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  209. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  210. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  211. /dlubal/api/rstab/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  212. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  213. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  214. /dlubal/api/rstab/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  215. /dlubal/api/rstab/{types_for_steel_design → steel_design}/__init__.py +0 -0
  216. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  217. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  218. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  219. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  220. /dlubal/api/rstab/{types_for_timber_design → timber_design}/__init__.py +0 -0
  221. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  222. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  223. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  224. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  225. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  226. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  227. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/WHEEL +0 -0
  228. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,98 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class SensorValueDefinition(_message.Message):
9
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "value_type_x", "value_x", "symbol_x", "variable_name_x", "unit_x", "decimal_places_x", "value_type_y", "value_y", "symbol_y", "variable_name_y", "unit_y", "decimal_places_y", "warning_limit", "alarm_limit", "unit_for_limits", "decimal_places_for_limits", "determination_of_sensor_status_based_on", "is_generated", "generating_object_info", "comment", "id_for_export_import", "metadata_for_export_import")
10
+ class Type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ TYPE_UNKNOWN: _ClassVar[SensorValueDefinition.Type]
13
+ TYPE_USER_DEFINED_FUNCTION: _ClassVar[SensorValueDefinition.Type]
14
+ TYPE_USER_DEFINED_SINGLE: _ClassVar[SensorValueDefinition.Type]
15
+ TYPE_UNKNOWN: SensorValueDefinition.Type
16
+ TYPE_USER_DEFINED_FUNCTION: SensorValueDefinition.Type
17
+ TYPE_USER_DEFINED_SINGLE: SensorValueDefinition.Type
18
+ class ValueTypeX(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
19
+ __slots__ = ()
20
+ VALUE_TYPE_X_DOUBLE: _ClassVar[SensorValueDefinition.ValueTypeX]
21
+ VALUE_TYPE_X_DATE: _ClassVar[SensorValueDefinition.ValueTypeX]
22
+ VALUE_TYPE_X_DATETIME: _ClassVar[SensorValueDefinition.ValueTypeX]
23
+ VALUE_TYPE_X_STRING: _ClassVar[SensorValueDefinition.ValueTypeX]
24
+ VALUE_TYPE_X_DOUBLE: SensorValueDefinition.ValueTypeX
25
+ VALUE_TYPE_X_DATE: SensorValueDefinition.ValueTypeX
26
+ VALUE_TYPE_X_DATETIME: SensorValueDefinition.ValueTypeX
27
+ VALUE_TYPE_X_STRING: SensorValueDefinition.ValueTypeX
28
+ class ValueTypeY(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
29
+ __slots__ = ()
30
+ VALUE_TYPE_Y_DOUBLE: _ClassVar[SensorValueDefinition.ValueTypeY]
31
+ VALUE_TYPE_Y_DATE: _ClassVar[SensorValueDefinition.ValueTypeY]
32
+ VALUE_TYPE_Y_DATETIME: _ClassVar[SensorValueDefinition.ValueTypeY]
33
+ VALUE_TYPE_Y_STRING: _ClassVar[SensorValueDefinition.ValueTypeY]
34
+ VALUE_TYPE_Y_DOUBLE: SensorValueDefinition.ValueTypeY
35
+ VALUE_TYPE_Y_DATE: SensorValueDefinition.ValueTypeY
36
+ VALUE_TYPE_Y_DATETIME: SensorValueDefinition.ValueTypeY
37
+ VALUE_TYPE_Y_STRING: SensorValueDefinition.ValueTypeY
38
+ class DeterminationOfSensorStatusBasedOn(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
39
+ __slots__ = ()
40
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_MOST_CRITICAL_VALUE: _ClassVar[SensorValueDefinition.DeterminationOfSensorStatusBasedOn]
41
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_COMPARISON: _ClassVar[SensorValueDefinition.DeterminationOfSensorStatusBasedOn]
42
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_LATEST_VALUE: _ClassVar[SensorValueDefinition.DeterminationOfSensorStatusBasedOn]
43
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_MOST_CRITICAL_VALUE: SensorValueDefinition.DeterminationOfSensorStatusBasedOn
44
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_COMPARISON: SensorValueDefinition.DeterminationOfSensorStatusBasedOn
45
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_LATEST_VALUE: SensorValueDefinition.DeterminationOfSensorStatusBasedOn
46
+ NO_FIELD_NUMBER: _ClassVar[int]
47
+ TYPE_FIELD_NUMBER: _ClassVar[int]
48
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
49
+ NAME_FIELD_NUMBER: _ClassVar[int]
50
+ VALUE_TYPE_X_FIELD_NUMBER: _ClassVar[int]
51
+ VALUE_X_FIELD_NUMBER: _ClassVar[int]
52
+ SYMBOL_X_FIELD_NUMBER: _ClassVar[int]
53
+ VARIABLE_NAME_X_FIELD_NUMBER: _ClassVar[int]
54
+ UNIT_X_FIELD_NUMBER: _ClassVar[int]
55
+ DECIMAL_PLACES_X_FIELD_NUMBER: _ClassVar[int]
56
+ VALUE_TYPE_Y_FIELD_NUMBER: _ClassVar[int]
57
+ VALUE_Y_FIELD_NUMBER: _ClassVar[int]
58
+ SYMBOL_Y_FIELD_NUMBER: _ClassVar[int]
59
+ VARIABLE_NAME_Y_FIELD_NUMBER: _ClassVar[int]
60
+ UNIT_Y_FIELD_NUMBER: _ClassVar[int]
61
+ DECIMAL_PLACES_Y_FIELD_NUMBER: _ClassVar[int]
62
+ WARNING_LIMIT_FIELD_NUMBER: _ClassVar[int]
63
+ ALARM_LIMIT_FIELD_NUMBER: _ClassVar[int]
64
+ UNIT_FOR_LIMITS_FIELD_NUMBER: _ClassVar[int]
65
+ DECIMAL_PLACES_FOR_LIMITS_FIELD_NUMBER: _ClassVar[int]
66
+ DETERMINATION_OF_SENSOR_STATUS_BASED_ON_FIELD_NUMBER: _ClassVar[int]
67
+ IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
68
+ GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
69
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
70
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
71
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
72
+ no: int
73
+ type: SensorValueDefinition.Type
74
+ user_defined_name_enabled: bool
75
+ name: str
76
+ value_type_x: SensorValueDefinition.ValueTypeX
77
+ value_x: str
78
+ symbol_x: str
79
+ variable_name_x: str
80
+ unit_x: str
81
+ decimal_places_x: int
82
+ value_type_y: SensorValueDefinition.ValueTypeY
83
+ value_y: str
84
+ symbol_y: str
85
+ variable_name_y: str
86
+ unit_y: str
87
+ decimal_places_y: int
88
+ warning_limit: str
89
+ alarm_limit: str
90
+ unit_for_limits: str
91
+ decimal_places_for_limits: int
92
+ determination_of_sensor_status_based_on: SensorValueDefinition.DeterminationOfSensorStatusBasedOn
93
+ is_generated: bool
94
+ generating_object_info: str
95
+ comment: str
96
+ id_for_export_import: str
97
+ metadata_for_export_import: str
98
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[SensorValueDefinition.Type, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., value_type_x: _Optional[_Union[SensorValueDefinition.ValueTypeX, str]] = ..., value_x: _Optional[str] = ..., symbol_x: _Optional[str] = ..., variable_name_x: _Optional[str] = ..., unit_x: _Optional[str] = ..., decimal_places_x: _Optional[int] = ..., value_type_y: _Optional[_Union[SensorValueDefinition.ValueTypeY, str]] = ..., value_y: _Optional[str] = ..., symbol_y: _Optional[str] = ..., variable_name_y: _Optional[str] = ..., unit_y: _Optional[str] = ..., decimal_places_y: _Optional[int] = ..., warning_limit: _Optional[str] = ..., alarm_limit: _Optional[str] = ..., unit_for_limits: _Optional[str] = ..., decimal_places_for_limits: _Optional[int] = ..., determination_of_sensor_status_based_on: _Optional[_Union[SensorValueDefinition.DeterminationOfSensorStatusBasedOn, str]] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7dlubal/api/rfem/geotechnical_analysis/soil_massif.proto\x12%dlubal.api.rfem.geotechnical_analysis\x1a\x1e\x64lubal/api/common/common.proto\"\xe5\"\n\nSoilMassif\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12I\n\x04type\x18\x02 \x01(\x0e\x32\x36.dlubal.api.rfem.geotechnical_analysis.SoilMassif.TypeH\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12_\n\x10\x61ssigned_to_type\x18\x05 \x01(\x0e\x32@.dlubal.api.rfem.geotechnical_analysis.SoilMassif.AssignedToTypeH\x04\x88\x01\x01\x12\x1d\n\x15\x61ssigned_to_boreholes\x18\x06 \x03(\x05\x12\x1a\n\x12\x61ssigned_to_solids\x18\x07 \x03(\x05\x12\x1e\n\x16\x61ssigned_to_solid_sets\x18\x08 \x03(\x05\x12.\n!assigned_to_solids_and_solid_sets\x18\t \x01(\tH\x05\x88\x01\x01\x12Z\n\rtopology_type\x18\n \x01(\x0e\x32>.dlubal.api.rfem.geotechnical_analysis.SoilMassif.TopologyTypeH\x06\x88\x01\x01\x12)\n\x1c\x64\x65pth_according_to_boreholes\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12)\n\x1c\x64iameter_for_circle_topology\x18\x0c \x01(\x01H\x08\x88\x01\x01\x12+\n#boundary_lines_for_polygon_topology\x18\r \x03(\x05\x12\x8a\x01\n$boundary_points_for_polygon_topology\x18\x0e \x01(\x0b\x32W.dlubal.api.rfem.geotechnical_analysis.SoilMassif.BoundaryPointsForPolygonTopologyTableH\t\x88\x01\x01\x12\x15\n\x08\x63\x65nter_x\x18\x0f \x01(\x01H\n\x88\x01\x01\x12\x15\n\x08\x63\x65nter_y\x18\x10 \x01(\x01H\x0b\x88\x01\x01\x12.\n\x04size\x18\x11 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0c\x88\x01\x01\x12\x13\n\x06size_x\x18\x12 \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06size_y\x18\x13 \x01(\x01H\x0e\x88\x01\x01\x12\x13\n\x06size_z\x18\x14 \x01(\x01H\x0f\x88\x01\x01\x12\x1d\n\x10rotation_about_z\x18\x15 \x01(\x01H\x10\x88\x01\x01\x12\x18\n\x0bgroundwater\x18\x16 \x01(\x08H\x11\x88\x01\x01\x12 \n\x13groundwater_surface\x18\x17 \x01(\x05H\x12\x88\x01\x01\x12Z\n\ranalysis_type\x18\x18 \x01(\x0e\x32>.dlubal.api.rfem.geotechnical_analysis.SoilMassif.AnalysisTypeH\x13\x88\x01\x01\x12\'\n\x1amapped_mesh_under_surfaces\x18\x19 \x01(\x08H\x14\x88\x01\x01\x12 \n\x18surfaces_for_mapped_mesh\x18\x1a \x03(\x05\x12*\n\x1duser_defined_gradient_enabled\x18\x1b \x01(\x08H\x15\x88\x01\x01\x12/\n\"gradient_of_size_increase_in_depth\x18\x1c \x01(\x01H\x16\x88\x01\x01\x12&\n\x1egenerate_supports_for_surfaces\x18\x1d \x03(\x05\x12\x38\n+auto_detect_surfaces_for_generated_supports\x18\x1e \x01(\x08H\x17\x88\x01\x01\x12i\n\x15generate_supports_for\x18\x1f \x01(\x0e\x32\x45.dlubal.api.rfem.geotechnical_analysis.SoilMassif.GenerateSupportsForH\x18\x88\x01\x01\x12+\n\x1e\x63ontact_failure_in_z_direction\x18 \x01(\x08H\x19\x88\x01\x01\x12\x1f\n\x12spring_constant_ux\x18! \x01(\x01H\x1a\x88\x01\x01\x12\x1f\n\x12spring_constant_uy\x18\" \x01(\x01H\x1b\x88\x01\x01\x12u\n\x1c\x64\x65pth_of_influence_zone_type\x18# \x01(\x0e\x32J.dlubal.api.rfem.geotechnical_analysis.SoilMassif.DepthOfInfluenceZoneTypeH\x1c\x88\x01\x01\x12$\n\x17\x64\x65pth_of_influence_zone\x18$ \x01(\x01H\x1d\x88\x01\x01\x12$\n\x17rock_beneath_last_layer\x18% \x01(\x08H\x1e\x88\x01\x01\x12\x33\n&is_interlayer_surface_settings_enabled\x18& \x01(\x08H\x1f\x88\x01\x01\x12(\n\x1bnumber_of_sampling_points_x\x18\' \x01(\x05H \x88\x01\x01\x12(\n\x1bnumber_of_sampling_points_y\x18( \x01(\x05H!\x88\x01\x01\x12&\n\x19solid_layers_by_fe_solids\x18) \x01(\x08H\"\x88\x01\x01\x12q\n\x19settlement_causing_stress\x18* \x01(\x0e\x32I.dlubal.api.rfem.geotechnical_analysis.SoilMassif.SettlementCausingStressH#\x88\x01\x01\x12)\n\x1cstress_ratio_for_limit_depth\x18+ \x01(\x01H$\x88\x01\x01\x12\"\n\x15reduction_coefficient\x18, \x01(\x01H%\x88\x01\x01\x12\x14\n\x07\x63omment\x18- \x01(\tH&\x88\x01\x01\x12!\n\x14id_for_export_import\x18. \x01(\tH\'\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18/ \x01(\tH(\x88\x01\x01\x1a\x8c\x01\n%BoundaryPointsForPolygonTopologyTable\x12\x63\n\x04rows\x18\x01 \x03(\x0b\x32U.dlubal.api.rfem.geotechnical_analysis.SoilMassif.BoundaryPointsForPolygonTopologyRow\x1a\xa9\x01\n#BoundaryPointsForPolygonTopologyRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x0e\n\x01x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x0e\n\x01y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x0e\n\x01z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x04\n\x02_xB\x04\n\x02_yB\x04\n\x02_z\"+\n\x04Type\x12\x10\n\x0cTYPE_PHANTOM\x10\x00\x12\x11\n\rTYPE_STANDARD\x10\x01\"R\n\x0e\x41ssignedToType\x12\x1e\n\x1a\x41SSIGNED_TO_TYPE_BOREHOLES\x10\x00\x12 \n\x1c\x41SSIGNED_TO_TYPE_SOIL_SOLIDS\x10\x01\"\x87\x01\n\x0cTopologyType\x12\x1b\n\x17TOPOLOGY_TYPE_RECTANGLE\x10\x00\x12\x18\n\x14TOPOLOGY_TYPE_CIRCLE\x10\x01\x12\x19\n\x15TOPOLOGY_TYPE_POLYGON\x10\x02\x12%\n!TOPOLOGY_TYPE_POLYGON_FROM_POINTS\x10\x03\"\x90\x01\n\x0c\x41nalysisType\x12\'\n#ANALYSIS_TYPE_FINITE_ELEMENT_METHOD\x10\x00\x12,\n(ANALYSIS_TYPE_CONSTRAINED_MODULUS_METHOD\x10\x02\x12)\n%ANALYSIS_TYPE_SUBGRADE_REACTION_MODEL\x10\x01\"\x93\x01\n\x13GenerateSupportsFor\x12.\n*GENERATE_SUPPORTS_FOR_SURFACES_LINES_NODES\x10\x00\x12\"\n\x1eGENERATE_SUPPORTS_FOR_SURFACES\x10\x02\x12(\n$GENERATE_SUPPORTS_FOR_SURFACES_LINES\x10\x01\"u\n\x18\x44\x65pthOfInfluenceZoneType\x12)\n%DEPTH_OF_INFLUENCE_ZONE_TYPE_MANUALLY\x10\x00\x12.\n*DEPTH_OF_INFLUENCE_ZONE_TYPE_AUTOMATICALLY\x10\x01\"\xad\x01\n\x17SettlementCausingStress\x12*\n&SETTLEMENT_CAUSING_STRESS_NO_REDUCTION\x10\x00\x12.\n*SETTLEMENT_CAUSING_STRESS_REDUCTION_GLOBAL\x10\x02\x12\x36\n2SETTLEMENT_CAUSING_STRESS_REDUCTION_MATERIAL_BASED\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x13\n\x11_assigned_to_typeB$\n\"_assigned_to_solids_and_solid_setsB\x10\n\x0e_topology_typeB\x1f\n\x1d_depth_according_to_boreholesB\x1f\n\x1d_diameter_for_circle_topologyB\'\n%_boundary_points_for_polygon_topologyB\x0b\n\t_center_xB\x0b\n\t_center_yB\x07\n\x05_sizeB\t\n\x07_size_xB\t\n\x07_size_yB\t\n\x07_size_zB\x13\n\x11_rotation_about_zB\x0e\n\x0c_groundwaterB\x16\n\x14_groundwater_surfaceB\x10\n\x0e_analysis_typeB\x1d\n\x1b_mapped_mesh_under_surfacesB \n\x1e_user_defined_gradient_enabledB%\n#_gradient_of_size_increase_in_depthB.\n,_auto_detect_surfaces_for_generated_supportsB\x18\n\x16_generate_supports_forB!\n\x1f_contact_failure_in_z_directionB\x15\n\x13_spring_constant_uxB\x15\n\x13_spring_constant_uyB\x1f\n\x1d_depth_of_influence_zone_typeB\x1a\n\x18_depth_of_influence_zoneB\x1a\n\x18_rock_beneath_last_layerB)\n\'_is_interlayer_surface_settings_enabledB\x1e\n\x1c_number_of_sampling_points_xB\x1e\n\x1c_number_of_sampling_points_yB\x1c\n\x1a_solid_layers_by_fe_solidsB\x1c\n\x1a_settlement_causing_stressB\x1f\n\x1d_stress_ratio_for_limit_depthB\x18\n\x16_reduction_coefficientB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7dlubal/api/rfem/geotechnical_analysis/soil_massif.proto\x12%dlubal.api.rfem.geotechnical_analysis\x1a\x1e\x64lubal/api/common/common.proto\"\xe5\"\n\nSoilMassif\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12I\n\x04type\x18\x02 \x01(\x0e\x32\x36.dlubal.api.rfem.geotechnical_analysis.SoilMassif.TypeH\x01\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x03\x88\x01\x01\x12_\n\x10\x61ssigned_to_type\x18\x05 \x01(\x0e\x32@.dlubal.api.rfem.geotechnical_analysis.SoilMassif.AssignedToTypeH\x04\x88\x01\x01\x12\x1d\n\x15\x61ssigned_to_boreholes\x18\x06 \x03(\x05\x12\x1a\n\x12\x61ssigned_to_solids\x18\x07 \x03(\x05\x12\x1e\n\x16\x61ssigned_to_solid_sets\x18\x08 \x03(\x05\x12.\n!assigned_to_solids_and_solid_sets\x18\t \x01(\tH\x05\x88\x01\x01\x12Z\n\rtopology_type\x18\n \x01(\x0e\x32>.dlubal.api.rfem.geotechnical_analysis.SoilMassif.TopologyTypeH\x06\x88\x01\x01\x12)\n\x1c\x64\x65pth_according_to_boreholes\x18\x0b \x01(\x08H\x07\x88\x01\x01\x12)\n\x1c\x64iameter_for_circle_topology\x18\x0c \x01(\x01H\x08\x88\x01\x01\x12+\n#boundary_lines_for_polygon_topology\x18\r \x03(\x05\x12\x8a\x01\n$boundary_points_for_polygon_topology\x18\x0e \x01(\x0b\x32W.dlubal.api.rfem.geotechnical_analysis.SoilMassif.BoundaryPointsForPolygonTopologyTableH\t\x88\x01\x01\x12\x15\n\x08\x63\x65nter_x\x18\x0f \x01(\x01H\n\x88\x01\x01\x12\x15\n\x08\x63\x65nter_y\x18\x10 \x01(\x01H\x0b\x88\x01\x01\x12.\n\x04size\x18\x11 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0c\x88\x01\x01\x12\x13\n\x06size_x\x18\x12 \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06size_y\x18\x13 \x01(\x01H\x0e\x88\x01\x01\x12\x13\n\x06size_z\x18\x14 \x01(\x01H\x0f\x88\x01\x01\x12\x1d\n\x10rotation_about_z\x18\x15 \x01(\x01H\x10\x88\x01\x01\x12\x18\n\x0bgroundwater\x18\x16 \x01(\x08H\x11\x88\x01\x01\x12 \n\x13groundwater_surface\x18\x17 \x01(\x05H\x12\x88\x01\x01\x12Z\n\ranalysis_type\x18\x18 \x01(\x0e\x32>.dlubal.api.rfem.geotechnical_analysis.SoilMassif.AnalysisTypeH\x13\x88\x01\x01\x12\'\n\x1amapped_mesh_under_surfaces\x18\x19 \x01(\x08H\x14\x88\x01\x01\x12 \n\x18surfaces_for_mapped_mesh\x18\x1a \x03(\x05\x12*\n\x1duser_defined_gradient_enabled\x18\x1b \x01(\x08H\x15\x88\x01\x01\x12/\n\"gradient_of_size_increase_in_depth\x18\x1c \x01(\x01H\x16\x88\x01\x01\x12&\n\x1egenerate_supports_for_surfaces\x18\x1d \x03(\x05\x12\x38\n+auto_detect_surfaces_for_generated_supports\x18\x1e \x01(\x08H\x17\x88\x01\x01\x12i\n\x15generate_supports_for\x18\x1f \x01(\x0e\x32\x45.dlubal.api.rfem.geotechnical_analysis.SoilMassif.GenerateSupportsForH\x18\x88\x01\x01\x12+\n\x1e\x63ontact_failure_in_z_direction\x18 \x01(\x08H\x19\x88\x01\x01\x12\x1f\n\x12spring_constant_ux\x18! \x01(\x01H\x1a\x88\x01\x01\x12\x1f\n\x12spring_constant_uy\x18\" \x01(\x01H\x1b\x88\x01\x01\x12u\n\x1c\x64\x65pth_of_influence_zone_type\x18# \x01(\x0e\x32J.dlubal.api.rfem.geotechnical_analysis.SoilMassif.DepthOfInfluenceZoneTypeH\x1c\x88\x01\x01\x12$\n\x17\x64\x65pth_of_influence_zone\x18$ \x01(\x01H\x1d\x88\x01\x01\x12$\n\x17rock_beneath_last_layer\x18% \x01(\x08H\x1e\x88\x01\x01\x12\x33\n&is_interlayer_surface_settings_enabled\x18& \x01(\x08H\x1f\x88\x01\x01\x12(\n\x1bnumber_of_sampling_points_x\x18\' \x01(\x05H \x88\x01\x01\x12(\n\x1bnumber_of_sampling_points_y\x18( \x01(\x05H!\x88\x01\x01\x12&\n\x19solid_layers_by_fe_solids\x18) \x01(\x08H\"\x88\x01\x01\x12q\n\x19settlement_causing_stress\x18* \x01(\x0e\x32I.dlubal.api.rfem.geotechnical_analysis.SoilMassif.SettlementCausingStressH#\x88\x01\x01\x12)\n\x1cstress_ratio_for_limit_depth\x18+ \x01(\x01H$\x88\x01\x01\x12\"\n\x15reduction_coefficient\x18, \x01(\x01H%\x88\x01\x01\x12\x14\n\x07\x63omment\x18- \x01(\tH&\x88\x01\x01\x12!\n\x14id_for_export_import\x18. \x01(\tH\'\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18/ \x01(\tH(\x88\x01\x01\x1a\x8c\x01\n%BoundaryPointsForPolygonTopologyTable\x12\x63\n\x04rows\x18\x01 \x03(\x0b\x32U.dlubal.api.rfem.geotechnical_analysis.SoilMassif.BoundaryPointsForPolygonTopologyRow\x1a\xa9\x01\n#BoundaryPointsForPolygonTopologyRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x0e\n\x01x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x0e\n\x01y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x0e\n\x01z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x04\n\x02_xB\x04\n\x02_yB\x04\n\x02_z\"+\n\x04Type\x12\x10\n\x0cTYPE_PHANTOM\x10\x00\x12\x11\n\rTYPE_STANDARD\x10\x01\"R\n\x0e\x41ssignedToType\x12\x1e\n\x1a\x41SSIGNED_TO_TYPE_BOREHOLES\x10\x00\x12 \n\x1c\x41SSIGNED_TO_TYPE_SOIL_SOLIDS\x10\x01\"\x87\x01\n\x0cTopologyType\x12\x1b\n\x17TOPOLOGY_TYPE_RECTANGLE\x10\x00\x12\x18\n\x14TOPOLOGY_TYPE_CIRCLE\x10\x01\x12\x19\n\x15TOPOLOGY_TYPE_POLYGON\x10\x02\x12%\n!TOPOLOGY_TYPE_POLYGON_FROM_POINTS\x10\x03\"\x90\x01\n\x0c\x41nalysisType\x12\'\n#ANALYSIS_TYPE_FINITE_ELEMENT_METHOD\x10\x00\x12,\n(ANALYSIS_TYPE_ADVANCED_HALF_SPACE_METHOD\x10\x02\x12)\n%ANALYSIS_TYPE_SUBGRADE_REACTION_MODEL\x10\x01\"\x93\x01\n\x13GenerateSupportsFor\x12.\n*GENERATE_SUPPORTS_FOR_SURFACES_LINES_NODES\x10\x00\x12\"\n\x1eGENERATE_SUPPORTS_FOR_SURFACES\x10\x02\x12(\n$GENERATE_SUPPORTS_FOR_SURFACES_LINES\x10\x01\"u\n\x18\x44\x65pthOfInfluenceZoneType\x12)\n%DEPTH_OF_INFLUENCE_ZONE_TYPE_MANUALLY\x10\x00\x12.\n*DEPTH_OF_INFLUENCE_ZONE_TYPE_AUTOMATICALLY\x10\x01\"\xad\x01\n\x17SettlementCausingStress\x12*\n&SETTLEMENT_CAUSING_STRESS_NO_REDUCTION\x10\x00\x12.\n*SETTLEMENT_CAUSING_STRESS_REDUCTION_GLOBAL\x10\x02\x12\x36\n2SETTLEMENT_CAUSING_STRESS_REDUCTION_MATERIAL_BASED\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x13\n\x11_assigned_to_typeB$\n\"_assigned_to_solids_and_solid_setsB\x10\n\x0e_topology_typeB\x1f\n\x1d_depth_according_to_boreholesB\x1f\n\x1d_diameter_for_circle_topologyB\'\n%_boundary_points_for_polygon_topologyB\x0b\n\t_center_xB\x0b\n\t_center_yB\x07\n\x05_sizeB\t\n\x07_size_xB\t\n\x07_size_yB\t\n\x07_size_zB\x13\n\x11_rotation_about_zB\x0e\n\x0c_groundwaterB\x16\n\x14_groundwater_surfaceB\x10\n\x0e_analysis_typeB\x1d\n\x1b_mapped_mesh_under_surfacesB \n\x1e_user_defined_gradient_enabledB%\n#_gradient_of_size_increase_in_depthB.\n,_auto_detect_surfaces_for_generated_supportsB\x18\n\x16_generate_supports_forB!\n\x1f_contact_failure_in_z_directionB\x15\n\x13_spring_constant_uxB\x15\n\x13_spring_constant_uyB\x1f\n\x1d_depth_of_influence_zone_typeB\x1a\n\x18_depth_of_influence_zoneB\x1a\n\x18_rock_beneath_last_layerB)\n\'_is_interlayer_surface_settings_enabledB\x1e\n\x1c_number_of_sampling_points_xB\x1e\n\x1c_number_of_sampling_points_yB\x1c\n\x1a_solid_layers_by_fe_solidsB\x1c\n\x1a_settlement_causing_stressB\x1f\n\x1d_stress_ratio_for_limit_depthB\x18\n\x16_reduction_coefficientB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -34,10 +34,10 @@ class SoilMassif(_message.Message):
34
34
  class AnalysisType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
35
  __slots__ = ()
36
36
  ANALYSIS_TYPE_FINITE_ELEMENT_METHOD: _ClassVar[SoilMassif.AnalysisType]
37
- ANALYSIS_TYPE_CONSTRAINED_MODULUS_METHOD: _ClassVar[SoilMassif.AnalysisType]
37
+ ANALYSIS_TYPE_ADVANCED_HALF_SPACE_METHOD: _ClassVar[SoilMassif.AnalysisType]
38
38
  ANALYSIS_TYPE_SUBGRADE_REACTION_MODEL: _ClassVar[SoilMassif.AnalysisType]
39
39
  ANALYSIS_TYPE_FINITE_ELEMENT_METHOD: SoilMassif.AnalysisType
40
- ANALYSIS_TYPE_CONSTRAINED_MODULUS_METHOD: SoilMassif.AnalysisType
40
+ ANALYSIS_TYPE_ADVANCED_HALF_SPACE_METHOD: SoilMassif.AnalysisType
41
41
  ANALYSIS_TYPE_SUBGRADE_REACTION_MODEL: SoilMassif.AnalysisType
42
42
  class GenerateSupportsFor(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
43
43
  __slots__ = ()
@@ -0,0 +1,91 @@
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/glass_design/glass_composition_model.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/glass_design/glass_composition_model.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/glass_design/glass_composition_model.proto\x12\x1c\x64lubal.api.rfem.glass_design\x1a\x1e\x64lubal/api/common/common.proto\"\xb9[\n\x15GlassCompositionModel\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\x05\x12\x16\n\tto_design\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12?\n2display_stiffness_matrix_for_uncoupled_and_coupled\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x62\n\x10\x63\x61lculation_type\x18\x07 \x01(\x0e\x32\x43.dlubal.api.rfem.glass_design.GlassCompositionModel.CalculationTypeH\x05\x88\x01\x01\x12\\\n\rmodeling_type\x18\x08 \x01(\x0e\x32@.dlubal.api.rfem.glass_design.GlassCompositionModel.ModelingTypeH\x06\x88\x01\x01\x12z\n\x1dshear_coupling_between_layers\x18\t \x01(\x0e\x32N.dlubal.api.rfem.glass_design.GlassCompositionModel.ShearCouplingBetweenLayersH\x07\x88\x01\x01\x12\x8f\x01\n#stiffness_matrix_elements_uncoupled\x18\n \x01(\x0b\x32].dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsUncoupledTreeTableH\x08\x88\x01\x01\x12\x1a\n\runcoupled_D11\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x1a\n\runcoupled_D12\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x1a\n\runcoupled_D13\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x1a\n\runcoupled_D22\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x1a\n\runcoupled_D23\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x1a\n\runcoupled_D33\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x1a\n\runcoupled_D44\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\x1a\n\runcoupled_D45\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x1a\n\runcoupled_D55\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x1a\n\runcoupled_D66\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1a\n\runcoupled_D67\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\x1a\n\runcoupled_D68\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x1a\n\runcoupled_D77\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x1a\n\runcoupled_D78\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\x1a\n\runcoupled_D88\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\x1a\n\runcoupled_D16\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x1a\n\runcoupled_D17\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\x1a\n\runcoupled_D18\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\x1a\n\runcoupled_D27\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\x1a\n\runcoupled_D28\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\x1a\n\runcoupled_D38\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12\x87\x01\n\x1fstiffness_matrix_info_uncoupled\x18 \x01(\x0b\x32Y.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoUncoupledTreeTableH\x1e\x88\x01\x01\x12\x8b\x01\n!stiffness_matrix_elements_coupled\x18! \x01(\x0b\x32[.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsCoupledTreeTableH\x1f\x88\x01\x01\x12\x18\n\x0b\x63oupled_D11\x18\" \x01(\x01H \x88\x01\x01\x12\x18\n\x0b\x63oupled_D12\x18# \x01(\x01H!\x88\x01\x01\x12\x18\n\x0b\x63oupled_D13\x18$ \x01(\x01H\"\x88\x01\x01\x12\x18\n\x0b\x63oupled_D22\x18% \x01(\x01H#\x88\x01\x01\x12\x18\n\x0b\x63oupled_D23\x18& \x01(\x01H$\x88\x01\x01\x12\x18\n\x0b\x63oupled_D33\x18\' \x01(\x01H%\x88\x01\x01\x12\x18\n\x0b\x63oupled_D44\x18( \x01(\x01H&\x88\x01\x01\x12\x18\n\x0b\x63oupled_D45\x18) \x01(\x01H\'\x88\x01\x01\x12\x18\n\x0b\x63oupled_D55\x18* \x01(\x01H(\x88\x01\x01\x12\x18\n\x0b\x63oupled_D66\x18+ \x01(\x01H)\x88\x01\x01\x12\x18\n\x0b\x63oupled_D67\x18, \x01(\x01H*\x88\x01\x01\x12\x18\n\x0b\x63oupled_D68\x18- \x01(\x01H+\x88\x01\x01\x12\x18\n\x0b\x63oupled_D77\x18. \x01(\x01H,\x88\x01\x01\x12\x18\n\x0b\x63oupled_D78\x18/ \x01(\x01H-\x88\x01\x01\x12\x18\n\x0b\x63oupled_D88\x18\x30 \x01(\x01H.\x88\x01\x01\x12\x18\n\x0b\x63oupled_D16\x18\x31 \x01(\x01H/\x88\x01\x01\x12\x18\n\x0b\x63oupled_D17\x18\x32 \x01(\x01H0\x88\x01\x01\x12\x18\n\x0b\x63oupled_D18\x18\x33 \x01(\x01H1\x88\x01\x01\x12\x18\n\x0b\x63oupled_D27\x18\x34 \x01(\x01H2\x88\x01\x01\x12\x18\n\x0b\x63oupled_D28\x18\x35 \x01(\x01H3\x88\x01\x01\x12\x18\n\x0b\x63oupled_D38\x18\x36 \x01(\x01H4\x88\x01\x01\x12\x83\x01\n\x1dstiffness_matrix_info_coupled\x18\x37 \x01(\x0b\x32W.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoCoupledTreeTableH5\x88\x01\x01\x12%\n\x18layers_surface_thickness\x18\x38 \x01(\x05H6\x88\x01\x01\x12m\n\x16layers_reference_table\x18\x39 \x01(\x0b\x32H.dlubal.api.rfem.glass_design.GlassCompositionModel.LayersReferenceTableH7\x88\x01\x01\x12#\n\x16layers_total_thickness\x18: \x01(\x01H8\x88\x01\x01\x12 \n\x13layers_total_weight\x18; \x01(\x01H9\x88\x01\x01\x12g\n\x13line_supports_table\x18< \x01(\x0b\x32\x45.dlubal.api.rfem.glass_design.GlassCompositionModel.LineSupportsTableH:\x88\x01\x01\x12i\n\x14nodal_supports_table\x18= \x01(\x0b\x32\x46.dlubal.api.rfem.glass_design.GlassCompositionModel.NodalSupportsTableH;\x88\x01\x01\x12,\n\x1fsurface_thickness_with_material\x18> \x01(\x05H<\x88\x01\x01\x12m\n\x16surface_stiffness_type\x18? \x01(\x0e\x32H.dlubal.api.rfem.glass_design.GlassCompositionModel.SurfaceStiffnessTypeH=\x88\x01\x01\x12k\n\x15surface_geometry_type\x18@ \x01(\x0e\x32G.dlubal.api.rfem.glass_design.GlassCompositionModel.SurfaceGeometryTypeH>\x88\x01\x01\x12\x19\n\x0csurface_area\x18\x41 \x01(\x01H?\x88\x01\x01\x12\x1b\n\x0esurface_volume\x18\x42 \x01(\x01H@\x88\x01\x01\x12\x19\n\x0csurface_mass\x18\x43 \x01(\x01HA\x88\x01\x01\x12\x1f\n\x12surface_total_area\x18\x44 \x01(\x01HB\x88\x01\x01\x12!\n\x14surface_total_volume\x18\x45 \x01(\x01HC\x88\x01\x01\x12\x1f\n\x12surface_total_mass\x18\x46 \x01(\x01HD\x88\x01\x01\x12\x89\x01\n climatic_loads_summer_parameters\x18G \x01(\x0b\x32Z.dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsSummerParametersTreeTableHE\x88\x01\x01\x12\x89\x01\n climatic_loads_winter_parameters\x18H \x01(\x0b\x32Z.dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsWinterParametersTreeTableHF\x88\x01\x01\x12\x35\n(climatic_loads_summer_parameters_enabled\x18I \x01(\x08HG\x88\x01\x01\x12\x35\n(climatic_loads_winter_parameters_enabled\x18J \x01(\x08HH\x88\x01\x01\x12*\n\x1dinsulating_glass_unit_enabled\x18K \x01(\x08HI\x88\x01\x01\x12\x1d\n\x10spacer_activated\x18L \x01(\x08HJ\x88\x01\x01\x12\x1d\n\x10spacer_thickness\x18M \x01(\x05HK\x88\x01\x01\x12:\n-supports_for_side_surfaces_of_gas_deactivated\x18N \x01(\x08HL\x88\x01\x01\x12,\n\x1fnumber_of_finite_element_layers\x18O \x01(\x05HM\x88\x01\x01\x12\x14\n\x07\x63omment\x18P \x01(\tHN\x88\x01\x01\x12!\n\x14id_for_export_import\x18Q \x01(\tHO\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18R \x01(\tHP\x88\x01\x01\x1a\x9b\x01\n)StiffnessMatrixElementsUncoupledTreeTable\x12n\n\x04rows\x18\x01 \x03(\x0b\x32`.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsUncoupledTreeTableRow\x1a\x94\x02\n,StiffnessMatrixElementsUncoupledTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04unit\x18\x04 \x01(\tH\x03\x88\x01\x01\x12n\n\x04rows\x18\x05 \x03(\x0b\x32`.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsUncoupledTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x93\x01\n%StiffnessMatrixInfoUncoupledTreeTable\x12j\n\x04rows\x18\x01 \x03(\x0b\x32\\.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoUncoupledTreeTableRow\x1a\x94\x02\n(StiffnessMatrixInfoUncoupledTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04unit\x18\x04 \x01(\tH\x03\x88\x01\x01\x12j\n\x04rows\x18\x05 \x03(\x0b\x32\\.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoUncoupledTreeTableRowB\x06\n\x04_keyB\x0e\n\x0c_descriptionB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x97\x01\n\'StiffnessMatrixElementsCoupledTreeTable\x12l\n\x04rows\x18\x01 \x03(\x0b\x32^.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsCoupledTreeTableRow\x1a\x90\x02\n*StiffnessMatrixElementsCoupledTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04unit\x18\x04 \x01(\tH\x03\x88\x01\x01\x12l\n\x04rows\x18\x05 \x03(\x0b\x32^.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixElementsCoupledTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x8f\x01\n#StiffnessMatrixInfoCoupledTreeTable\x12h\n\x04rows\x18\x01 \x03(\x0b\x32Z.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoCoupledTreeTableRow\x1a\x90\x02\n&StiffnessMatrixInfoCoupledTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x12\n\x05value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04unit\x18\x04 \x01(\tH\x03\x88\x01\x01\x12h\n\x04rows\x18\x05 \x03(\x0b\x32Z.dlubal.api.rfem.glass_design.GlassCompositionModel.StiffnessMatrixInfoCoupledTreeTableRowB\x06\n\x04_keyB\x0e\n\x0c_descriptionB\x08\n\x06_valueB\x07\n\x05_unit\x1aq\n\x14LayersReferenceTable\x12Y\n\x04rows\x18\x01 \x03(\x0b\x32K.dlubal.api.rfem.glass_design.GlassCompositionModel.LayersReferenceTableRow\x1a\xca\x08\n\x17LayersReferenceTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08layer_no\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12n\n\nlayer_type\x18\x04 \x01(\x0e\x32U.dlubal.api.rfem.glass_design.GlassCompositionModel.LayersReferenceTableRow.LayerTypeH\x03\x88\x01\x01\x12!\n\x14thickness_type_or_id\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x15\n\x08material\x18\x06 \x01(\x05H\x05\x88\x01\x01\x12\x16\n\tthickness\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x12\n\x05\x61ngle\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12\x1f\n\x12integration_points\x18\t \x01(\x05H\x08\x88\x01\x01\x12\x37\n*connection_with_other_topological_elements\x18\n \x01(\x08H\t\x88\x01\x01\x12v\n\x0e\x65\x64ge_finishing\x18\x0b \x01(\x0e\x32Y.dlubal.api.rfem.glass_design.GlassCompositionModel.LayersReferenceTableRow.EdgeFinishingH\n\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\x0b\x88\x01\x01\x12\x1c\n\x0fspecific_weight\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\x13\n\x06weight\x18\x0e \x01(\x01H\r\x88\x01\x01\"t\n\tLayerType\x12!\n\x1dLAYER_TYPE_E_LAYER_TYPE_LAYER\x10\x00\x12#\n\x1fLAYER_TYPE_E_LAYER_TYPE_CONTACT\x10\x01\x12\x1f\n\x1bLAYER_TYPE_E_LAYER_TYPE_GAS\x10\x02\"\x90\x01\n\rEdgeFinishing\x12\"\n\x1e\x45\x44GE_FINISHING_CLEAN_CUT_EDGES\x10\x00\x12\x17\n\x13\x45\x44GE_FINISHING_NONE\x10\x03\x12!\n\x1d\x45\x44GE_FINISHING_POLISHED_EDGES\x10\x02\x12\x1f\n\x1b\x45\x44GE_FINISHING_SEAMED_EDGES\x10\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_layer_noB\r\n\x0b_layer_typeB\x17\n\x15_thickness_type_or_idB\x0b\n\t_materialB\x0c\n\n_thicknessB\x08\n\x06_angleB\x15\n\x13_integration_pointsB-\n+_connection_with_other_topological_elementsB\x11\n\x0f_edge_finishingB\n\n\x08_commentB\x12\n\x10_specific_weightB\t\n\x07_weight\x1ak\n\x11LineSupportsTable\x12V\n\x04rows\x18\x01 \x03(\x0b\x32H.dlubal.api.rfem.glass_design.GlassCompositionModel.LineSupportsTableRow\x1a\xbd\x03\n\x14LineSupportsTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0bobject_pack\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x15\n\x08layer_no\x18\x04 \x01(\tH\x03\x88\x01\x01\x12w\n\x10support_location\x18\x05 \x01(\x0e\x32X.dlubal.api.rfem.glass_design.GlassCompositionModel.LineSupportsTableRow.SupportLocationH\x04\x88\x01\x01\x12\x14\n\x07support\x18\x06 \x01(\x05H\x05\x88\x01\x01\"e\n\x0fSupportLocation\x12\x18\n\x14SUPPORT_LOCATION_TOP\x10\x00\x12\x1b\n\x17SUPPORT_LOCATION_BOTTOM\x10\x02\x12\x1b\n\x17SUPPORT_LOCATION_MIDDLE\x10\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0e\n\x0c_object_packB\x0b\n\t_layer_noB\x13\n\x11_support_locationB\n\n\x08_support\x1am\n\x12NodalSupportsTable\x12W\n\x04rows\x18\x01 \x03(\x0b\x32I.dlubal.api.rfem.glass_design.GlassCompositionModel.NodalSupportsTableRow\x1a\xbf\x03\n\x15NodalSupportsTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x18\n\x0bobject_pack\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x15\n\x08layer_no\x18\x04 \x01(\tH\x03\x88\x01\x01\x12x\n\x10support_location\x18\x05 \x01(\x0e\x32Y.dlubal.api.rfem.glass_design.GlassCompositionModel.NodalSupportsTableRow.SupportLocationH\x04\x88\x01\x01\x12\x14\n\x07support\x18\x06 \x01(\x05H\x05\x88\x01\x01\"e\n\x0fSupportLocation\x12\x18\n\x14SUPPORT_LOCATION_TOP\x10\x00\x12\x1b\n\x17SUPPORT_LOCATION_BOTTOM\x10\x02\x12\x1b\n\x17SUPPORT_LOCATION_MIDDLE\x10\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0e\n\x0c_object_packB\x0b\n\t_layer_noB\x13\n\x11_support_locationB\n\n\x08_support\x1a\x95\x01\n&ClimaticLoadsSummerParametersTreeTable\x12k\n\x04rows\x18\x01 \x03(\x0b\x32].dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsSummerParametersTreeTableRow\x1a\xc8\x02\n)ClimaticLoadsSummerParametersTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12k\n\x04rows\x18\x06 \x03(\x0b\x32].dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsSummerParametersTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\x1a\x95\x01\n&ClimaticLoadsWinterParametersTreeTable\x12k\n\x04rows\x18\x01 \x03(\x0b\x32].dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsWinterParametersTreeTableRow\x1a\xc8\x02\n)ClimaticLoadsWinterParametersTreeTableRow\x12\x10\n\x03key\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07\x63\x61ption\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x13\n\x06symbol\x18\x03 \x01(\tH\x02\x88\x01\x01\x12,\n\x05value\x18\x04 \x01(\x0b\x32\x18.dlubal.api.common.ValueH\x03\x88\x01\x01\x12\x11\n\x04unit\x18\x05 \x01(\tH\x04\x88\x01\x01\x12k\n\x04rows\x18\x06 \x03(\x0b\x32].dlubal.api.rfem.glass_design.GlassCompositionModel.ClimaticLoadsWinterParametersTreeTableRowB\x06\n\x04_keyB\n\n\x08_captionB\t\n\x07_symbolB\x08\n\x06_valueB\x07\n\x05_unit\":\n\x0f\x43\x61lculationType\x12\'\n#CALCULATION_TYPE_1_PHASE_FULL_MODEL\x10\x00\"/\n\x0cModelingType\x12\x1f\n\x1bMODELING_TYPE_SURFACE_MODEL\x10\x00\"t\n\x1aShearCouplingBetweenLayers\x12)\n%SHEAR_COUPLING_BETWEEN_LAYERS_COUPLED\x10\x00\x12+\n\'SHEAR_COUPLING_BETWEEN_LAYERS_UNCOUPLED\x10\x01\"\x90\x04\n\x14SurfaceStiffnessType\x12#\n\x1fSURFACE_STIFFNESS_TYPE_STANDARD\x10\x00\x12(\n$SURFACE_STIFFNESS_TYPE_DISCONTINUITY\x10\x04\x12 \n\x1cSURFACE_STIFFNESS_TYPE_FLOOR\x10\x08\x12*\n&SURFACE_STIFFNESS_TYPE_FLOOR_DIAPHRAGM\x10\t\x12\x33\n/SURFACE_STIFFNESS_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM\x10\x0b\x12*\n&SURFACE_STIFFNESS_TYPE_FLOOR_SEMIRIGID\x10\n\x12&\n\"SURFACE_STIFFNESS_TYPE_GROUNDWATER\x10\x07\x12(\n$SURFACE_STIFFNESS_TYPE_LOAD_TRANSFER\x10\x06\x12#\n\x1fSURFACE_STIFFNESS_TYPE_MEMBRANE\x10\x03\x12 \n\x1cSURFACE_STIFFNESS_TYPE_RIGID\x10\x02\x12\x33\n/SURFACE_STIFFNESS_TYPE_WITHOUT_MEMBRANE_TENSION\x10\x05\x12,\n(SURFACE_STIFFNESS_TYPE_WITHOUT_THICKNESS\x10\x01\"\xba\x02\n\x13SurfaceGeometryType\x12!\n\x1dSURFACE_GEOMETRY_TYPE_UNKNOWN\x10\x00\x12\x32\n.SURFACE_GEOMETRY_TYPE_MINIMUM_CURVATURE_SPLINE\x10\x07\x12\x1f\n\x1bSURFACE_GEOMETRY_TYPE_NURBS\x10\x03\x12\x1e\n\x1aSURFACE_GEOMETRY_TYPE_PIPE\x10\x06\x12\x1f\n\x1bSURFACE_GEOMETRY_TYPE_PLANE\x10\x01\x12$\n SURFACE_GEOMETRY_TYPE_QUADRANGLE\x10\x02\x12!\n\x1dSURFACE_GEOMETRY_TYPE_ROTATED\x10\x05\x12!\n\x1dSURFACE_GEOMETRY_TYPE_TRIMMED\x10\x04\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_to_designB5\n3_display_stiffness_matrix_for_uncoupled_and_coupledB\x13\n\x11_calculation_typeB\x10\n\x0e_modeling_typeB \n\x1e_shear_coupling_between_layersB&\n$_stiffness_matrix_elements_uncoupledB\x10\n\x0e_uncoupled_D11B\x10\n\x0e_uncoupled_D12B\x10\n\x0e_uncoupled_D13B\x10\n\x0e_uncoupled_D22B\x10\n\x0e_uncoupled_D23B\x10\n\x0e_uncoupled_D33B\x10\n\x0e_uncoupled_D44B\x10\n\x0e_uncoupled_D45B\x10\n\x0e_uncoupled_D55B\x10\n\x0e_uncoupled_D66B\x10\n\x0e_uncoupled_D67B\x10\n\x0e_uncoupled_D68B\x10\n\x0e_uncoupled_D77B\x10\n\x0e_uncoupled_D78B\x10\n\x0e_uncoupled_D88B\x10\n\x0e_uncoupled_D16B\x10\n\x0e_uncoupled_D17B\x10\n\x0e_uncoupled_D18B\x10\n\x0e_uncoupled_D27B\x10\n\x0e_uncoupled_D28B\x10\n\x0e_uncoupled_D38B\"\n _stiffness_matrix_info_uncoupledB$\n\"_stiffness_matrix_elements_coupledB\x0e\n\x0c_coupled_D11B\x0e\n\x0c_coupled_D12B\x0e\n\x0c_coupled_D13B\x0e\n\x0c_coupled_D22B\x0e\n\x0c_coupled_D23B\x0e\n\x0c_coupled_D33B\x0e\n\x0c_coupled_D44B\x0e\n\x0c_coupled_D45B\x0e\n\x0c_coupled_D55B\x0e\n\x0c_coupled_D66B\x0e\n\x0c_coupled_D67B\x0e\n\x0c_coupled_D68B\x0e\n\x0c_coupled_D77B\x0e\n\x0c_coupled_D78B\x0e\n\x0c_coupled_D88B\x0e\n\x0c_coupled_D16B\x0e\n\x0c_coupled_D17B\x0e\n\x0c_coupled_D18B\x0e\n\x0c_coupled_D27B\x0e\n\x0c_coupled_D28B\x0e\n\x0c_coupled_D38B \n\x1e_stiffness_matrix_info_coupledB\x1b\n\x19_layers_surface_thicknessB\x19\n\x17_layers_reference_tableB\x19\n\x17_layers_total_thicknessB\x16\n\x14_layers_total_weightB\x16\n\x14_line_supports_tableB\x17\n\x15_nodal_supports_tableB\"\n _surface_thickness_with_materialB\x19\n\x17_surface_stiffness_typeB\x18\n\x16_surface_geometry_typeB\x0f\n\r_surface_areaB\x11\n\x0f_surface_volumeB\x0f\n\r_surface_massB\x15\n\x13_surface_total_areaB\x17\n\x15_surface_total_volumeB\x15\n\x13_surface_total_massB#\n!_climatic_loads_summer_parametersB#\n!_climatic_loads_winter_parametersB+\n)_climatic_loads_summer_parameters_enabledB+\n)_climatic_loads_winter_parameters_enabledB \n\x1e_insulating_glass_unit_enabledB\x13\n\x11_spacer_activatedB\x13\n\x11_spacer_thicknessB0\n._supports_for_side_surfaces_of_gas_deactivatedB\"\n _number_of_finite_element_layersB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.glass_design.glass_composition_model_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_GLASSCOMPOSITIONMODEL']._serialized_start=125
36
+ _globals['_GLASSCOMPOSITIONMODEL']._serialized_end=11830
37
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSUNCOUPLEDTREETABLE']._serialized_start=3929
38
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSUNCOUPLEDTREETABLE']._serialized_end=4084
39
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSUNCOUPLEDTREETABLEROW']._serialized_start=4087
40
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSUNCOUPLEDTREETABLEROW']._serialized_end=4363
41
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOUNCOUPLEDTREETABLE']._serialized_start=4366
42
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOUNCOUPLEDTREETABLE']._serialized_end=4513
43
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOUNCOUPLEDTREETABLEROW']._serialized_start=4516
44
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOUNCOUPLEDTREETABLEROW']._serialized_end=4792
45
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSCOUPLEDTREETABLE']._serialized_start=4795
46
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSCOUPLEDTREETABLE']._serialized_end=4946
47
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSCOUPLEDTREETABLEROW']._serialized_start=4949
48
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXELEMENTSCOUPLEDTREETABLEROW']._serialized_end=5221
49
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOCOUPLEDTREETABLE']._serialized_start=5224
50
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOCOUPLEDTREETABLE']._serialized_end=5367
51
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOCOUPLEDTREETABLEROW']._serialized_start=5370
52
+ _globals['_GLASSCOMPOSITIONMODEL_STIFFNESSMATRIXINFOCOUPLEDTREETABLEROW']._serialized_end=5642
53
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLE']._serialized_start=5644
54
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLE']._serialized_end=5757
55
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW']._serialized_start=5760
56
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW']._serialized_end=6858
57
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW_LAYERTYPE']._serialized_start=6350
58
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW_LAYERTYPE']._serialized_end=6466
59
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW_EDGEFINISHING']._serialized_start=6469
60
+ _globals['_GLASSCOMPOSITIONMODEL_LAYERSREFERENCETABLEROW_EDGEFINISHING']._serialized_end=6613
61
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLE']._serialized_start=6860
62
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLE']._serialized_end=6967
63
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLEROW']._serialized_start=6970
64
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLEROW']._serialized_end=7415
65
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLEROW_SUPPORTLOCATION']._serialized_start=7229
66
+ _globals['_GLASSCOMPOSITIONMODEL_LINESUPPORTSTABLEROW_SUPPORTLOCATION']._serialized_end=7330
67
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLE']._serialized_start=7417
68
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLE']._serialized_end=7526
69
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLEROW']._serialized_start=7529
70
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLEROW']._serialized_end=7976
71
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLEROW_SUPPORTLOCATION']._serialized_start=7229
72
+ _globals['_GLASSCOMPOSITIONMODEL_NODALSUPPORTSTABLEROW_SUPPORTLOCATION']._serialized_end=7330
73
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSSUMMERPARAMETERSTREETABLE']._serialized_start=7979
74
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSSUMMERPARAMETERSTREETABLE']._serialized_end=8128
75
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSSUMMERPARAMETERSTREETABLEROW']._serialized_start=8131
76
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSSUMMERPARAMETERSTREETABLEROW']._serialized_end=8459
77
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSWINTERPARAMETERSTREETABLE']._serialized_start=8462
78
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSWINTERPARAMETERSTREETABLE']._serialized_end=8611
79
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSWINTERPARAMETERSTREETABLEROW']._serialized_start=8614
80
+ _globals['_GLASSCOMPOSITIONMODEL_CLIMATICLOADSWINTERPARAMETERSTREETABLEROW']._serialized_end=8942
81
+ _globals['_GLASSCOMPOSITIONMODEL_CALCULATIONTYPE']._serialized_start=8944
82
+ _globals['_GLASSCOMPOSITIONMODEL_CALCULATIONTYPE']._serialized_end=9002
83
+ _globals['_GLASSCOMPOSITIONMODEL_MODELINGTYPE']._serialized_start=9004
84
+ _globals['_GLASSCOMPOSITIONMODEL_MODELINGTYPE']._serialized_end=9051
85
+ _globals['_GLASSCOMPOSITIONMODEL_SHEARCOUPLINGBETWEENLAYERS']._serialized_start=9053
86
+ _globals['_GLASSCOMPOSITIONMODEL_SHEARCOUPLINGBETWEENLAYERS']._serialized_end=9169
87
+ _globals['_GLASSCOMPOSITIONMODEL_SURFACESTIFFNESSTYPE']._serialized_start=9172
88
+ _globals['_GLASSCOMPOSITIONMODEL_SURFACESTIFFNESSTYPE']._serialized_end=9700
89
+ _globals['_GLASSCOMPOSITIONMODEL_SURFACEGEOMETRYTYPE']._serialized_start=9703
90
+ _globals['_GLASSCOMPOSITIONMODEL_SURFACEGEOMETRYTYPE']._serialized_end=10017
91
+ # @@protoc_insertion_point(module_scope)
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1dlubal/api/rfem/guide_objects/visual_object.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xca\x13\n\x0cVisualObject\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x16\n\tfile_path\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x16\n\tfile_name\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\x05H\x05\x88\x01\x01\x12R\n\x0cinsert_point\x18\x07 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.VisualObject.InsertPointH\x06\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\t \x01(\x01H\x08\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\n \x01(\x01H\t\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x0b \x01(\x01H\n\x88\x01\x01\x12i\n\x18rotation_angles_sequence\x18\x0c \x01(\x0e\x32\x42.dlubal.api.rfem.guide_objects.VisualObject.RotationAnglesSequenceH\x0b\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x0e \x01(\x01H\r\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13scale_is_nonuniform\x18\x10 \x01(\x08H\x0f\x88\x01\x01\x12)\n\x1cscale_is_defined_as_relative\x18\x11 \x01(\x08H\x10\x88\x01\x01\x12\x1b\n\x0escale_absolute\x18\x12 \x01(\x01H\x11\x88\x01\x01\x12\x1b\n\x0escale_relative\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12\x1d\n\x10scale_absolute_x\x18\x14 \x01(\x01H\x13\x88\x01\x01\x12\x1d\n\x10scale_absolute_y\x18\x15 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10scale_absolute_z\x18\x16 \x01(\x01H\x15\x88\x01\x01\x12\x1d\n\x10scale_relative_x\x18\x17 \x01(\x01H\x16\x88\x01\x01\x12\x1d\n\x10scale_relative_y\x18\x18 \x01(\x01H\x17\x88\x01\x01\x12\x1d\n\x10scale_relative_z\x18\x19 \x01(\x01H\x18\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x19\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1b \x01(\x08H\x1a\x88\x01\x01\x12#\n\x16generating_object_info\x18\x1c \x01(\tH\x1b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1d \x01(\tH\x1c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1e \x01(\tH\x1d\x88\x01\x01\"\xec\x02\n\x0bInsertPoint\x12\x17\n\x13INSERT_POINT_CENTER\x10\x00\x12\x13\n\x0fINSERT_POINT_MX\x10\x02\x12\x17\n\x13INSERT_POINT_MXMYMZ\x10\x0e\x12\x17\n\x13INSERT_POINT_MXMYPZ\x10\n\x12\x17\n\x13INSERT_POINT_MXPYMZ\x10\x0c\x12\x17\n\x13INSERT_POINT_MXPYPZ\x10\x08\x12\x13\n\x0fINSERT_POINT_MY\x10\x04\x12\x13\n\x0fINSERT_POINT_MZ\x10\x06\x12\x13\n\x0fINSERT_POINT_PX\x10\x01\x12\x17\n\x13INSERT_POINT_PXMYMZ\x10\r\x12\x17\n\x13INSERT_POINT_PXMYPZ\x10\t\x12\x17\n\x13INSERT_POINT_PXPYMZ\x10\x0b\x12\x17\n\x13INSERT_POINT_PXPYPZ\x10\x07\x12\x13\n\x0fINSERT_POINT_PY\x10\x03\x12\x13\n\x0fINSERT_POINT_PZ\x10\x05\"\x92\x03\n\x16RotationAnglesSequence\x12 \n\x1cROTATION_ANGLES_SEQUENCE_UVW\x10\x00\x12 \n\x1cROTATION_ANGLES_SEQUENCE_UWV\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_VUW\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_VWU\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_WUV\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_WVU\x10\x05\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\x1a\x02\x10\x01\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_file_pathB\x0c\n\n_file_nameB\x14\n\x12_coordinate_systemB\x0f\n\r_insert_pointB\x15\n\x13_origin_coordinatesB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x13\n\x11_rotation_angle_3B\x16\n\x14_scale_is_nonuniformB\x1f\n\x1d_scale_is_defined_as_relativeB\x11\n\x0f_scale_absoluteB\x11\n\x0f_scale_relativeB\x13\n\x11_scale_absolute_xB\x13\n\x11_scale_absolute_yB\x13\n\x11_scale_absolute_zB\x13\n\x11_scale_relative_xB\x13\n\x11_scale_relative_yB\x13\n\x11_scale_relative_zB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1dlubal/api/rfem/guide_objects/visual_object.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\xec\x15\n\x0cVisualObject\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\x16\n\tfile_path\x18\x04 \x01(\tH\x03\x88\x01\x01\x12\x16\n\tfile_name\x18\x05 \x01(\tH\x04\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x06 \x01(\x05H\x05\x88\x01\x01\x12R\n\x0cinsert_point\x18\x07 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.VisualObject.InsertPointH\x06\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\t \x01(\x01H\x08\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\n \x01(\x01H\t\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x0b \x01(\x01H\n\x88\x01\x01\x12i\n\x18rotation_angles_sequence\x18\x0c \x01(\x0e\x32\x42.dlubal.api.rfem.guide_objects.VisualObject.RotationAnglesSequenceH\x0b\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\r \x01(\x01H\x0c\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x0e \x01(\x01H\r\x88\x01\x01\x12\x1d\n\x10rotation_angle_3\x18\x0f \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13scale_is_nonuniform\x18\x10 \x01(\x08H\x0f\x88\x01\x01\x12)\n\x1cscale_is_defined_as_relative\x18\x11 \x01(\x08H\x10\x88\x01\x01\x12\x1b\n\x0escale_absolute\x18\x12 \x01(\x01H\x11\x88\x01\x01\x12\x1b\n\x0escale_relative\x18\x13 \x01(\x01H\x12\x88\x01\x01\x12\x1d\n\x10scale_absolute_x\x18\x14 \x01(\x01H\x13\x88\x01\x01\x12\x1d\n\x10scale_absolute_y\x18\x15 \x01(\x01H\x14\x88\x01\x01\x12\x1d\n\x10scale_absolute_z\x18\x16 \x01(\x01H\x15\x88\x01\x01\x12\x1d\n\x10scale_relative_x\x18\x17 \x01(\x01H\x16\x88\x01\x01\x12\x1d\n\x10scale_relative_y\x18\x18 \x01(\x01H\x17\x88\x01\x01\x12\x1d\n\x10scale_relative_z\x18\x19 \x01(\x01H\x18\x88\x01\x01\x12\x35\n(wind_simulation_enable_specific_settings\x18\x1a \x01(\x08H\x19\x88\x01\x01\x12\x1c\n\x0fshrink_wrapping\x18\x1b \x01(\x05H\x1a\x88\x01\x01\x12\'\n\x1aroughness_and_permeability\x18\x1c \x01(\x05H\x1b\x88\x01\x01\x12%\n\x18\x65xclude_from_wind_tunnel\x18\x1d \x01(\x08H\x1c\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1e \x01(\tH\x1d\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x1f \x01(\x08H\x1e\x88\x01\x01\x12#\n\x16generating_object_info\x18 \x01(\tH\x1f\x88\x01\x01\x12!\n\x14id_for_export_import\x18! \x01(\tH \x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\" \x01(\tH!\x88\x01\x01\"\xec\x02\n\x0bInsertPoint\x12\x17\n\x13INSERT_POINT_CENTER\x10\x00\x12\x13\n\x0fINSERT_POINT_MX\x10\x02\x12\x17\n\x13INSERT_POINT_MXMYMZ\x10\x0e\x12\x17\n\x13INSERT_POINT_MXMYPZ\x10\n\x12\x17\n\x13INSERT_POINT_MXPYMZ\x10\x0c\x12\x17\n\x13INSERT_POINT_MXPYPZ\x10\x08\x12\x13\n\x0fINSERT_POINT_MY\x10\x04\x12\x13\n\x0fINSERT_POINT_MZ\x10\x06\x12\x13\n\x0fINSERT_POINT_PX\x10\x01\x12\x17\n\x13INSERT_POINT_PXMYMZ\x10\r\x12\x17\n\x13INSERT_POINT_PXMYPZ\x10\t\x12\x17\n\x13INSERT_POINT_PXPYMZ\x10\x0b\x12\x17\n\x13INSERT_POINT_PXPYPZ\x10\x07\x12\x13\n\x0fINSERT_POINT_PY\x10\x03\x12\x13\n\x0fINSERT_POINT_PZ\x10\x05\"\x92\x03\n\x16RotationAnglesSequence\x12 \n\x1cROTATION_ANGLES_SEQUENCE_UVW\x10\x00\x12 \n\x1cROTATION_ANGLES_SEQUENCE_UWV\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_VUW\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_VWU\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_WUV\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_WVU\x10\x05\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\x1a\x02\x10\x01\x42\x05\n\x03_noB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_file_pathB\x0c\n\n_file_nameB\x14\n\x12_coordinate_systemB\x0f\n\r_insert_pointB\x15\n\x13_origin_coordinatesB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x13\n\x11_rotation_angle_3B\x16\n\x14_scale_is_nonuniformB\x1f\n\x1d_scale_is_defined_as_relativeB\x11\n\x0f_scale_absoluteB\x11\n\x0f_scale_relativeB\x13\n\x11_scale_absolute_xB\x13\n\x11_scale_absolute_yB\x13\n\x11_scale_absolute_zB\x13\n\x11_scale_relative_xB\x13\n\x11_scale_relative_yB\x13\n\x11_scale_relative_zB+\n)_wind_simulation_enable_specific_settingsB\x12\n\x10_shrink_wrappingB\x1d\n\x1b_roughness_and_permeabilityB\x1b\n\x19_exclude_from_wind_tunnelB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -35,9 +35,9 @@ if not _descriptor._USE_C_DESCRIPTORS:
35
35
  _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._loaded_options = None
36
36
  _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._serialized_options = b'\020\001'
37
37
  _globals['_VISUALOBJECT']._serialized_start=117
38
- _globals['_VISUALOBJECT']._serialized_end=2623
39
- _globals['_VISUALOBJECT_INSERTPOINT']._serialized_start=1221
40
- _globals['_VISUALOBJECT_INSERTPOINT']._serialized_end=1585
41
- _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._serialized_start=1588
42
- _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._serialized_end=1990
38
+ _globals['_VISUALOBJECT']._serialized_end=2913
39
+ _globals['_VISUALOBJECT_INSERTPOINT']._serialized_start=1386
40
+ _globals['_VISUALOBJECT_INSERTPOINT']._serialized_end=1750
41
+ _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._serialized_start=1753
42
+ _globals['_VISUALOBJECT_ROTATIONANGLESSEQUENCE']._serialized_end=2155
43
43
  # @@protoc_insertion_point(module_scope)
@@ -7,7 +7,7 @@ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Opti
7
7
  DESCRIPTOR: _descriptor.FileDescriptor
8
8
 
9
9
  class VisualObject(_message.Message):
10
- __slots__ = ("no", "user_defined_name_enabled", "name", "file_path", "file_name", "coordinate_system", "insert_point", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "scale_is_nonuniform", "scale_is_defined_as_relative", "scale_absolute", "scale_relative", "scale_absolute_x", "scale_absolute_y", "scale_absolute_z", "scale_relative_x", "scale_relative_y", "scale_relative_z", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
10
+ __slots__ = ("no", "user_defined_name_enabled", "name", "file_path", "file_name", "coordinate_system", "insert_point", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_1", "rotation_angle_2", "rotation_angle_3", "scale_is_nonuniform", "scale_is_defined_as_relative", "scale_absolute", "scale_relative", "scale_absolute_x", "scale_absolute_y", "scale_absolute_z", "scale_relative_x", "scale_relative_y", "scale_relative_z", "wind_simulation_enable_specific_settings", "shrink_wrapping", "roughness_and_permeability", "exclude_from_wind_tunnel", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
11
11
  class InsertPoint(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
12
  __slots__ = ()
13
13
  INSERT_POINT_CENTER: _ClassVar[VisualObject.InsertPoint]
@@ -89,6 +89,10 @@ class VisualObject(_message.Message):
89
89
  SCALE_RELATIVE_X_FIELD_NUMBER: _ClassVar[int]
90
90
  SCALE_RELATIVE_Y_FIELD_NUMBER: _ClassVar[int]
91
91
  SCALE_RELATIVE_Z_FIELD_NUMBER: _ClassVar[int]
92
+ WIND_SIMULATION_ENABLE_SPECIFIC_SETTINGS_FIELD_NUMBER: _ClassVar[int]
93
+ SHRINK_WRAPPING_FIELD_NUMBER: _ClassVar[int]
94
+ ROUGHNESS_AND_PERMEABILITY_FIELD_NUMBER: _ClassVar[int]
95
+ EXCLUDE_FROM_WIND_TUNNEL_FIELD_NUMBER: _ClassVar[int]
92
96
  COMMENT_FIELD_NUMBER: _ClassVar[int]
93
97
  IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
94
98
  GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
@@ -119,9 +123,13 @@ class VisualObject(_message.Message):
119
123
  scale_relative_x: float
120
124
  scale_relative_y: float
121
125
  scale_relative_z: float
126
+ wind_simulation_enable_specific_settings: bool
127
+ shrink_wrapping: int
128
+ roughness_and_permeability: int
129
+ exclude_from_wind_tunnel: bool
122
130
  comment: str
123
131
  is_generated: bool
124
132
  generating_object_info: str
125
133
  id_for_export_import: str
126
134
  metadata_for_export_import: str
127
- def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., file_path: _Optional[str] = ..., file_name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., insert_point: _Optional[_Union[VisualObject.InsertPoint, str]] = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[VisualObject.RotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _Optional[float] = ..., scale_is_nonuniform: bool = ..., scale_is_defined_as_relative: bool = ..., scale_absolute: _Optional[float] = ..., scale_relative: _Optional[float] = ..., scale_absolute_x: _Optional[float] = ..., scale_absolute_y: _Optional[float] = ..., scale_absolute_z: _Optional[float] = ..., scale_relative_x: _Optional[float] = ..., scale_relative_y: _Optional[float] = ..., scale_relative_z: _Optional[float] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
135
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., file_path: _Optional[str] = ..., file_name: _Optional[str] = ..., coordinate_system: _Optional[int] = ..., insert_point: _Optional[_Union[VisualObject.InsertPoint, str]] = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[VisualObject.RotationAnglesSequence, str]] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., rotation_angle_3: _Optional[float] = ..., scale_is_nonuniform: bool = ..., scale_is_defined_as_relative: bool = ..., scale_absolute: _Optional[float] = ..., scale_relative: _Optional[float] = ..., scale_absolute_x: _Optional[float] = ..., scale_absolute_y: _Optional[float] = ..., scale_absolute_z: _Optional[float] = ..., scale_relative_x: _Optional[float] = ..., scale_relative_y: _Optional[float] = ..., scale_relative_z: _Optional[float] = ..., wind_simulation_enable_specific_settings: bool = ..., shrink_wrapping: _Optional[int] = ..., roughness_and_permeability: _Optional[int] = ..., exclude_from_wind_tunnel: bool = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -24,7 +24,7 @@ _sym_db = _symbol_database.Default()
24
24
 
25
25
 
26
26
 
27
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7dlubal/api/rfem/ifc_objects/ifc_file_model_object.proto\x12\x1b\x64lubal.api.rfem.ifc_objects\"\xbf\r\n\x12IfcFileModelObject\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12G\n\x04type\x18\x02 \x01(\x0e\x32\x34.dlubal.api.rfem.ifc_objects.IfcFileModelObject.TypeH\x01\x88\x01\x01\x12\x1a\n\rmirror_axis_x\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x1a\n\rmirror_axis_y\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x1a\n\rmirror_axis_z\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12m\n\x18rotation_angles_sequence\x18\t \x01(\x0e\x32\x46.dlubal.api.rfem.ifc_objects.IfcFileModelObject.RotationAnglesSequenceH\x08\x88\x01\x01\x12\x1d\n\x10rotation_angle_0\x18\n \x01(\x01H\t\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\x0b \x01(\x01H\n\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12W\n\raxis_change_x\x18\r \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeXH\x0c\x88\x01\x01\x12W\n\raxis_change_y\x18\x0e \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeYH\r\x88\x01\x01\x12W\n\raxis_change_z\x18\x0f \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeZH\x0e\x88\x01\x01\x12\x15\n\x08\x66ilename\x18\x10 \x01(\tH\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x11 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x12 \x01(\tH\x11\x88\x01\x01\"+\n\x04Type\x12\x10\n\x0cTYPE_PHANTOM\x10\x00\x12\x11\n\rTYPE_STANDARD\x10\x01\"\xe4\x01\n\x16RotationAnglesSequence\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XYZ\x10\x00\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\"F\n\x0b\x41xisChangeX\x12\x11\n\rAXIS_CHANGE_X\x10\x00\x12\x11\n\rAXIS_CHANGE_Y\x10\x01\x12\x11\n\rAXIS_CHANGE_Z\x10\x02\"L\n\x0b\x41xisChangeY\x12\x13\n\x0f\x41XIS_CHANGE_Y_X\x10\x00\x12\x13\n\x0f\x41XIS_CHANGE_Y_Y\x10\x01\x12\x13\n\x0f\x41XIS_CHANGE_Y_Z\x10\x02\"L\n\x0b\x41xisChangeZ\x12\x13\n\x0f\x41XIS_CHANGE_Z_X\x10\x00\x12\x13\n\x0f\x41XIS_CHANGE_Z_Y\x10\x01\x12\x13\n\x0f\x41XIS_CHANGE_Z_Z\x10\x02\x42\x05\n\x03_noB\x07\n\x05_typeB\x10\n\x0e_mirror_axis_xB\x10\n\x0e_mirror_axis_yB\x10\n\x0e_mirror_axis_zB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_0B\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x10\n\x0e_axis_change_xB\x10\n\x0e_axis_change_yB\x10\n\x0e_axis_change_zB\x0b\n\t_filenameB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7dlubal/api/rfem/ifc_objects/ifc_file_model_object.proto\x12\x1b\x64lubal.api.rfem.ifc_objects\"\xc1\x10\n\x12IfcFileModelObject\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12G\n\x04type\x18\x02 \x01(\x0e\x32\x34.dlubal.api.rfem.ifc_objects.IfcFileModelObject.TypeH\x01\x88\x01\x01\x12\x1a\n\rmirror_axis_x\x18\x03 \x01(\x08H\x02\x88\x01\x01\x12\x1a\n\rmirror_axis_y\x18\x04 \x01(\x08H\x03\x88\x01\x01\x12\x1a\n\rmirror_axis_z\x18\x05 \x01(\x08H\x04\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x08 \x01(\x01H\x07\x88\x01\x01\x12m\n\x18rotation_angles_sequence\x18\t \x01(\x0e\x32\x46.dlubal.api.rfem.ifc_objects.IfcFileModelObject.RotationAnglesSequenceH\x08\x88\x01\x01\x12\x1d\n\x10rotation_angle_0\x18\n \x01(\x01H\t\x88\x01\x01\x12\x1d\n\x10rotation_angle_1\x18\x0b \x01(\x01H\n\x88\x01\x01\x12\x1d\n\x10rotation_angle_2\x18\x0c \x01(\x01H\x0b\x88\x01\x01\x12W\n\raxis_change_x\x18\r \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeXH\x0c\x88\x01\x01\x12W\n\raxis_change_y\x18\x0e \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeYH\r\x88\x01\x01\x12W\n\raxis_change_z\x18\x0f \x01(\x0e\x32;.dlubal.api.rfem.ifc_objects.IfcFileModelObject.AxisChangeZH\x0e\x88\x01\x01\x12\x15\n\x08\x66ilename\x18\x10 \x01(\tH\x0f\x88\x01\x01\x12\x35\n(wind_simulation_enable_specific_settings\x18\x11 \x01(\x08H\x10\x88\x01\x01\x12,\n\x1fwind_simulation_shrink_wrapping\x18\x12 \x01(\x05H\x11\x88\x01\x01\x12\x37\n*wind_simulation_roughness_and_permeability\x18\x13 \x01(\x05H\x12\x88\x01\x01\x12\x35\n(wind_simulation_exclude_from_wind_tunnel\x18\x14 \x01(\x08H\x13\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x15 \x01(\tH\x14\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x16 \x01(\tH\x15\x88\x01\x01\"+\n\x04Type\x12\x10\n\x0cTYPE_PHANTOM\x10\x00\x12\x11\n\rTYPE_STANDARD\x10\x01\"\xe4\x01\n\x16RotationAnglesSequence\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XYZ\x10\x00\x12 \n\x1cROTATION_ANGLES_SEQUENCE_XZY\x10\x01\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YXZ\x10\x02\x12 \n\x1cROTATION_ANGLES_SEQUENCE_YZX\x10\x03\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZXY\x10\x04\x12 \n\x1cROTATION_ANGLES_SEQUENCE_ZYX\x10\x05\"F\n\x0b\x41xisChangeX\x12\x11\n\rAXIS_CHANGE_X\x10\x00\x12\x11\n\rAXIS_CHANGE_Y\x10\x01\x12\x11\n\rAXIS_CHANGE_Z\x10\x02\"L\n\x0b\x41xisChangeY\x12\x13\n\x0f\x41XIS_CHANGE_Y_X\x10\x00\x12\x13\n\x0f\x41XIS_CHANGE_Y_Y\x10\x01\x12\x13\n\x0f\x41XIS_CHANGE_Y_Z\x10\x02\"L\n\x0b\x41xisChangeZ\x12\x13\n\x0f\x41XIS_CHANGE_Z_X\x10\x00\x12\x13\n\x0f\x41XIS_CHANGE_Z_Y\x10\x01\x12\x13\n\x0f\x41XIS_CHANGE_Z_Z\x10\x02\x42\x05\n\x03_noB\x07\n\x05_typeB\x10\n\x0e_mirror_axis_xB\x10\n\x0e_mirror_axis_yB\x10\n\x0e_mirror_axis_zB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x1b\n\x19_rotation_angles_sequenceB\x13\n\x11_rotation_angle_0B\x13\n\x11_rotation_angle_1B\x13\n\x11_rotation_angle_2B\x10\n\x0e_axis_change_xB\x10\n\x0e_axis_change_yB\x10\n\x0e_axis_change_zB\x0b\n\t_filenameB+\n)_wind_simulation_enable_specific_settingsB\"\n _wind_simulation_shrink_wrappingB-\n+_wind_simulation_roughness_and_permeabilityB+\n)_wind_simulation_exclude_from_wind_tunnelB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
28
 
29
29
  _globals = globals()
30
30
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -32,15 +32,15 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.ifc_objects
32
32
  if not _descriptor._USE_C_DESCRIPTORS:
33
33
  DESCRIPTOR._loaded_options = None
34
34
  _globals['_IFCFILEMODELOBJECT']._serialized_start=89
35
- _globals['_IFCFILEMODELOBJECT']._serialized_end=1816
36
- _globals['_IFCFILEMODELOBJECT_TYPE']._serialized_start=957
37
- _globals['_IFCFILEMODELOBJECT_TYPE']._serialized_end=1000
38
- _globals['_IFCFILEMODELOBJECT_ROTATIONANGLESSEQUENCE']._serialized_start=1003
39
- _globals['_IFCFILEMODELOBJECT_ROTATIONANGLESSEQUENCE']._serialized_end=1231
40
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEX']._serialized_start=1233
41
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEX']._serialized_end=1303
42
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEY']._serialized_start=1305
43
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEY']._serialized_end=1381
44
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEZ']._serialized_start=1383
45
- _globals['_IFCFILEMODELOBJECT_AXISCHANGEZ']._serialized_end=1459
35
+ _globals['_IFCFILEMODELOBJECT']._serialized_end=2202
36
+ _globals['_IFCFILEMODELOBJECT_TYPE']._serialized_start=1170
37
+ _globals['_IFCFILEMODELOBJECT_TYPE']._serialized_end=1213
38
+ _globals['_IFCFILEMODELOBJECT_ROTATIONANGLESSEQUENCE']._serialized_start=1216
39
+ _globals['_IFCFILEMODELOBJECT_ROTATIONANGLESSEQUENCE']._serialized_end=1444
40
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEX']._serialized_start=1446
41
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEX']._serialized_end=1516
42
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEY']._serialized_start=1518
43
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEY']._serialized_end=1594
44
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEZ']._serialized_start=1596
45
+ _globals['_IFCFILEMODELOBJECT_AXISCHANGEZ']._serialized_end=1672
46
46
  # @@protoc_insertion_point(module_scope)
@@ -6,7 +6,7 @@ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
6
6
  DESCRIPTOR: _descriptor.FileDescriptor
7
7
 
8
8
  class IfcFileModelObject(_message.Message):
9
- __slots__ = ("no", "type", "mirror_axis_x", "mirror_axis_y", "mirror_axis_z", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_0", "rotation_angle_1", "rotation_angle_2", "axis_change_x", "axis_change_y", "axis_change_z", "filename", "id_for_export_import", "metadata_for_export_import")
9
+ __slots__ = ("no", "type", "mirror_axis_x", "mirror_axis_y", "mirror_axis_z", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "rotation_angles_sequence", "rotation_angle_0", "rotation_angle_1", "rotation_angle_2", "axis_change_x", "axis_change_y", "axis_change_z", "filename", "wind_simulation_enable_specific_settings", "wind_simulation_shrink_wrapping", "wind_simulation_roughness_and_permeability", "wind_simulation_exclude_from_wind_tunnel", "id_for_export_import", "metadata_for_export_import")
10
10
  class Type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
11
  __slots__ = ()
12
12
  TYPE_PHANTOM: _ClassVar[IfcFileModelObject.Type]
@@ -67,6 +67,10 @@ class IfcFileModelObject(_message.Message):
67
67
  AXIS_CHANGE_Y_FIELD_NUMBER: _ClassVar[int]
68
68
  AXIS_CHANGE_Z_FIELD_NUMBER: _ClassVar[int]
69
69
  FILENAME_FIELD_NUMBER: _ClassVar[int]
70
+ WIND_SIMULATION_ENABLE_SPECIFIC_SETTINGS_FIELD_NUMBER: _ClassVar[int]
71
+ WIND_SIMULATION_SHRINK_WRAPPING_FIELD_NUMBER: _ClassVar[int]
72
+ WIND_SIMULATION_ROUGHNESS_AND_PERMEABILITY_FIELD_NUMBER: _ClassVar[int]
73
+ WIND_SIMULATION_EXCLUDE_FROM_WIND_TUNNEL_FIELD_NUMBER: _ClassVar[int]
70
74
  ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
71
75
  METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
72
76
  no: int
@@ -85,6 +89,10 @@ class IfcFileModelObject(_message.Message):
85
89
  axis_change_y: IfcFileModelObject.AxisChangeY
86
90
  axis_change_z: IfcFileModelObject.AxisChangeZ
87
91
  filename: str
92
+ wind_simulation_enable_specific_settings: bool
93
+ wind_simulation_shrink_wrapping: int
94
+ wind_simulation_roughness_and_permeability: int
95
+ wind_simulation_exclude_from_wind_tunnel: bool
88
96
  id_for_export_import: str
89
97
  metadata_for_export_import: str
90
- def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[IfcFileModelObject.Type, str]] = ..., mirror_axis_x: bool = ..., mirror_axis_y: bool = ..., mirror_axis_z: bool = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[IfcFileModelObject.RotationAnglesSequence, str]] = ..., rotation_angle_0: _Optional[float] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., axis_change_x: _Optional[_Union[IfcFileModelObject.AxisChangeX, str]] = ..., axis_change_y: _Optional[_Union[IfcFileModelObject.AxisChangeY, str]] = ..., axis_change_z: _Optional[_Union[IfcFileModelObject.AxisChangeZ, str]] = ..., filename: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
98
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[IfcFileModelObject.Type, str]] = ..., mirror_axis_x: bool = ..., mirror_axis_y: bool = ..., mirror_axis_z: bool = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., rotation_angles_sequence: _Optional[_Union[IfcFileModelObject.RotationAnglesSequence, str]] = ..., rotation_angle_0: _Optional[float] = ..., rotation_angle_1: _Optional[float] = ..., rotation_angle_2: _Optional[float] = ..., axis_change_x: _Optional[_Union[IfcFileModelObject.AxisChangeX, str]] = ..., axis_change_y: _Optional[_Union[IfcFileModelObject.AxisChangeY, str]] = ..., axis_change_z: _Optional[_Union[IfcFileModelObject.AxisChangeZ, str]] = ..., filename: _Optional[str] = ..., wind_simulation_enable_specific_settings: bool = ..., wind_simulation_shrink_wrapping: _Optional[int] = ..., wind_simulation_roughness_and_permeability: _Optional[int] = ..., wind_simulation_exclude_from_wind_tunnel: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1dlubal/api/rfem/layout_and_drawing/cad_line.proto\x12\"dlubal.api.rfem.layout_and_drawing\x1a\x1e\x64lubal/api/common/common.proto\"\xecW\n\x07\x43\x61\x64Line\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x10\x64\x65\x66inition_nodes\x18\x02 \x03(\x05\x12\x43\n\x04type\x18\x03 \x01(\x0e\x32\x30.dlubal.api.rfem.layout_and_drawing.CadLine.TypeH\x01\x88\x01\x01\x12\x13\n\x06length\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08position\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x1b\n\x0e\x61rc_first_node\x18\x08 \x01(\x05H\x06\x88\x01\x01\x12\x1c\n\x0f\x61rc_second_node\x18\t \x01(\x05H\x07\x88\x01\x01\x12%\n\x18\x61rc_control_point_object\x18\n \x01(\x05H\x08\x88\x01\x01\x12;\n\x11\x61rc_control_point\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12 \n\x13\x61rc_control_point_x\x18\x0c \x01(\x01H\n\x88\x01\x01\x12 \n\x13\x61rc_control_point_y\x18\r \x01(\x01H\x0b\x88\x01\x01\x12 \n\x13\x61rc_control_point_z\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x34\n\narc_center\x18\x0f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\r\x88\x01\x01\x12\x19\n\x0c\x61rc_center_x\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x19\n\x0c\x61rc_center_y\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\x19\n\x0c\x61rc_center_z\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x17\n\narc_radius\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x17\n\narc_height\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x16\n\tarc_alpha\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12n\n\x1b\x61rc_alpha_adjustment_target\x18\x16 \x01(\x0e\x32\x44.dlubal.api.rfem.layout_and_drawing.CadLine.ArcAlphaAdjustmentTargetH\x14\x88\x01\x01\x12\x37\n\rcircle_center\x18\x17 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x15\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_1\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_2\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_3\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x37\n\rcircle_normal\x18\x1b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x19\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_1\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_2\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_3\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\x1c\n\x0f\x63ircle_rotation\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12\x35\n\x0b\x63ircle_node\x18 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1e\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_1\x18! \x01(\x01H\x1f\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_2\x18\" \x01(\x01H \x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_3\x18# \x01(\x01H!\x88\x01\x01\x12\x1a\n\rcircle_radius\x18$ \x01(\x01H\"\x88\x01\x01\x12&\n\x19\x65lliptical_arc_first_node\x18% \x01(\x05H#\x88\x01\x01\x12\'\n\x1a\x65lliptical_arc_second_node\x18& \x01(\x05H$\x88\x01\x01\x12!\n\x14\x65lliptical_arc_alpha\x18\' \x01(\x01H%\x88\x01\x01\x12 \n\x13\x65lliptical_arc_beta\x18( \x01(\x01H&\x88\x01\x01\x12?\n\x15\x65lliptical_arc_normal\x18) \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\'\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_x\x18* \x01(\x01H(\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_y\x18+ \x01(\x01H)\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_z\x18, \x01(\x01H*\x88\x01\x01\x12(\n\x1b\x65lliptical_arc_major_radius\x18- \x01(\x01H+\x88\x01\x01\x12(\n\x1b\x65lliptical_arc_minor_radius\x18. \x01(\x01H,\x88\x01\x01\x12?\n\x15\x65lliptical_arc_center\x18/ \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH-\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_x\x18\x30 \x01(\x01H.\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_y\x18\x31 \x01(\x01H/\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_z\x18\x32 \x01(\x01H0\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_1\x18\x33 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH1\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_x\x18\x34 \x01(\x01H2\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_y\x18\x35 \x01(\x01H3\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_z\x18\x36 \x01(\x01H4\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_2\x18\x37 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH5\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_x\x18\x38 \x01(\x01H6\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_y\x18\x39 \x01(\x01H7\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_z\x18: \x01(\x01H8\x88\x01\x01\x12\x36\n)elliptical_arc_first_control_point_object\x18; \x01(\x05H9\x88\x01\x01\x12L\n\"elliptical_arc_first_control_point\x18< \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH:\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_x\x18= \x01(\x01H;\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_y\x18> \x01(\x01H<\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_z\x18? \x01(\x01H=\x88\x01\x01\x12\x37\n*elliptical_arc_second_control_point_object\x18@ \x01(\x05H>\x88\x01\x01\x12M\n#elliptical_arc_second_control_point\x18\x41 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH?\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_x\x18\x42 \x01(\x01H@\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_y\x18\x43 \x01(\x01HA\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_z\x18\x44 \x01(\x01HB\x88\x01\x01\x12:\n-elliptical_arc_perimeter_control_point_object\x18\x45 \x01(\x05HC\x88\x01\x01\x12P\n&elliptical_arc_perimeter_control_point\x18\x46 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHD\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_x\x18G \x01(\x01HE\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_y\x18H \x01(\x01HF\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_z\x18I \x01(\x01HG\x88\x01\x01\x12\x1f\n\x12\x65llipse_first_node\x18J \x01(\x05HH\x88\x01\x01\x12 \n\x13\x65llipse_second_node\x18K \x01(\x05HI\x88\x01\x01\x12)\n\x1c\x65llipse_control_point_object\x18L \x01(\x05HJ\x88\x01\x01\x12?\n\x15\x65llipse_control_point\x18M \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHK\x88\x01\x01\x12$\n\x17\x65llipse_control_point_x\x18N \x01(\x01HL\x88\x01\x01\x12$\n\x17\x65llipse_control_point_y\x18O \x01(\x01HM\x88\x01\x01\x12$\n\x17\x65llipse_control_point_z\x18P \x01(\x01HN\x88\x01\x01\x12 \n\x13parabola_first_node\x18Q \x01(\x05HO\x88\x01\x01\x12!\n\x14parabola_second_node\x18R \x01(\x05HP\x88\x01\x01\x12*\n\x1dparabola_control_point_object\x18S \x01(\x05HQ\x88\x01\x01\x12@\n\x16parabola_control_point\x18T \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHR\x88\x01\x01\x12%\n\x18parabola_control_point_x\x18U \x01(\x01HS\x88\x01\x01\x12%\n\x18parabola_control_point_y\x18V \x01(\x01HT\x88\x01\x01\x12%\n\x18parabola_control_point_z\x18W \x01(\x01HU\x88\x01\x01\x12.\n!parabola_focus_directrix_distance\x18X \x01(\x01HV\x88\x01\x01\x12\x1b\n\x0eparabola_alpha\x18Y \x01(\x01HW\x88\x01\x01\x12\x38\n\x0eparabola_focus\x18Z \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHX\x88\x01\x01\x12\x1d\n\x10parabola_focus_x\x18[ \x01(\x01HY\x88\x01\x01\x12\x1d\n\x10parabola_focus_y\x18\\ \x01(\x01HZ\x88\x01\x01\x12\x1d\n\x10parabola_focus_z\x18] \x01(\x01H[\x88\x01\x01\x12\x18\n\x0bnurbs_order\x18^ \x01(\x05H\\\x88\x01\x01\x12\x80\x01\n\"nurbs_control_points_by_components\x18_ \x01(\x0b\x32O.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsByComponentsTableH]\x88\x01\x01\x12\x66\n\x14nurbs_control_points\x18` \x01(\x0b\x32\x43.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsTableH^\x88\x01\x01\x12U\n\x0bnurbs_knots\x18\x61 \x01(\x0b\x32;.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsKnotsTableH_\x88\x01\x01\x12o\n\x1brotation_specification_type\x18\x62 \x01(\x0e\x32\x45.dlubal.api.rfem.layout_and_drawing.CadLine.RotationSpecificationTypeH`\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18\x63 \x01(\x01Ha\x88\x01\x01\x12\x1f\n\x12rotation_help_node\x18\x64 \x01(\x05Hb\x88\x01\x01\x12V\n\x0erotation_plane\x18\x65 \x01(\x0e\x32\x39.dlubal.api.rfem.layout_and_drawing.CadLine.RotationPlaneHc\x88\x01\x01\x12\x17\n\nis_rotated\x18\x66 \x01(\x08Hd\x88\x01\x01\x12\x19\n\x0cparent_layer\x18g \x01(\x05He\x88\x01\x01\x12&\n\x19is_locked_by_parent_layer\x18h \x01(\x08Hf\x88\x01\x01\x12\x19\n\x0cis_generated\x18i \x01(\x08Hg\x88\x01\x01\x12#\n\x16generating_object_info\x18j \x01(\tHh\x88\x01\x01\x12J\n\x08\x63olor_by\x18k \x01(\x0e\x32\x33.dlubal.api.rfem.layout_and_drawing.CadLine.ColorByHi\x88\x01\x01\x12\x12\n\x05\x63olor\x18l \x01(\tHj\x88\x01\x01\x12Q\n\x0cline_type_by\x18m \x01(\x0e\x32\x36.dlubal.api.rfem.layout_and_drawing.CadLine.LineTypeByHk\x88\x01\x01\x12L\n\tline_type\x18n \x01(\x0e\x32\x34.dlubal.api.rfem.layout_and_drawing.CadLine.LineTypeHl\x88\x01\x01\x12[\n\x11line_thickness_by\x18o \x01(\x0e\x32;.dlubal.api.rfem.layout_and_drawing.CadLine.LineThicknessByHm\x88\x01\x01\x12\x1b\n\x0eline_thickness\x18p \x01(\x05Hn\x88\x01\x01\x12\x35\n\x0bstart_point\x18q \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHo\x88\x01\x01\x12\x1a\n\rstart_point_x\x18r \x01(\x01Hp\x88\x01\x01\x12\x1a\n\rstart_point_y\x18s \x01(\x01Hq\x88\x01\x01\x12\x1a\n\rstart_point_z\x18t \x01(\x01Hr\x88\x01\x01\x12\x33\n\tend_point\x18u \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHs\x88\x01\x01\x12\x18\n\x0b\x65nd_point_x\x18v \x01(\x01Ht\x88\x01\x01\x12\x18\n\x0b\x65nd_point_y\x18w \x01(\x01Hu\x88\x01\x01\x12\x18\n\x0b\x65nd_point_z\x18x \x01(\x01Hv\x88\x01\x01\x12\x61\n\x11\x64\x65\x66inition_points\x18y \x01(\x0b\x32\x41.dlubal.api.rfem.layout_and_drawing.CadLine.DefinitionPointsTableHw\x88\x01\x01\x12!\n\x14id_for_export_import\x18z \x01(\tHx\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18{ \x01(\tHy\x88\x01\x01\x1a\x82\x01\n#NurbsControlPointsByComponentsTable\x12[\n\x04rows\x18\x01 \x03(\x0b\x32M.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsByComponentsRow\x1a\xb3\x02\n!NurbsControlPointsByComponentsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12 \n\x13global_coordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13global_coordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13global_coordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x13\n\x06weight\x18\x06 \x01(\x01H\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_global_coordinate_xB\x16\n\x14_global_coordinate_yB\x16\n\x14_global_coordinate_zB\t\n\x07_weight\x1aj\n\x17NurbsControlPointsTable\x12O\n\x04rows\x18\x01 \x03(\x0b\x32\x41.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsRow\x1a\xb3\x02\n\x15NurbsControlPointsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\rcontrol_point\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12<\n\x12global_coordinates\x18\x04 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x03\x88\x01\x01\x12\x35\n\x0b\x63oordinates\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12\x0e\n\x06weight\x18\x06 \x01(\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x10\n\x0e_control_pointB\x15\n\x13_global_coordinatesB\x0e\n\x0c_coordinates\x1aZ\n\x0fNurbsKnotsTable\x12G\n\x04rows\x18\x01 \x03(\x0b\x32\x39.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsKnotsRow\x1ay\n\rNurbsKnotsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x17\n\nknot_value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\r\n\x0b_knot_value\x1a\x66\n\x15\x44\x65\x66initionPointsTable\x12M\n\x04rows\x18\x01 \x03(\x0b\x32?.dlubal.api.rfem.layout_and_drawing.CadLine.DefinitionPointsRow\x1a\xdb\x01\n\x13\x44\x65\x66initionPointsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\"\xdf\x01\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x0c\n\x08TYPE_ARC\x10\x02\x12\x0f\n\x0bTYPE_CIRCLE\x10\x03\x12\x18\n\x14TYPE_CUT_VIA_SECTION\x10\t\x12\x1a\n\x16TYPE_CUT_VIA_TWO_LINES\x10\n\x12\x10\n\x0cTYPE_ELLIPSE\x10\x05\x12\x17\n\x13TYPE_ELLIPTICAL_ARC\x10\x04\x12\x0e\n\nTYPE_NURBS\x10\x08\x12\x11\n\rTYPE_PARABOLA\x10\x06\x12\x11\n\rTYPE_POLYLINE\x10\x01\x12\x0f\n\x0bTYPE_SPLINE\x10\x07\"\xab\x01\n\x18\x41rcAlphaAdjustmentTarget\x12\x30\n,ARC_ALPHA_ADJUSTMENT_TARGET_BEGINNING_OF_ARC\x10\x00\x12\x31\n-ARC_ALPHA_ADJUSTMENT_TARGET_ARC_CONTROL_POINT\x10\x01\x12*\n&ARC_ALPHA_ADJUSTMENT_TARGET_END_OF_ARC\x10\x02\"\xbf\x01\n\x19RotationSpecificationType\x12(\n$ROTATION_SPECIFICATION_TYPE_BY_ANGLE\x10\x00\x12&\n\"ROTATION_SPECIFICATION_TYPE_INSIDE\x10\x02\x12\'\n#ROTATION_SPECIFICATION_TYPE_SURFACE\x10\x03\x12\'\n#ROTATION_SPECIFICATION_TYPE_TO_NODE\x10\x01\"=\n\rRotationPlane\x12\x15\n\x11ROTATION_PLANE_XY\x10\x00\x12\x15\n\x11ROTATION_PLANE_XZ\x10\x01\"O\n\x07\x43olorBy\x12%\n!COLOR_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12\x1d\n\x19\x43OLOR_BY_PROPERTY_BY_LINE\x10\x01\"Z\n\nLineTypeBy\x12)\n%LINE_TYPE_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12!\n\x1dLINE_TYPE_BY_PROPERTY_BY_LINE\x10\x01\"\x83\x01\n\x08LineType\x12\x13\n\x0fLINE_TYPE_SOLID\x10\x00\x12\x14\n\x10LINE_TYPE_DASHED\x10\x02\x12\x14\n\x10LINE_TYPE_DOTTED\x10\x01\x12\x18\n\x14LINE_TYPE_DOT_DASHED\x10\x03\x12\x1c\n\x18LINE_TYPE_LOOSELY_DASHED\x10\x04\"i\n\x0fLineThicknessBy\x12.\n*LINE_THICKNESS_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12&\n\"LINE_THICKNESS_BY_PROPERTY_BY_LINE\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\t\n\x07_lengthB\x0b\n\t_positionB\x11\n\x0f_position_shortB\n\n\x08_commentB\x11\n\x0f_arc_first_nodeB\x12\n\x10_arc_second_nodeB\x1b\n\x19_arc_control_point_objectB\x14\n\x12_arc_control_pointB\x16\n\x14_arc_control_point_xB\x16\n\x14_arc_control_point_yB\x16\n\x14_arc_control_point_zB\r\n\x0b_arc_centerB\x0f\n\r_arc_center_xB\x0f\n\r_arc_center_yB\x0f\n\r_arc_center_zB\r\n\x0b_arc_radiusB\r\n\x0b_arc_heightB\x0c\n\n_arc_alphaB\x1e\n\x1c_arc_alpha_adjustment_targetB\x10\n\x0e_circle_centerB\x1d\n\x1b_circle_center_coordinate_1B\x1d\n\x1b_circle_center_coordinate_2B\x1d\n\x1b_circle_center_coordinate_3B\x10\n\x0e_circle_normalB\x1d\n\x1b_circle_normal_coordinate_1B\x1d\n\x1b_circle_normal_coordinate_2B\x1d\n\x1b_circle_normal_coordinate_3B\x12\n\x10_circle_rotationB\x0e\n\x0c_circle_nodeB\x1b\n\x19_circle_node_coordinate_1B\x1b\n\x19_circle_node_coordinate_2B\x1b\n\x19_circle_node_coordinate_3B\x10\n\x0e_circle_radiusB\x1c\n\x1a_elliptical_arc_first_nodeB\x1d\n\x1b_elliptical_arc_second_nodeB\x17\n\x15_elliptical_arc_alphaB\x16\n\x14_elliptical_arc_betaB\x18\n\x16_elliptical_arc_normalB\x1a\n\x18_elliptical_arc_normal_xB\x1a\n\x18_elliptical_arc_normal_yB\x1a\n\x18_elliptical_arc_normal_zB\x1e\n\x1c_elliptical_arc_major_radiusB\x1e\n\x1c_elliptical_arc_minor_radiusB\x18\n\x16_elliptical_arc_centerB\x1a\n\x18_elliptical_arc_center_xB\x1a\n\x18_elliptical_arc_center_yB\x1a\n\x18_elliptical_arc_center_zB\x19\n\x17_elliptical_arc_focus_1B\x1b\n\x19_elliptical_arc_focus_1_xB\x1b\n\x19_elliptical_arc_focus_1_yB\x1b\n\x19_elliptical_arc_focus_1_zB\x19\n\x17_elliptical_arc_focus_2B\x1b\n\x19_elliptical_arc_focus_2_xB\x1b\n\x19_elliptical_arc_focus_2_yB\x1b\n\x19_elliptical_arc_focus_2_zB,\n*_elliptical_arc_first_control_point_objectB%\n#_elliptical_arc_first_control_pointB\'\n%_elliptical_arc_first_control_point_xB\'\n%_elliptical_arc_first_control_point_yB\'\n%_elliptical_arc_first_control_point_zB-\n+_elliptical_arc_second_control_point_objectB&\n$_elliptical_arc_second_control_pointB(\n&_elliptical_arc_second_control_point_xB(\n&_elliptical_arc_second_control_point_yB(\n&_elliptical_arc_second_control_point_zB0\n._elliptical_arc_perimeter_control_point_objectB)\n\'_elliptical_arc_perimeter_control_pointB+\n)_elliptical_arc_perimeter_control_point_xB+\n)_elliptical_arc_perimeter_control_point_yB+\n)_elliptical_arc_perimeter_control_point_zB\x15\n\x13_ellipse_first_nodeB\x16\n\x14_ellipse_second_nodeB\x1f\n\x1d_ellipse_control_point_objectB\x18\n\x16_ellipse_control_pointB\x1a\n\x18_ellipse_control_point_xB\x1a\n\x18_ellipse_control_point_yB\x1a\n\x18_ellipse_control_point_zB\x16\n\x14_parabola_first_nodeB\x17\n\x15_parabola_second_nodeB \n\x1e_parabola_control_point_objectB\x19\n\x17_parabola_control_pointB\x1b\n\x19_parabola_control_point_xB\x1b\n\x19_parabola_control_point_yB\x1b\n\x19_parabola_control_point_zB$\n\"_parabola_focus_directrix_distanceB\x11\n\x0f_parabola_alphaB\x11\n\x0f_parabola_focusB\x13\n\x11_parabola_focus_xB\x13\n\x11_parabola_focus_yB\x13\n\x11_parabola_focus_zB\x0e\n\x0c_nurbs_orderB%\n#_nurbs_control_points_by_componentsB\x17\n\x15_nurbs_control_pointsB\x0e\n\x0c_nurbs_knotsB\x1e\n\x1c_rotation_specification_typeB\x11\n\x0f_rotation_angleB\x15\n\x13_rotation_help_nodeB\x11\n\x0f_rotation_planeB\r\n\x0b_is_rotatedB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x0b\n\t_color_byB\x08\n\x06_colorB\x0f\n\r_line_type_byB\x0c\n\n_line_typeB\x14\n\x12_line_thickness_byB\x11\n\x0f_line_thicknessB\x0e\n\x0c_start_pointB\x10\n\x0e_start_point_xB\x10\n\x0e_start_point_yB\x10\n\x0e_start_point_zB\x0c\n\n_end_pointB\x0e\n\x0c_end_point_xB\x0e\n\x0c_end_point_yB\x0e\n\x0c_end_point_zB\x14\n\x12_definition_pointsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1dlubal/api/rfem/layout_and_drawing/cad_line.proto\x12\"dlubal.api.rfem.layout_and_drawing\x1a\x1e\x64lubal/api/common/common.proto\"\xa5X\n\x07\x43\x61\x64Line\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x10\x64\x65\x66inition_nodes\x18\x02 \x03(\x05\x12\x43\n\x04type\x18\x03 \x01(\x0e\x32\x30.dlubal.api.rfem.layout_and_drawing.CadLine.TypeH\x01\x88\x01\x01\x12\x13\n\x06length\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08position\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x06 \x01(\tH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x05\x88\x01\x01\x12\x1b\n\x0e\x61rc_first_node\x18\x08 \x01(\x05H\x06\x88\x01\x01\x12\x1c\n\x0f\x61rc_second_node\x18\t \x01(\x05H\x07\x88\x01\x01\x12%\n\x18\x61rc_control_point_object\x18\n \x01(\x05H\x08\x88\x01\x01\x12;\n\x11\x61rc_control_point\x18\x0b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12 \n\x13\x61rc_control_point_x\x18\x0c \x01(\x01H\n\x88\x01\x01\x12 \n\x13\x61rc_control_point_y\x18\r \x01(\x01H\x0b\x88\x01\x01\x12 \n\x13\x61rc_control_point_z\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x34\n\narc_center\x18\x0f \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\r\x88\x01\x01\x12\x19\n\x0c\x61rc_center_x\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12\x19\n\x0c\x61rc_center_y\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\x19\n\x0c\x61rc_center_z\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x17\n\narc_radius\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x17\n\narc_height\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x16\n\tarc_alpha\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12n\n\x1b\x61rc_alpha_adjustment_target\x18\x16 \x01(\x0e\x32\x44.dlubal.api.rfem.layout_and_drawing.CadLine.ArcAlphaAdjustmentTargetH\x14\x88\x01\x01\x12\x37\n\rcircle_center\x18\x17 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x15\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_1\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_2\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_3\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x37\n\rcircle_normal\x18\x1b \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x19\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_1\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_2\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_3\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\x1c\n\x0f\x63ircle_rotation\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12\x35\n\x0b\x63ircle_node\x18 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1e\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_1\x18! \x01(\x01H\x1f\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_2\x18\" \x01(\x01H \x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_3\x18# \x01(\x01H!\x88\x01\x01\x12\x1a\n\rcircle_radius\x18$ \x01(\x01H\"\x88\x01\x01\x12&\n\x19\x65lliptical_arc_first_node\x18% \x01(\x05H#\x88\x01\x01\x12\'\n\x1a\x65lliptical_arc_second_node\x18& \x01(\x05H$\x88\x01\x01\x12!\n\x14\x65lliptical_arc_alpha\x18\' \x01(\x01H%\x88\x01\x01\x12 \n\x13\x65lliptical_arc_beta\x18( \x01(\x01H&\x88\x01\x01\x12?\n\x15\x65lliptical_arc_normal\x18) \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\'\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_x\x18* \x01(\x01H(\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_y\x18+ \x01(\x01H)\x88\x01\x01\x12$\n\x17\x65lliptical_arc_normal_z\x18, \x01(\x01H*\x88\x01\x01\x12(\n\x1b\x65lliptical_arc_major_radius\x18- \x01(\x01H+\x88\x01\x01\x12(\n\x1b\x65lliptical_arc_minor_radius\x18. \x01(\x01H,\x88\x01\x01\x12?\n\x15\x65lliptical_arc_center\x18/ \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH-\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_x\x18\x30 \x01(\x01H.\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_y\x18\x31 \x01(\x01H/\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_z\x18\x32 \x01(\x01H0\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_1\x18\x33 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH1\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_x\x18\x34 \x01(\x01H2\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_y\x18\x35 \x01(\x01H3\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_z\x18\x36 \x01(\x01H4\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_2\x18\x37 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH5\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_x\x18\x38 \x01(\x01H6\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_y\x18\x39 \x01(\x01H7\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_z\x18: \x01(\x01H8\x88\x01\x01\x12\x36\n)elliptical_arc_first_control_point_object\x18; \x01(\x05H9\x88\x01\x01\x12L\n\"elliptical_arc_first_control_point\x18< \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH:\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_x\x18= \x01(\x01H;\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_y\x18> \x01(\x01H<\x88\x01\x01\x12\x31\n$elliptical_arc_first_control_point_z\x18? \x01(\x01H=\x88\x01\x01\x12\x37\n*elliptical_arc_second_control_point_object\x18@ \x01(\x05H>\x88\x01\x01\x12M\n#elliptical_arc_second_control_point\x18\x41 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH?\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_x\x18\x42 \x01(\x01H@\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_y\x18\x43 \x01(\x01HA\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_z\x18\x44 \x01(\x01HB\x88\x01\x01\x12:\n-elliptical_arc_perimeter_control_point_object\x18\x45 \x01(\x05HC\x88\x01\x01\x12P\n&elliptical_arc_perimeter_control_point\x18\x46 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHD\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_x\x18G \x01(\x01HE\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_y\x18H \x01(\x01HF\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_z\x18I \x01(\x01HG\x88\x01\x01\x12\x1f\n\x12\x65llipse_first_node\x18J \x01(\x05HH\x88\x01\x01\x12 \n\x13\x65llipse_second_node\x18K \x01(\x05HI\x88\x01\x01\x12)\n\x1c\x65llipse_control_point_object\x18L \x01(\x05HJ\x88\x01\x01\x12?\n\x15\x65llipse_control_point\x18M \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHK\x88\x01\x01\x12$\n\x17\x65llipse_control_point_x\x18N \x01(\x01HL\x88\x01\x01\x12$\n\x17\x65llipse_control_point_y\x18O \x01(\x01HM\x88\x01\x01\x12$\n\x17\x65llipse_control_point_z\x18P \x01(\x01HN\x88\x01\x01\x12 \n\x13parabola_first_node\x18Q \x01(\x05HO\x88\x01\x01\x12!\n\x14parabola_second_node\x18R \x01(\x05HP\x88\x01\x01\x12*\n\x1dparabola_control_point_object\x18S \x01(\x05HQ\x88\x01\x01\x12@\n\x16parabola_control_point\x18T \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHR\x88\x01\x01\x12%\n\x18parabola_control_point_x\x18U \x01(\x01HS\x88\x01\x01\x12%\n\x18parabola_control_point_y\x18V \x01(\x01HT\x88\x01\x01\x12%\n\x18parabola_control_point_z\x18W \x01(\x01HU\x88\x01\x01\x12.\n!parabola_focus_directrix_distance\x18X \x01(\x01HV\x88\x01\x01\x12\x1b\n\x0eparabola_alpha\x18Y \x01(\x01HW\x88\x01\x01\x12\x38\n\x0eparabola_focus\x18Z \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHX\x88\x01\x01\x12\x1d\n\x10parabola_focus_x\x18[ \x01(\x01HY\x88\x01\x01\x12\x1d\n\x10parabola_focus_y\x18\\ \x01(\x01HZ\x88\x01\x01\x12\x1d\n\x10parabola_focus_z\x18] \x01(\x01H[\x88\x01\x01\x12\x18\n\x0bnurbs_order\x18^ \x01(\x05H\\\x88\x01\x01\x12\x80\x01\n\"nurbs_control_points_by_components\x18_ \x01(\x0b\x32O.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsByComponentsTableH]\x88\x01\x01\x12\x66\n\x14nurbs_control_points\x18` \x01(\x0b\x32\x43.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsTableH^\x88\x01\x01\x12U\n\x0bnurbs_knots\x18\x61 \x01(\x0b\x32;.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsKnotsTableH_\x88\x01\x01\x12o\n\x1brotation_specification_type\x18\x62 \x01(\x0e\x32\x45.dlubal.api.rfem.layout_and_drawing.CadLine.RotationSpecificationTypeH`\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18\x63 \x01(\x01Ha\x88\x01\x01\x12\x1f\n\x12rotation_help_node\x18\x64 \x01(\x05Hb\x88\x01\x01\x12V\n\x0erotation_plane\x18\x65 \x01(\x0e\x32\x39.dlubal.api.rfem.layout_and_drawing.CadLine.RotationPlaneHc\x88\x01\x01\x12\x17\n\nis_rotated\x18\x66 \x01(\x08Hd\x88\x01\x01\x12\x19\n\x0cparent_layer\x18g \x01(\x05He\x88\x01\x01\x12&\n\x19is_locked_by_parent_layer\x18h \x01(\x08Hf\x88\x01\x01\x12\x19\n\x0cis_generated\x18i \x01(\x08Hg\x88\x01\x01\x12#\n\x16generating_object_info\x18j \x01(\tHh\x88\x01\x01\x12J\n\x08\x63olor_by\x18k \x01(\x0e\x32\x33.dlubal.api.rfem.layout_and_drawing.CadLine.ColorByHi\x88\x01\x01\x12\x12\n\x05\x63olor\x18l \x01(\tHj\x88\x01\x01\x12Q\n\x0cline_type_by\x18m \x01(\x0e\x32\x36.dlubal.api.rfem.layout_and_drawing.CadLine.LineTypeByHk\x88\x01\x01\x12L\n\tline_type\x18n \x01(\x0e\x32\x34.dlubal.api.rfem.layout_and_drawing.CadLine.LineTypeHl\x88\x01\x01\x12[\n\x11line_thickness_by\x18o \x01(\x0e\x32;.dlubal.api.rfem.layout_and_drawing.CadLine.LineThicknessByHm\x88\x01\x01\x12\x1b\n\x0eline_thickness\x18p \x01(\x05Hn\x88\x01\x01\x12\x35\n\x0bstart_point\x18q \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHo\x88\x01\x01\x12\x1a\n\rstart_point_x\x18r \x01(\x01Hp\x88\x01\x01\x12\x1a\n\rstart_point_y\x18s \x01(\x01Hq\x88\x01\x01\x12\x1a\n\rstart_point_z\x18t \x01(\x01Hr\x88\x01\x01\x12\x33\n\tend_point\x18u \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHs\x88\x01\x01\x12\x18\n\x0b\x65nd_point_x\x18v \x01(\x01Ht\x88\x01\x01\x12\x18\n\x0b\x65nd_point_y\x18w \x01(\x01Hu\x88\x01\x01\x12\x18\n\x0b\x65nd_point_z\x18x \x01(\x01Hv\x88\x01\x01\x12\x61\n\x11\x64\x65\x66inition_points\x18y \x01(\x0b\x32\x41.dlubal.api.rfem.layout_and_drawing.CadLine.DefinitionPointsTableHw\x88\x01\x01\x12!\n\x14id_for_export_import\x18z \x01(\tHx\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18{ \x01(\tHy\x88\x01\x01\x1a\x82\x01\n#NurbsControlPointsByComponentsTable\x12[\n\x04rows\x18\x01 \x03(\x0b\x32M.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsByComponentsRow\x1a\xb3\x02\n!NurbsControlPointsByComponentsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12 \n\x13global_coordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13global_coordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13global_coordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x13\n\x06weight\x18\x06 \x01(\x01H\x05\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x16\n\x14_global_coordinate_xB\x16\n\x14_global_coordinate_yB\x16\n\x14_global_coordinate_zB\t\n\x07_weight\x1aj\n\x17NurbsControlPointsTable\x12O\n\x04rows\x18\x01 \x03(\x0b\x32\x41.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsControlPointsRow\x1a\xb3\x02\n\x15NurbsControlPointsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x1a\n\rcontrol_point\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12<\n\x12global_coordinates\x18\x04 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x03\x88\x01\x01\x12\x35\n\x0b\x63oordinates\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12\x0e\n\x06weight\x18\x06 \x01(\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x10\n\x0e_control_pointB\x15\n\x13_global_coordinatesB\x0e\n\x0c_coordinates\x1aZ\n\x0fNurbsKnotsTable\x12G\n\x04rows\x18\x01 \x03(\x0b\x32\x39.dlubal.api.rfem.layout_and_drawing.CadLine.NurbsKnotsRow\x1ay\n\rNurbsKnotsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x17\n\nknot_value\x18\x03 \x01(\x01H\x02\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\r\n\x0b_knot_value\x1a\x66\n\x15\x44\x65\x66initionPointsTable\x12M\n\x04rows\x18\x01 \x03(\x0b\x32?.dlubal.api.rfem.layout_and_drawing.CadLine.DefinitionPointsRow\x1a\xdb\x01\n\x13\x44\x65\x66initionPointsRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x19\n\x0c\x63oordinate_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x19\n\x0c\x63oordinate_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x19\n\x0c\x63oordinate_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0f\n\r_coordinate_xB\x0f\n\r_coordinate_yB\x0f\n\r_coordinate_z\"\xdf\x01\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\x0c\n\x08TYPE_ARC\x10\x02\x12\x0f\n\x0bTYPE_CIRCLE\x10\x03\x12\x18\n\x14TYPE_CUT_VIA_SECTION\x10\t\x12\x1a\n\x16TYPE_CUT_VIA_TWO_LINES\x10\n\x12\x10\n\x0cTYPE_ELLIPSE\x10\x05\x12\x17\n\x13TYPE_ELLIPTICAL_ARC\x10\x04\x12\x0e\n\nTYPE_NURBS\x10\x08\x12\x11\n\rTYPE_PARABOLA\x10\x06\x12\x11\n\rTYPE_POLYLINE\x10\x01\x12\x0f\n\x0bTYPE_SPLINE\x10\x07\"\xab\x01\n\x18\x41rcAlphaAdjustmentTarget\x12\x30\n,ARC_ALPHA_ADJUSTMENT_TARGET_BEGINNING_OF_ARC\x10\x00\x12\x31\n-ARC_ALPHA_ADJUSTMENT_TARGET_ARC_CONTROL_POINT\x10\x01\x12*\n&ARC_ALPHA_ADJUSTMENT_TARGET_END_OF_ARC\x10\x02\"\xf8\x01\n\x19RotationSpecificationType\x12(\n$ROTATION_SPECIFICATION_TYPE_BY_ANGLE\x10\x00\x12\x37\n3ROTATION_SPECIFICATION_TYPE_GLASS_COMPOSITION_MODEL\x10\x04\x12&\n\"ROTATION_SPECIFICATION_TYPE_INSIDE\x10\x02\x12\'\n#ROTATION_SPECIFICATION_TYPE_SURFACE\x10\x03\x12\'\n#ROTATION_SPECIFICATION_TYPE_TO_NODE\x10\x01\"=\n\rRotationPlane\x12\x15\n\x11ROTATION_PLANE_XY\x10\x00\x12\x15\n\x11ROTATION_PLANE_XZ\x10\x01\"O\n\x07\x43olorBy\x12%\n!COLOR_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12\x1d\n\x19\x43OLOR_BY_PROPERTY_BY_LINE\x10\x01\"Z\n\nLineTypeBy\x12)\n%LINE_TYPE_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12!\n\x1dLINE_TYPE_BY_PROPERTY_BY_LINE\x10\x01\"\x83\x01\n\x08LineType\x12\x13\n\x0fLINE_TYPE_SOLID\x10\x00\x12\x14\n\x10LINE_TYPE_DASHED\x10\x02\x12\x14\n\x10LINE_TYPE_DOTTED\x10\x01\x12\x18\n\x14LINE_TYPE_DOT_DASHED\x10\x03\x12\x1c\n\x18LINE_TYPE_LOOSELY_DASHED\x10\x04\"i\n\x0fLineThicknessBy\x12.\n*LINE_THICKNESS_BY_PROPERTY_BY_PARENT_LAYER\x10\x00\x12&\n\"LINE_THICKNESS_BY_PROPERTY_BY_LINE\x10\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\t\n\x07_lengthB\x0b\n\t_positionB\x11\n\x0f_position_shortB\n\n\x08_commentB\x11\n\x0f_arc_first_nodeB\x12\n\x10_arc_second_nodeB\x1b\n\x19_arc_control_point_objectB\x14\n\x12_arc_control_pointB\x16\n\x14_arc_control_point_xB\x16\n\x14_arc_control_point_yB\x16\n\x14_arc_control_point_zB\r\n\x0b_arc_centerB\x0f\n\r_arc_center_xB\x0f\n\r_arc_center_yB\x0f\n\r_arc_center_zB\r\n\x0b_arc_radiusB\r\n\x0b_arc_heightB\x0c\n\n_arc_alphaB\x1e\n\x1c_arc_alpha_adjustment_targetB\x10\n\x0e_circle_centerB\x1d\n\x1b_circle_center_coordinate_1B\x1d\n\x1b_circle_center_coordinate_2B\x1d\n\x1b_circle_center_coordinate_3B\x10\n\x0e_circle_normalB\x1d\n\x1b_circle_normal_coordinate_1B\x1d\n\x1b_circle_normal_coordinate_2B\x1d\n\x1b_circle_normal_coordinate_3B\x12\n\x10_circle_rotationB\x0e\n\x0c_circle_nodeB\x1b\n\x19_circle_node_coordinate_1B\x1b\n\x19_circle_node_coordinate_2B\x1b\n\x19_circle_node_coordinate_3B\x10\n\x0e_circle_radiusB\x1c\n\x1a_elliptical_arc_first_nodeB\x1d\n\x1b_elliptical_arc_second_nodeB\x17\n\x15_elliptical_arc_alphaB\x16\n\x14_elliptical_arc_betaB\x18\n\x16_elliptical_arc_normalB\x1a\n\x18_elliptical_arc_normal_xB\x1a\n\x18_elliptical_arc_normal_yB\x1a\n\x18_elliptical_arc_normal_zB\x1e\n\x1c_elliptical_arc_major_radiusB\x1e\n\x1c_elliptical_arc_minor_radiusB\x18\n\x16_elliptical_arc_centerB\x1a\n\x18_elliptical_arc_center_xB\x1a\n\x18_elliptical_arc_center_yB\x1a\n\x18_elliptical_arc_center_zB\x19\n\x17_elliptical_arc_focus_1B\x1b\n\x19_elliptical_arc_focus_1_xB\x1b\n\x19_elliptical_arc_focus_1_yB\x1b\n\x19_elliptical_arc_focus_1_zB\x19\n\x17_elliptical_arc_focus_2B\x1b\n\x19_elliptical_arc_focus_2_xB\x1b\n\x19_elliptical_arc_focus_2_yB\x1b\n\x19_elliptical_arc_focus_2_zB,\n*_elliptical_arc_first_control_point_objectB%\n#_elliptical_arc_first_control_pointB\'\n%_elliptical_arc_first_control_point_xB\'\n%_elliptical_arc_first_control_point_yB\'\n%_elliptical_arc_first_control_point_zB-\n+_elliptical_arc_second_control_point_objectB&\n$_elliptical_arc_second_control_pointB(\n&_elliptical_arc_second_control_point_xB(\n&_elliptical_arc_second_control_point_yB(\n&_elliptical_arc_second_control_point_zB0\n._elliptical_arc_perimeter_control_point_objectB)\n\'_elliptical_arc_perimeter_control_pointB+\n)_elliptical_arc_perimeter_control_point_xB+\n)_elliptical_arc_perimeter_control_point_yB+\n)_elliptical_arc_perimeter_control_point_zB\x15\n\x13_ellipse_first_nodeB\x16\n\x14_ellipse_second_nodeB\x1f\n\x1d_ellipse_control_point_objectB\x18\n\x16_ellipse_control_pointB\x1a\n\x18_ellipse_control_point_xB\x1a\n\x18_ellipse_control_point_yB\x1a\n\x18_ellipse_control_point_zB\x16\n\x14_parabola_first_nodeB\x17\n\x15_parabola_second_nodeB \n\x1e_parabola_control_point_objectB\x19\n\x17_parabola_control_pointB\x1b\n\x19_parabola_control_point_xB\x1b\n\x19_parabola_control_point_yB\x1b\n\x19_parabola_control_point_zB$\n\"_parabola_focus_directrix_distanceB\x11\n\x0f_parabola_alphaB\x11\n\x0f_parabola_focusB\x13\n\x11_parabola_focus_xB\x13\n\x11_parabola_focus_yB\x13\n\x11_parabola_focus_zB\x0e\n\x0c_nurbs_orderB%\n#_nurbs_control_points_by_componentsB\x17\n\x15_nurbs_control_pointsB\x0e\n\x0c_nurbs_knotsB\x1e\n\x1c_rotation_specification_typeB\x11\n\x0f_rotation_angleB\x15\n\x13_rotation_help_nodeB\x11\n\x0f_rotation_planeB\r\n\x0b_is_rotatedB\x0f\n\r_parent_layerB\x1c\n\x1a_is_locked_by_parent_layerB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x0b\n\t_color_byB\x08\n\x06_colorB\x0f\n\r_line_type_byB\x0c\n\n_line_typeB\x14\n\x12_line_thickness_byB\x11\n\x0f_line_thicknessB\x0e\n\x0c_start_pointB\x10\n\x0e_start_point_xB\x10\n\x0e_start_point_yB\x10\n\x0e_start_point_zB\x0c\n\n_end_pointB\x0e\n\x0c_end_point_xB\x0e\n\x0c_end_point_yB\x0e\n\x0c_end_point_zB\x14\n\x12_definition_pointsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -33,7 +33,7 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.layout_and_
33
33
  if not _descriptor._USE_C_DESCRIPTORS:
34
34
  DESCRIPTOR._loaded_options = None
35
35
  _globals['_CADLINE']._serialized_start=122
36
- _globals['_CADLINE']._serialized_end=11366
36
+ _globals['_CADLINE']._serialized_end=11423
37
37
  _globals['_CADLINE_NURBSCONTROLPOINTSBYCOMPONENTSTABLE']._serialized_start=5761
38
38
  _globals['_CADLINE_NURBSCONTROLPOINTSBYCOMPONENTSTABLE']._serialized_end=5891
39
39
  _globals['_CADLINE_NURBSCONTROLPOINTSBYCOMPONENTSROW']._serialized_start=5894
@@ -55,15 +55,15 @@ if not _descriptor._USE_C_DESCRIPTORS:
55
55
  _globals['_CADLINE_ARCALPHAADJUSTMENTTARGET']._serialized_start=7389
56
56
  _globals['_CADLINE_ARCALPHAADJUSTMENTTARGET']._serialized_end=7560
57
57
  _globals['_CADLINE_ROTATIONSPECIFICATIONTYPE']._serialized_start=7563
58
- _globals['_CADLINE_ROTATIONSPECIFICATIONTYPE']._serialized_end=7754
59
- _globals['_CADLINE_ROTATIONPLANE']._serialized_start=7756
60
- _globals['_CADLINE_ROTATIONPLANE']._serialized_end=7817
61
- _globals['_CADLINE_COLORBY']._serialized_start=7819
62
- _globals['_CADLINE_COLORBY']._serialized_end=7898
63
- _globals['_CADLINE_LINETYPEBY']._serialized_start=7900
64
- _globals['_CADLINE_LINETYPEBY']._serialized_end=7990
65
- _globals['_CADLINE_LINETYPE']._serialized_start=7993
66
- _globals['_CADLINE_LINETYPE']._serialized_end=8124
67
- _globals['_CADLINE_LINETHICKNESSBY']._serialized_start=8126
68
- _globals['_CADLINE_LINETHICKNESSBY']._serialized_end=8231
58
+ _globals['_CADLINE_ROTATIONSPECIFICATIONTYPE']._serialized_end=7811
59
+ _globals['_CADLINE_ROTATIONPLANE']._serialized_start=7813
60
+ _globals['_CADLINE_ROTATIONPLANE']._serialized_end=7874
61
+ _globals['_CADLINE_COLORBY']._serialized_start=7876
62
+ _globals['_CADLINE_COLORBY']._serialized_end=7955
63
+ _globals['_CADLINE_LINETYPEBY']._serialized_start=7957
64
+ _globals['_CADLINE_LINETYPEBY']._serialized_end=8047
65
+ _globals['_CADLINE_LINETYPE']._serialized_start=8050
66
+ _globals['_CADLINE_LINETYPE']._serialized_end=8181
67
+ _globals['_CADLINE_LINETHICKNESSBY']._serialized_start=8183
68
+ _globals['_CADLINE_LINETHICKNESSBY']._serialized_end=8288
69
69
  # @@protoc_insertion_point(module_scope)
@@ -44,10 +44,12 @@ class CadLine(_message.Message):
44
44
  class RotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
45
  __slots__ = ()
46
46
  ROTATION_SPECIFICATION_TYPE_BY_ANGLE: _ClassVar[CadLine.RotationSpecificationType]
47
+ ROTATION_SPECIFICATION_TYPE_GLASS_COMPOSITION_MODEL: _ClassVar[CadLine.RotationSpecificationType]
47
48
  ROTATION_SPECIFICATION_TYPE_INSIDE: _ClassVar[CadLine.RotationSpecificationType]
48
49
  ROTATION_SPECIFICATION_TYPE_SURFACE: _ClassVar[CadLine.RotationSpecificationType]
49
50
  ROTATION_SPECIFICATION_TYPE_TO_NODE: _ClassVar[CadLine.RotationSpecificationType]
50
51
  ROTATION_SPECIFICATION_TYPE_BY_ANGLE: CadLine.RotationSpecificationType
52
+ ROTATION_SPECIFICATION_TYPE_GLASS_COMPOSITION_MODEL: CadLine.RotationSpecificationType
51
53
  ROTATION_SPECIFICATION_TYPE_INSIDE: CadLine.RotationSpecificationType
52
54
  ROTATION_SPECIFICATION_TYPE_SURFACE: CadLine.RotationSpecificationType
53
55
  ROTATION_SPECIFICATION_TYPE_TO_NODE: CadLine.RotationSpecificationType