1from SketchAPI import *
2
3from salome.shaper import model
4
5model.begin()
6partSet = model.moduleDocument()
7Part_1 = model.addPart(partSet)
8Part_1_doc = Part_1.document()
9
10# Parameters
11model.addParameter(Part_1_doc, "h", "90", "nut height")
12model.addParameter(Part_1_doc, "a", "115.4")
13
14# Step1. Sketch.
15Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
16SketchLine_1 = Sketch_1.addLine(-57.69999999999999, 99.93933159672423, 57.70000000000001, 99.93933159672423)
17SketchLine_2 = Sketch_1.addLine(57.70000000000001, 99.93933159672423, 0, 0)
18SketchLine_2.setAuxiliary(True)
19SketchConstraintCoincidence_1 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
20SketchLine_3 = Sketch_1.addLine(0, 0, -57.69999999999999, 99.93933159672423)
21SketchLine_3.setAuxiliary(True)
22SketchConstraintCoincidence_2 = Sketch_1.setCoincident(SketchLine_2.endPoint(), SketchLine_3.startPoint())
23SketchConstraintCoincidence_3 = Sketch_1.setCoincident(SketchLine_1.startPoint(), SketchLine_3.endPoint())
24SketchProjection_1 = Sketch_1.addProjection(model.selection("VERTEX", "PartSet/Origin"), False)
25SketchPoint_1 = SketchProjection_1.createdFeature()
26SketchConstraintCoincidence_4 = Sketch_1.setCoincident(SketchLine_3.startPoint(), SketchAPI_Point(SketchPoint_1).coordinates())
27SketchProjection_2 = Sketch_1.addProjection(model.selection("EDGE", "PartSet/OY"), False)
28SketchLine_4 = SketchProjection_2.createdFeature()
29SketchConstraintPerpendicular_1 = Sketch_1.setPerpendicular(SketchLine_4.result(), SketchLine_1.result())
30SketchConstraintEqual_1 = Sketch_1.setEqual(SketchLine_3.result(), SketchLine_1.result())
31SketchConstraintEqual_2 = Sketch_1.setEqual(SketchLine_2.result(), SketchLine_1.result())
32SketchMultiRotation_1 = Sketch_1.addRotation([SketchLine_1.result()], SketchAPI_Line(SketchLine_4).startPoint(), 360, 6, True)
33[SketchLine_5, SketchLine_6, SketchLine_7, SketchLine_8, SketchLine_9] = SketchMultiRotation_1.rotated()
34SketchConstraintLength_1 = Sketch_1.setLength(SketchLine_1.result(), "a")
35model.do()
36
37# Step2. Polyline.
38Point_2 = model.addPoint(Part_1_doc, 50, 0, 0)
39Point_2.result().setColor(0, 0, 255)
40Point_3 = model.addPoint(Part_1_doc, 80, 0, 0)
41Point_3.result().setColor(0, 0, 255)
42Point_4 = model.addPoint(Part_1_doc, 112, 0, 13)
43Point_4.result().setColor(0, 0, 255)
44Point_5 = model.addPoint(Part_1_doc, 112, 0, 48)
45Point_5.result().setColor(0, 0, 255)
46Point_6 = model.addPoint(Part_1_doc, 80, 0, 63)
47Point_6.result().setColor(0, 0, 255)
48Point_7 = model.addPoint(Part_1_doc, "80", "0", "h")
49Point_7.result().setColor(0, 0, 255)
50Point_8 = model.addPoint(Part_1_doc, "50", "0", "h")
51Point_8.result().setColor(0, 0, 255)
52Polyline_1_objects = [model.selection("VERTEX", "Point_1"), model.selection("VERTEX", "Point_2"),
53 model.selection("VERTEX", "Point_3"), model.selection("VERTEX", "Point_4"),
54 model.selection("VERTEX", "Point_5"), model.selection("VERTEX", "Point_6"),
55 model.selection("VERTEX", "Point_7")]
56Polyline_1 = model.addPolyline3D(Part_1_doc, Polyline_1_objects, True)
57
58# Step3. Face.
59Face_1 = model.addFace(Part_1_doc, [model.selection("WIRE", "Polyline_1_1")])
60
61# Step4. Revolution.
62Revolution_1 = model.addRevolution(Part_1_doc, [model.selection("FACE", "Face_1_1")], model.selection("EDGE", "PartSet/OZ"), 360, 0)
63
64# Step5. Extrusion.
65Wire = model.selection("WIRE", "Sketch_1/Face-SketchLine_5r-SketchLine_6r-SketchLine_7r-SketchLine_8r-SketchLine_9r-SketchLine_1r_wire")
66To = model.selection("FACE", "Revolution_1_1/Generated_Face&Point_4/Point_4")
67From = model.selection("FACE", "Revolution_1_1/Generated_Face&Point_1/Point_1")
68
69Extrusion_1 = model.addExtrusion(Part_1_doc, [Wire], model.selection("EDGE", "PartSet/OZ"), To, 0, From, 0)
70
71# Step6. Common.
72Common_1 = model.addCommon(Part_1_doc, [model.selection("SOLID", "Revolution_1_1"), model.selection("SOLID", "Extrusion_1_1")])
73
74# Step7. Fillet.
75Fillet_1 = model.addFillet(Part_1_doc, [model.selection("EDGE", "[Revolution_1_1/Generated_Face&Point_6/Point_6][Common_1_1/Modified_Face&Point_7/Point_7]")], 10)
76
77# Step8. Box.
78Box_1 = model.addBox(Part_1_doc, 20, 120, 20)
79
80# Step9. Translation.
81Translation_1 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_1_1")], -10, 20, 70)
82
83# Step10. Angular Copy.
84AngularCopy_1 = model.addMultiRotation(Part_1_doc, [model.selection("SOLID", "Translation_1_1")], model.selection("EDGE", "PartSet/OZ"), 6)
85
86# Step11. Cut.
87Cut_1 = model.addCut(Part_1_doc, [model.selection("SOLID", "Fillet_1_1")], [model.selection("COMPOUND", "AngularCopy_1_1")])
88Cut_1.result().setColor(255, 214, 0)
89
90model.end()