Skip to content
Snippets Groups Projects
Commit b7b7409c authored by Dominik Riesterer's avatar Dominik Riesterer
Browse files

Updated Documentation

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11234 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 9d416399
No related branches found
No related tags found
No related merge requests found
...@@ -83,6 +83,9 @@ public: ...@@ -83,6 +83,9 @@ public:
/*! /*!
* \brief Calculate the storage for all mass balance equations * \brief Calculate the storage for all mass balance equations
*
* \param storage The mass of the component within the sub-control volume
* \param volVars The volume variables
*/ */
static void computeStorage(PrimaryVariables & storage, static void computeStorage(PrimaryVariables & storage,
const VolumeVariables & volVars) const VolumeVariables & volVars)
...@@ -99,6 +102,10 @@ public: ...@@ -99,6 +102,10 @@ public:
/*! /*!
* \brief Calculate the storage for all mass balance equations * \brief Calculate the storage for all mass balance equations
* within a single fluid phase * within a single fluid phase
*
* \param storage The mass of the component within the sub-control volume
* \param volVars The volume variables
* \param phaseIdx phaseIdx The index of the fluid phase
*/ */
static void addPhaseStorage(PrimaryVariables & storage, static void addPhaseStorage(PrimaryVariables & storage,
const VolumeVariables & volVars, const VolumeVariables & volVars,
...@@ -131,6 +138,10 @@ public: ...@@ -131,6 +138,10 @@ public:
/*! /*!
* \brief Calculate the storage for all mass balance equations * \brief Calculate the storage for all mass balance equations
*
* \param flux The flux over the SCV (sub-control-volume) face for each component
* \param fluxVars The flux Variables
* \param elemVolVars The volume variables of the current element
*/ */
static void computeFlux(PrimaryVariables & flux, static void computeFlux(PrimaryVariables & flux,
const FluxVariables & fluxVars, const FluxVariables & fluxVars,
...@@ -181,6 +192,9 @@ public: ...@@ -181,6 +192,9 @@ public:
/*! /*!
* \brief Calculate the source terms for all mass balance equations * \brief Calculate the source terms for all mass balance equations
*
* \param source The source/sink in the sub-control volume for each component
* \param volVars the volume variables
*/ */
static void computeSource(PrimaryVariables & source, static void computeSource(PrimaryVariables & source,
const VolumeVariables & volVars) const VolumeVariables & volVars)
......
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