29 PolarGenerator(
double _r_min,
double _r_max) : r_min(_r_min), r_max(_r_max) {}
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 {
43 int size_r = zeta1d.size();
44 int size_phi = eta1d.size();
45 int size = size_r*size_phi;
47 x.resize(size);
y.resize(size);
48 zetaX.resize(size); zetaY.resize(size);
49 etaX.resize(size); etaY.resize(size);
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];
57 x[i+size_r*j] = r*cos(phi);
58 y[i+size_r*j] = r*sin(phi);
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;
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;}
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{
110 int size_r = zeta1d.size();
111 int size_phi = eta1d.size();
112 int size = size_r*size_phi;
114 x.resize(size);
y.resize(size);
115 zetaX.resize(size); zetaY.resize(size);
116 etaX.resize(size); etaY.resize(size);
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];
124 x[i+size_r*j] = exp(l)*cos(phi);
125 y[i+size_r*j] = exp(l)*sin(phi);
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);
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;}