2012-08-09 16:03:55 +06:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
2013-04-01 19:05:47 +06:00
|
|
|
# Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 10:27:49 +05:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2006-05-06 14:51:48 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License.
|
2006-05-06 14:51:48 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2006-05-06 14:51:48 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2006-05-06 14:51:48 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2006-05-06 14:51:48 +06:00
|
|
|
#
|
2012-08-09 16:03:55 +06:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# =======================================
|
2009-02-17 10:27:49 +05:00
|
|
|
#
|
2013-04-04 13:08:19 +06:00
|
|
|
import salome
|
|
|
|
salome.salome_init()
|
|
|
|
import GEOM
|
|
|
|
from salome.geom import geomBuilder
|
|
|
|
geompy = geomBuilder.New(salome.myStudy)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
import SMESH, SALOMEDS
|
|
|
|
from salome.smesh import smeshBuilder
|
|
|
|
smesh = smeshBuilder.New(salome.myStudy)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Geometry
|
|
|
|
# ========
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# grid compound of 17 x 17 elements
|
2005-03-21 13:38:22 +05:00
|
|
|
# an element is compound of 3 concentric cylinders
|
2004-12-01 15:48:31 +05:00
|
|
|
# an element is centered in a square of the grid
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# prism the grid, and mesh it in hexahedral way
|
|
|
|
|
|
|
|
# Values
|
|
|
|
# ------
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
g_x = 0
|
|
|
|
g_y = 0
|
|
|
|
g_z = 0
|
|
|
|
|
|
|
|
g_arete = 50
|
|
|
|
g_hauteur = 30
|
|
|
|
|
|
|
|
g_rayon1 = 20
|
|
|
|
g_rayon2 = 30
|
|
|
|
g_rayon3 = 40
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
g_grid = 17
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
g_trim = 1000
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# Solids and rotation to prevent repair
|
|
|
|
# -------------------------------------
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_boite = geompy.MakeBox(g_x-g_arete, g_y-g_hauteur, g_z-g_arete, g_x+g_arete, g_y+g_hauteur, g_z+g_arete)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
s_pi4 = 3.141592653/4
|
|
|
|
s_hauteur = 2*g_hauteur
|
2013-04-04 13:08:19 +06:00
|
|
|
s_centre = geompy.MakeVertex(g_x, g_y-g_hauteur, g_z)
|
|
|
|
s_dir = geompy.MakeVectorDXDYDZ(0, 1, 0)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_cyl0 = geompy.MakeCylinder(s_centre, s_dir, g_rayon3, s_hauteur)
|
|
|
|
s_cyl1 = geompy.MakeRotation(s_cyl0, s_dir, s_pi4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_blo1 = geompy.MakeCut(s_boite, s_cyl1)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_cyl0 = geompy.MakeCylinder(s_centre, s_dir, g_rayon2, s_hauteur)
|
|
|
|
s_cyl2 = geompy.MakeRotation(s_cyl0, s_dir, s_pi4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_blo2 = geompy.MakeCut(s_cyl1, s_cyl2)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_cyl0 = geompy.MakeCylinder(s_centre, s_dir, g_rayon1, s_hauteur)
|
|
|
|
s_cyl3 = geompy.MakeRotation(s_cyl0, s_dir, s_pi4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_blo3 = geompy.MakeCut(s_cyl2, s_cyl3)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
s_arete = g_rayon1/2
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_blo4 = geompy.MakeBox(g_x-s_arete, g_y-g_hauteur, g_z-s_arete, g_x+s_arete, g_y+g_hauteur, g_z+s_arete)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
s_blo5 = geompy.MakeCut(s_cyl3, s_blo4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Partition
|
|
|
|
# ---------
|
|
|
|
|
|
|
|
p_tools = []
|
2013-04-04 13:08:19 +06:00
|
|
|
p_tools.append(geompy.MakePlane(s_centre, geompy.MakeVectorDXDYDZ( 1, 0, 1), g_trim))
|
|
|
|
p_tools.append(geompy.MakePlane(s_centre, geompy.MakeVectorDXDYDZ(-1, 0, 1), g_trim))
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
p_partie = geompy.MakePartition([s_blo1, s_blo2, s_blo3, s_blo5], p_tools, [], [], geompy.ShapeType["SOLID"])
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# Compound and glue
|
|
|
|
# -----------------
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
c_blocs = geompy.SubShapeAll(p_partie, geompy.ShapeType["SOLID"])
|
2005-03-21 13:38:22 +05:00
|
|
|
c_blocs.append(s_blo4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
c_cpd = geompy.MakeCompound(c_blocs)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
c_element = geompy.MakeGlueFaces(c_cpd, 1e-4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Grid
|
|
|
|
# ----
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
piece = geompy.MakeMultiTranslation2D(c_element, geompy.MakeVectorDXDYDZ(1, 0, 0), 2*g_arete, g_grid, geompy.MakeVectorDXDYDZ(0, 0, 1), 2*g_arete, g_grid)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Add in study
|
|
|
|
# ------------
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
piece_id = geompy.addToStudy(piece, "ex12_grid17partition")
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Meshing
|
|
|
|
# =======
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# Create a hexahedral mesh
|
|
|
|
# ------------------------
|
|
|
|
|
|
|
|
hexa = smesh.Mesh(piece, "ex12_grid17partition:hexa")
|
|
|
|
|
|
|
|
algo = hexa.Segment()
|
|
|
|
algo.NumberOfSegments(2)
|
|
|
|
|
|
|
|
hexa.Quadrangle()
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
hexa.Hexahedron()
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# Mesh calculus
|
|
|
|
# -------------
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
hexa.Compute()
|