Salome HOME
Update copyrights
[modules/shaper.git] / src / FeaturesPlugin / Test / TestPartitionSubCompsolidWithPlane5.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 from GeomAPI import *
24
25 model.begin()
26 partSet = model.moduleDocument()
27 Part_1 = model.addPart(partSet)
28 Part_1_doc = Part_1.document()
29 Param_ExtrusionMin = model.addParameter(Part_1_doc, "ExtrusionMin", "0")
30 Param_ExtrusionMax = model.addParameter(Part_1_doc, "ExtrusionMax", "10")
31 Param_Radius = model.addParameter(Part_1_doc, "Radius", "40")
32 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
33 SketchCircle_1 = Sketch_1.addCircle(47, -3, 25)
34 SketchCircle_2 = Sketch_1.addCircle(55, 30, 40)
35 SketchConstraintRadius_1 = Sketch_1.setRadius(SketchCircle_2.results()[1], "Radius")
36 model.do()
37 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], model.selection(), "ExtrusionMax", "ExtrusionMin")
38 Partition_1_objects = [model.selection("SOLID", "Extrusion_1_1_2"), model.selection("SOLID", "Extrusion_1_1_3"), model.selection("FACE", "PartSet/XOZ")]
39 Partition_1 = model.addPartition(Part_1_doc, Partition_1_objects)
40 model.do()
41
42 # check partition
43 model.testNbResults(Partition_1, 1)
44 model.testNbSubResults(Partition_1, [5])
45 model.testNbSubShapes(Partition_1, GeomAPI_Shape.SOLID, [5])
46 model.testNbSubShapes(Partition_1, GeomAPI_Shape.FACE, [29])
47 model.testResultsVolumes(Partition_1, [58449.978432434749265667051076889])
48
49 # update extrusion and check partition
50 Param_ExtrusionMin.setValue(-5)
51 Param_ExtrusionMax.setValue(15)
52 model.do()
53
54 model.testNbResults(Partition_1, 1)
55 model.testNbSubResults(Partition_1, [5])
56 model.testNbSubShapes(Partition_1, GeomAPI_Shape.SOLID, [5])
57 model.testNbSubShapes(Partition_1, GeomAPI_Shape.FACE, [29])
58 model.testResultsVolumes(Partition_1, [58449.978432434749265667051076889])
59
60 # change radius of a circle and check partition
61 Param_Radius.setValue(50)
62 model.do()
63
64 model.testNbResults(Partition_1, 1)
65 model.testNbSubResults(Partition_1, [5])
66 model.testNbSubShapes(Partition_1, GeomAPI_Shape.SOLID, [5])
67 model.testNbSubShapes(Partition_1, GeomAPI_Shape.FACE, [29])
68 model.testResultsVolumes(Partition_1, [81554.943249120755353942513465881])
69
70 # check naming
71 model.testHaveNamingSubshapes(Partition_1, model, Part_1_doc)
72
73 model.end()