OSHUN  beta
Arbitrary Order Spherical-Harmonic 1D-3P Vlasov-Fokker-Planck-Maxwell code
Formulary Class Reference

#include <formulary.h>

Public Member Functions

 Formulary ()
 
units Units (string key)
 
units Units (string key1, string key2)
 
string Label (string key)
 
string Label (string key1, string key2)
 
double Uconv (string key)
 
double Uconv (string key1, string key2)
 
double LOGee (double ne, double Te)
 
double LOGee (double ne, string un, double Te, string uT)
 
double LOGei (double ne, double Te, double Z)
 
double LOGei (double ne, string un, double Te, string uT, double Z)
 
double LOGii (double m1, double Z1, double n1, double T1, double m2, double Z2, double n2, double T2)
 
double vth (double Te)
 
double vth (double Te, string uT)
 
double Tau_e (double ne, double Te)
 
double Tau_e (double ne, string un, double Te, string uT)
 
double Tau_i (double ne, double Te, double Zeta)
 
double MFP (double ne, double Te)
 
double MFP (double ne, string un, double Te, string uT)
 

Data Fields

double n
 
double wp
 
double skindepth
 
double B0
 
double T0
 
double Zeta
 

Static Public Attributes

static constexpr double pi =3.141592653589793238
 
static constexpr double cL = 299792458
 
static constexpr double eps0 =8.854187817e-12
 
static constexpr double qe = -1.60217662e-19
 
static constexpr double me = 9.10938356e-31
 
static constexpr double me_over_mp = 0.000544617024
 
static constexpr double keVnorm = 510.9989461
 
static constexpr double c = 2.99792458*1.0e+10
 
static constexpr double e = 4.80320425*1.0e-10
 
static constexpr double m = 9.10938215*1.0e-28
 

Private Attributes

map< string, unitsD
 

Static Private Attributes

static constexpr double nmin = 1.0e-8
 

Detailed Description

Definition at line 68 of file formulary.h.

Constructor & Destructor Documentation

◆ Formulary()

Formulary::Formulary ( )

Definition at line 43 of file formulary.cpp.

References c, D, e, m, n, and wp.

