Salome HOME
Merge remote-tracking branch 'remotes/origin/HigherLevelObjectsHistory'
[modules/shaper.git] / src / FeaturesPlugin / Test / TestFusionFaces.py
1 # Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # -*- coding: utf-8 -*-
21
22 from salome.shaper import model
23
24 # Create document
25 model.begin()
26 partSet = model.moduleDocument()
27 Part_1 = model.addPart(partSet)
28 Part_1_doc = Part_1.document()
29
30 # =============================================================================
31 # Test 1. Fusion faces for shell of 2 adjacent faces lying on plane
32 # =============================================================================
33 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
34 Box_2 = model.addBox(Part_1_doc, 10, 10, 10)
35 Translation_1 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_2_1")], model.selection("EDGE", "PartSet/OX"), 10)
36
37 Shell_1 = model.addShell(Part_1_doc, [model.selection("FACE", "Box_1_1/Top"), model.selection("FACE", "Translation_1_1/MF:Translated&Box_2_1/Top")])
38 model.do()
39
40 model.checkResult(Shell_1, model, 1, [0], [0], [2], [8], [16])
41
42 FusionFaces_1 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Shell_1_1"))
43 model.do()
44
45 model.checkResult(FusionFaces_1, model, 1, [0], [0], [1], [4], [8])
46
47 # =============================================================================
48 # Test 2. Fusion faces for solid of 2 adjacent boxes
49 # =============================================================================
50 Fuse_1 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_1_1"), model.selection("SOLID", "Translation_1_1")], [])
51 model.do()
52
53 model.checkResult(Fuse_1, model, 1, [0], [1], [10], [40], [80])
54
55 FusionFaces_2 = model.addFusionFaces(Part_1_doc, model.selection("SOLID", "Fuse_1_1"))
56 model.do()
57
58 model.checkResult(FusionFaces_2, model, 1, [0], [1], [6], [24], [48])
59
60 # =============================================================================
61 # Test 3. Fusion faces for shell of adjacent faces lying on cylindrical surface
62 # =============================================================================
63 Cylinder_1 = model.addCylinder(Part_1_doc, model.selection("VERTEX", "PartSet/Origin"), model.selection("EDGE", "PartSet/OZ"), 5, 10)
64 Shell_2 = model.addShell(Part_1_doc, [model.selection("FACE", "Cylinder_1_1/Face_1")])
65 Point_1 = model.addPoint(Part_1_doc, 0, 0, 5)
66 Plane_1 = model.addPlane(Part_1_doc, model.selection("EDGE", "PartSet/OZ"), model.selection("VERTEX", "Point_1"), True)
67
68 Partition_1 = model.addPartition(Part_1_doc, [model.selection("SHELL", "Shell_2_1"), model.selection("FACE", "Plane_1")])
69 model.do()
70
71 model.checkResult(Partition_1, model, 1, [0], [0], [2], [8], [16])
72
73 FusionFaces_3 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Partition_1_1"))
74 model.do()
75
76 model.checkResult(FusionFaces_3, model, 1, [0], [0], [1], [4], [8])
77
78 # =============================================================================
79 # Test 4. Fusion faces for compsolid
80 # =============================================================================
81 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
82 SketchLine_1 = Sketch_1.addLine(25, 40, -50, 40)
83 SketchLine_2 = Sketch_1.addLine(-50, 40, -50, 0)
84 SketchLine_3 = Sketch_1.addLine(-50, 0, 25, 0)
85 SketchLine_4 = Sketch_1.addLine(25, 0, 25, 40)
86 SketchLine_5 = Sketch_1.addLine(-20, 40, -20, 0)
87 model.do()
88
89 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], model.selection(), 10, 0)
90 Box_3 = model.addBox(Part_1_doc, 10, 10, 10)
91
92 Fuse_2 = model.addFuse(Part_1_doc, [model.selection("COMPSOLID", "Extrusion_1_1"), model.selection("SOLID", "Box_3_1")])
93 model.do()
94
95 model.checkResult(Fuse_2, model, 1, [1], [1], [14], [64], [128])
96
97 FusionFaces_4 = model.addFusionFaces(Part_1_doc, model.selection("COMPSOLID", "Fuse_2_1"))
98 model.do()
99
100 model.checkResult(FusionFaces_4, model, 1, [1], [1], [6], [24], [48])
101
102 # =============================================================================
103 # Test 5. Fusion faces for compound
104 # =============================================================================
105 Box_4 = model.addBox(Part_1_doc, 10, 10, 10)
106 Box_5 = model.addBox(Part_1_doc, 10, 10, 10)
107 Translation_2 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_5_1")], 0, 0, 5)
108 Box_6 = model.addBox(Part_1_doc, 10, 10, 10)
109 Translation_3 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_6_1")], 20, 0, 0)
110 Box_7 = model.addBox(Part_1_doc, 10, 10, 10)
111 Translation_4 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_7_1")], 20, 0, 5)
112 Fuse_3 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_4_1"), model.selection("SOLID", "Translation_2_1")], [])
113 Fuse_4 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Translation_3_1"), model.selection("SOLID", "Translation_4_1")], [])
114
115 Compound_1 = model.addCompound(Part_1_doc, [model.selection("SOLID", "Fuse_3_1"), model.selection("SOLID", "Fuse_4_1")])
116 model.do()
117
118 model.checkResult(Compound_1, model, 1, [2], [2], [28], [112], [224])
119
120 FusionFaces_5 = model.addFusionFaces(Part_1_doc, model.selection("COMPOUND", "Compound_1_1"))
121 model.do()
122
123 model.checkResult(FusionFaces_5, model, 1, [2], [2], [12], [48], [96])
124
125 # =============================================================================
126 # Test 6. Check subshapes naming
127 # =============================================================================
128 #model.testHaveNamingSubshapes(FusionFaces_1, model, Part_1_doc)
129 model.testHaveNamingSubshapes(FusionFaces_2, model, Part_1_doc)
130 #model.testHaveNamingSubshapes(FusionFaces_3, model, Part_1_doc)
131 model.testHaveNamingSubshapes(FusionFaces_4, model, Part_1_doc)
132 model.testHaveNamingSubshapes(FusionFaces_5, model, Part_1_doc)
133 model.end()
134
135 # =============================================================================
136 # Test 7. Check Python dump
137 # =============================================================================
138 assert(model.checkPythonDump())