mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-24 18:20:22 -06:00
using lower case for solve_wellEq_initially_
This commit is contained in:
parent
0f123a8890
commit
f8e35535fc
@ -805,7 +805,7 @@ namespace detail {
|
||||
mob_perfcells[phase] = subset(rq_[phase].mob, well_cells);
|
||||
b_perfcells[phase] = subset(rq_[phase].b, well_cells);
|
||||
}
|
||||
if (param_.solve_wellEq_initially_ && initial_assembly) {
|
||||
if (param_.solve_welleq_initially_ && initial_assembly) {
|
||||
// solve the well equations as a pre-processing step
|
||||
solveWellEq(mob_perfcells, b_perfcells, state, well_state);
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ namespace Opm
|
||||
tolerance_mb_ = param.getDefault("tolerance_mb", tolerance_mb_);
|
||||
tolerance_cnv_ = param.getDefault("tolerance_cnv", tolerance_cnv_);
|
||||
tolerance_wells_ = param.getDefault("tolerance_wells", tolerance_wells_ );
|
||||
solve_wellEq_initially_ = param.getDefault("solve_wellEq_initially",solve_wellEq_initially_);
|
||||
solve_welleq_initially_ = param.getDefault("solve_welleq_initially",solve_welleq_initially_);
|
||||
}
|
||||
|
||||
|
||||
@ -62,7 +62,7 @@ namespace Opm
|
||||
tolerance_mb_ = 1.0e-5;
|
||||
tolerance_cnv_ = 1.0e-2;
|
||||
tolerance_wells_ = 1.0e-3;
|
||||
solve_wellEq_initially_ = false;
|
||||
solve_welleq_initially_ = false;
|
||||
}
|
||||
|
||||
|
||||
|
@ -44,7 +44,7 @@ namespace Opm
|
||||
double tolerance_wells_;
|
||||
|
||||
/// Solve well equation initially
|
||||
bool solve_wellEq_initially_;
|
||||
bool solve_welleq_initially_;
|
||||
|
||||
/// Construct from user parameters or defaults.
|
||||
explicit BlackoilModelParameters( const parameter::ParameterGroup& param );
|
||||
|
Loading…
Reference in New Issue
Block a user