version 3.10.0
Loading...
Searching...
No Matches
porousmediumflow/richards/velocityoutput.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12
13#ifndef DUMUX_POROUSMEDIUMFLOW_RICHARDS_VELOCITYOUTPUT_HH
14#define DUMUX_POROUSMEDIUMFLOW_RICHARDS_VELOCITYOUTPUT_HH
15
17
18namespace Dumux {
19
24template<class GridVariables, class FluxVariables>
25class RichardsVelocityOutput : public PorousMediumFlowVelocityOutput<GridVariables, FluxVariables>
26{
28
29public:
30 using ParentType::ParentType;
31
33 int numFluidPhases() const override { return 1; }
34
35};
36
37} // end namespace Dumux
38
39#endif
PorousMediumFlowVelocityOutput(const GridVariables &gridVariables)
Constructor initializes the static data with the initial solution.
Definition porousmediumflow/velocityoutput.hh:55
Velocity output policy for the Richards model.
Definition porousmediumflow/richards/velocityoutput.hh:26
int numFluidPhases() const override
Returns the number of phases.
Definition porousmediumflow/richards/velocityoutput.hh:33
Definition adapt.hh:17
Velocity output for porous media models.