2012-08-09 16:03:55 +06:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
2016-03-18 22:10:20 +05:00
|
|
|
# Copyright (C) 2007-2016 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
|
2014-02-20 18:25:37 +06:00
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
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)
|
2005-03-21 13:38:22 +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
|
|
|
|
|
|
|
# Geometrie
|
|
|
|
# =========
|
|
|
|
|
|
|
|
# Creer un cylindre surplombe d'une demi-sphere le tout troue par un petit cylindre.
|
|
|
|
# Decouper en hexahedre et mailler.
|
|
|
|
|
|
|
|
# Donnees
|
|
|
|
# -------
|
|
|
|
|
|
|
|
cylindre_rayon = 100
|
|
|
|
cylindre_hauteur = 400
|
|
|
|
|
|
|
|
trou_rayon = 20
|
|
|
|
trou_z = cylindre_rayon/2
|
|
|
|
|
|
|
|
plan_trim = 2000
|
|
|
|
|
|
|
|
# Cylindre
|
|
|
|
# --------
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
cylindre_base = geompy.MakeVertex(0, 0, 0)
|
|
|
|
cylindre_dir = geompy.MakeVectorDXDYDZ(1, 0, 0)
|
|
|
|
cylindre = geompy.MakeCylinder(cylindre_base, cylindre_dir, cylindre_rayon, cylindre_hauteur)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Dome
|
|
|
|
# ----
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
dome_sphere = geompy.MakeSpherePntR(cylindre_base, cylindre_rayon)
|
|
|
|
dome = geompy.MakeFuse(dome_sphere, cylindre)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Cheminee
|
|
|
|
# --------
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
cheminee_base = geompy.MakeVertex(-cylindre_hauteur/2, 0, trou_z)
|
|
|
|
cheminee_trou = geompy.MakeCylinder(cheminee_base, cylindre_dir, trou_rayon, 2*cylindre_hauteur)
|
|
|
|
cheminee = geompy.MakeCut(dome, cheminee_trou)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Decoupage et reparation
|
|
|
|
# -----------------------
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
blocs_plan1 = geompy.MakePlane(cheminee_base, geompy.MakeVectorDXDYDZ(0, 1, 0), plan_trim)
|
|
|
|
blocs_plan2 = geompy.MakePlane(cheminee_base, geompy.MakeVectorDXDYDZ(0, 0, 1), plan_trim)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
blocs_part = geompy.MakePartition([cheminee], [blocs_plan1, blocs_plan2], [], [], geompy.ShapeType["SOLID"])
|
2005-03-21 13:38:22 +05:00
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
piece = geompy.RemoveExtraEdges(blocs_part)
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Etude
|
|
|
|
# -----
|
|
|
|
|
2013-04-04 13:08:19 +06:00
|
|
|
piece_id = geompy.addToStudy(piece, "ex17_dome1")
|
2005-03-21 13:38:22 +05:00
|
|
|
|
|
|
|
# Maillage
|
|
|
|
# ========
|
|
|
|
|
|
|
|
# Maillage hexahedrique
|
|
|
|
# ---------------------
|
|
|
|
|
|
|
|
hexa = smesh.Mesh(piece, "ex17_dome1:hexa")
|
|
|
|
|
|
|
|
algo = hexa.Segment()
|
|
|
|
algo.NumberOfSegments(20)
|
|
|
|
|
|
|
|
hexa.Quadrangle()
|
|
|
|
|
|
|
|
hexa.Hexahedron()
|
|
|
|
|
|
|
|
# Calcul du maillage
|
|
|
|
# ------------------
|
|
|
|
|
|
|
|
hexa.Compute()
|
2015-02-20 12:08:10 +05:00
|
|
|
# Update object browser
|
|
|
|
# ---------------------
|
|
|
|
|
2016-10-06 13:20:14 +05:00
|
|
|
salome.sg.updateObjBrowser(True)
|