28 #ifndef EWOMS_NULL_CONVERGENCE_WRITER_HH 29 #define EWOMS_NULL_CONVERGENCE_WRITER_HH 33 #include <opm/common/Unused.hpp> 36 namespace Properties {
50 template <
class TypeTag>
55 typedef typename GET_PROP_TYPE(TypeTag, SolutionVector) SolutionVector;
56 typedef typename GET_PROP_TYPE(TypeTag, GlobalEqVector) GlobalEqVector;
86 const GlobalEqVector& deltaU OPM_UNUSED)
Definition: baseauxiliarymodule.hh:37
void beginIteration()
Called by the Newton method before an iteration of the Newton algorithm is started.
Definition: nullconvergencewriter.hh:73
void endTimeStep()
Called by the Newton method after Newton algorithm has been completed for any given timestep...
Definition: nullconvergencewriter.hh:103
void beginTimeStep()
Called by the Newton method before the actual algorithm is started for any given timestep.
Definition: nullconvergencewriter.hh:66
void writeFields(const SolutionVector &uLastIter OPM_UNUSED, const GlobalEqVector &deltaU OPM_UNUSED)
Write the Newton update to disk.
Definition: nullconvergencewriter.hh:85
void endIteration()
Called by the Newton method after an iteration of the Newton algorithm has been completed.
Definition: nullconvergencewriter.hh:93
The multi-dimensional Newton method.
Definition: newtonmethod.hh:56
Provides the magic behind the eWoms property system.
#define NEW_PROP_TAG(PTagName)
Define a property tag.
Definition: propertysystem.hh:247
A convergence writer for the Newton method which does nothing.
Definition: nullconvergencewriter.hh:51