My Project
|
A newton solver which is specific to the black oil model. More...
#include <blackoilnewtonmethod.hpp>
Public Member Functions | |
BlackOilNewtonMethod (Simulator &simulator) | |
void | finishInit () |
Finialize the construction of the object. | |
unsigned | numPriVarsSwitched () const |
Returns the number of degrees of freedom for which the interpretation has changed for the most recent iteration. | |
void | update_ (SolutionVector &nextSolution, const SolutionVector ¤tSolution, const GlobalEqVector &solutionUpdate, const GlobalEqVector ¤tResidual) |
template<class DofIndices > | |
void | update_ (SolutionVector &nextSolution, const SolutionVector ¤tSolution, const GlobalEqVector &solutionUpdate, const GlobalEqVector ¤tResidual, const DofIndices &dofIndices) |
Static Public Member Functions | |
static void | registerParameters () |
Register all run-time parameters for the blackoil newton method. | |
Protected Member Functions | |
void | beginIteration_ () |
Indicates the beginning of a Newton iteration. | |
void | endIteration_ (SolutionVector &uCurrentIter, const SolutionVector &uLastIter) |
Indicates that one Newton iteration was finished. | |
void | updatePrimaryVariables_ (unsigned globalDofIdx, PrimaryVariables &nextValue, const PrimaryVariables ¤tValue, const EqVector &update, const EqVector ¤tResidual) |
Update a single primary variables object. | |
Protected Attributes | |
friend | NewtonMethod< TypeTag > |
friend | ParentType |
A newton solver which is specific to the black oil model.
|
inlineprotected |
Indicates the beginning of a Newton iteration.
|
inlineprotected |
Indicates that one Newton iteration was finished.
nextSolution | The solution after the current Newton iteration |
currentSolution | The solution at the beginning of the current Newton iteration |
|
inline |
Finialize the construction of the object.
At this point, it can be assumed that all objects featured by the simulator have been allocated. (But not that they have been fully initialized yet.)
|
inlineprotected |
Update a single primary variables object.