mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 18:21:00 -06:00
Sink should match source
Although it already does numerically, this make is more explicitly clear.
This commit is contained in:
parent
544a8fc91e
commit
eba9a01da7
@ -127,7 +127,7 @@ int main()
|
||||
/// \internal [source]
|
||||
std::vector<double> src(num_cells, 0.0);
|
||||
src[0] = 150.*cubic(meter)/day;
|
||||
src[num_cells-1] = -150.*cubic(meter)/day;
|
||||
src[num_cells-1] = -src[0];
|
||||
/// \internal [source]
|
||||
/// \endinternal
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user