Skip to content
Snippets Groups Projects
Commit c0fb8935 authored by Philipp Nuske's avatar Philipp Nuske
Browse files

- adapt the interface of volume variables update. (volVars are for now

  also function argument)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6717 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 908d395c
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,7 @@ class MPNCVolumeVariablesIA ...@@ -53,6 +53,7 @@ class MPNCVolumeVariablesIA
typedef typename GET_PROP_TYPE(TypeTag, PTAG(GridView)) GridView; typedef typename GET_PROP_TYPE(TypeTag, PTAG(GridView)) GridView;
typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem; typedef typename GET_PROP_TYPE(TypeTag, PTAG(Problem)) Problem;
typedef typename GET_PROP_TYPE(TypeTag, PTAG(Scalar)) Scalar; typedef typename GET_PROP_TYPE(TypeTag, PTAG(Scalar)) Scalar;
typedef typename GET_PROP_TYPE(TypeTag, PTAG(VolumeVariables)) VolumeVariables;
typedef typename GridView::template Codim<0>::Entity Element; typedef typename GridView::template Codim<0>::Entity Element;
...@@ -61,7 +62,8 @@ public: ...@@ -61,7 +62,8 @@ public:
* \brief Updates the volume specific interfacial area [m^2 / m^3] between the phases. * \brief Updates the volume specific interfacial area [m^2 / m^3] between the phases.
*/ */
template <class MutableParams> template <class MutableParams>
void update(const MutableParams & mutParams, void update(const VolumeVariables & volVars,
const MutableParams & mutParams,
const PrimaryVariables &priVars, const PrimaryVariables &priVars,
const Problem &problem, const Problem &problem,
const Element & element, const Element & element,
......
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