Contains various functions for calculating physically relevant quantities
Calculate Coulomb logarithm for electron-electron collisions (NRL Formulary 2013 page 34 equation a)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | Te |
Electron temperature in eV |
||
real(kind=rk), | intent(in) | :: | ne |
Electron density in m^{-3} |
Calculate Coulomb logarithm for electron-ion collisions (NRL Formulary 2013 page 34 equation b). Assumes Te > TiZme/mi
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | Te |
Electron temperature in eV |
||
real(kind=rk), | intent(in) | :: | ne |
Electron density in m^{-3} |
||
real(kind=rk), | intent(in) | :: | Z |
Ion charge |
||
logical, | intent(in), | optional | :: | removeDisc |
Remove the discontinuity at 10eV by moving the branch switch to Te = Z2 * e2 eV. Defaults to .false. |
Calculate Coulomb logarithm for ion-ion collisions (NRL Formulary 2013 page 34 equation c).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | Z1 |
Ion charge for first species |
||
real(kind=rk), | intent(in) | :: | Z2 |
Ion charge for second species |
||
real(kind=rk), | intent(in) | :: | mRatio |
Mass ratio m2/m1 |
||
real(kind=rk), | intent(in) | :: | n1 |
First ion species density in m^{-3} |
||
real(kind=rk), | intent(in) | :: | n2 |
Second ion species density in m^{-3} |
||
real(kind=rk), | intent(in) | :: | T1 |
First ion temperature in eV |
||
real(kind=rk), | intent(in) | :: | T2 |
Second ion temperature in eV |
Calculate sheath potential drop for 2 component plasma in units of kTe/e
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | massRatio |
Mass ratio me/mi |
||
real(kind=rk), | intent(in) | :: | tempRatio |
Ion to electron temperature ratio |
Calculate electron-ion collision time in seconds. This is not the Braginskii time, which can be calculated as this value multiplied by 4/(3*sqrt(pi)) .
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | Te |
Electron temperature in eV |
||
real(kind=rk), | intent(in) | :: | ne |
Electron density in m^{-3} |
||
real(kind=rk), | intent(in) | :: | Z |
Ion charge |
||
real(kind=rk), | intent(in) | :: | logL |
Coulomb logarithm to be used |
Sonic speed caclulated as sqrt((ePolyTe + iPolyTi)/mi)
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | Te |
Electron temperature in eV |
||
real(kind=rk), | intent(in) | :: | Ti |
Ion temperature in eV |
||
real(kind=rk), | intent(in) | :: | mi |
Ion mass |
||
real(kind=rk), | intent(in) | :: | ePolytropic |
Electron polytropic coefficient |
||
real(kind=rk), | intent(in) | :: | iPolytropic |
Ion polytropic coefficient |
Returns a normalized stationary Maxwellian evaluated at vPoints. Assumes that velocity and temperature are normalized in such way that m v_0^2/2 = kT_0 , and the returned value is normalized to 1/v_0^(3/2).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | n |
Density in arbitrary units |
||
real(kind=rk), | intent(in) | :: | T |
Temperature in units compatible with velocity grid |
||
real(kind=rk), | intent(in), | dimension(:) | :: | vPoints |
Velocity grid |
Returns the m-th moment of passed distribution function harmonic - 4piint(v^(2+m)fdv). Optionally takes moment of f*g where g conforms to f. The integration is a simple Riemann sum.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ik), | intent(in) | :: | m |
Moment degree |
||
real(kind=rk), | intent(in), | dimension(:) | :: | f |
Distribution function to take the moment of |
|
real(kind=rk), | intent(in), | dimension(:) | :: | vPoints |
Coordinates of cell centres in velocity space |
|
real(kind=rk), | intent(in), | dimension(:) | :: | vWidths |
Widths of velocity space cells |
|
real(kind=rk), | intent(in), | optional, | dimension(:) | :: | g |
Optional velocity space array to include in moment integral |