1 # Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License.
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 # ==================================
31 # With hexahedral, build a box partially holed by a not centered cylinder with a thickness
49 def triangle(p1, p2, p3):
51 l.append(MakeEdge(p1, p2))
52 l.append(MakeEdge(p2, p3))
53 l.append(MakeEdge(p3, p1))
60 # Vertex of the holed part
61 # ------------------------
63 hole_point_11 = MakeVertex(0 , 0 , 0)
64 hole_point_21 = MakeVertex(box_dx, 0 , 0)
65 hole_point_12 = MakeVertex(0 , box_dy, 0)
66 hole_point_22 = MakeVertex(box_dx, box_dy, 0)
68 hole_center = MakeVertex(cyl_x, cyl_y, 0)
70 # Faces of the holed part
71 # -----------------------
73 hole_face_1 = triangle(hole_point_11, hole_point_21, hole_center)
74 hole_face_2 = triangle(hole_point_21, hole_point_22, hole_center)
75 hole_face_3 = triangle(hole_point_12, hole_point_22, hole_center)
76 hole_face_4 = triangle(hole_point_11, hole_point_12, hole_center)
78 # Solids of the holed part
79 # ------------------------
81 cyl_dir = MakeVectorDXDYDZ(0, 0, 1)
83 hole_solid_1 = MakePrismVecH(hole_face_1, cyl_dir, cyl_dz)
84 hole_solid_2 = MakePrismVecH(hole_face_2, cyl_dir, cyl_dz)
85 hole_solid_3 = MakePrismVecH(hole_face_3, cyl_dir, cyl_dz)
86 hole_solid_4 = MakePrismVecH(hole_face_4, cyl_dir, cyl_dz)
88 hole_internal = MakeCylinder(hole_center, cyl_dir, cyl_radius , cyl_dz)
89 hole_external = MakeCylinder(hole_center, cyl_dir, cyl_radius+cyl_thick, cyl_dz)
90 hole_median = MakeCut(hole_external, hole_internal)
97 blocks.append( MakeCut(hole_solid_1, hole_external))
98 blocks.append(MakeCommon(hole_solid_1, hole_median ))
100 blocks.append( MakeCut(hole_solid_2, hole_external))
101 blocks.append(MakeCommon(hole_solid_2, hole_median ))
103 blocks.append( MakeCut(hole_solid_3, hole_external))
104 blocks.append(MakeCommon(hole_solid_3, hole_median ))
106 blocks.append( MakeCut(hole_solid_4, hole_external))
107 blocks.append(MakeCommon(hole_solid_4, hole_median ))
112 # Vertex of the full part
113 # -----------------------
115 full_point_11 = MakeVertex(0 , 0 , cyl_dz)
116 full_point_21 = MakeVertex(box_dx, 0 , cyl_dz)
117 full_point_12 = MakeVertex(0 , box_dy, cyl_dz)
118 full_point_22 = MakeVertex(box_dx, box_dy, cyl_dz)
120 full_center = MakeVertex(cyl_x, cyl_y, cyl_dz)
122 # Faces of the full part
123 # ----------------------
125 full_face_1 = triangle(full_point_11, full_point_21, full_center)
126 full_face_2 = triangle(full_point_21, full_point_22, full_center)
127 full_face_3 = triangle(full_point_12, full_point_22, full_center)
128 full_face_4 = triangle(full_point_11, full_point_12, full_center)
130 # Solids of the full part
131 # ------------------------
133 full_dz = box_dz - cyl_dz
135 full_solid_1 = MakePrismVecH(full_face_1, cyl_dir, full_dz)
136 full_solid_2 = MakePrismVecH(full_face_2, cyl_dir, full_dz)
137 full_solid_3 = MakePrismVecH(full_face_3, cyl_dir, full_dz)
138 full_solid_4 = MakePrismVecH(full_face_4, cyl_dir, full_dz)
140 full_internal = MakeCylinder(full_center, cyl_dir, cyl_radius , full_dz)
141 full_external = MakeCylinder(full_center, cyl_dir, cyl_radius+cyl_thick, full_dz)
142 full_median = MakeCut(full_external, full_internal)
149 full.append( MakeCut(full_solid_1, full_external))
150 full.append(MakeCommon(full_solid_1, full_median))
152 full.append( MakeCut(full_solid_2, full_external))
153 full.append(MakeCommon(full_solid_2, full_median ))
155 full.append( MakeCut(full_solid_3, full_external))
156 full.append(MakeCommon(full_solid_3, full_median))
158 full.append( MakeCut(full_solid_4, full_external))
159 full.append(MakeCommon(full_solid_4, full_median))
167 y = x * cyl_y / cyl_x
168 box_point_11 = MakeVertex(x, y, cyl_dz)
171 y = (box_dx - x) * cyl_y / (box_dx - cyl_x)
172 box_point_12 = MakeVertex(x, y, cyl_dz)
175 y = box_dy - x * (box_dy - cyl_y) / cyl_x
176 box_point_21 = MakeVertex(x, y, cyl_dz)
179 y = box_dy - (box_dx - x) * (box_dy - cyl_y) / (box_dx - cyl_x)
180 box_point_22 = MakeVertex(x, y, cyl_dz)
182 box_face = MakeQuad4Vertices(box_point_11, box_point_12, box_point_21, box_point_22)
184 box = MakePrismVecH(box_face, cyl_dir, full_dz)
188 full.append(MakeCut(MakeCommon(full_solid_1, full_internal), box))
189 full.append(MakeCut(MakeCommon(full_solid_2, full_internal), box))
190 full.append(MakeCut(MakeCommon(full_solid_3, full_internal), box))
191 full.append(MakeCut(MakeCommon(full_solid_4, full_internal), box))
193 # Cut the cylinder thikness
194 # -------------------------
196 full_plan = MakePlane(MakeVertex(0, 0, cyl_dz+cyl_thick), cyl_dir, 5000)
198 full_parts = MakePartition(full, [full_plan], [], [], ShapeType["SOLID"])
203 blocks.append(full_parts)
205 piece_cpd = MakeCompound(blocks)
207 piece_ok = RemoveExtraEdges(piece_cpd)
209 piece = MakeGlueFaces(piece_ok, 1.e-3)
211 piece_id = addToStudy(piece, "ex13_hole1partial")
219 hexa = smesh.Mesh(piece, "ex13_hole1partial:hexa")
221 algo = hexa.Segment()
222 algo.NumberOfSegments(2)
231 def local(x, y, z, d):
232 edge = GetEdgeNearPoint(piece, MakeVertex(x, y, z))
233 algo = hexa.Segment(edge)
234 algo.NumberOfSegments(d)
243 local(100, 100, 0, 25)
245 d = cyl_radius-3*cyl_thick
246 local(cyl_x+d, cyl_y+d, box_dz, 10)