43  : n(Input::List().density_np),
44  wp(5.64*1.0e+4*sqrt(n)),
45  skindepth(cL/wp),
46  B0(-1.0*wp*me/qe),
47  T0(pow(Input::List().pth_ref,2.0)*keVnorm*1e3),
48  Zeta(Input::List().hydrocharge)
49  // ref_nuei(sqrt(2.0/pi)*LOGei(1.0,Input::List().pth_ref,Zeta)/exp(LOGei(1.0,Input::List().pth_ref,Zeta)) * wp)
50  {
51  // Physically: label * d = const in any system
52 
53  // velocity - c
54  D["Velocity"] = units("c",1.0);
55  D["Velocity_cgs"] = units("cm/sec", c );
56  D["Velocity_si"] = units("m/sec", c * 0.01 );
57 
58  D["v"] = units("c",1.0);
59  D["v_cgs"] = units("cm/sec", c );
60  D["v_si"] = units("m/sec", c * 0.01 );
61 
62  D["vx"] = units("c",1.0);
63  D["vx_cgs"] = units("cm/sec", c );
64  D["vx_si"] = units("m/sec", c * 0.01 );
65 
66  D["vy"] = units("c",1.0);
67  D["vy_cgs"] = units("cm/sec", c );
68  D["vy_si"] = units("m/sec", c * 0.01 );
69 
70  D["vz"] = units("c",1.0);
71  D["vz_cgs"] = units("cm/sec", c );
72  D["vz_si"] = units("m/sec", c * 0.01 );
73 
74  // time - 1/wp
75  D["Time"] = units("1/wp",1.0);
76  D["Time_cgs"] = units("sec", 1.0/wp);
77  D["Time_si"] = units("sec", 1.0/wp);
78  D["Time_fs"] = units("fsec", 1.0/wp*1.0e+15);
79  D["Time_ps"] = units("psec", 1.0/wp*1.0e+12);
80 
81  D["t"] = units("1/wp",1.0);
82  D["t_cgs"] = units("sec", 1.0/wp);
83  D["t_si"] = units("sec", 1.0/wp);
84 
85  // space - c/wp
86  D["Space"] = units("c/wp",1.0);
87  D["Space_cgs"] = units("cm", c/wp);
88  D["Space_si"] = units("m", 0.01 * c/wp); // 1 cm = 0.01 m
89 
90  D["x"] = units("c/wp",1.0);
91  D["x_cgs"] = units("cm", c/wp);
92  D["x_si"] = units("m", 0.01 * c/wp); // 1 cm = 0.01 m
93 
94  D["y"] = units("c/wp",1.0);
95  D["y_cgs"] = units("cm", c/wp);
96  D["y_si"] = units("m", 0.01 * c/wp); // 1 cm = 0.01 m
97 
98  D["z"] = units("c/wp",1.0);
99  D["z_cgs"] = units("cm", c/wp);
100  D["z_si"] = units("m", 0.01 * c/wp); // 1 cm = 0.01 m
101 
102  // density - n
103  D["Density"] = units("n",1.0);
104  D["Density_cgs"] = units("cm^-3", n);
105  D["Density_si"] = units("m^-3", 1.0e+6 * n); // cm^-3 = 10^6 m^-3
106 
107  D["n"] = units("n",1.0);
108  D["n_cgs"] = units("cm^-3", n);
109  D["n_si"] = units("m^-3", 1.0e+6 * n); // cm^-3 = 10^6 m^-3
110 
111  // charge - e
112  D["Charge"] = units("e",1.0);
113  D["Charge_cgs"] = units("Fr", e);
114  D["Charge_si"] = units("C", (10.0/c) * e); // 1 Fr = (10/c) * C
115 
116  D["q"] = units("e",1.0);
117  D["q_cgs"] = units("Fr", e);
118  D["q_si"] = units("C", (10.0/c) * e); // 1 Fr = (10/c) * C
119 
120  // momentum - mc
121  D["Momentum"] = units("mc",1.0);
122  D["Momentum_cgs"] = units("gr*cm/sec", m*c );
123  D["Momentum_si"] = units("kg*m/sec", m*c * 1.0e-5 );
124 
125  D["p"] = units("mc",1.0);
126  D["p_cgs"] = units("gr*cm/sec", m*c );
127  D["p_si"] = units("kg*m/sec", m*c * 1.0e-5 );
128 
129  D["px"] = units("mc",1.0);
130  D["px_cgs"] = units("gr*cm/sec", m*c );
131  D["px_si"] = units("kg*m/sec", m*c * 1.0e-5 );
132 
133  D["py"] = units("mc",1.0);
134  D["py_cgs"] = units("gr*cm/sec", m*c );
135  D["py_si"] = units("kg*m/sec", m*c * 1.0e-5 );
136 
137  D["pz"] = units("mc",1.0);
138  D["pz_cgs"] = units("gr*cm/sec", m*c );
139  D["pz_si"] = units("kg*m/sec", m*c * 1.0e-5 );
140 //-----
141 
142  // energy - mc^2
143  D["Energy"] = units("mc^2",1.0);
144  D["Energy_cgs"] = units("erg", m*pow(c,2) );
145  D["Energy_si"] = units("J", 1.0e-7 * m*pow(c,2) ); // erg = 10^-7 J
146  D["Energy_eV"] = units("eV", 1.0e-7 * m*pow(c,2)/((10.0/c) * e) );
147 
148  D["T"] = units("mc^2",1.0);
149  D["T_cgs"] = units("erg", m*pow(c,2) );
150  D["T_si"] = units("J", 1.0e-7 * m*pow(c,2) ); // erg = 10^-7 J
151  D["T_eV"] = units("eV", 1.0e-7 * m*pow(c,2)/((10.0/c) * e) );
152 
153  // current - ewp
154  D["Current"] = units("ewp",1.0);
155  D["Current_cgs"] = units("Fr/s", e*wp );
156  D["Current_si"] = units("A", 10.0/c * e*wp ); // Fr/s = 10/c A
157 
158  D["Jx"] = units("ewp",1.0);
159  D["Jx_cgs"] = units("Fr/s", e*wp );
160  D["Jx_si"] = units("A", 10.0/c * e*wp ); // Fr/s = 10/c A
161 
162  D["Jy"] = units("ewp",1.0);
163  D["Jy_cgs"] = units("Fr/s", e*wp );
164  D["Jy_si"] = units("A", 10.0/c * e*wp ); // Fr/s = 10/c A
165 
166  D["Jz"] = units("ewp",1.0);
167  D["Jz_cgs"] = units("Fr/s", e*wp );
168  D["Jz_si"] = units("A", 10.0/c * e*wp ); // Fr/s = 10/c A
169 
170  // pressure - n*mc^2
171  D["Pressure"] = units("n*mc^2",1.0);
172  D["Pressure_cgs"] = units("Ba", n*m*c*c );
173  D["Pressure_si"] = units("Pa", 0.1 * n*m*c*c ); // Ba = 0.1 Pa
174  D["Pressure_Mbar"] = units("Mbar", 1.0e-12 * n*m*c*c ); // Ba = 10^-12Mbar
175 
176  D["P"] = units("n*mc^2",1.0);
177  D["P_cgs"] = units("Ba", n*m*c*c );
178  D["P_si"] = units("Pa", 0.1 * n*m*c*c ); // Ba = 0.1 Pa
179  D["P_Mbar"] = units("Mbar", 1.0e-12 * n*m*c*c ); // Ba = 10^-12Mbar
180 //-----
181 
182  // Electric field - mcwp/e
183  D["Efield"] = units("mcwp/e",1.0);
184  D["Efield_cgs"] = units("statV/cm", m*c*wp/e);
185  D["Efield_si"] = units("V/m", c*1.0e-6 * m*c*wp/e); // statV/m = 10^-6*c * V/m
186 
187  D["Ex"] = units("mcwp/e",1.0);
188  D["Ex_cgs"] = units("statV/cm", m*c*wp/e);
189  D["Ex_si"] = units("V/m", c*1.0e-6 * m*c*wp/e); // statV/m = 10^-6*c * V/m
190 
191  D["Ey"] = units("mcwp/e",1.0);
192  D["Ey_cgs"] = units("statV/cm", m*c*wp/e);
193  D["Ey_si"] = units("V/m", c*1.0e-6 * m*c*wp/e); // statV/m = 10^-6*c * V/m
194 
195  D["Ez"] = units("mcwp/e",1.0);
196  D["Ez_cgs"] = units("statV/cm", m*c*wp/e);
197  D["Ez_si"] = units("V/m", c*1.0e-6 * m*c*wp/e); // statV/m = 10^-6*c * V/m
198 
199  // Magnetic field - mcwp/e
200  D["Bfield"] = units("mcwp/e",1.0);
201  D["Bfield_cgs"] = units("Gauss", m*c*wp/e);
202  D["Bfield_si"] = units("Tesla", 1.0e-4 * m*c*wp/e); // Gauss = 10^-4 Tesla
203 
204  D["Bx"] = units("mcwp/e",1.0);
205  D["Bx_cgs"] = units("Gauss", m*c*wp/e);
206  D["Bx_si"] = units("Tesla", 1.0e-4 * m*c*wp/e); // Gauss = 10^-4 Tesla
207 
208  D["By"] = units("mcwp/e",1.0);
209  D["By_cgs"] = units("Gauss", m*c*wp/e);
210  D["By_si"] = units("Tesla", 1.0e-4 * m*c*wp/e); // Gauss = 10^-4 Tesla
211 
212  D["Bz"] = units("mcwp/e",1.0);
213  D["Bz_cgs"] = units("Gauss", m*c*wp/e);
214  D["Bz_si"] = units("Tesla", 1.0e-4 * m*c*wp/e); // Gauss = 10^-4 Tesla
215 
216  // force - mcwp
217  D["Force"] = units("mcwp",1.0);
218  D["Force_cgs"] = units("dyne", m*c*wp);
219  D["Force_si"] = units("N", 1.0e-5 * m*c*wp ); // dyne = 10^-5 N
220 
221 }
map< string, units > D
Definition: formulary.h:124
static constexpr double m
Definition: formulary.h:121
double T0
Definition: formulary.h:103
double wp
Definition: formulary.h:100
double Zeta
Definition: formulary.h:104
static constexpr double cL
Definition: formulary.h:112
static constexpr double e
Definition: formulary.h:120
static constexpr double qe
Definition: formulary.h:114
static constexpr double keVnorm
Definition: formulary.h:117
static constexpr double c
Definition: formulary.h:119
static constexpr double me
Definition: formulary.h:115
double B0
Definition: formulary.h:102
double n
Definition: formulary.h:99
double skindepth
Definition: formulary.h:101
Input_List & List()
Definition: input.cpp:1585

