smesh/src/SMESH_SWIG/SMESH_Sphere.py

122 lines
3.6 KiB
Python
Raw Normal View History

2012-08-09 16:03:55 +06:00
# -*- coding: iso-8859-1 -*-
2021-03-23 19:44:27 +05:00
# Copyright (C) 2007-2021 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
2009-02-17 10:27:49 +05: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
2014-02-20 18:25:37 +06:00
# version 2.1 of the License, or (at your option) any later version.
2004-12-17 16:07:35 +05: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.
2004-12-17 16:07:35 +05: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
2004-12-17 16:07:35 +05:00
#
2012-08-09 16:03:55 +06:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2004-12-17 16:07:35 +05:00
#
2012-08-09 16:03:55 +06:00
# GEOM GEOM_SWIG : binding of C++ implementation with Python
2004-12-17 16:07:35 +05:00
# File : GEOM_Sphere.py
# Author : Damien COQUERET, Open CASCADE
# Module : GEOM
# $Header:
2009-02-17 10:27:49 +05:00
#
import salome
salome.salome_init()
import GEOM
from salome.geom import geomBuilder
2017-06-13 15:01:10 +05:00
geompy = geomBuilder.New()
2004-12-17 16:07:35 +05:00
import SMESH, SALOMEDS
from salome.smesh import smeshBuilder
2017-06-13 15:01:10 +05:00
smesh = smeshBuilder.New()
import math
2004-12-17 16:07:35 +05:00
# It is an example of creating a hexahedrical mesh on a sphere.
#
# Used approach allows to avoid problems with degenerated and
# seam edges without special processing of geometrical shapes
#-----------------------------------------------------------------------
#Variables
Radius = 100.
Dist = Radius / 2.
Factor = 2.5
Angle90 = math.pi / 2.
2004-12-17 16:07:35 +05:00
NbSeg = 10
PointsList = []
ShapesList = []
#Basic Elements
P0 = geompy.MakeVertex(0., 0., 0.)
P1 = geompy.MakeVertex(-Dist, -Dist, -Dist)
P2 = geompy.MakeVertex(-Dist, -Dist, Dist)
P3 = geompy.MakeVertex(-Dist, Dist, Dist)
P4 = geompy.MakeVertex(-Dist, Dist, -Dist)
2004-12-17 16:07:35 +05:00
VZ = geompy.MakeVectorDXDYDZ(0., 0., 1.)
2004-12-17 16:07:35 +05:00
#Construction Elements
PointsList.append(P1)
PointsList.append(P2)
PointsList.append(P3)
PointsList.append(P4)
PointsList.append(P1)
PolyLine = geompy.MakePolyline(PointsList)
2004-12-17 16:07:35 +05:00
Face1 = geompy.MakeFace(PolyLine, 1)
Face2 = geompy.MakeScaleTransform(Face1, P0, Factor)
Face3 = geompy.MakeScaleTransform(Face1, P0, -1.)
2004-12-17 16:07:35 +05:00
#Models
Sphere = geompy.MakeSphereR(Radius)
2004-12-17 16:07:35 +05:00
Block = geompy.MakeHexa2Faces(Face1, Face2)
Cube = geompy.MakeHexa2Faces(Face1, Face3)
2004-12-17 16:07:35 +05:00
Common1 = geompy.MakeBoolean(Sphere, Block, 1)
Common2 = geompy.MakeRotation(Common1, VZ, Angle90)
2004-12-17 16:07:35 +05:00
MultiBlock1 = geompy.MakeMultiTransformation1D(Common1, 20, -1, 3)
MultiBlock2 = geompy.MakeMultiTransformation1D(Common2, 30, -1, 3)
2004-12-17 16:07:35 +05:00
#Reconstruct sphere from several blocks
ShapesList.append(Cube)
ShapesList.append(MultiBlock1)
ShapesList.append(MultiBlock2)
Compound = geompy.MakeCompound(ShapesList)
2004-12-17 16:07:35 +05:00
Result = geompy.MakeGlueFaces(Compound, 0.1)
2004-12-17 16:07:35 +05:00
#addToStudy
Id_Sphere = geompy.addToStudy(Sphere, "Sphere")
Id_Cube = geompy.addToStudy(Cube, "Cube")
2004-12-17 16:07:35 +05:00
Id_Common1 = geompy.addToStudy(Common1, "Common1")
Id_Common2 = geompy.addToStudy(Common2, "Common2")
2004-12-17 16:07:35 +05:00
Id_MultiBlock1 = geompy.addToStudy(MultiBlock1, "MultiBlock1")
Id_MultiBlock2 = geompy.addToStudy(MultiBlock2, "MultiBlock2")
2004-12-17 16:07:35 +05:00
Id_Result = geompy.addToStudy(Result, "Result")
2004-12-17 16:07:35 +05:00
#-----------------------------------------------------------------------
#Meshing
my_hexa = smesh.Mesh(Result, "Sphere_Mesh")
algo = my_hexa.Segment()
algo.NumberOfSegments(NbSeg)
my_hexa.Quadrangle()
my_hexa.Hexahedron()
2004-12-17 16:07:35 +05:00
my_hexa.Compute()
2017-06-13 15:01:10 +05:00
salome.sg.updateObjBrowser()