dune-localfunctions  2.11
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 © 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 
8 namespace Dune
9 {
10 
33  template<class DF, int n, class D, class RF, int m, class R, class J>
35  {
37  typedef DF DomainFieldType;
38 
40  constexpr static int dimDomain = n;
41 
43  typedef D DomainType;
44 
46  typedef RF RangeFieldType;
47 
49  constexpr static int dimRange = m;
50 
52  typedef R RangeType;
53 
60  typedef J JacobianType;
61  };
62 
63 }
64 #endif
static constexpr int dimDomain
dimension of the domain
Definition: common/localbasis.hh:40
R RangeType
range type
Definition: common/localbasis.hh:52
Definition: bdfmcube.hh:17
D DomainType
domain type
Definition: common/localbasis.hh:43
RF RangeFieldType
Export type for range field.
Definition: common/localbasis.hh:46
static constexpr int dimRange
dimension of the range
Definition: common/localbasis.hh:49
Type traits for LocalBasisVirtualInterface.
Definition: common/localbasis.hh:34
DF DomainFieldType
Export type for domain field.
Definition: common/localbasis.hh:37
J JacobianType
Type to represent derivative.
Definition: common/localbasis.hh:60