Member Function Documentation

◆ Label() [1/2]

string Formulary::Label ( string  key)
inline

Definition at line 76 of file formulary.h.

Referenced by Export_Files::Xport::Xport().

76 { return D[key].label; }
map< string, units > D
Definition: formulary.h:124
Here is the caller graph for this function:

◆ Label() [2/2]

string Formulary::Label ( string  key1,
string  key2 
)
inline

Definition at line 77 of file formulary.h.

77 { return D[key1+"_"+key2].label; }
map< string, units > D
Definition: formulary.h:124

◆ LOGee() [1/2]

double Formulary::LOGee ( double  ne,
double  Te 
)

Definition at line 226 of file formulary.cpp.

References units::d, nmin, and Units().

Referenced by self_f00_implicit_step::getleftside(), LOGee(), interspecies_flm_implicit_step::reset_coeff(), self_flm_implicit_step::reset_coeff(), startmessages(), self_f00_implicit_step::takestep(), self_f00_explicit_step::takestep(), Tau_e(), and self_f00_implicit_step::update_D_inversebremsstrahlung().

226  {
227 // ne = density/np, Te = energy/mc^2
228 // Note: we assume nonrelativistic distribution functions
229  if (ne < nmin) return 2.0;
230 
231  // Te /= (3.0*ne);
232  Te *= Units("Energy","eV").d; // Temperature in eV
233  ne *= Units("Density","cgs").d;
234 
235  Te = log(Te);
236  ne = log(ne);
237 
238  return max(2.0,23.5 - 0.5*ne + 1.25*Te - sqrt(0.00001+0.0625*(Te-2.0)*(Te-2.0)));
239 }
double d
Definition: formulary.h:52
static constexpr double nmin
Definition: formulary.h:126
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ LOGee() [2/2]

