From 28c4cfcb19eefccf5a32d202c3d941d2ad9cf4fd Mon Sep 17 00:00:00 2001
From: Andreas Lauser <and@poware.org>
Date: Mon, 2 Jan 2012 16:15:14 +0000
Subject: [PATCH] MpNc test problem: start tabulation at 0 pressure

this issue was not triggered because the obstacle problem uses the
H2O-N2 fluid system with the complex fluid relations disabled.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7276 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 test/boxmodels/MpNc/obstacleproblem.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/boxmodels/MpNc/obstacleproblem.hh b/test/boxmodels/MpNc/obstacleproblem.hh
index 66cf10df82..8718a6bbee 100644
--- a/test/boxmodels/MpNc/obstacleproblem.hh
+++ b/test/boxmodels/MpNc/obstacleproblem.hh
@@ -183,10 +183,10 @@ public:
         // initialize the tables of the fluid system
         Scalar Tmin = temperature_ - 1.0;
         Scalar Tmax = temperature_ + 1.0;
-        int nT = 10;
+        int nT = 3;
 
-        Scalar pmin = 0.75 * 1e5;
-        Scalar pmax = 1.25 * 2e5;
+        Scalar pmin = 0.0;
+        Scalar pmax = 1e6;
         int np = 1000;
 
         FluidSystem::init(Tmin, Tmax, nT, pmin, pmax, np);
-- 
GitLab