mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Use S_o=1 as initial condition.
This is the case in 'sim_simple.cpp', too.
This commit is contained in:
parent
9b65338461
commit
fc5a3f181e
@ -14,8 +14,9 @@ function x = sim_simple(cartDims, physDims, tf, verb)
|
|||||||
|
|
||||||
src = addSource([], [1, g.cells.num], [1, -1], 'sat', [ 1, 0 ; 0, 1]);
|
src = addSource([], [1, g.cells.num], [1, -1], 'sat', [ 1, 0 ; 0, 1]);
|
||||||
|
|
||||||
state = initState(g, [], 0, repmat([ 0.5, 0.5 ], [g.cells.num, 1]));
|
s0 = [0, 1];
|
||||||
state = incompTPFA(state, g, T, fluid, 'src', src);
|
state = incompTPFA(initState(g, [], 0, s0), ...
|
||||||
|
g, T, fluid, 'src', src);
|
||||||
|
|
||||||
if nargin < 4, verb = false; end
|
if nargin < 4, verb = false; end
|
||||||
state = implicitTransport(state, g, tf, rock, fluid, ...
|
state = implicitTransport(state, g, tf, rock, fluid, ...
|
||||||
|
Loading…
Reference in New Issue
Block a user