dune-localfunctions 2.9.1
Loading...
Searching...
No Matches
common/localbasis.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3// SPDX-FileCopyrightInfo: Copyright (C) DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5#ifndef DUNE_LOCALFUNCTIONS_COMMON_LOCALBASIS_HH
6#define DUNE_LOCALFUNCTIONS_COMMON_LOCALBASIS_HH
7
8namespace Dune
9{
10
32 template<class DF, int n, class D, class RF, int m, class R, class J>
34 {
36 typedef DF DomainFieldType;
37
39 constexpr static int dimDomain = n;
40
42 typedef D DomainType;
43
45 typedef RF RangeFieldType;
46
48 constexpr static int dimRange = m;
49
51 typedef R RangeType;
52
59 typedef J JacobianType;
60 };
61
62}
63#endif
Definition bdfmcube.hh:18
Type traits for LocalBasisVirtualInterface.
Definition common/localbasis.hh:34
D DomainType
domain type
Definition common/localbasis.hh:42
J JacobianType
Type to represent derivative.
Definition common/localbasis.hh:59
RF RangeFieldType
Export type for range field.
Definition common/localbasis.hh:45
static constexpr int dimRange
dimension of the range
Definition common/localbasis.hh:48
DF DomainFieldType
Export type for domain field.
Definition common/localbasis.hh:36
static constexpr int dimDomain
dimension of the domain
Definition common/localbasis.hh:39
R RangeType
range type
Definition common/localbasis.hh:51