From 99d60f0bcb7a5bdf6e6e422acd4a553bc4798831 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 11 Oct 2020 22:53:00 +0200 Subject: [PATCH] Corrected spherical exploion test --- .../SinglePhase_2DSphericalExplosion_unstructured.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.2