Salome HOME
Copyright update 2022
[plugins/hybridplugin.git] / tests / layers_imprinting_hexa_core.py
index 9c3e624ad48d6eca188b37f3709bf896221f24e4..88c499ca52f51a377c6c6b08877e25dd3abb48fa 100644 (file)
@@ -1,4 +1,22 @@
 # -*- coding: utf-8 -*-
+# Copyright (C) 2017-2022  CEA/DEN, EDF R&D
+#
+# 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, or (at your option) any later version.
+#
+# 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.
+#
+# 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
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 
 # This test is a known failure for MeshGems <= 2.4-5 (but must not crash Salome)
 
@@ -6,7 +24,6 @@ import sys
 import salome
 
 salome.salome_init()
-theStudy = salome.myStudy
 
 ###
 ### GEOM component
@@ -18,7 +35,7 @@ import math
 import SALOMEDS
 
 
-geompy = geomBuilder.New(theStudy)
+geompy = geomBuilder.New()
 
 # first cylinder
 r1 = 0.5
@@ -81,7 +98,7 @@ from salome.smesh import smeshBuilder
 from salome.StdMeshers import StdMeshersBuilder
 from salome.HYBRIDPlugin import HYBRIDPluginBuilder
 
-smesh = smeshBuilder.New(theStudy)
+smesh = smeshBuilder.New()
 
 # Viscous layers with imprinting (hexa core)
 # ==========================================
@@ -150,6 +167,3 @@ for name in faces_imprinted:
   area_error_1 = abs(geom_area-smesh.GetArea(gr_4))/geom_area
   assert area_error_1 < 0.025
 
-
-if salome.sg.hasDesktop():
-  salome.sg.updateObjBrowser(1)