Salome HOME
Deleted Study parameter
[plugins/hexoticplugin.git] / doc / salome / examples / hexoticsubdom4.py
1 # Copyright (C) 2013-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import salome
21 salome.salome_init()
22
23 from salome.geom import geomBuilder
24 geompy = geomBuilder.New()
25
26 from salome.smesh import smeshBuilder
27 smesh =  smeshBuilder.New()
28
29 # Create geometry: a box cut by a plane
30 Box_1 = geompy.MakeBoxDXDYDZ(200, 200, 200)
31 Translation_1 = geompy.MakeTranslation(Box_1, 0, 200, 0)
32 Partition_1 = geompy.MakePartition([Box_1, Translation_1])
33 geompy.addToStudy( Box_1, 'Box_1' )
34 geompy.addToStudy( Translation_1, 'Translation_1' )
35 geompy.addToStudy( Partition_1, 'Partition_1' )
36
37 # Create mesh of Partition_1 with sd mode 4 (default sd mode in SALOME)
38 Mesh_mghexa_sd4 = smesh.Mesh(Partition_1, "Mesh_mghexa_sd4")
39 Mesh_mghexa_sd4.Triangle(smeshBuilder.MG_CADSurf)
40 Mesh_mghexa_sd4.Hexahedron(smeshBuilder.MG_Hexa).SetMinMaxHexes(4, 8).SetHexoticSdMode( 4 )
41
42 # Compute
43 Mesh_mghexa_sd4.Compute()
44
45 # End of script