version 3.8
geomechanics/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-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_GEOMECHANICS_VELOCITYOUTPUT_HH
13#define DUMUX_GEOMECHANICS_VELOCITYOUTPUT_HH
14
15
16#include <dune/common/exceptions.hh>
18
19namespace Dumux {
20
29template<class GridVariables>
31: public VelocityOutput<GridVariables>
32{
33public:
35 template< typename... Args >
37 { DUNE_THROW(Dune::NotImplemented, "Velocity output for geomechanical models."); }
38
40 bool enableOutput() const override { return false; }
41};
42
43} // end namespace Dumux
44
45#endif
Velocity output for geomechanical models. This class could be used to compute the temporal derivative...
Definition: geomechanics/velocityoutput.hh:32
bool enableOutput() const override
Output is currently disabled (not implemented)
Definition: geomechanics/velocityoutput.hh:40
GeomechanicsVelocityOutput(Args &&... args)
The constructor.
Definition: geomechanics/velocityoutput.hh:36
Velocity output for implicit (porous media) models.
Definition: io/velocityoutput.hh:29
Default velocity output policy for porous media models.
Definition: adapt.hh:17