Skip to content
Snippets Groups Projects
Commit 7f631d91 authored by Martin Schneider's avatar Martin Schneider
Browse files

Added doxygen docu for timeIntegration() method

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11611 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 17d6912e
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ SET_TYPE_PROP(TransportTwoP, Velocity, FVVelocityDefault<TypeTag>); //this Prope ...@@ -44,7 +44,7 @@ SET_TYPE_PROP(TransportTwoP, Velocity, FVVelocityDefault<TypeTag>); //this Prope
* \ingroup IMPETproblems * \ingroup IMPETproblems
* \brief Base class for a decoupled two-phase transport problem * \brief Base class for a decoupled two-phase transport problem
* *
* @tparam TypeTag The problem Type Tag * \tparam TypeTag The problem Type Tag
*/ */
template<class TypeTag> template<class TypeTag>
class TransportProblem2P : public OneModelProblem<TypeTag> class TransportProblem2P : public OneModelProblem<TypeTag>
...@@ -200,6 +200,13 @@ public: ...@@ -200,6 +200,13 @@ public:
const SpatialParams &spatialParams() const const SpatialParams &spatialParams() const
{ return *spatialParams_; } { return *spatialParams_; }
/*!
* \brief Time integration of the model
*
* Update the transported quantity. By default, an explicit Euler is used
*
*/
void timeIntegration() void timeIntegration()
{ {
// allocate temporary vectors for the updates // allocate temporary vectors for the updates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment