mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 09:20:34 +05:00
Fix Compute for Homard
This commit is contained in:
parent
debaef1caa
commit
9c68cb9dab
@ -40,7 +40,7 @@ smeshhomard.SetLogInFile(True)
|
|||||||
smeshhomard.SetLogFile(log_file_1)
|
smeshhomard.SetLogFile(log_file_1)
|
||||||
smeshhomard.SetRemoveLogOnSuccess(False)
|
smeshhomard.SetRemoveLogOnSuccess(False)
|
||||||
smeshhomard.SetVerboseLevel(3)
|
smeshhomard.SetVerboseLevel(3)
|
||||||
if not smeshhomard.Compute(): raise Exception("Error when computing Mesh")
|
if smeshhomard.Compute() != 0: raise Exception("Error when computing Mesh")
|
||||||
|
|
||||||
if osp.isfile(output_med_1):
|
if osp.isfile(output_med_1):
|
||||||
os.remove(output_med_1)
|
os.remove(output_med_1)
|
||||||
@ -79,7 +79,7 @@ smeshhomard.SetLogInFile(True)
|
|||||||
smeshhomard.SetLogFile(log_file_2)
|
smeshhomard.SetLogFile(log_file_2)
|
||||||
smeshhomard.SetRemoveLogOnSuccess(True)
|
smeshhomard.SetRemoveLogOnSuccess(True)
|
||||||
smeshhomard.SetVerboseLevel(0)
|
smeshhomard.SetVerboseLevel(0)
|
||||||
if not smeshhomard.Compute(): raise Exception("Error when computing Mesh")
|
if smeshhomard.Compute() != 0: raise Exception("Error when computing Mesh")
|
||||||
|
|
||||||
if osp.isfile(output_med_2):
|
if osp.isfile(output_med_2):
|
||||||
print("Test Uniform refinement Case 2: Error: output med file has not been removed")
|
print("Test Uniform refinement Case 2: Error: output med file has not been removed")
|
||||||
|
@ -42,7 +42,7 @@ smeshhomard.SetLogInFile(True)
|
|||||||
smeshhomard.SetLogFile(log_file_1)
|
smeshhomard.SetLogFile(log_file_1)
|
||||||
smeshhomard.SetRemoveLogOnSuccess(False)
|
smeshhomard.SetRemoveLogOnSuccess(False)
|
||||||
smeshhomard.SetVerboseLevel(3)
|
smeshhomard.SetVerboseLevel(3)
|
||||||
if not smeshhomard.Compute(): raise Exception("Error when computing Mesh")
|
if smeshhomard.Compute() != 0: raise Exception("Error when computing Mesh")
|
||||||
|
|
||||||
if osp.isfile(output_med_1):
|
if osp.isfile(output_med_1):
|
||||||
os.remove(output_med_1)
|
os.remove(output_med_1)
|
||||||
@ -85,7 +85,7 @@ smeshhomard.SetLogInFile(True)
|
|||||||
smeshhomard.SetLogFile(log_file_2)
|
smeshhomard.SetLogFile(log_file_2)
|
||||||
smeshhomard.SetRemoveLogOnSuccess(True)
|
smeshhomard.SetRemoveLogOnSuccess(True)
|
||||||
smeshhomard.SetVerboseLevel(0)
|
smeshhomard.SetVerboseLevel(0)
|
||||||
if not smeshhomard.Compute(): raise Exception("Error when computing Mesh")
|
if smeshhomard.Compute() != 0: raise Exception("Error when computing Mesh")
|
||||||
|
|
||||||
if osp.isfile(output_med_2):
|
if osp.isfile(output_med_2):
|
||||||
print("Test Uniform refinement Case 2: Error: output med file has not been removed")
|
print("Test Uniform refinement Case 2: Error: output med file has not been removed")
|
||||||
|
@ -1,98 +0,0 @@
|
|||||||
# -*- coding: iso-8859-1 -*-
|
|
||||||
# Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
||||||
#
|
|
||||||
# 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
|
|
||||||
#
|
|
||||||
|
|
||||||
# ====================================================================
|
|
||||||
#
|
|
||||||
import os
|
|
||||||
|
|
||||||
import salome
|
|
||||||
salome.salome_init()
|
|
||||||
import GEOM
|
|
||||||
from salome.geom import geomBuilder
|
|
||||||
geompy = geomBuilder.New()
|
|
||||||
|
|
||||||
import SMESH, SALOMEDS
|
|
||||||
from salome.smesh import smeshBuilder
|
|
||||||
smesh = smeshBuilder.New()
|
|
||||||
|
|
||||||
# Parameters
|
|
||||||
# ----------
|
|
||||||
|
|
||||||
results = "/tmp/ZZ"
|
|
||||||
|
|
||||||
radius = 50
|
|
||||||
height = 200
|
|
||||||
|
|
||||||
# Build a cylinder
|
|
||||||
# ----------------
|
|
||||||
|
|
||||||
base = geompy.MakeVertex(0, 0, 0)
|
|
||||||
direction = geompy.MakeVectorDXDYDZ(0, 0, 1)
|
|
||||||
|
|
||||||
cylinder = geompy.MakeCylinder(base, direction, radius, height)
|
|
||||||
|
|
||||||
geompy.addToStudy(cylinder, "Cylinder")
|
|
||||||
|
|
||||||
# Define a mesh on a geometry
|
|
||||||
# ---------------------------
|
|
||||||
|
|
||||||
smesh.UpdateStudy()
|
|
||||||
|
|
||||||
m = smesh.Mesh(cylinder)
|
|
||||||
|
|
||||||
# 2D mesh with BLSURF
|
|
||||||
# -------------------
|
|
||||||
|
|
||||||
algo2d = m.Triangle(smeshBuilder.BLSURF)
|
|
||||||
|
|
||||||
algo2d.SetPhysicalMesh(1)
|
|
||||||
algo2d.SetPhySize(5)
|
|
||||||
|
|
||||||
algo2d.SetGeometricMesh(0)
|
|
||||||
|
|
||||||
# 3D mesh with tepal
|
|
||||||
# ------------------
|
|
||||||
|
|
||||||
algo3d = m.Tetrahedron(smeshBuilder.GHS3DPRL)
|
|
||||||
|
|
||||||
algo3d.SetMEDName(results)
|
|
||||||
algo3d.SetNbPart(4)
|
|
||||||
algo3d.SetBackground(False)
|
|
||||||
algo3d.SetKeepFiles(False)
|
|
||||||
|
|
||||||
# Launch meshers
|
|
||||||
# --------------
|
|
||||||
|
|
||||||
status = m.Compute()
|
|
||||||
if not status:
|
|
||||||
raise Exception("Error when computing Mesh")
|
|
||||||
|
|
||||||
# Test if ok
|
|
||||||
# ----------
|
|
||||||
|
|
||||||
if os.access(results+".xml", os.F_OK):
|
|
||||||
print("Ok: tepal")
|
|
||||||
else:
|
|
||||||
print("KO: tepal")
|
|
||||||
|
|
||||||
# Update object browser
|
|
||||||
# ---------------------
|
|
||||||
|
|
||||||
salome.sg.updateObjBrowser()
|
|
@ -67,7 +67,6 @@ SET(BAD_TESTS
|
|||||||
)
|
)
|
||||||
IF(NOT WIN32)
|
IF(NOT WIN32)
|
||||||
LIST(APPEND BAD_TESTS
|
LIST(APPEND BAD_TESTS
|
||||||
ex30_tepal.py
|
|
||||||
test_smeshplugin_mg_tetra_parallele.py
|
test_smeshplugin_mg_tetra_parallele.py
|
||||||
)
|
)
|
||||||
ENDIF(NOT WIN32)
|
ENDIF(NOT WIN32)
|
||||||
|
Loading…
Reference in New Issue
Block a user