mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -06:00
Change the number of integration points in the initialization
The number is changed from 100->2000 to increase accuracy.
This commit is contained in:
parent
c65ad8292b
commit
3086e67ee2
@ -366,9 +366,9 @@ namespace Opm
|
|||||||
typedef Details::RK4IVP<ODE> WPress;
|
typedef Details::RK4IVP<ODE> WPress;
|
||||||
std::array<WPress,2> 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;
|
typedef Details::RK4IVP<ODE> OPress;
|
||||||
std::array<OPress,2> 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;
|
typedef Details::RK4IVP<ODE> GPress;
|
||||||
std::array<GPress,2> 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)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user