version 3.8
freeflow/spatialparams.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_FREEFLOW_SPATIAL_PARAMS_HH
13#define DUMUX_FREEFLOW_SPATIAL_PARAMS_HH
14
16
17namespace Dumux {
18
23template<class GridGeometry, class Scalar, class Implementation>
25: public FVSpatialParams<GridGeometry, Scalar, Implementation>
26{
28
29public:
30 FreeFlowSpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
32 {}
33};
34
39template<class GridGeometry, class Scalar>
41: public FreeFlowSpatialParams<GridGeometry, Scalar, FreeFlowDefaultSpatialParams<GridGeometry, Scalar>>
42{
44public:
46};
47
48} // end namespace Dumux
49
50#endif
The base class for spatial parameters used with finite-volume schemes.
Definition: common/fvspatialparams.hh:34
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: common/fvspatialparams.hh:130
Definition of the spatial parameters for the freeflow problems.
Definition: freeflow/spatialparams.hh:42
Definition of the spatial parameters for the freeflow problems.
Definition: freeflow/spatialparams.hh:26
FreeFlowSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry)
Definition: freeflow/spatialparams.hh:30
Basic spatial parameters to be used with finite-volume schemes.
Definition: adapt.hh:17