using lower case for solve_wellEq_initially_

This commit is contained in:
Kai Bao 2015-06-16 13:12:49 +02:00
parent 0f123a8890
commit f8e35535fc
3 changed files with 4 additions and 4 deletions

View File

@ -805,7 +805,7 @@ namespace detail {
mob_perfcells[phase] = subset(rq_[phase].mob, well_cells); mob_perfcells[phase] = subset(rq_[phase].mob, well_cells);
b_perfcells[phase] = subset(rq_[phase].b, 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 // solve the well equations as a pre-processing step
solveWellEq(mob_perfcells, b_perfcells, state, well_state); solveWellEq(mob_perfcells, b_perfcells, state, well_state);
} }

View File

@ -46,7 +46,7 @@ namespace Opm
tolerance_mb_ = param.getDefault("tolerance_mb", tolerance_mb_); tolerance_mb_ = param.getDefault("tolerance_mb", tolerance_mb_);
tolerance_cnv_ = param.getDefault("tolerance_cnv", tolerance_cnv_); tolerance_cnv_ = param.getDefault("tolerance_cnv", tolerance_cnv_);
tolerance_wells_ = param.getDefault("tolerance_wells", tolerance_wells_ ); 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_mb_ = 1.0e-5;
tolerance_cnv_ = 1.0e-2; tolerance_cnv_ = 1.0e-2;
tolerance_wells_ = 1.0e-3; tolerance_wells_ = 1.0e-3;
solve_wellEq_initially_ = false; solve_welleq_initially_ = false;
} }

View File

@ -44,7 +44,7 @@ namespace Opm
double tolerance_wells_; double tolerance_wells_;
/// Solve well equation initially /// Solve well equation initially
bool solve_wellEq_initially_; bool solve_welleq_initially_;
/// Construct from user parameters or defaults. /// Construct from user parameters or defaults.
explicit BlackoilModelParameters( const parameter::ParameterGroup& param ); explicit BlackoilModelParameters( const parameter::ParameterGroup& param );