double Formulary::LOGee ( double  ne,
string  un,
double  Te,
string  uT 
)

Definition at line 241 of file formulary.cpp.

References units::d, LOGee(), and Units().

241  {
242 // where "un" are the units of ne, and uT of Te
243  Te /= Units("Energy",uT).d;
244  ne /= Units("Density",un).d;
245 
246  return LOGee(ne,Te);
247 }
double d
Definition: formulary.h:52
double LOGee(double ne, double Te)
Definition: formulary.cpp:226
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:

◆ LOGei() [1/2]

double Formulary::LOGei ( double  ne,
double  Te,
double  Z 
)

Definition at line 249 of file formulary.cpp.

References units::d, nmin, and Units().

Referenced by self_f00_implicit_step::getleftside(), IB_f00::Getslope(), LOGei(), interspecies_flm_implicit_step::reset_coeff(), self_flm_implicit_step::reset_coeff(), startmessages(), self_f00_implicit_step::takestep(), Tau_i(), and self_f00_implicit_step::update_D_inversebremsstrahlung().

249  {
250 // ne = density/np, Te = energy/mc^2
251 // Note: we assume nonrelativistic distribution functions
252  if (ne < nmin) return 2.0;
253 
254  Te *= Units("Energy","eV").d; // Temperature in eV
255  ne *= Units("Density","cgs").d;
256 
257  if ( Te > 10.0*Z*Z ) {
258  return max(2.0, 24.0 - 0.5*log(ne) + log(Te));
259  }
260  return max(2.0, 23.0 - 0.5*log(ne) + 1.5*log(Te) - log(Z));
261 }
double d
Definition: formulary.h:52
static constexpr double nmin
Definition: formulary.h:126
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ LOGei() [2/2]

double Formulary::LOGei ( double  ne,
string  un,
double  Te,
string  uT,
double  Z 
)

Definition at line 263 of file formulary.cpp.

References units::d, LOGei(), and Units().

263  {
264 // where "un" are the units of ne, and uT of Te
265  Te /= Units("Energy",uT).d; // Temperature in eV
266  ne /= Units("Density",un).d;
267 
268  return LOGei(ne,Te,Z);
269 }
double d
Definition: formulary.h:52
double LOGei(double ne, double Te, double Z)
Definition: formulary.cpp:249
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:

