63inline real_type ds_metric_norm(
const std::array<real_type,6>& x0){
91 m_R0(R0), m_R1(R1), m_Z0(Z0), m_Z1(Z1), m_deltaPhi(deltaPhi), m_dsmetric( mag)
99 virtual double do_width() const override final{
return m_R1-m_R0;}
100 virtual double do_height() const override final{
return m_Z1-m_Z0;}
101 virtual void do_generate(
102 const thrust::host_vector<double>& zeta1d,
103 const thrust::host_vector<double>& eta1d,
104 thrust::host_vector<double>& x,
105 thrust::host_vector<double>&
y,
106 thrust::host_vector<double>& zetaX,
107 thrust::host_vector<double>& zetaY,
108 thrust::host_vector<double>& etaX,
109 thrust::host_vector<double>& etaY)
const override final
111 unsigned Nx = zeta1d.size(), Ny = eta1d.size();
112 unsigned size = Nx*Ny;
113 for(
unsigned k=0; k<Ny; k++)
114 for(
unsigned i=0; i<Nx; i++)
116 x[k*Nx+i] = m_R0 + zeta1d[i];
117 y[k*Nx+i] = m_Z0 + eta1d[k];
120 for(
unsigned i=0; i<size; i++)
122 std::array<double,6> coords{
x[i],
y[i],1, 0,0,1}, coordsP;
123 double phi1 = m_deltaPhi;
125 using Vec = std::array<double,6>;
128 detail::ds_metric_norm, 1e-8, 1e-10, 2);
129 loop.set_dt( m_deltaPhi/2.);
130 loop.integrate( 0, coords, phi1, coordsP);
134 zetaX[i] = coordsP[2];
135 zetaY[i] = coordsP[3];
136 etaX[i] = coordsP[4];
137 etaY[i] = coordsP[5];
140 double m_R0, m_R1, m_Z0, m_Z1, m_deltaPhi;
141 dg::geo::detail::DSMetricCylindrical m_dsmetric;
virtual DSPGenerator * clone() const override final
Abstract clone method that returns a copy on the heap.
Definition ds_generator.h:96
DSPGenerator(const dg::geo::TokamakMagneticField &mag, double R0, double R1, double Z0, double Z1, double deltaPhi)
Only magnetic fields are admissable vector fields.
Definition ds_generator.h:90