mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-28 02:00:59 -06:00
remove wellIterationsLast_.
This commit is contained in:
parent
b43cbe0531
commit
52d51e8565
@ -117,9 +117,6 @@ namespace Opm {
|
||||
/// Number of linear solver iterations used in the last call to step().
|
||||
int linearIterationsLastStep() const;
|
||||
|
||||
/// Number of well iterations used in the last call to step().
|
||||
int wellIterationsLastStep() const;
|
||||
|
||||
/// Reference to physical model.
|
||||
const PhysicalModel& model() const;
|
||||
|
||||
@ -160,7 +157,6 @@ namespace Opm {
|
||||
int wellIterations_;
|
||||
int nonlinearIterationsLast_;
|
||||
int linearIterationsLast_;
|
||||
int wellIterationsLast_;
|
||||
};
|
||||
} // namespace Opm
|
||||
|
||||
|
@ -36,8 +36,7 @@ namespace Opm
|
||||
linearIterations_(0),
|
||||
wellIterations_(0),
|
||||
nonlinearIterationsLast_(0),
|
||||
linearIterationsLast_(0),
|
||||
wellIterationsLast_(0)
|
||||
linearIterationsLast_(0)
|
||||
{
|
||||
if (!model_) {
|
||||
OPM_THROW(std::logic_error, "Must provide a non-null model argument for NonlinearSolver.");
|
||||
@ -86,12 +85,6 @@ namespace Opm
|
||||
return linearIterationsLast_;
|
||||
}
|
||||
|
||||
template <class PhysicalModel>
|
||||
int NonlinearSolver<PhysicalModel>::wellIterationsLastStep() const
|
||||
{
|
||||
return wellIterationsLast_;
|
||||
}
|
||||
|
||||
|
||||
template <class PhysicalModel>
|
||||
int
|
||||
@ -151,7 +144,6 @@ namespace Opm
|
||||
linearIterations_ += linIters;
|
||||
nonlinearIterations_ += iteration - 1; // Since the last one will always be trivial.
|
||||
wellIterations_ = wellIters;
|
||||
wellIterationsLast_ = wellIters;
|
||||
linearIterationsLast_ = linIters;
|
||||
nonlinearIterationsLast_ = iteration;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user