dlubal.api 0.1.293714a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dlubal.api might be problematic. Click here for more details.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,161 @@
1
+ from google.protobuf import descriptor as _descriptor
2
+ from google.protobuf import message as _message
3
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
6
+
7
+ class StructureModification(_message.Message):
8
+ __slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to", "comment", "modify_stiffnesses_gamma_m", "modify_stiffnesses_materials", "modify_stiffnesses_sections", "modify_stiffnesses_members", "modify_stiffnesses_surfaces", "modify_stiffnesses_member_hinges", "modify_stiffnesses_line_hinges", "modify_stiffnesses_nodal_supports", "modify_stiffnesses_line_supports", "modify_stiffnesses_member_supports", "modify_stiffnesses_surface_supports", "modify_stiffness_member_reinforcement", "modify_stiffness_surface_reinforcement", "modify_stiffness_timber_members_due_moisture_class", "nonlinearities_disabled_material_nonlinearity_models", "nonlinearities_disabled_material_temperature_nonlinearities", "nonlinearities_disabled_line_hinges", "nonlinearities_disabled_member_types", "nonlinearities_disabled_member_hinges", "nonlinearities_disabled_member_nonlinearities", "nonlinearities_disabled_solid_types_contact_or_surfaces_contact", "nonlinearities_disabled_nodal_supports", "nonlinearities_disabled_line_supports", "nonlinearities_disabled_member_supports", "nonlinearities_disabled_surface_supports", "modify_stiffnesses_material_table", "modify_stiffnesses_section_table", "modify_stiffnesses_member_table", "modify_stiffnesses_surface_table", "modify_stiffnesses_member_hinges_table", "modify_stiffnesses_line_hinges_table", "modify_stiffnesses_nodal_supports_table", "modify_stiffnesses_line_supports_table", "modify_stiffnesses_member_supports_table", "modify_stiffnesses_surface_supports_table", "deactivate_members_enabled", "object_selection_for_deactivate_members", "deactivate_surfaces_enabled", "object_selection_for_deactivate_surfaces", "deactivate_solids_enabled", "object_selection_for_deactivate_solids", "deactivate_support_on_nodes_enabled", "object_selection_for_deactivate_support_on_nodes", "deactivate_support_on_lines_enabled", "object_selection_for_deactivate_support_on_lines", "deactivate_support_on_members_enabled", "object_selection_for_deactivate_support_on_members", "deactivate_support_on_surfaces_enabled", "object_selection_for_deactivate_support_on_surfaces", "id_for_export_import", "metadata_for_export_import")
9
+ NO_FIELD_NUMBER: _ClassVar[int]
10
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
11
+ NAME_FIELD_NUMBER: _ClassVar[int]
12
+ ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
13
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
14
+ MODIFY_STIFFNESSES_GAMMA_M_FIELD_NUMBER: _ClassVar[int]
15
+ MODIFY_STIFFNESSES_MATERIALS_FIELD_NUMBER: _ClassVar[int]
16
+ MODIFY_STIFFNESSES_SECTIONS_FIELD_NUMBER: _ClassVar[int]
17
+ MODIFY_STIFFNESSES_MEMBERS_FIELD_NUMBER: _ClassVar[int]
18
+ MODIFY_STIFFNESSES_SURFACES_FIELD_NUMBER: _ClassVar[int]
19
+ MODIFY_STIFFNESSES_MEMBER_HINGES_FIELD_NUMBER: _ClassVar[int]
20
+ MODIFY_STIFFNESSES_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
21
+ MODIFY_STIFFNESSES_NODAL_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
22
+ MODIFY_STIFFNESSES_LINE_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
23
+ MODIFY_STIFFNESSES_MEMBER_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
24
+ MODIFY_STIFFNESSES_SURFACE_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
25
+ MODIFY_STIFFNESS_MEMBER_REINFORCEMENT_FIELD_NUMBER: _ClassVar[int]
26
+ MODIFY_STIFFNESS_SURFACE_REINFORCEMENT_FIELD_NUMBER: _ClassVar[int]
27
+ MODIFY_STIFFNESS_TIMBER_MEMBERS_DUE_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
28
+ NONLINEARITIES_DISABLED_MATERIAL_NONLINEARITY_MODELS_FIELD_NUMBER: _ClassVar[int]
29
+ NONLINEARITIES_DISABLED_MATERIAL_TEMPERATURE_NONLINEARITIES_FIELD_NUMBER: _ClassVar[int]
30
+ NONLINEARITIES_DISABLED_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
31
+ NONLINEARITIES_DISABLED_MEMBER_TYPES_FIELD_NUMBER: _ClassVar[int]
32
+ NONLINEARITIES_DISABLED_MEMBER_HINGES_FIELD_NUMBER: _ClassVar[int]
33
+ NONLINEARITIES_DISABLED_MEMBER_NONLINEARITIES_FIELD_NUMBER: _ClassVar[int]
34
+ NONLINEARITIES_DISABLED_SOLID_TYPES_CONTACT_OR_SURFACES_CONTACT_FIELD_NUMBER: _ClassVar[int]
35
+ NONLINEARITIES_DISABLED_NODAL_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
36
+ NONLINEARITIES_DISABLED_LINE_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
37
+ NONLINEARITIES_DISABLED_MEMBER_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
38
+ NONLINEARITIES_DISABLED_SURFACE_SUPPORTS_FIELD_NUMBER: _ClassVar[int]
39
+ MODIFY_STIFFNESSES_MATERIAL_TABLE_FIELD_NUMBER: _ClassVar[int]
40
+ MODIFY_STIFFNESSES_SECTION_TABLE_FIELD_NUMBER: _ClassVar[int]
41
+ MODIFY_STIFFNESSES_MEMBER_TABLE_FIELD_NUMBER: _ClassVar[int]
42
+ MODIFY_STIFFNESSES_SURFACE_TABLE_FIELD_NUMBER: _ClassVar[int]
43
+ MODIFY_STIFFNESSES_MEMBER_HINGES_TABLE_FIELD_NUMBER: _ClassVar[int]
44
+ MODIFY_STIFFNESSES_LINE_HINGES_TABLE_FIELD_NUMBER: _ClassVar[int]
45
+ MODIFY_STIFFNESSES_NODAL_SUPPORTS_TABLE_FIELD_NUMBER: _ClassVar[int]
46
+ MODIFY_STIFFNESSES_LINE_SUPPORTS_TABLE_FIELD_NUMBER: _ClassVar[int]
47
+ MODIFY_STIFFNESSES_MEMBER_SUPPORTS_TABLE_FIELD_NUMBER: _ClassVar[int]
48
+ MODIFY_STIFFNESSES_SURFACE_SUPPORTS_TABLE_FIELD_NUMBER: _ClassVar[int]
49
+ DEACTIVATE_MEMBERS_ENABLED_FIELD_NUMBER: _ClassVar[int]
50
+ OBJECT_SELECTION_FOR_DEACTIVATE_MEMBERS_FIELD_NUMBER: _ClassVar[int]
51
+ DEACTIVATE_SURFACES_ENABLED_FIELD_NUMBER: _ClassVar[int]
52
+ OBJECT_SELECTION_FOR_DEACTIVATE_SURFACES_FIELD_NUMBER: _ClassVar[int]
53
+ DEACTIVATE_SOLIDS_ENABLED_FIELD_NUMBER: _ClassVar[int]
54
+ OBJECT_SELECTION_FOR_DEACTIVATE_SOLIDS_FIELD_NUMBER: _ClassVar[int]
55
+ DEACTIVATE_SUPPORT_ON_NODES_ENABLED_FIELD_NUMBER: _ClassVar[int]
56
+ OBJECT_SELECTION_FOR_DEACTIVATE_SUPPORT_ON_NODES_FIELD_NUMBER: _ClassVar[int]
57
+ DEACTIVATE_SUPPORT_ON_LINES_ENABLED_FIELD_NUMBER: _ClassVar[int]
58
+ OBJECT_SELECTION_FOR_DEACTIVATE_SUPPORT_ON_LINES_FIELD_NUMBER: _ClassVar[int]
59
+ DEACTIVATE_SUPPORT_ON_MEMBERS_ENABLED_FIELD_NUMBER: _ClassVar[int]
60
+ OBJECT_SELECTION_FOR_DEACTIVATE_SUPPORT_ON_MEMBERS_FIELD_NUMBER: _ClassVar[int]
61
+ DEACTIVATE_SUPPORT_ON_SURFACES_ENABLED_FIELD_NUMBER: _ClassVar[int]
62
+ OBJECT_SELECTION_FOR_DEACTIVATE_SUPPORT_ON_SURFACES_FIELD_NUMBER: _ClassVar[int]
63
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
64
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
65
+ no: int
66
+ user_defined_name_enabled: bool
67
+ name: str
68
+ assigned_to: str
69
+ comment: str
70
+ modify_stiffnesses_gamma_m: bool
71
+ modify_stiffnesses_materials: bool
72
+ modify_stiffnesses_sections: bool
73
+ modify_stiffnesses_members: bool
74
+ modify_stiffnesses_surfaces: bool
75
+ modify_stiffnesses_member_hinges: bool
76
+ modify_stiffnesses_line_hinges: bool
77
+ modify_stiffnesses_nodal_supports: bool
78
+ modify_stiffnesses_line_supports: bool
79
+ modify_stiffnesses_member_supports: bool
80
+ modify_stiffnesses_surface_supports: bool
81
+ modify_stiffness_member_reinforcement: bool
82
+ modify_stiffness_surface_reinforcement: bool
83
+ modify_stiffness_timber_members_due_moisture_class: bool
84
+ nonlinearities_disabled_material_nonlinearity_models: bool
85
+ nonlinearities_disabled_material_temperature_nonlinearities: bool
86
+ nonlinearities_disabled_line_hinges: bool
87
+ nonlinearities_disabled_member_types: bool
88
+ nonlinearities_disabled_member_hinges: bool
89
+ nonlinearities_disabled_member_nonlinearities: bool
90
+ nonlinearities_disabled_solid_types_contact_or_surfaces_contact: bool
91
+ nonlinearities_disabled_nodal_supports: bool
92
+ nonlinearities_disabled_line_supports: bool
93
+ nonlinearities_disabled_member_supports: bool
94
+ nonlinearities_disabled_surface_supports: bool
95
+ modify_stiffnesses_material_table: ArrayOfStructureModificationModifyStiffnessesMaterialTable
96
+ modify_stiffnesses_section_table: ArrayOfStructureModificationModifyStiffnessesSectionTable
97
+ modify_stiffnesses_member_table: ArrayOfStructureModificationModifyStiffnessesMemberTable
98
+ modify_stiffnesses_surface_table: ArrayOfStructureModificationModifyStiffnessesSurfaceTable
99
+ modify_stiffnesses_member_hinges_table: ArrayOfStructureModificationModifyStiffnessesMemberHingesTable
100
+ modify_stiffnesses_line_hinges_table: ArrayOfStructureModificationModifyStiffnessesLineHingesTable
101
+ modify_stiffnesses_nodal_supports_table: ArrayOfStructureModificationModifyStiffnessesNodalSupportsTable
102
+ modify_stiffnesses_line_supports_table: ArrayOfStructureModificationModifyStiffnessesLineSupportsTable
103
+ modify_stiffnesses_member_supports_table: ArrayOfStructureModificationModifyStiffnessesMemberSupportsTable
104
+ modify_stiffnesses_surface_supports_table: ArrayOfStructureModificationModifyStiffnessesSurfaceSupportsTable
105
+ deactivate_members_enabled: bool
106
+ object_selection_for_deactivate_members: int
107
+ deactivate_surfaces_enabled: bool
108
+ object_selection_for_deactivate_surfaces: int
109
+ deactivate_solids_enabled: bool
110
+ object_selection_for_deactivate_solids: int
111
+ deactivate_support_on_nodes_enabled: bool
112
+ object_selection_for_deactivate_support_on_nodes: int
113
+ deactivate_support_on_lines_enabled: bool
114
+ object_selection_for_deactivate_support_on_lines: int
115
+ deactivate_support_on_members_enabled: bool
116
+ object_selection_for_deactivate_support_on_members: int
117
+ deactivate_support_on_surfaces_enabled: bool
118
+ object_selection_for_deactivate_support_on_surfaces: int
119
+ id_for_export_import: str
120
+ metadata_for_export_import: str
121
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to: _Optional[str] = ..., comment: _Optional[str] = ..., modify_stiffnesses_gamma_m: bool = ..., modify_stiffnesses_materials: bool = ..., modify_stiffnesses_sections: bool = ..., modify_stiffnesses_members: bool = ..., modify_stiffnesses_surfaces: bool = ..., modify_stiffnesses_member_hinges: bool = ..., modify_stiffnesses_line_hinges: bool = ..., modify_stiffnesses_nodal_supports: bool = ..., modify_stiffnesses_line_supports: bool = ..., modify_stiffnesses_member_supports: bool = ..., modify_stiffnesses_surface_supports: bool = ..., modify_stiffness_member_reinforcement: bool = ..., modify_stiffness_surface_reinforcement: bool = ..., modify_stiffness_timber_members_due_moisture_class: bool = ..., nonlinearities_disabled_material_nonlinearity_models: bool = ..., nonlinearities_disabled_material_temperature_nonlinearities: bool = ..., nonlinearities_disabled_line_hinges: bool = ..., nonlinearities_disabled_member_types: bool = ..., nonlinearities_disabled_member_hinges: bool = ..., nonlinearities_disabled_member_nonlinearities: bool = ..., nonlinearities_disabled_solid_types_contact_or_surfaces_contact: bool = ..., nonlinearities_disabled_nodal_supports: bool = ..., nonlinearities_disabled_line_supports: bool = ..., nonlinearities_disabled_member_supports: bool = ..., nonlinearities_disabled_surface_supports: bool = ..., modify_stiffnesses_material_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesMaterialTable, _Mapping]] = ..., modify_stiffnesses_section_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesSectionTable, _Mapping]] = ..., modify_stiffnesses_member_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesMemberTable, _Mapping]] = ..., modify_stiffnesses_surface_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesSurfaceTable, _Mapping]] = ..., modify_stiffnesses_member_hinges_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesMemberHingesTable, _Mapping]] = ..., modify_stiffnesses_line_hinges_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesLineHingesTable, _Mapping]] = ..., modify_stiffnesses_nodal_supports_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesNodalSupportsTable, _Mapping]] = ..., modify_stiffnesses_line_supports_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesLineSupportsTable, _Mapping]] = ..., modify_stiffnesses_member_supports_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesMemberSupportsTable, _Mapping]] = ..., modify_stiffnesses_surface_supports_table: _Optional[_Union[ArrayOfStructureModificationModifyStiffnessesSurfaceSupportsTable, _Mapping]] = ..., deactivate_members_enabled: bool = ..., object_selection_for_deactivate_members: _Optional[int] = ..., deactivate_surfaces_enabled: bool = ..., object_selection_for_deactivate_surfaces: _Optional[int] = ..., deactivate_solids_enabled: bool = ..., object_selection_for_deactivate_solids: _Optional[int] = ..., deactivate_support_on_nodes_enabled: bool = ..., object_selection_for_deactivate_support_on_nodes: _Optional[int] = ..., deactivate_support_on_lines_enabled: bool = ..., object_selection_for_deactivate_support_on_lines: _Optional[int] = ..., deactivate_support_on_members_enabled: bool = ..., object_selection_for_deactivate_support_on_members: _Optional[int] = ..., deactivate_support_on_surfaces_enabled: bool = ..., object_selection_for_deactivate_support_on_surfaces: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
122
+
123
+ class ArrayOfStructureModificationModifyStiffnessesMaterialTable(_message.Message):
124
+ __slots__ = ()
125
+ def __init__(self) -> None: ...
126
+
127
+ class ArrayOfStructureModificationModifyStiffnessesSectionTable(_message.Message):
128
+ __slots__ = ()
129
+ def __init__(self) -> None: ...
130
+
131
+ class ArrayOfStructureModificationModifyStiffnessesMemberTable(_message.Message):
132
+ __slots__ = ()
133
+ def __init__(self) -> None: ...
134
+
135
+ class ArrayOfStructureModificationModifyStiffnessesSurfaceTable(_message.Message):
136
+ __slots__ = ()
137
+ def __init__(self) -> None: ...
138
+
139
+ class ArrayOfStructureModificationModifyStiffnessesMemberHingesTable(_message.Message):
140
+ __slots__ = ()
141
+ def __init__(self) -> None: ...
142
+
143
+ class ArrayOfStructureModificationModifyStiffnessesLineHingesTable(_message.Message):
144
+ __slots__ = ()
145
+ def __init__(self) -> None: ...
146
+
147
+ class ArrayOfStructureModificationModifyStiffnessesNodalSupportsTable(_message.Message):
148
+ __slots__ = ()
149
+ def __init__(self) -> None: ...
150
+
151
+ class ArrayOfStructureModificationModifyStiffnessesLineSupportsTable(_message.Message):
152
+ __slots__ = ()
153
+ def __init__(self) -> None: ...
154
+
155
+ class ArrayOfStructureModificationModifyStiffnessesMemberSupportsTable(_message.Message):
156
+ __slots__ = ()
157
+ def __init__(self) -> None: ...
158
+
159
+ class ArrayOfStructureModificationModifyStiffnessesSurfaceSupportsTable(_message.Message):
160
+ __slots__ = ()
161
+ def __init__(self) -> None: ...
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/structure_advanced/surface_release.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/structure_advanced/surface_release.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n8dlubal/api/rfem/structure_advanced/surface_release.proto\x12\"dlubal.api.rfem.structure_advanced\"\xd3\x05\n\x0eSurfaceRelease\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\x05\x12!\n\x14surface_release_type\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12`\n\x10release_location\x18\x06 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_advanced.SurfaceReleaseReleaseLocationH\x03\x88\x01\x01\x12\x18\n\x10released_members\x18\x07 \x03(\x05\x12\x19\n\x11released_surfaces\x18\x08 \x03(\x05\x12\x17\n\x0freleased_solids\x18\t \x03(\x05\x12%\n\x1duse_nodes_as_definition_nodes\x18\n \x03(\x05\x12%\n\x1duse_lines_as_definition_lines\x18\x0b \x03(\x05\x12\"\n\x1agenerated_released_objects\x18\x0c \x03(\x05\x12\x18\n\x0b\x64\x65\x61\x63tivated\x18\r \x01(\x08H\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0e \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0f \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x10 \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x17\n\x15_surface_release_typeB\x13\n\x11_release_locationB\x0e\n\x0c_deactivatedB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*{\n\x1dSurfaceReleaseReleaseLocation\x12+\n\'SURFACE_RELEASE_RELEASE_LOCATION_ORIGIN\x10\x00\x12-\n)SURFACE_RELEASE_RELEASE_LOCATION_RELEASED\x10\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.surface_release_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACERELEASERELEASELOCATION']._serialized_start=822
35
+ _globals['_SURFACERELEASERELEASELOCATION']._serialized_end=945
36
+ _globals['_SURFACERELEASE']._serialized_start=97
37
+ _globals['_SURFACERELEASE']._serialized_end=820
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,50 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class SurfaceReleaseReleaseLocation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ SURFACE_RELEASE_RELEASE_LOCATION_ORIGIN: _ClassVar[SurfaceReleaseReleaseLocation]
12
+ SURFACE_RELEASE_RELEASE_LOCATION_RELEASED: _ClassVar[SurfaceReleaseReleaseLocation]
13
+ SURFACE_RELEASE_RELEASE_LOCATION_ORIGIN: SurfaceReleaseReleaseLocation
14
+ SURFACE_RELEASE_RELEASE_LOCATION_RELEASED: SurfaceReleaseReleaseLocation
15
+
16
+ class SurfaceRelease(_message.Message):
17
+ __slots__ = ("no", "user_defined_name_enabled", "name", "surfaces", "surface_release_type", "release_location", "released_members", "released_surfaces", "released_solids", "use_nodes_as_definition_nodes", "use_lines_as_definition_lines", "generated_released_objects", "deactivated", "comment", "id_for_export_import", "metadata_for_export_import")
18
+ NO_FIELD_NUMBER: _ClassVar[int]
19
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
20
+ NAME_FIELD_NUMBER: _ClassVar[int]
21
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
22
+ SURFACE_RELEASE_TYPE_FIELD_NUMBER: _ClassVar[int]
23
+ RELEASE_LOCATION_FIELD_NUMBER: _ClassVar[int]
24
+ RELEASED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
25
+ RELEASED_SURFACES_FIELD_NUMBER: _ClassVar[int]
26
+ RELEASED_SOLIDS_FIELD_NUMBER: _ClassVar[int]
27
+ USE_NODES_AS_DEFINITION_NODES_FIELD_NUMBER: _ClassVar[int]
28
+ USE_LINES_AS_DEFINITION_LINES_FIELD_NUMBER: _ClassVar[int]
29
+ GENERATED_RELEASED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
30
+ DEACTIVATED_FIELD_NUMBER: _ClassVar[int]
31
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
32
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
33
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
34
+ no: int
35
+ user_defined_name_enabled: bool
36
+ name: str
37
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
38
+ surface_release_type: int
39
+ release_location: SurfaceReleaseReleaseLocation
40
+ released_members: _containers.RepeatedScalarFieldContainer[int]
41
+ released_surfaces: _containers.RepeatedScalarFieldContainer[int]
42
+ released_solids: _containers.RepeatedScalarFieldContainer[int]
43
+ use_nodes_as_definition_nodes: _containers.RepeatedScalarFieldContainer[int]
44
+ use_lines_as_definition_lines: _containers.RepeatedScalarFieldContainer[int]
45
+ generated_released_objects: _containers.RepeatedScalarFieldContainer[int]
46
+ deactivated: bool
47
+ comment: str
48
+ id_for_export_import: str
49
+ metadata_for_export_import: str
50
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., surfaces: _Optional[_Iterable[int]] = ..., surface_release_type: _Optional[int] = ..., release_location: _Optional[_Union[SurfaceReleaseReleaseLocation, str]] = ..., released_members: _Optional[_Iterable[int]] = ..., released_surfaces: _Optional[_Iterable[int]] = ..., released_solids: _Optional[_Iterable[int]] = ..., use_nodes_as_definition_nodes: _Optional[_Iterable[int]] = ..., use_lines_as_definition_lines: _Optional[_Iterable[int]] = ..., generated_released_objects: _Optional[_Iterable[int]] = ..., deactivated: bool = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,55 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/structure_advanced/surface_results_adjustment.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/structure_advanced/surface_results_adjustment.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'\nCdlubal/api/rfem/structure_advanced/surface_results_adjustment.proto\x12\"dlubal.api.rfem.structure_advanced\x1a\x1e\x64lubal/api/common/common.proto\"\xe1\x14\n\x18SurfaceResultsAdjustment\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\x05\x12U\n\x05shape\x18\x05 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_advanced.SurfaceResultsAdjustmentShapeH\x02\x88\x01\x01\x12\x18\n\x0b\x64imension_1\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12\x18\n\x0b\x64imension_2\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x1d\n\x10\x61ngular_rotation\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x39\n\x0f\x63\x65nter_position\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12\x1e\n\x11\x63\x65nter_position_x\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x1e\n\x11\x63\x65nter_position_y\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x1e\n\x11\x63\x65nter_position_z\x18\x0c \x01(\x01H\t\x88\x01\x01\x12m\n\x0epolygon_points\x18\r \x01(\x0b\x32P.dlubal.api.rfem.structure_advanced.ArrayOfSurfaceResultsAdjustmentPolygonPointsH\n\x88\x01\x01\x12\x83\x01\n\x1e\x61\x64justment_type_in_direction_u\x18\x0e \x01(\x0e\x32V.dlubal.api.rfem.structure_advanced.SurfaceResultsAdjustmentAdjustmentTypeInDirectionUH\x0b\x88\x01\x01\x12\x83\x01\n\x1e\x61\x64justment_type_in_direction_v\x18\x0f \x01(\x0e\x32V.dlubal.api.rfem.structure_advanced.SurfaceResultsAdjustmentAdjustmentTypeInDirectionVH\x0c\x88\x01\x01\x12\x97\x01\n%results_to_adjust_contact_stress_area\x18\x10 \x01(\x0b\x32\x63.dlubal.api.rfem.structure_advanced.ArrayOfSurfaceResultsAdjustmentResultsToAdjustContactStressAreaH\r\x88\x01\x01\x12\x80\x01\n\x1cprojection_in_direction_type\x18\x11 \x01(\x0e\x32U.dlubal.api.rfem.structure_advanced.SurfaceResultsAdjustmentProjectionInDirectionTypeH\x0e\x88\x01\x01\x12W\n-vector_of_projection_in_direction_coordinates\x18\x12 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0f\x88\x01\x01\x12<\n/vector_of_projection_in_direction_coordinates_x\x18\x13 \x01(\x01H\x10\x88\x01\x01\x12<\n/vector_of_projection_in_direction_coordinates_y\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12<\n/vector_of_projection_in_direction_coordinates_z\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x16 \x01(\tH\x13\x88\x01\x01\x12\x9a\x01\n results_to_adjust_in_direction_u\x18\x17 \x01(\x0b\x32k.dlubal.api.rfem.structure_advanced.ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionUAndChildItemsH\x14\x88\x01\x01\x12\x9a\x01\n results_to_adjust_in_direction_v\x18\x18 \x01(\x0b\x32k.dlubal.api.rfem.structure_advanced.ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionVAndChildItemsH\x15\x88\x01\x01\x12\x88\x01\n\x16results_to_adjust_zero\x18\x19 \x01(\x0b\x32\x63.dlubal.api.rfem.structure_advanced.ArrayOfSurfaceResultsAdjustmentResultsToAdjustZeroAndChildItemsH\x16\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1a \x01(\tH\x17\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1b \x01(\tH\x18\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x08\n\x06_shapeB\x0e\n\x0c_dimension_1B\x0e\n\x0c_dimension_2B\x13\n\x11_angular_rotationB\x12\n\x10_center_positionB\x14\n\x12_center_position_xB\x14\n\x12_center_position_yB\x14\n\x12_center_position_zB\x11\n\x0f_polygon_pointsB!\n\x1f_adjustment_type_in_direction_uB!\n\x1f_adjustment_type_in_direction_vB(\n&_results_to_adjust_contact_stress_areaB\x1f\n\x1d_projection_in_direction_typeB0\n._vector_of_projection_in_direction_coordinatesB2\n0_vector_of_projection_in_direction_coordinates_xB2\n0_vector_of_projection_in_direction_coordinates_yB2\n0_vector_of_projection_in_direction_coordinates_zB\n\n\x08_commentB#\n!_results_to_adjust_in_direction_uB#\n!_results_to_adjust_in_direction_vB\x19\n\x17_results_to_adjust_zeroB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\".\n,ArrayOfSurfaceResultsAdjustmentPolygonPoints\"A\n?ArrayOfSurfaceResultsAdjustmentResultsToAdjustContactStressArea\"I\nGArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionUAndChildItems\"I\nGArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionVAndChildItems\"A\n?ArrayOfSurfaceResultsAdjustmentResultsToAdjustZeroAndChildItems*\xd8\x01\n\x1dSurfaceResultsAdjustmentShape\x12.\n*SURFACE_RESULTS_ADJUSTMENT_SHAPE_RECTANGLE\x10\x00\x12+\n\'SURFACE_RESULTS_ADJUSTMENT_SHAPE_CIRCLE\x10\x01\x12,\n(SURFACE_RESULTS_ADJUSTMENT_SHAPE_ELLIPSE\x10\x02\x12,\n(SURFACE_RESULTS_ADJUSTMENT_SHAPE_POLYGON\x10\x03*\x95\x04\n2SurfaceResultsAdjustmentAdjustmentTypeInDirectionU\x12[\nWSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MY_MXY_VY_NY_NXY\x10\x00\x12[\nWSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MX_MXY_VX_NX_NXY\x10\x01\x12Q\nMSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_CONTACT_STRESS_AREA\x10\x05\x12\x42\n>SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_NONE\x10\x04\x12J\nFSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_USER_DEFINED\x10\x02\x12\x42\n>SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_ZERO\x10\x03*\x95\x04\n2SurfaceResultsAdjustmentAdjustmentTypeInDirectionV\x12[\nWSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MY_MXY_VY_NY_NXY\x10\x00\x12[\nWSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MX_MXY_VX_NX_NXY\x10\x01\x12Q\nMSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_CONTACT_STRESS_AREA\x10\x05\x12\x42\n>SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_NONE\x10\x04\x12J\nFSURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_USER_DEFINED\x10\x02\x12\x42\n>SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_ZERO\x10\x03*\x9d\x03\n1SurfaceResultsAdjustmentProjectionInDirectionType\x12I\nESURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_PERPENDICULAR\x10\x00\x12G\nCSURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_X\x10\x01\x12G\nCSURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Y\x10\x02\x12G\nCSURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Z\x10\x03\x12\x42\n>SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_VECTOR\x10\x04\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.surface_results_adjustment_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_SURFACERESULTSADJUSTMENTSHAPE']._serialized_start=3132
36
+ _globals['_SURFACERESULTSADJUSTMENTSHAPE']._serialized_end=3348
37
+ _globals['_SURFACERESULTSADJUSTMENTADJUSTMENTTYPEINDIRECTIONU']._serialized_start=3351
38
+ _globals['_SURFACERESULTSADJUSTMENTADJUSTMENTTYPEINDIRECTIONU']._serialized_end=3884
39
+ _globals['_SURFACERESULTSADJUSTMENTADJUSTMENTTYPEINDIRECTIONV']._serialized_start=3887
40
+ _globals['_SURFACERESULTSADJUSTMENTADJUSTMENTTYPEINDIRECTIONV']._serialized_end=4420
41
+ _globals['_SURFACERESULTSADJUSTMENTPROJECTIONINDIRECTIONTYPE']._serialized_start=4423
42
+ _globals['_SURFACERESULTSADJUSTMENTPROJECTIONINDIRECTIONTYPE']._serialized_end=4836
43
+ _globals['_SURFACERESULTSADJUSTMENT']._serialized_start=140
44
+ _globals['_SURFACERESULTSADJUSTMENT']._serialized_end=2797
45
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTPOLYGONPOINTS']._serialized_start=2799
46
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTPOLYGONPOINTS']._serialized_end=2845
47
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTCONTACTSTRESSAREA']._serialized_start=2847
48
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTCONTACTSTRESSAREA']._serialized_end=2912
49
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTINDIRECTIONUANDCHILDITEMS']._serialized_start=2914
50
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTINDIRECTIONUANDCHILDITEMS']._serialized_end=2987
51
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTINDIRECTIONVANDCHILDITEMS']._serialized_start=2989
52
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTINDIRECTIONVANDCHILDITEMS']._serialized_end=3062
53
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTZEROANDCHILDITEMS']._serialized_start=3064
54
+ _globals['_ARRAYOFSURFACERESULTSADJUSTMENTRESULTSTOADJUSTZEROANDCHILDITEMS']._serialized_end=3129
55
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,140 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class SurfaceResultsAdjustmentShape(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
11
+ __slots__ = ()
12
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_RECTANGLE: _ClassVar[SurfaceResultsAdjustmentShape]
13
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_CIRCLE: _ClassVar[SurfaceResultsAdjustmentShape]
14
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_ELLIPSE: _ClassVar[SurfaceResultsAdjustmentShape]
15
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_POLYGON: _ClassVar[SurfaceResultsAdjustmentShape]
16
+
17
+ class SurfaceResultsAdjustmentAdjustmentTypeInDirectionU(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
18
+ __slots__ = ()
19
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MY_MXY_VY_NY_NXY: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
20
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MX_MXY_VX_NX_NXY: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
21
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_CONTACT_STRESS_AREA: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
22
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_NONE: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
23
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_USER_DEFINED: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
24
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_ZERO: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU]
25
+
26
+ class SurfaceResultsAdjustmentAdjustmentTypeInDirectionV(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
27
+ __slots__ = ()
28
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MY_MXY_VY_NY_NXY: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
29
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MX_MXY_VX_NX_NXY: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
30
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_CONTACT_STRESS_AREA: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
31
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_NONE: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
32
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_USER_DEFINED: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
33
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_ZERO: _ClassVar[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV]
34
+
35
+ class SurfaceResultsAdjustmentProjectionInDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
36
+ __slots__ = ()
37
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_PERPENDICULAR: _ClassVar[SurfaceResultsAdjustmentProjectionInDirectionType]
38
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_X: _ClassVar[SurfaceResultsAdjustmentProjectionInDirectionType]
39
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Y: _ClassVar[SurfaceResultsAdjustmentProjectionInDirectionType]
40
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Z: _ClassVar[SurfaceResultsAdjustmentProjectionInDirectionType]
41
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_VECTOR: _ClassVar[SurfaceResultsAdjustmentProjectionInDirectionType]
42
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_RECTANGLE: SurfaceResultsAdjustmentShape
43
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_CIRCLE: SurfaceResultsAdjustmentShape
44
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_ELLIPSE: SurfaceResultsAdjustmentShape
45
+ SURFACE_RESULTS_ADJUSTMENT_SHAPE_POLYGON: SurfaceResultsAdjustmentShape
46
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MY_MXY_VY_NY_NXY: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
47
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_AVERAGING_OF_MX_MXY_VX_NX_NXY: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
48
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_CONTACT_STRESS_AREA: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
49
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_NONE: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
50
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_USER_DEFINED: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
51
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_U_ZERO: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
52
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MY_MXY_VY_NY_NXY: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
53
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_AVERAGING_OF_MX_MXY_VX_NX_NXY: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
54
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_CONTACT_STRESS_AREA: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
55
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_NONE: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
56
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_USER_DEFINED: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
57
+ SURFACE_RESULTS_ADJUSTMENT_ADJUSTMENT_TYPE_IN_DIRECTION_V_ZERO: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
58
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_PERPENDICULAR: SurfaceResultsAdjustmentProjectionInDirectionType
59
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_X: SurfaceResultsAdjustmentProjectionInDirectionType
60
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Y: SurfaceResultsAdjustmentProjectionInDirectionType
61
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_GLOBAL_IN_Z: SurfaceResultsAdjustmentProjectionInDirectionType
62
+ SURFACE_RESULTS_ADJUSTMENT_PROJECTION_IN_DIRECTION_TYPE_VECTOR: SurfaceResultsAdjustmentProjectionInDirectionType
63
+
64
+ class SurfaceResultsAdjustment(_message.Message):
65
+ __slots__ = ("no", "user_defined_name_enabled", "name", "surfaces", "shape", "dimension_1", "dimension_2", "angular_rotation", "center_position", "center_position_x", "center_position_y", "center_position_z", "polygon_points", "adjustment_type_in_direction_u", "adjustment_type_in_direction_v", "results_to_adjust_contact_stress_area", "projection_in_direction_type", "vector_of_projection_in_direction_coordinates", "vector_of_projection_in_direction_coordinates_x", "vector_of_projection_in_direction_coordinates_y", "vector_of_projection_in_direction_coordinates_z", "comment", "results_to_adjust_in_direction_u", "results_to_adjust_in_direction_v", "results_to_adjust_zero", "id_for_export_import", "metadata_for_export_import")
66
+ NO_FIELD_NUMBER: _ClassVar[int]
67
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
68
+ NAME_FIELD_NUMBER: _ClassVar[int]
69
+ SURFACES_FIELD_NUMBER: _ClassVar[int]
70
+ SHAPE_FIELD_NUMBER: _ClassVar[int]
71
+ DIMENSION_1_FIELD_NUMBER: _ClassVar[int]
72
+ DIMENSION_2_FIELD_NUMBER: _ClassVar[int]
73
+ ANGULAR_ROTATION_FIELD_NUMBER: _ClassVar[int]
74
+ CENTER_POSITION_FIELD_NUMBER: _ClassVar[int]
75
+ CENTER_POSITION_X_FIELD_NUMBER: _ClassVar[int]
76
+ CENTER_POSITION_Y_FIELD_NUMBER: _ClassVar[int]
77
+ CENTER_POSITION_Z_FIELD_NUMBER: _ClassVar[int]
78
+ POLYGON_POINTS_FIELD_NUMBER: _ClassVar[int]
79
+ ADJUSTMENT_TYPE_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
80
+ ADJUSTMENT_TYPE_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
81
+ RESULTS_TO_ADJUST_CONTACT_STRESS_AREA_FIELD_NUMBER: _ClassVar[int]
82
+ PROJECTION_IN_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
83
+ VECTOR_OF_PROJECTION_IN_DIRECTION_COORDINATES_FIELD_NUMBER: _ClassVar[int]
84
+ VECTOR_OF_PROJECTION_IN_DIRECTION_COORDINATES_X_FIELD_NUMBER: _ClassVar[int]
85
+ VECTOR_OF_PROJECTION_IN_DIRECTION_COORDINATES_Y_FIELD_NUMBER: _ClassVar[int]
86
+ VECTOR_OF_PROJECTION_IN_DIRECTION_COORDINATES_Z_FIELD_NUMBER: _ClassVar[int]
87
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
88
+ RESULTS_TO_ADJUST_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
89
+ RESULTS_TO_ADJUST_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
90
+ RESULTS_TO_ADJUST_ZERO_FIELD_NUMBER: _ClassVar[int]
91
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
92
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
93
+ no: int
94
+ user_defined_name_enabled: bool
95
+ name: str
96
+ surfaces: _containers.RepeatedScalarFieldContainer[int]
97
+ shape: SurfaceResultsAdjustmentShape
98
+ dimension_1: float
99
+ dimension_2: float
100
+ angular_rotation: float
101
+ center_position: _common_pb2.Vector3d
102
+ center_position_x: float
103
+ center_position_y: float
104
+ center_position_z: float
105
+ polygon_points: ArrayOfSurfaceResultsAdjustmentPolygonPoints
106
+ adjustment_type_in_direction_u: SurfaceResultsAdjustmentAdjustmentTypeInDirectionU
107
+ adjustment_type_in_direction_v: SurfaceResultsAdjustmentAdjustmentTypeInDirectionV
108
+ results_to_adjust_contact_stress_area: ArrayOfSurfaceResultsAdjustmentResultsToAdjustContactStressArea
109
+ projection_in_direction_type: SurfaceResultsAdjustmentProjectionInDirectionType
110
+ vector_of_projection_in_direction_coordinates: _common_pb2.Vector3d
111
+ vector_of_projection_in_direction_coordinates_x: float
112
+ vector_of_projection_in_direction_coordinates_y: float
113
+ vector_of_projection_in_direction_coordinates_z: float
114
+ comment: str
115
+ results_to_adjust_in_direction_u: ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionUAndChildItems
116
+ results_to_adjust_in_direction_v: ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionVAndChildItems
117
+ results_to_adjust_zero: ArrayOfSurfaceResultsAdjustmentResultsToAdjustZeroAndChildItems
118
+ id_for_export_import: str
119
+ metadata_for_export_import: str
120
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., surfaces: _Optional[_Iterable[int]] = ..., shape: _Optional[_Union[SurfaceResultsAdjustmentShape, str]] = ..., dimension_1: _Optional[float] = ..., dimension_2: _Optional[float] = ..., angular_rotation: _Optional[float] = ..., center_position: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_position_x: _Optional[float] = ..., center_position_y: _Optional[float] = ..., center_position_z: _Optional[float] = ..., polygon_points: _Optional[_Union[ArrayOfSurfaceResultsAdjustmentPolygonPoints, _Mapping]] = ..., adjustment_type_in_direction_u: _Optional[_Union[SurfaceResultsAdjustmentAdjustmentTypeInDirectionU, str]] = ..., adjustment_type_in_direction_v: _Optional[_Union[SurfaceResultsAdjustmentAdjustmentTypeInDirectionV, str]] = ..., results_to_adjust_contact_stress_area: _Optional[_Union[ArrayOfSurfaceResultsAdjustmentResultsToAdjustContactStressArea, _Mapping]] = ..., projection_in_direction_type: _Optional[_Union[SurfaceResultsAdjustmentProjectionInDirectionType, str]] = ..., vector_of_projection_in_direction_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., vector_of_projection_in_direction_coordinates_x: _Optional[float] = ..., vector_of_projection_in_direction_coordinates_y: _Optional[float] = ..., vector_of_projection_in_direction_coordinates_z: _Optional[float] = ..., comment: _Optional[str] = ..., results_to_adjust_in_direction_u: _Optional[_Union[ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionUAndChildItems, _Mapping]] = ..., results_to_adjust_in_direction_v: _Optional[_Union[ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionVAndChildItems, _Mapping]] = ..., results_to_adjust_zero: _Optional[_Union[ArrayOfSurfaceResultsAdjustmentResultsToAdjustZeroAndChildItems, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
121
+
122
+ class ArrayOfSurfaceResultsAdjustmentPolygonPoints(_message.Message):
123
+ __slots__ = ()
124
+ def __init__(self) -> None: ...
125
+
126
+ class ArrayOfSurfaceResultsAdjustmentResultsToAdjustContactStressArea(_message.Message):
127
+ __slots__ = ()
128
+ def __init__(self) -> None: ...
129
+
130
+ class ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionUAndChildItems(_message.Message):
131
+ __slots__ = ()
132
+ def __init__(self) -> None: ...
133
+
134
+ class ArrayOfSurfaceResultsAdjustmentResultsToAdjustInDirectionVAndChildItems(_message.Message):
135
+ __slots__ = ()
136
+ def __init__(self) -> None: ...
137
+
138
+ class ArrayOfSurfaceResultsAdjustmentResultsToAdjustZeroAndChildItems(_message.Message):
139
+ __slots__ = ()
140
+ def __init__(self) -> None: ...
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/structure_advanced/surfaces_contact.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/structure_advanced/surfaces_contact.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9dlubal/api/rfem/structure_advanced/surfaces_contact.proto\x12\"dlubal.api.rfem.structure_advanced\"\xb3\x02\n\x0fSurfacesContact\x12\n\n\x02no\x18\x01 \x01(\x05\x12\"\n\x15surfaces_contact_type\x18\x02 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\x0fsurfaces_group1\x18\x03 \x03(\x05\x12\x17\n\x0fsurfaces_group2\x18\x04 \x03(\x05\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x01\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x07 \x01(\tH\x03\x88\x01\x01\x42\x18\n\x16_surfaces_contact_typeB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.surfaces_contact_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACESCONTACT']._serialized_start=98
35
+ _globals['_SURFACESCONTACT']._serialized_end=405
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,24 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class SurfacesContact(_message.Message):
9
+ __slots__ = ("no", "surfaces_contact_type", "surfaces_group1", "surfaces_group2", "comment", "id_for_export_import", "metadata_for_export_import")
10
+ NO_FIELD_NUMBER: _ClassVar[int]
11
+ SURFACES_CONTACT_TYPE_FIELD_NUMBER: _ClassVar[int]
12
+ SURFACES_GROUP1_FIELD_NUMBER: _ClassVar[int]
13
+ SURFACES_GROUP2_FIELD_NUMBER: _ClassVar[int]
14
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
15
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
16
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
17
+ no: int
18
+ surfaces_contact_type: int
19
+ surfaces_group1: _containers.RepeatedScalarFieldContainer[int]
20
+ surfaces_group2: _containers.RepeatedScalarFieldContainer[int]
21
+ comment: str
22
+ id_for_export_import: str
23
+ metadata_for_export_import: str
24
+ def __init__(self, no: _Optional[int] = ..., surfaces_contact_type: _Optional[int] = ..., surfaces_group1: _Optional[_Iterable[int]] = ..., surfaces_group2: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,15 @@
1
+ from .line_pb2 import *
2
+ from .line_set_pb2 import *
3
+ from .material_pb2 import *
4
+ from .member_pb2 import *
5
+ from .member_representative_pb2 import *
6
+ from .member_set_pb2 import *
7
+ from .member_set_representative_pb2 import *
8
+ from .node_pb2 import *
9
+ from .opening_pb2 import *
10
+ from .section_pb2 import *
11
+ from .solid_pb2 import *
12
+ from .solid_set_pb2 import *
13
+ from .surface_pb2 import *
14
+ from .surface_set_pb2 import *
15
+ from .thickness_pb2 import *
@@ -0,0 +1,53 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/structure_core/line.proto
5
+ # Protobuf Python Version: 5.28.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 28,
16
+ 1,
17
+ '',
18
+ 'dlubal/api/rfem/structure_core/line.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)dlubal/api/rfem/structure_core/line.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xf5<\n\x04Line\x12\n\n\x02no\x18\x01 \x01(\x05\x12;\n\x04type\x18\x02 \x01(\x0e\x32(.dlubal.api.rfem.structure_core.LineTypeH\x00\x88\x01\x01\x12\x18\n\x10\x64\x65\x66inition_nodes\x18\x03 \x03(\x05\x12\x13\n\x06length\x18\x04 \x01(\x01H\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x02\x88\x01\x01\x12\x1b\n\x0e\x61rc_first_node\x18\x06 \x01(\x05H\x03\x88\x01\x01\x12\x1c\n\x0f\x61rc_second_node\x18\x07 \x01(\x05H\x04\x88\x01\x01\x12;\n\x11\x61rc_control_point\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12 \n\x13\x61rc_control_point_x\x18\t \x01(\x01H\x06\x88\x01\x01\x12 \n\x13\x61rc_control_point_y\x18\n \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x61rc_control_point_z\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12\x34\n\narc_center\x18\x0c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\t\x88\x01\x01\x12\x19\n\x0c\x61rc_center_x\x18\r \x01(\x01H\n\x88\x01\x01\x12\x19\n\x0c\x61rc_center_y\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x19\n\x0c\x61rc_center_z\x18\x0f \x01(\x01H\x0c\x88\x01\x01\x12\x17\n\narc_radius\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x17\n\narc_height\x18\x11 \x01(\x01H\x0e\x88\x01\x01\x12\x16\n\tarc_alpha\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x66\n\x1b\x61rc_alpha_adjustment_target\x18\x13 \x01(\x0e\x32<.dlubal.api.rfem.structure_core.LineArcAlphaAdjustmentTargetH\x10\x88\x01\x01\x12\x37\n\rcircle_center\x18\x14 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x11\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_1\x18\x15 \x01(\x01H\x12\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_2\x18\x16 \x01(\x01H\x13\x88\x01\x01\x12\'\n\x1a\x63ircle_center_coordinate_3\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x37\n\rcircle_normal\x18\x18 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x15\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_1\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_2\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\'\n\x1a\x63ircle_normal_coordinate_3\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12\x1c\n\x0f\x63ircle_rotation\x18\x1c \x01(\x01H\x19\x88\x01\x01\x12\x35\n\x0b\x63ircle_node\x18\x1d \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x1a\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_1\x18\x1e \x01(\x01H\x1b\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_2\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12%\n\x18\x63ircle_node_coordinate_3\x18 \x01(\x01H\x1d\x88\x01\x01\x12\x1a\n\rcircle_radius\x18! \x01(\x01H\x1e\x88\x01\x01\x12\x1f\n\x12\x65llipse_first_node\x18\" \x01(\x05H\x1f\x88\x01\x01\x12 \n\x13\x65llipse_second_node\x18# \x01(\x05H \x88\x01\x01\x12?\n\x15\x65llipse_control_point\x18$ \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH!\x88\x01\x01\x12$\n\x17\x65llipse_control_point_x\x18% \x01(\x01H\"\x88\x01\x01\x12$\n\x17\x65llipse_control_point_y\x18& \x01(\x01H#\x88\x01\x01\x12$\n\x17\x65llipse_control_point_z\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\x30 \x01(\x01H-\x88\x01\x01\x12(\n\x1b\x65lliptical_arc_minor_radius\x18\x31 \x01(\x01H.\x88\x01\x01\x12?\n\x15\x65lliptical_arc_center\x18\x32 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH/\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_x\x18\x33 \x01(\x01H0\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_y\x18\x34 \x01(\x01H1\x88\x01\x01\x12$\n\x17\x65lliptical_arc_center_z\x18\x35 \x01(\x01H2\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_1\x18\x36 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH3\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_x\x18\x37 \x01(\x01H4\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_y\x18\x38 \x01(\x01H5\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_1_z\x18\x39 \x01(\x01H6\x88\x01\x01\x12@\n\x16\x65lliptical_arc_focus_2\x18: \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH7\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_x\x18; \x01(\x01H8\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_y\x18< \x01(\x01H9\x88\x01\x01\x12%\n\x18\x65lliptical_arc_focus_2_z\x18= \x01(\x01H:\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\x41 \x01(\x01H>\x88\x01\x01\x12M\n#elliptical_arc_second_control_point\x18\x42 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH?\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_x\x18\x43 \x01(\x01H@\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_y\x18\x44 \x01(\x01HA\x88\x01\x01\x12\x32\n%elliptical_arc_second_control_point_z\x18\x45 \x01(\x01HB\x88\x01\x01\x12P\n&elliptical_arc_perimeter_control_point\x18\x46 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHC\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_x\x18G \x01(\x01HD\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_y\x18H \x01(\x01HE\x88\x01\x01\x12\x35\n(elliptical_arc_perimeter_control_point_z\x18I \x01(\x01HF\x88\x01\x01\x12 \n\x13parabola_first_node\x18J \x01(\x05HG\x88\x01\x01\x12!\n\x14parabola_second_node\x18K \x01(\x05HH\x88\x01\x01\x12@\n\x16parabola_control_point\x18L \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHI\x88\x01\x01\x12%\n\x18parabola_control_point_x\x18M \x01(\x01HJ\x88\x01\x01\x12%\n\x18parabola_control_point_y\x18N \x01(\x01HK\x88\x01\x01\x12%\n\x18parabola_control_point_z\x18O \x01(\x01HL\x88\x01\x01\x12\x1b\n\x0eparabola_alpha\x18P \x01(\x01HM\x88\x01\x01\x12.\n!parabola_focus_directrix_distance\x18Q \x01(\x01HN\x88\x01\x01\x12\x38\n\x0eparabola_focus\x18R \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dHO\x88\x01\x01\x12\x1d\n\x10parabola_focus_x\x18S \x01(\x01HP\x88\x01\x01\x12\x1d\n\x10parabola_focus_y\x18T \x01(\x01HQ\x88\x01\x01\x12\x1d\n\x10parabola_focus_z\x18U \x01(\x01HR\x88\x01\x01\x12\x18\n\x0bnurbs_order\x18V \x01(\x05HS\x88\x01\x01\x12z\n\"nurbs_control_points_by_components\x18W \x01(\x0b\x32I.dlubal.api.rfem.structure_core.ArrayOfLineNurbsControlPointsByComponentsHT\x88\x01\x01\x12`\n\x14nurbs_control_points\x18X \x01(\x0b\x32=.dlubal.api.rfem.structure_core.ArrayOfLineNurbsControlPointsHU\x88\x01\x01\x12O\n\x0bnurbs_knots\x18Y \x01(\x0b\x32\x35.dlubal.api.rfem.structure_core.ArrayOfLineNurbsKnotsHV\x88\x01\x01\x12g\n\x1brotation_specification_type\x18Z \x01(\x0e\x32=.dlubal.api.rfem.structure_core.LineRotationSpecificationTypeHW\x88\x01\x01\x12\x1b\n\x0erotation_angle\x18[ \x01(\x01HX\x88\x01\x01\x12\x1f\n\x12rotation_help_node\x18\\ \x01(\x05HY\x88\x01\x01\x12N\n\x0erotation_plane\x18] \x01(\x0e\x32\x31.dlubal.api.rfem.structure_core.LineRotationPlaneHZ\x88\x01\x01\x12\x17\n\nis_rotated\x18^ \x01(\x08H[\x88\x01\x01\x12\x13\n\x06member\x18_ \x01(\x05H\\\x88\x01\x01\x12\x14\n\x07support\x18` \x01(\x05H]\x88\x01\x01\x12\x1c\n\x0fmesh_refinement\x18\x61 \x01(\x05H^\x88\x01\x01\x12`\n\x14line_weld_assignment\x18\x62 \x01(\x0b\x32=.dlubal.api.rfem.structure_core.ArrayOfLineLineWeldAssignmentH_\x88\x01\x01\x12\x1b\n\x0ehas_line_welds\x18\x63 \x01(\x08H`\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x64 \x01(\x08Ha\x88\x01\x01\x12#\n\x16generating_object_info\x18\x65 \x01(\tHb\x88\x01\x01\x12%\n\x18\x61rc_control_point_object\x18\x66 \x01(\x05Hc\x88\x01\x01\x12)\n\x1c\x65llipse_control_point_object\x18g \x01(\x05Hd\x88\x01\x01\x12\x36\n)elliptical_arc_first_control_point_object\x18h \x01(\x05He\x88\x01\x01\x12:\n-elliptical_arc_perimeter_control_point_object\x18i \x01(\x05Hf\x88\x01\x01\x12\x37\n*elliptical_arc_second_control_point_object\x18j \x01(\x05Hg\x88\x01\x01\x12*\n\x1dparabola_control_point_object\x18k \x01(\x05Hh\x88\x01\x01\x12!\n\x14id_for_export_import\x18l \x01(\tHi\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18m \x01(\tHj\x88\x01\x01\x42\x07\n\x05_typeB\t\n\x07_lengthB\n\n\x08_commentB\x11\n\x0f_arc_first_nodeB\x12\n\x10_arc_second_nodeB\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\x15\n\x13_ellipse_first_nodeB\x16\n\x14_ellipse_second_nodeB\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\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_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_pointB(\n&_elliptical_arc_second_control_point_xB(\n&_elliptical_arc_second_control_point_yB(\n&_elliptical_arc_second_control_point_zB)\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\x16\n\x14_parabola_first_nodeB\x17\n\x15_parabola_second_nodeB\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\x11\n\x0f_parabola_alphaB$\n\"_parabola_focus_directrix_distanceB\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\t\n\x07_memberB\n\n\x08_supportB\x12\n\x10_mesh_refinementB\x17\n\x15_line_weld_assignmentB\x11\n\x0f_has_line_weldsB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1b\n\x19_arc_control_point_objectB\x1f\n\x1d_ellipse_control_point_objectB,\n*_elliptical_arc_first_control_point_objectB0\n._elliptical_arc_perimeter_control_point_objectB-\n+_elliptical_arc_second_control_point_objectB \n\x1e_parabola_control_point_objectB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"+\n)ArrayOfLineNurbsControlPointsByComponents\"\x1f\n\x1d\x41rrayOfLineNurbsControlPoints\"\x17\n\x15\x41rrayOfLineNurbsKnots\"\x1f\n\x1d\x41rrayOfLineLineWeldAssignment*\x9a\x02\n\x08LineType\x12\x15\n\x11LINE_TYPE_UNKNOWN\x10\x00\x12\x11\n\rLINE_TYPE_ARC\x10\x02\x12\x14\n\x10LINE_TYPE_CIRCLE\x10\x03\x12\x1d\n\x19LINE_TYPE_CUT_VIA_SECTION\x10\t\x12\x1f\n\x1bLINE_TYPE_CUT_VIA_TWO_LINES\x10\n\x12\x15\n\x11LINE_TYPE_ELLIPSE\x10\x05\x12\x1c\n\x18LINE_TYPE_ELLIPTICAL_ARC\x10\x04\x12\x13\n\x0fLINE_TYPE_NURBS\x10\x08\x12\x16\n\x12LINE_TYPE_PARABOLA\x10\x06\x12\x16\n\x12LINE_TYPE_POLYLINE\x10\x01\x12\x14\n\x10LINE_TYPE_SPLINE\x10\x07*\xbe\x01\n\x1cLineArcAlphaAdjustmentTarget\x12\x35\n1LINE_ARC_ALPHA_ADJUSTMENT_TARGET_BEGINNING_OF_ARC\x10\x00\x12\x36\n2LINE_ARC_ALPHA_ADJUSTMENT_TARGET_ARC_CONTROL_POINT\x10\x01\x12/\n+LINE_ARC_ALPHA_ADJUSTMENT_TARGET_END_OF_ARC\x10\x02*\xd7\x01\n\x1dLineRotationSpecificationType\x12-\n)LINE_ROTATION_SPECIFICATION_TYPE_BY_ANGLE\x10\x00\x12+\n\'LINE_ROTATION_SPECIFICATION_TYPE_INSIDE\x10\x02\x12,\n(LINE_ROTATION_SPECIFICATION_TYPE_SURFACE\x10\x03\x12,\n(LINE_ROTATION_SPECIFICATION_TYPE_TO_NODE\x10\x01*K\n\x11LineRotationPlane\x12\x1a\n\x16LINE_ROTATION_PLANE_XY\x10\x00\x12\x1a\n\x16LINE_ROTATION_PLANE_XZ\x10\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.line_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_LINETYPE']._serialized_start=8046
36
+ _globals['_LINETYPE']._serialized_end=8328
37
+ _globals['_LINEARCALPHAADJUSTMENTTARGET']._serialized_start=8331
38
+ _globals['_LINEARCALPHAADJUSTMENTTARGET']._serialized_end=8521
39
+ _globals['_LINEROTATIONSPECIFICATIONTYPE']._serialized_start=8524
40
+ _globals['_LINEROTATIONSPECIFICATIONTYPE']._serialized_end=8739
41
+ _globals['_LINEROTATIONPLANE']._serialized_start=8741
42
+ _globals['_LINEROTATIONPLANE']._serialized_end=8816
43
+ _globals['_LINE']._serialized_start=110
44
+ _globals['_LINE']._serialized_end=7907
45
+ _globals['_ARRAYOFLINENURBSCONTROLPOINTSBYCOMPONENTS']._serialized_start=7909
46
+ _globals['_ARRAYOFLINENURBSCONTROLPOINTSBYCOMPONENTS']._serialized_end=7952
47
+ _globals['_ARRAYOFLINENURBSCONTROLPOINTS']._serialized_start=7954
48
+ _globals['_ARRAYOFLINENURBSCONTROLPOINTS']._serialized_end=7985
49
+ _globals['_ARRAYOFLINENURBSKNOTS']._serialized_start=7987
50
+ _globals['_ARRAYOFLINENURBSKNOTS']._serialized_end=8010
51
+ _globals['_ARRAYOFLINELINEWELDASSIGNMENT']._serialized_start=8012
52
+ _globals['_ARRAYOFLINELINEWELDASSIGNMENT']._serialized_end=8043
53
+ # @@protoc_insertion_point(module_scope)