DUNE-FEM (unstable)

leafgridpart.hh
1#ifndef DUNE_FEM_GRIDPART_LEAFGRIDPART_HH
2#define DUNE_FEM_GRIDPART_LEAFGRIDPART_HH
3
5
6#include <dune/fem/gridpart/common/capabilities.hh>
7#include <dune/fem/gridpart/common/gridview2gridpart.hh>
8
9namespace Dune
10{
11
12 namespace Fem
13 {
14
15 // LeafGridPart
16 // ------------
17
18 template< class Grid >
19 class LeafGridPart
20 : public GridView2GridPart< typename Grid::LeafGridView, LeafGridPart< Grid > >
21 {
22 typedef GridView2GridPart< typename Grid::LeafGridView, LeafGridPart< Grid > > BaseType;
23
24 public:
26 typedef typename BaseType::GridType GridType;
27
31 explicit LeafGridPart ( GridType &grid )
32 : BaseType( grid.leafGridView() ),
33 grid_( &grid )
34 {}
35
36 LeafGridPart ( const LeafGridPart& other )
37 : BaseType( other.grid_->leafGridView() ),
38 grid_( other.grid_ )
39 {}
40
41 LeafGridPart& operator= ( const LeafGridPart& ) = default;
42
49 using BaseType::grid;
50
52 GridType &grid () { assert( grid_ ); return *grid_; }
53
56 private:
57 GridType *grid_;
58 };
59
60
61
62 namespace GridPartCapabilities
63 {
64
65 template< class Grid >
66 struct hasGrid< LeafGridPart< Grid > >
67 {
68 static const bool v = true;
69 };
70
71 template< class Grid >
72 struct hasSingleGeometryType< LeafGridPart< Grid > >
74 {};
75
76 template< class Grid >
77 struct isCartesian< LeafGridPart< Grid > >
78 : public Dune::Capabilities::isCartesian< Grid >
79 {};
80
81 template< class Grid, int codim >
82 struct hasEntity< LeafGridPart< Grid >, codim >
83 : public Dune::Capabilities::hasEntity< Grid, codim >
84 {};
85
86 template< class Grid, int codim >
87 struct canCommunicate< LeafGridPart< Grid >, codim >
88 : public Dune::Capabilities::canCommunicate< Grid, codim >
89 {};
90
91 template< class Grid >
92 struct isConforming< LeafGridPart< Grid > >
93 {
95 };
96
97 } // namespace GridPartCapabilities
98
99 } // namespace Fem
100
101} // namespace Dune
102
103#endif // #ifndef DUNE_FEM_GRIDPART_LEAFGRIDPART_HH
A set of traits classes to store static information about grid implementation.
Grid< dim, dimworld, ct, GridFamily >::LeafGridView leafGridView(const Grid< dim, dimworld, ct, GridFamily > &grid)
leaf grid view for the given grid
Definition: grid.hh:805
Dune namespace.
Definition: alignedallocator.hh:13
specialize with 'true' for all codims that a grid can communicate data on (default=false)
Definition: capabilities.hh:97
Specialize with 'true' for all codims that a grid implements entities for. (default=false)
Definition: capabilities.hh:58
Specialize with 'true' for if the codimension 0 entity of the grid has only one possible geometry typ...
Definition: capabilities.hh:27
Specialize with 'true' if the grid is a Cartesian grid. Cartesian grids satisfy the following propert...
Definition: capabilities.hh:48
Specialize with 'true' if implementation guarantees a conforming leaf grid. (default=false)
Definition: capabilities.hh:115
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Nov 12, 23:30, 2024)