Skip to content
Snippets Groups Projects
Commit d8adbd42 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[1p] Use correct volVars

parent 695812d3
No related branches found
No related tags found
2 merge requests!670Cleanup/volvars,!617[WIP] Next
......@@ -25,7 +25,7 @@
#define DUMUX_1P_VOLUME_VARIABLES_HH
#include <dumux/common/properties.hh>
#include <dumux/discretization/volumevariables.hh>
#include <dumux/porousmediumflow/volumevariables.hh>
#include <dumux/material/fluidstates/immiscible.hh>
namespace Dumux
......@@ -33,14 +33,14 @@ namespace Dumux
/*!
* \ingroup OnePModel
* \ingroup ImplicitVolumeVariables
* \ingroup PorousMediumFlowVolumeVariables
* \brief Contains the quantities which are constant within a
* finite volume in the one-phase model.
*/
template <class TypeTag>
class OnePVolumeVariables : public ImplicitVolumeVariables<TypeTag>
class OnePVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag>
{
using ParentType = ImplicitVolumeVariables<TypeTag>;
using ParentType = PorousMediumFlowVolumeVariables<TypeTag>;
using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables);
using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar);
using Problem = typename GET_PROP_TYPE(TypeTag, Problem);
......
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