Extension: Geometries
#include "dg/geometries/geometries.h"
Loading...
Searching...
No Matches
polar.h
Go to the documentation of this file.
1#pragma once
2#include "generator.h"
3
4namespace dg {
5namespace geo {
6
17{
18 private:
19 double r_min, r_max;
20
21 public:
22
29 PolarGenerator(double _r_min, double _r_max) : r_min(_r_min), r_max(_r_max) {}
30 virtual PolarGenerator* clone() const override final{return new PolarGenerator(*this); }
31
32 private:
33 virtual void do_generate(
34 const thrust::host_vector<double>& zeta1d,
35 const thrust::host_vector<double>& eta1d,
36 thrust::host_vector<double>& x,
37 thrust::host_vector<double>& y,
38 thrust::host_vector<double>& zetaX,
39 thrust::host_vector<double>& zetaY,
40 thrust::host_vector<double>& etaX,
41 thrust::host_vector<double>& etaY) const override final {
42
43 int size_r = zeta1d.size();
44 int size_phi = eta1d.size();
45 int size = size_r*size_phi;
46
47 x.resize(size); y.resize(size);
48 zetaX.resize(size); zetaY.resize(size);
49 etaX.resize(size); etaY.resize(size);
50
51 // the first coordinate has stride=1
52 for(int j=0;j<size_phi;j++)
53 for(int i=0;i<size_r;i++) {
54 double r = zeta1d[i] + r_min;
55 double phi = eta1d[j];
56
57 x[i+size_r*j] = r*cos(phi);
58 y[i+size_r*j] = r*sin(phi);
59
60 zetaX[i+size_r*j] = cos(phi);
61 zetaY[i+size_r*j] = sin(phi);
62 etaX[i+size_r*j] = -sin(phi)/r;
63 etaY[i+size_r*j] = cos(phi)/r;
64 }
65
66 }
67
68 virtual double do_width() const override final{return r_max-r_min;}
69 virtual double do_height() const override final{return 2*M_PI;}
70 virtual bool do_isOrthogonal() const override final{return true;}
71};
72
73
84{
85 private:
86 double r_min, r_max;
87
88 public:
89
96 LogPolarGenerator(double _r_min, double _r_max) : r_min(_r_min), r_max(_r_max) {}
97 virtual LogPolarGenerator* clone() const override final{return new LogPolarGenerator(*this); }
98
99 private:
100 virtual void do_generate(
101 const thrust::host_vector<double>& zeta1d,
102 const thrust::host_vector<double>& eta1d,
103 thrust::host_vector<double>& x,
104 thrust::host_vector<double>& y,
105 thrust::host_vector<double>& zetaX,
106 thrust::host_vector<double>& zetaY,
107 thrust::host_vector<double>& etaX,
108 thrust::host_vector<double>& etaY) const override final{
109
110 int size_r = zeta1d.size();
111 int size_phi = eta1d.size();
112 int size = size_r*size_phi;
113
114 x.resize(size); y.resize(size);
115 zetaX.resize(size); zetaY.resize(size);
116 etaX.resize(size); etaY.resize(size);
117
118 // the first coordinate has stride=1
119 for(int j=0;j<size_phi;j++)
120 for(int i=0;i<size_r;i++) {
121 double l = zeta1d[i] + log(r_min);
122 double phi = eta1d[j];
123
124 x[i+size_r*j] = exp(l)*cos(phi);
125 y[i+size_r*j] = exp(l)*sin(phi);
126
127 zetaX[i+size_r*j] = cos(phi)*exp(-l);
128 zetaY[i+size_r*j] = sin(phi)*exp(-l);
129 etaX[i+size_r*j] = -sin(phi)*exp(-l);
130 etaY[i+size_r*j] = cos(phi)*exp(-l);
131 }
132
133 }
134
135 virtual double do_width() const override final{return log(r_max)-log(r_min);}
136 virtual double do_height() const override final{return 2*M_PI;}
137 virtual bool do_isOrthogonal() const override final{return true;}
138};
139
140}
141}
#define M_PI
Log Polar coordinates (conformal)
Definition polar.h:84
LogPolarGenerator(double _r_min, double _r_max)
Construct a ring with minimal and maximal radius.
Definition polar.h:96
virtual LogPolarGenerator * clone() const override final
Abstract clone method that returns a copy on the heap.
Definition polar.h:97
Polar coordinates.
Definition polar.h:17
virtual PolarGenerator * clone() const override final
Abstract clone method that returns a copy on the heap.
Definition polar.h:30
PolarGenerator(double _r_min, double _r_max)
Construct a ring with minimal and maximal radius.
Definition polar.h:29
The abstract generator base class.
Definition generator.h:20