Salome HOME
updated copyright message
[modules/shaper.git] / src / FeaturesPlugin / Test / TestTranslation_MultiLevelCompound_v0_2.py
1 # Copyright (C) 2020-2023  CEA, EDF
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 from GeomAPI import *
23 from SketchAPI import *
24
25 model.begin()
26 partSet = model.moduleDocument()
27 Part_1 = model.addPart(partSet)
28 Part_1_doc = Part_1.document()
29 Sketch_1 = model.addSketch(Part_1_doc, model.standardPlane("XOY"))
30 SketchEllipse_1 = Sketch_1.addEllipse(11.18033988749894, -50, 22.36067977499789, -50, 10)
31 [SketchPoint_1, SketchPoint_2, SketchPoint_3, SketchPoint_4, SketchPoint_5, SketchPoint_6, SketchPoint_7, SketchLine_1, SketchLine_2] = SketchEllipse_1.construction(center = "aux", firstFocus = "aux", secondFocus = "aux", majorAxisStart = "aux", majorAxisEnd = "aux", minorAxisStart = "aux", minorAxisEnd = "aux", majorAxis = "aux", minorAxis = "aux")
32 SketchConstraintHorizontal_1 = Sketch_1.setHorizontal(SketchLine_1.result())
33 SketchConstraintLength_1 = Sketch_1.setLength(SketchLine_1.result(), 30)
34 SketchConstraintLength_2 = Sketch_1.setLength(SketchLine_2.result(), 20)
35 SketchProjection_1 = Sketch_1.addProjection(model.selection("EDGE", "PartSet/OY"), False)
36 SketchLine_3 = SketchProjection_1.createdFeature()
37 SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchAPI_Point(SketchPoint_3).coordinates(), SketchLine_3.result())
38 SketchConstraintDistance_1 = Sketch_1.setDistance(SketchAPI_Line(SketchLine_3).startPoint(), SketchAPI_Point(SketchPoint_3).coordinates(), 50, True)
39 SketchCircle_1 = Sketch_1.addCircle(41.18033988749897, -50, 5)
40 SketchConstraintCoincidence_2 = Sketch_1.setCoincident(SketchCircle_1.center(), SketchLine_1.result())
41 SketchConstraintDistance_2 = Sketch_1.setDistance(SketchEllipse_1.majorAxisPositive(), SketchCircle_1.center(), 15, True)
42 SketchConstraintRadius_1 = Sketch_1.setRadius(SketchCircle_1.results()[1], 5)
43 SketchMultiRotation_1 = Sketch_1.addRotation([SketchEllipse_1.result(), SketchCircle_1.results()[1]], SketchAPI_Point(SketchPoint_3).coordinates(), 360, 3, True)
44 [SketchEllipse_2, SketchEllipse_3, SketchCircle_2, SketchCircle_3] = SketchMultiRotation_1.rotated()
45 model.do()
46 Sketch_1.changeFacesOrder([[SketchEllipse_1.result(), SketchEllipse_1.result(), SketchEllipse_2.result(), SketchEllipse_3.result()],
47                            [SketchCircle_1.results()[1]],
48                            [SketchEllipse_2.result(), SketchEllipse_2.result(), SketchEllipse_3.result(), SketchEllipse_1.result()],
49                            [SketchEllipse_1.result(), SketchEllipse_3.result(), SketchEllipse_2.result()],
50                            [SketchEllipse_3.result(), SketchEllipse_2.result(), SketchEllipse_1.result()],
51                            [SketchEllipse_1.result(), SketchEllipse_2.result(), SketchEllipse_3.result()],
52                            [SketchEllipse_1.result(), SketchEllipse_3.result(), SketchEllipse_2.result()],
53                            [SketchEllipse_2.result(), SketchEllipse_3.result(), SketchEllipse_3.result(), SketchEllipse_1.result()],
54                            [SketchCircle_2.results()[1]],
55                            [SketchCircle_3.results()[1]]
56                           ])
57 model.do()
58 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], model.selection(), 10, 0)
59 Compound_1 = model.addCompound(Part_1_doc, [model.selection("SOLID", "Extrusion_1_2"), model.selection("SOLID", "Extrusion_1_3")])
60 Compound_2_objects = [model.selection("COMPSOLID", "Extrusion_1_1"), model.selection("COMPOUND", "Compound_1_1"), model.selection("SOLID", "Extrusion_1_4")]
61 Compound_2 = model.addCompound(Part_1_doc, Compound_2_objects)
62 model.end()
63
64 DX = 15
65 DY = 20
66 DZ = 25
67 TOLERANCE = 1.e-7
68
69 model.begin()
70 Translation_1 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Compound_2_1_1_5")], DX, 0, 0)
71 model.testNbResults(Translation_1, 1)
72 model.testNbSubResults(Translation_1, [0])
73 model.testNbSubShapes(Translation_1, GeomAPI_Shape.SOLID, [1])
74 model.testNbSubShapes(Translation_1, GeomAPI_Shape.FACE, [5])
75 model.testNbSubShapes(Translation_1, GeomAPI_Shape.EDGE, [18])
76 model.testNbSubShapes(Translation_1, GeomAPI_Shape.VERTEX, [36])
77 model.testResultsVolumes(Translation_1, [542.746463956])
78
79 refPoint = Extrusion_1.results()[0].subResult(4).resultSubShapePair()[0].shape().middlePoint()
80 refPoint.setX(refPoint.x() + DX)
81 midPoint = Translation_1.defaultResult().shape().middlePoint()
82 assert(midPoint.distance(refPoint) < TOLERANCE)
83
84
85 Recover_1 = model.addRecover(Part_1_doc, Translation_1, [Compound_2.result()], True)
86 Translation_2 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Recover_1_1_2_1")], 0, DY, 0)
87 model.testNbResults(Translation_2, 1)
88 model.testNbSubResults(Translation_2, [0])
89 model.testNbSubShapes(Translation_2, GeomAPI_Shape.SOLID, [1])
90 model.testNbSubShapes(Translation_2, GeomAPI_Shape.FACE, [3])
91 model.testNbSubShapes(Translation_2, GeomAPI_Shape.EDGE, [6])
92 model.testNbSubShapes(Translation_2, GeomAPI_Shape.VERTEX, [12])
93 model.testResultsVolumes(Translation_2, [785.39816339745])
94
95 refPoint = Recover_1.result().subResult(1).subResult(0).resultSubShapePair()[0].shape().middlePoint()
96 refPoint.setY(refPoint.y() + DY)
97 midPoint = Translation_2.defaultResult().shape().middlePoint()
98 assert(midPoint.distance(refPoint) < TOLERANCE)
99
100
101 Recover_2 = model.addRecover(Part_1_doc, Translation_2, [Recover_1.result()], True)
102 Translation_3 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Recover_2_1_3")], 0, 0, DZ)
103 model.testNbResults(Translation_3, 1)
104 model.testNbSubResults(Translation_3, [0])
105 model.testNbSubShapes(Translation_3, GeomAPI_Shape.SOLID, [1])
106 model.testNbSubShapes(Translation_3, GeomAPI_Shape.FACE, [3])
107 model.testNbSubShapes(Translation_3, GeomAPI_Shape.EDGE, [6])
108 model.testNbSubShapes(Translation_3, GeomAPI_Shape.VERTEX, [12])
109 model.testResultsVolumes(Translation_3, [785.39816339745])
110
111 refPoint = Recover_2.result().subResult(2).resultSubShapePair()[0].shape().middlePoint()
112 refPoint.setZ(refPoint.z() + DZ)
113 midPoint = Translation_3.defaultResult().shape().middlePoint()
114 assert(midPoint.distance(refPoint) < TOLERANCE)
115
116
117 Recover_3 = model.addRecover(Part_1_doc, Translation_3, [Recover_2.result()], True)
118 Translation_4 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Recover_3_1_1_1"), model.selection("SOLID", "Recover_3_1_2_2"), model.selection("SOLID", "Recover_3_1_3")], DX, DY, DZ)
119 model.testNbResults(Translation_4, 3)
120 model.testNbSubResults(Translation_4, [0, 0, 0])
121 model.testNbSubShapes(Translation_4, GeomAPI_Shape.SOLID, [1, 1, 1])
122 model.testNbSubShapes(Translation_4, GeomAPI_Shape.FACE, [6, 3, 3])
123 model.testNbSubShapes(Translation_4, GeomAPI_Shape.EDGE, [24, 6, 6])
124 model.testNbSubShapes(Translation_4, GeomAPI_Shape.VERTEX, [48, 12, 12])
125 model.testResultsVolumes(Translation_4, [3444.394198615, 785.39816339745, 785.39816339745])
126
127 REFERENCE = [Recover_3.result().subResult(0).subResult(0).resultSubShapePair()[0].shape().middlePoint(),
128              Recover_3.result().subResult(1).subResult(1).resultSubShapePair()[0].shape().middlePoint(),
129              Recover_3.result().subResult(2).resultSubShapePair()[0].shape().middlePoint()]
130 for res, ref in zip(Translation_4.results(), REFERENCE):
131     ref.setX(ref.x() + DX)
132     ref.setY(ref.y() + DY)
133     ref.setZ(ref.z() + DZ)
134     midPoint = res.resultSubShapePair()[0].shape().middlePoint()
135     assert(midPoint.distance(ref) < TOLERANCE)
136
137 model.end()
138
139 assert(model.checkPythonDump())