6#include "dg/algorithm.h"
47 double maxPhi,
double eps, std::string type,
48 std::function<
bool(
double,
double)> predicate = mod::everywhere):
50 m_domain( domain), m_cyl_field(vec),
51 m_deltaPhi( maxPhi), m_eps( eps), m_type(type)
53 if( m_type !=
"phi" && m_type !=
"s")
54 throw std::runtime_error(
"Distance type "+m_type+
" not recognized!\n");
68 std::array<double,3> coords{ R, Z, 0}, coordsP(coords);
70 m_cyl_field( 0., coords, coordsP);
71 double sign = coordsP[2] > 0 ? +1. : -1.;
72 double phi1 = sign*m_deltaPhi;
77 "Dormand-Prince-7-4-5", coords);
84 }
catch (std::exception& e)
88 phi1 = sign*m_deltaPhi;
89 coordsP[2] = 1e6*phi1;
93 coordsP[2] = 1e6*phi1;
100 std::function<bool(
double,
double)> m_pred;
102 dg::geo::detail::DSFieldCylindrical3 m_cyl_field;
103 double m_deltaPhi, m_eps;
134 double maxPhi,
double eps, std::string type,
135 std::function<
bool(
double,
double)> predicate = mod::everywhere
138 m_domain( domain), m_cyl_field(vec),
139 m_deltaPhi( maxPhi), m_eps( eps), m_type(type)
141 if( m_type !=
"phi" && m_type !=
"s")
142 throw std::runtime_error(
"Distance type "+m_type+
" not recognized!\n");
146 double phiP = m_deltaPhi, phiM = -m_deltaPhi;
147 std::array<double,3> coords{ R, Z, 0}, coordsP(coords), coordsM(coords);
149 m_cyl_field( 0., coords, coordsP);
150 double sign = coordsP[2] > 0 ? +1. : -1.;
156 "Dormand-Prince-7-4-5", coords), m_cyl_field,
163 }
catch (std::exception& e)
167 coordsP[2] = 1e6*phiP;
169 coordsM[2] = 1e6*phiM;
174 coordsP[2] = 1e6*phiP;
175 coordsM[2] = 1e6*phiM;
178 return sign*(-phiP-phiM)/(phiP-phiM);
179 double sP = coordsP[2], sM = coordsM[2];
180 double value = sign*(-sP-sM)/(sP-sM);
181 if( (phiM <= -m_deltaPhi) and (phiP >= m_deltaPhi))
183 if( (phiM <= -m_deltaPhi))
184 return value*sign > 0 ? value : 0.;
185 if( (phiP >= m_deltaPhi))
186 return value*sign < 0 ? value : 0.;
191 std::function<bool(
double,
double)> m_pred;
193 dg::geo::detail::DSFieldCylindrical3 m_cyl_field;
194 double m_deltaPhi, m_eps;
void integrate_in_domain(value_type t0, const ContainerType &u0, value_type &t1, ContainerType &u1, value_type dt, Domain &&domain, value_type eps_root)
Definition fluxfunctions.h:416
Normalized coordinate relative to wall along fieldline in phi or s coordinate.
Definition sheath.h:128
WallFieldlineCoordinate(const dg::geo::CylindricalVectorLvl0 &vec, const dg::aRealTopology2d< double > &domain, double maxPhi, double eps, std::string type, std::function< bool(double, double)> predicate=mod::everywhere)
Construct with vector field, domain.
Definition sheath.h:131
double do_compute(double R, double Z) const
Definition sheath.h:144
Distance to wall along fieldline in phi or s coordinate
Definition sheath.h:32
double do_compute(double R, double Z) const
Integrate fieldline until wall is reached.
Definition sheath.h:66
WallFieldlineDistance(const dg::geo::CylindricalVectorLvl0 &vec, const dg::aRealTopology2d< double > &domain, double maxPhi, double eps, std::string type, std::function< bool(double, double)> predicate=mod::everywhere)
Construct with vector field, domain.
Definition sheath.h:44
Represent functions written in cylindrical coordinates that are independent of the angle phi serving ...
Definition fluxfunctions.h:66