◆ LOGii()

double Formulary::LOGii ( double  m1,
double  Z1,
double  n1,
double  T1,
double  m2,
double  Z2,
double  n2,
double  T2 
)

Definition at line 271 of file formulary.cpp.

References units::d, nmin, and Units().

Referenced by interspecies_f00_explicit_step::takestep().

272  {
273 // ne = density/np, Te = energy/mc^2
274 // Note: we assume nonrelativistic distribution functions
275  double mp=1;
276  if (n1 < nmin || n2 < nmin) return 2.0;
277 
278  T1 *= Units("Energy","eV").d; // Temperature in eV
279  T2 *= Units("Energy","eV").d; // Temperature in eV
280  n1 *= Units("Density","cgs").d;
281  n2 *= Units("Density","cgs").d;
282 
283  return max(2.0, 23.0 - log(Z1*Z2*(m1/mp+m2/mp)/(m1/mp*T2+m2/mp*T1)*sqrt(n1*Z1*Z1/T1+n2*Z2*Z2/T2)));
284 }
double d
Definition: formulary.h:52
static constexpr double nmin
Definition: formulary.h:126
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ MFP() [1/2]

double Formulary::MFP ( double  ne,
double  Te 
)

Definition at line 318 of file formulary.cpp.

References Tau_e(), and vth().

Referenced by MFP().

318  {
319  return vth(Te)*Tau_e(ne,Te);
320 }
double Tau_e(double ne, double Te)
Definition: formulary.cpp:306
double vth(double Te)
Definition: formulary.cpp:291
Here is the call graph for this function:
Here is the caller graph for this function:

◆ MFP() [2/2]

double Formulary::MFP ( double  ne,
string  un,
double  Te,
string  uT 
)

Definition at line 321 of file formulary.cpp.

References units::d, MFP(), and Units().

321  {
322  Te /= Units("Energy",uT).d;
323  ne /= Units("Density",un).d;
324  return MFP(ne,Te);
325 }
double d
Definition: formulary.h:52
double MFP(double ne, double Te)
Definition: formulary.cpp:318
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:

◆ Tau_e() [1/2]

double Formulary::Tau_e ( double  ne,
double  Te 
)

Units("Time","cgs").d;

Definition at line 306 of file formulary.cpp.

References units::d, LOGee(), and Units().

Referenced by MFP(), startmessages(), and Tau_e().

306  {
307  return 3.44e+5*(pow(sqrt(Te*Units("Energy","eV").d),3)/
308  (ne*Units("Density","cgs").d*LOGee(ne,Te))) ; //
310 }
double d
Definition: formulary.h:52
double LOGee(double ne, double Te)
Definition: formulary.cpp:226
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ Tau_e() [2/2]

double Formulary::Tau_e ( double  ne,
string  un,
double  Te,
string  uT 
)

Definition at line 311 of file formulary.cpp.

References units::d, Tau_e(), and Units().

311  {
312  Te /= Units("Energy",uT).d;
313  ne /= Units("Density",un).d;
314  return Tau_e(ne,Te);
315 }
double Tau_e(double ne, double Te)
Definition: formulary.cpp:306
double d
Definition: formulary.h:52
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:

◆ Tau_i()

double Formulary::Tau_i ( double  ne,
double  Te,
double  Zeta 
)

Definition at line 300 of file formulary.cpp.

References units::d, LOGei(), me_over_mp, and Units().

300  {
301  return 2.09e+7*(pow(sqrt(Te/Zeta*Units("Energy","eV").d),3)/
302  (ne*Units("Density","cgs").d*LOGei(ne,Te,Zeta))) /sqrt(me_over_mp);
303 }
double Zeta
Definition: formulary.h:104
double d
Definition: formulary.h:52
double LOGei(double ne, double Te, double Z)
Definition: formulary.cpp:249
units Units(string key)
Definition: formulary.h:74
static constexpr double me_over_mp
Definition: formulary.h:116
Here is the call graph for this function:

◆ Uconv() [1/2]

double Formulary::Uconv ( string  key)
inline

Definition at line 78 of file formulary.h.

Referenced by Export_Files::Xport::Xport().

