DUNE MultiDomainGrid (2.10)

localgeometry.hh
1#ifndef DUNE_MULTIDOMAINGRID_SUBDOMAINGRID_LOCALGEOMETRY_HH
2#define DUNE_MULTIDOMAINGRID_SUBDOMAINGRID_LOCALGEOMETRY_HH
3
4#include <dune/grid/common/geometry.hh>
5
6namespace Dune {
7
8namespace mdgrid {
9
10namespace subdomain {
11
12template<int mydim, int coorddim, typename GridImp>
13class LocalGeometryWrapper
14{
15
16 template<int,int,typename>
17 friend class EntityWrapper;
18
19 template<typename,typename,typename>
20 friend class IntersectionWrapper;
21
22public:
23
24 typedef typename GridImp::ctype ctype;
25 static const int dimension = GridImp::dimension;
26 static const int dimensionworld = GridImp::dimensionworld;
27 static const int mydimension = mydim;
28 static const int coorddimension = coorddim;
29
30private:
31
32 typedef typename GridImp::HostGrid::Traits::template Codim<dimension-mydim>::LocalGeometry HostLocalGeometry; //TODO: fix this
33
34public:
35
36 typedef typename HostLocalGeometry::GlobalCoordinate GlobalCoordinate;
37 typedef typename HostLocalGeometry::LocalCoordinate LocalCoordinate;
38 typedef typename HostLocalGeometry::Volume Volume;
39 typedef typename HostLocalGeometry::JacobianInverseTransposed JacobianInverseTransposed;
40 typedef typename HostLocalGeometry::JacobianTransposed JacobianTransposed;
41 typedef typename HostLocalGeometry::JacobianInverse JacobianInverse;
42 typedef typename HostLocalGeometry::Jacobian Jacobian;
43
44 GeometryType type() const {
45 return _hostLocalGeometry.type();
46 }
47
48 int corners() const {
49 return _hostLocalGeometry.corners();
50 }
51
52 bool affine() const {
53 return _hostLocalGeometry.affine();
54 }
55
56 GlobalCoordinate corner(int i) const {
57 return _hostLocalGeometry.corner(i);
58 }
59
60 GlobalCoordinate global(const LocalCoordinate& local) const {
61 return _hostLocalGeometry.global(local);
62 }
63
64 LocalCoordinate local(const GlobalCoordinate& global) const {
65 return _hostLocalGeometry.local(global);
66 }
67
68 bool checkInside(const LocalCoordinate& local) const {
69 return _hostLocalGeometry.checkInside(local);
70 }
71
72 Volume integrationElement(const LocalCoordinate& local) const {
73 return _hostLocalGeometry.integrationElement(local);
74 }
75
76 Volume volume() const {
77 return _hostLocalGeometry.volume();
78 }
79
80 GlobalCoordinate center() const {
81 return _hostLocalGeometry.center();
82 }
83
84 JacobianTransposed jacobianTransposed(const LocalCoordinate& local) const {
85 return _hostLocalGeometry.jacobianTransposed(local);
86 }
87
88 JacobianInverseTransposed jacobianInverseTransposed(const LocalCoordinate& local) const {
89 return _hostLocalGeometry.jacobianInverseTransposed(local);
90 }
91
92 Jacobian jacobian(const LocalCoordinate& local) const
93 {
94 return _hostLocalGeometry.jacobian(local);
95 }
96
97 JacobianInverse jacobianInverse(const LocalCoordinate& local) const
98 {
99 return _hostLocalGeometry.jacobianInverse(local);
100 }
101
102private:
103
104 const HostLocalGeometry _hostLocalGeometry;
105
106 LocalGeometryWrapper(const HostLocalGeometry& hostLocalGeometry)
107 : _hostLocalGeometry(hostLocalGeometry)
108 {}
109
110};
111
112} // namespace subdomain
113
114} // namespace mdgrid
115
116} // namespace Dune
117
118#endif // DUNE_MULTIDOMAINGRID_SUBDOMAINGRID_LOCALGEOMETRY_HH
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 4, 22:59, 2025)