return well iterations.

This commit is contained in:
Liu Ming
2016-06-20 15:31:25 +08:00
parent 969f6f1d1b
commit b14ebe7616
2 changed files with 20 additions and 0 deletions

View File

@@ -54,6 +54,12 @@ namespace Opm
return linearIterations_;
}
template <class PhysicalModel>
unsigned int NonlinearSolver<PhysicalModel>::wellIterations() const
{
return wellIterations_;
}
template <class PhysicalModel>
const PhysicalModel& NonlinearSolver<PhysicalModel>::model() const
{
@@ -78,6 +84,12 @@ namespace Opm
return linearIterationsLast_;
}
template <class PhysicalModel>
unsigned int NonlinearSolver<PhysicalModel>::wellIterationsLastStep() const
{
return wellIterationsLast_;
}
template <class PhysicalModel>
int