From 3086e67ee29a1e6fffa0eba75d337baac2c63ede Mon Sep 17 00:00:00 2001 From: Tor Harald Sandve Date: Fri, 30 Oct 2015 08:14:10 +0100 Subject: [PATCH] Change the number of integration points in the initialization The number is changed from 100->2000 to increase accuracy. --- opm/core/simulator/initStateEquil_impl.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/opm/core/simulator/initStateEquil_impl.hpp b/opm/core/simulator/initStateEquil_impl.hpp index 20ca1f40c..b2c433e94 100644 --- a/opm/core/simulator/initStateEquil_impl.hpp +++ b/opm/core/simulator/initStateEquil_impl.hpp @@ -366,9 +366,9 @@ namespace Opm typedef Details::RK4IVP WPress; std::array wpress = { { - WPress(drho, up , p0, 100) + WPress(drho, up , p0, 2000) , - WPress(drho, down, p0, 100) + WPress(drho, down, p0, 2000) } }; @@ -426,9 +426,9 @@ namespace Opm typedef Details::RK4IVP OPress; std::array opress = { { - OPress(drho, up , p0, 100) + OPress(drho, up , p0, 2000) , - OPress(drho, down, p0, 100) + OPress(drho, down, p0, 2000) } }; @@ -488,9 +488,9 @@ namespace Opm typedef Details::RK4IVP GPress; std::array gpress = { { - GPress(drho, up , p0, 100) + GPress(drho, up , p0, 2000) , - GPress(drho, down, p0, 100) + GPress(drho, down, p0, 2000) } };