2005-03-21 13:38:22 +05:00
|
|
|
# CEA/LGLS 2004-2005, Francis KLOSS (OCC)
|
|
|
|
# =======================================
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
from geompy import *
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
import smesh
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
s_boite = 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)
|
|
|
|
|
|
|
|
s_pi4 = 3.141592653/4
|
|
|
|
s_hauteur = 2*g_hauteur
|
|
|
|
s_centre = MakeVertex(g_x, g_y-g_hauteur, g_z)
|
|
|
|
s_dir = MakeVectorDXDYDZ(0, 1, 0)
|
|
|
|
|
|
|
|
s_cyl0 = MakeCylinder(s_centre, s_dir, g_rayon3, s_hauteur)
|
|
|
|
s_cyl1 = MakeRotation(s_cyl0, s_dir, s_pi4)
|
|
|
|
|
|
|
|
s_blo1 = MakeCut(s_boite, s_cyl1)
|
|
|
|
|
|
|
|
s_cyl0 = MakeCylinder(s_centre, s_dir, g_rayon2, s_hauteur)
|
|
|
|
s_cyl2 = MakeRotation(s_cyl0, s_dir, s_pi4)
|
|
|
|
|
|
|
|
s_blo2 = MakeCut(s_cyl1, s_cyl2)
|
|
|
|
|
|
|
|
s_cyl0 = MakeCylinder(s_centre, s_dir, g_rayon1, s_hauteur)
|
|
|
|
s_cyl3 = MakeRotation(s_cyl0, s_dir, s_pi4)
|
|
|
|
|
|
|
|
s_blo3 = MakeCut(s_cyl2, s_cyl3)
|
|
|
|
|
|
|
|
s_arete = g_rayon1/2
|
|
|
|
|
|
|
|
s_blo4 = 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)
|
|
|
|
|
|
|
|
s_blo5 = MakeCut(s_cyl3, s_blo4)
|
|
|
|
|
|
|
|
# Partition
|
|
|
|
# ---------
|
|
|
|
|
|
|
|
p_tools = []
|
|
|
|
p_tools.append(MakePlane(s_centre, MakeVectorDXDYDZ( 1, 0, 1), g_trim))
|
|
|
|
p_tools.append(MakePlane(s_centre, MakeVectorDXDYDZ(-1, 0, 1), g_trim))
|
|
|
|
|
|
|
|
p_partie = MakePartition([s_blo1, s_blo2, s_blo3, s_blo5], p_tools, [], [], ShapeType["SOLID"])
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
# Compound and glue
|
|
|
|
# -----------------
|
|
|
|
|
|
|
|
c_blocs = SubShapeAll(p_partie, ShapeType["SOLID"])
|
|
|
|
c_blocs.append(s_blo4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
c_cpd = MakeCompound(c_blocs)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
c_element = MakeGlueFaces(c_cpd, 1e-4)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Grid
|
|
|
|
# ----
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
piece = MakeMultiTranslation2D(c_element, MakeVectorDXDYDZ(1, 0, 0), 2*g_arete, g_grid, MakeVectorDXDYDZ(0, 0, 1), 2*g_arete, g_grid)
|
2004-12-01 15:48:31 +05:00
|
|
|
|
|
|
|
# Add in study
|
|
|
|
# ------------
|
|
|
|
|
2005-03-21 13:38:22 +05:00
|
|
|
piece_id = 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()
|