Loading [MathJax]/extensions/tex2jax.js

dune-composites (unstable)

GridTransformation.hh
1#ifndef DUNE_COMPOSITIES_GRIDTRANSFORMATION__HH
2#define DUNE_COMPOSITIES_GRIDTRANSFORMATION__HH
3
4
5namespace Dune{
6 namespace Composites{
7
9
17 template <int dim, class MODEL>
19 : public Dune :: AnalyticalCoordFunction< double, dim, dim, GridTransformation <dim,MODEL> >{
21 typedef Dune :: AnalyticalCoordFunction< double, dim, dim, This > Base;
22
23 public:
24 typedef typename Base :: DomainVector DomainVector;
25 typedef typename Base :: RangeVector RangeVector;
26
27 GridTransformation(MODEL& model_, int my_rank_) :
28 model(model_), giveOutput(1), my_rank(my_rank_){ }
29
30 void evaluate ( const DomainVector &x, RangeVector &y ) const {
31 y = model.gridTransformation(x);
32 }
33
34 private:
35 MODEL model;
36 mutable int giveOutput;
37 int my_rank;
38 };
39
40 } // end composites namespace
41} // end dune namespace
42
43#endif
Grid Transformation.
Definition: GridTransformation.hh:19
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)