78 { return D[key].d; }
map< string, units > D
Definition: formulary.h:124
Here is the caller graph for this function:

◆ Uconv() [2/2]

double Formulary::Uconv ( string  key1,
string  key2 
)
inline

Definition at line 79 of file formulary.h.

79 { return D[key1+"_"+key2].d; }
map< string, units > D
Definition: formulary.h:124

◆ Units() [1/2]

units Formulary::Units ( string  key)
inline

Definition at line 74 of file formulary.h.

Referenced by LOGee(), LOGei(), LOGii(), MFP(), Tau_e(), Tau_i(), and vth().

74 { return D[key]; }
map< string, units > D
Definition: formulary.h:124
Here is the caller graph for this function:

◆ Units() [2/2]

units Formulary::Units ( string  key1,
string  key2 
)
inline

Definition at line 75 of file formulary.h.

75 { return D[key1+"_"+key2]; }
map< string, units > D
Definition: formulary.h:124

◆ vth() [1/2]

double Formulary::vth ( double  Te)

Definition at line 291 of file formulary.cpp.

References c, units::d, and Units().

Referenced by MFP(), and vth().

291  {
292  Te *= Units("Energy","eV").d;
293  return sqrt(Te)*4.19e+7/c;
294 }
double d
Definition: formulary.h:52
static constexpr double c
Definition: formulary.h:119
units Units(string key)
Definition: formulary.h:74
Here is the call graph for this function:
Here is the caller graph for this function:

◆ vth() [2/2]

double Formulary::vth ( double  Te,
string  uT 
)

Definition at line 295 of file formulary.cpp.

References units::d, Units(), and vth().

295  {
296  Te /= Units("Energy", uT).d;
297  return vth(Te);
298 }
double d
Definition: formulary.h:52
units Units(string key)
Definition: formulary.h:74
double vth(double Te)
Definition: formulary.cpp:291
Here is the call graph for this function:

Field Documentation

◆ B0

double Formulary::B0

Definition at line 102 of file formulary.h.

Referenced by startmessages().

◆ c

constexpr double Formulary::c = 2.99792458*1.0e+10
static

Definition at line 119 of file formulary.h.

Referenced by Formulary(), and vth().

◆ cL

constexpr double Formulary::cL = 299792458
static

Definition at line 112 of file formulary.h.

Referenced by startmessages().

◆ D

map<string,units> Formulary::D
private

Definition at line 124 of file formulary.h.

Referenced by Formulary().

◆ e

constexpr double Formulary::e = 4.80320425*1.0e-10
static

Definition at line 120 of file formulary.h.

Referenced by Formulary().

◆ eps0

constexpr double Formulary::eps0 =8.854187817e-12
static

Definition at line 113 of file formulary.h.

◆ keVnorm

constexpr double Formulary::keVnorm = 510.9989461
static

Definition at line 117 of file formulary.h.

◆ m

constexpr double Formulary::m = 9.10938215*1.0e-28
static

Definition at line 121 of file formulary.h.

Referenced by Formulary().

◆ me

constexpr double Formulary::me = 9.10938356e-31
static

Definition at line 115 of file formulary.h.

◆ me_over_mp

constexpr double Formulary::me_over_mp = 0.000544617024
static

Definition at line 116 of file formulary.h.

Referenced by Tau_i().

◆ n

double Formulary::n

Definition at line 99 of file formulary.h.

Referenced by Formulary(), and startmessages().

◆ nmin

constexpr double Formulary::nmin = 1.0e-8
staticprivate

Definition at line 126 of file formulary.h.

Referenced by LOGee(), LOGei(), and LOGii().

◆ pi

constexpr double Formulary::pi =3.141592653589793238
static

Definition at line 110 of file formulary.h.

Referenced by startmessages().

◆ qe

constexpr double Formulary::qe = -1.60217662e-19
static

Definition at line 114 of file formulary.h.

◆ skindepth

double Formulary::skindepth

Definition at line 101 of file formulary.h.

Referenced by startmessages().

◆ T0

double Formulary::T0

Definition at line 103 of file formulary.h.

Referenced by startmessages().

◆ wp

double Formulary::wp

Definition at line 100 of file formulary.h.

Referenced by Formulary(), and startmessages().

◆ Zeta


The documentation for this class was generated from the following files: