Change the number of integration points in the initialization

The number is changed from 100->2000 to increase accuracy.
This commit is contained in:
Tor Harald Sandve 2015-10-30 08:14:10 +01:00
parent c65ad8292b
commit 3086e67ee2

View File

@ -366,9 +366,9 @@ namespace Opm
typedef Details::RK4IVP<ODE> WPress;
std::array<WPress,2> 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<ODE> OPress;
std::array<OPress,2> 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<ODE> GPress;
std::array<GPress,2> gpress = {
{
GPress(drho, up , p0, 100)
GPress(drho, up , p0, 2000)
,
GPress(drho, down, p0, 100)
GPress(drho, down, p0, 2000)
}
};