From: michael Date: Sun, 11 Oct 2020 20:53:00 +0000 (+0200) Subject: Corrected spherical exploion test X-Git-Tag: V9_6_0~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=99d60f0bcb7a5bdf6e6e422acd4a553bc4798831;p=tools%2Fsolverlab.git Corrected spherical exploion test --- diff --git a/CoreFlows/examples/Python/SinglePhase/SinglePhase_2DSphericalExplosion_unstructured.py b/CoreFlows/examples/Python/SinglePhase/SinglePhase_2DSphericalExplosion_unstructured.py index ca6b79c..ff95511 100755 --- a/CoreFlows/examples/Python/SinglePhase/SinglePhase_2DSphericalExplosion_unstructured.py +++ b/CoreFlows/examples/Python/SinglePhase/SinglePhase_2DSphericalExplosion_unstructured.py @@ -7,7 +7,7 @@ import CoreFlows as cf def SinglePhase_2DSphericalExplosion_unstructured(): - inputfile="../resources/BoxWithMeshWithTriangularCells"; + inputfile="./resources/BoxWithMeshWithTriangularCells"; fieldName="Initial variables for spherical explosion"; spaceDim=2 @@ -30,7 +30,7 @@ def SinglePhase_2DSphericalExplosion_unstructured(): # set the numerical method myProblem.setNumericalScheme(cf.upwind, cf.Explicit); - myProblem.setLinearSolver(cf.GMRES,cf.ILU,True); + myProblem.setLinearSolver(cf.GMRES,cf.ILU,True); myProblem.setEntropicCorrection(False); myProblem.setWellBalancedCorrection(False);