DataSet D108172

\[\mathrm{He}^{2+} + \mathrm{H} \; n=2 \rightarrow \mathrm{He}^{2+} + \mathrm{H}^{+} + \mathrm{e}^-\]


Process HIN: Ionization
Data type cross section | uploaded on 2023-02-08
Comment Fit function taken from p110. Error: E<2keV/u -> 100%, 2keV/u<E<10keV/u -> 40%, 10keV/u<E<100keV/u -> 30%, E<100keV/u -> 20%

Methodsemi-empirical
FrameTarget
Columns
  1. E /eV u-1
  2. sigma /cm2
Ref
DataDownload (data from fit)

Fitted Data

Fit Function
Details
\[\sigma_{ion}^{1,2,3}(E) =10^{-16}A_1 \Bigg[\frac{e^{-\frac{A_2}{E}}\ln(1+A_3E)}{E} + \frac{A_4e^{-A_5E}}{E^{A_6} + A_7E^{A_8}}\Bigg]\]
Python
def h_hin_javen_he(E, A1, A2, A3, A4, A5, A6, A7, A8):
    """
    This function calculates He+2 impact ionzation cross sections (in cm2) of 
    H n=1,2 and 3.
    param E: requested impact energy in keV/u
    type E: float, np.ndarray
    param Ai: fit coefficient 
    type Ai: float
    """
    sigma = 1e-16 * A1 * (np.exp(-A2/E) * np.log(1 + A3*E) / E + 
                    A4*np.exp(-A5*E)/ (E**A6 + A7*E**A8))
    return sigma
Fit Precision3.8 %
Fit Coefficients
A1
 1.090e+02
A2
 2.647e+01
A3
 1.022e+06
A4
 5.729e-03
A5
 4.015e-02
A6
-2.409e+00
A7
 1.490e-02
A8
-2.379e-01
x-range –