Salome HOME
Merge branch 'master' into V9_3_BR
[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 from salome.shaper import model
21
22 # Create document
23 model.begin()
24 partSet = model.moduleDocument()
25 Part_1 = model.addPart(partSet)
26 Part_1_doc = Part_1.document()
27
28 # =============================================================================
29 # Test 1. Fusion faces for shell of 2 adjacent faces lying on plane
30 # =============================================================================
31 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
32 Box_2 = model.addBox(Part_1_doc, 10, 10, 10)
33 Translation_1 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_2_1")], model.selection("EDGE", "PartSet/OX"), 10)
34
35 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")])
36 model.do()
37
38 model.checkResult(Shell_1, model, 1, [0], [0], [2], [8], [16])
39
40 FusionFaces_1 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Shell_1_1"))
41 model.do()
42
43 model.checkResult(FusionFaces_1, model, 1, [0], [0], [1], [4], [8])
44
45 # =============================================================================
46 # Test 2. Fusion faces for solid of 2 adjacent boxes
47 # =============================================================================
48 Fuse_1 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_1_1"), model.selection("SOLID", "Translation_1_1")], [])
49 model.do()
50
51 model.checkResult(Fuse_1, model, 1, [0], [1], [10], [40], [80])
52
53 FusionFaces_2 = model.addFusionFaces(Part_1_doc, model.selection("SOLID", "Fuse_1_1"))
54 model.do()
55
56 model.checkResult(FusionFaces_2, model, 1, [0], [1], [6], [24], [48])
57
58 # =============================================================================
59 # Test 3. Fusion faces for shell of adjacent faces lying on cylindrical surface
60 # =============================================================================
61 Cylinder_1 = model.addCylinder(Part_1_doc, model.selection("VERTEX", "PartSet/Origin"), model.selection("EDGE", "PartSet/OZ"), 5, 10)
62 Shell_2 = model.addShell(Part_1_doc, [model.selection("FACE", "Cylinder_1_1/Face_1")])
63 Point_1 = model.addPoint(Part_1_doc, 0, 0, 5)
64 Plane_1 = model.addPlane(Part_1_doc, model.selection("EDGE", "PartSet/OZ"), model.selection("VERTEX", "Point_1"), True)
65
66 Partition_1 = model.addPartition(Part_1_doc, [model.selection("SHELL", "Shell_2_1"), model.selection("FACE", "Plane_1")])
67 model.do()
68
69 model.checkResult(Partition_1, model, 1, [0], [0], [2], [8], [16])
70
71 FusionFaces_3 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Partition_1_1"))
72 model.do()
73
74 model.checkResult(FusionFaces_3, model, 1, [0], [0], [1], [4], [8])
75
76 # =============================================================================
77 # Test 4. Fusion faces for compsolid
78 # =============================================================================
79 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
80 SketchLine_1 = Sketch_1.addLine(25, 40, -50, 40)
81 SketchLine_2 = Sketch_1.addLine(-50, 40, -50, 0)
82 SketchLine_3 = Sketch_1.addLine(-50, 0, 25, 0)
83 SketchLine_4 = Sketch_1.addLine(25, 0, 25, 40)
84 SketchLine_5 = Sketch_1.addLine(-20, 40, -20, 0)
85 model.do()
86
87 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], model.selection(), 10, 0)
88 Box_3 = model.addBox(Part_1_doc, 10, 10, 10)
89
90 Fuse_2 = model.addFuse(Part_1_doc, [model.selection("COMPSOLID", "Extrusion_1_1"), model.selection("SOLID", "Box_3_1")])
91 model.do()
92
93 model.checkResult(Fuse_2, model, 1, [1], [1], [14], [64], [128])
94
95 FusionFaces_4 = model.addFusionFaces(Part_1_doc, model.selection("COMPSOLID", "Fuse_2_1"))
96 model.do()
97
98 model.checkResult(FusionFaces_4, model, 1, [1], [1], [6], [24], [48])
99
100 # =============================================================================
101 # Test 5. Fusion faces for compound
102 # =============================================================================
103 Box_4 = model.addBox(Part_1_doc, 10, 10, 10)
104 Box_5 = model.addBox(Part_1_doc, 10, 10, 10)
105 Translation_2 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_5_1")], 0, 0, 5)
106 Box_6 = model.addBox(Part_1_doc, 10, 10, 10)
107 Translation_3 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_6_1")], 20, 0, 0)
108 Box_7 = model.addBox(Part_1_doc, 10, 10, 10)
109 Translation_4 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_7_1")], 20, 0, 5)
110 Fuse_3 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_4_1"), model.selection("SOLID", "Translation_2_1")], [])
111 Fuse_4 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Translation_3_1"), model.selection("SOLID", "Translation_4_1")], [])
112
113 Compound_1 = model.addCompound(Part_1_doc, [model.selection("SOLID", "Fuse_3_1"), model.selection("SOLID", "Fuse_4_1")])
114 model.do()
115
116 model.checkResult(Compound_1, model, 1, [2], [2], [28], [112], [224])
117
118 FusionFaces_5 = model.addFusionFaces(Part_1_doc, model.selection("COMPOUND", "Compound_1_1"))
119 model.do()
120
121 model.checkResult(FusionFaces_5, model, 1, [2], [2], [12], [48], [96])
122
123 # =============================================================================
124 # Test 6. Check subshapes naming
125 # =============================================================================
126 #model.testHaveNamingSubshapes(FusionFaces_1, model, Part_1_doc)
127 model.testHaveNamingSubshapes(FusionFaces_2, model, Part_1_doc)
128 #model.testHaveNamingSubshapes(FusionFaces_3, model, Part_1_doc)
129 model.testHaveNamingSubshapes(FusionFaces_4, model, Part_1_doc)
130 model.testHaveNamingSubshapes(FusionFaces_5, model, Part_1_doc)
131 model.end()
132
133 # =============================================================================
134 # Test 7. Check Python dump
135 # =============================================================================
136 assert(model.checkPythonDump())