dune-localfunctions  2.7.0
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 #ifndef DUNE_LOCALFUNCTIONS_COMMON_LOCALBASIS_HH
4 #define DUNE_LOCALFUNCTIONS_COMMON_LOCALBASIS_HH
5 
6 namespace Dune
7 {
8 
30  template<class DF, int n, class D, class RF, int m, class R, class J>
32  {
34  typedef DF DomainFieldType;
35 
37  enum {
40  };
41 
43  typedef D DomainType;
44 
46  typedef RF RangeFieldType;
47 
49  enum {
52  };
53 
55  typedef R RangeType;
56 
63  typedef J JacobianType;
64  };
65 
66 }
67 #endif
Dune::LocalBasisTraits::dimDomain
@ dimDomain
dimension of the domain
Definition: common/localbasis.hh:39
Dune::LocalBasisTraits
Type traits for LocalBasisVirtualInterface.
Definition: common/localbasis.hh:31
Dune::LocalBasisTraits::dimRange
@ dimRange
dimension of the range
Definition: common/localbasis.hh:51
Dune
Definition: bdfmcube.hh:15
Dune::LocalBasisTraits::RangeFieldType
RF RangeFieldType
Export type for range field.
Definition: common/localbasis.hh:46
Dune::LocalBasisTraits::DomainType
D DomainType
domain type
Definition: common/localbasis.hh:43
Dune::LocalBasisTraits::JacobianType
J JacobianType
Type to represent derivative.
Definition: common/localbasis.hh:63
Dune::LocalBasisTraits::RangeType
R RangeType
range type
Definition: common/localbasis.hh:55
Dune::LocalBasisTraits::DomainFieldType
DF DomainFieldType
Export type for domain field.
Definition: common/localbasis.hh:34