Process | EEX: Excitation |
Data type | cross section | uploaded on 2023-02-08 |
Comment | Fit function and data were taken from Johnson et al. Equation (29). Errors: E<30*threshold -> 100%, 30*threshold<E<80*threshold -> 60%, E>80*threshold -> 20%. |
Method | semi-empirical |
Columns |
|
Threshold | 1.343 eV |
Ref |
|
Data | Download (data from fit) |
Fit Function Details |
|||||||||||||
Python | def h_eex_johnson(E, A1, A2, A3, A4, A5, A6, I): """ This function calculates electron impact excitation cross sections (in cm2) of H n > 2 to m > n , with exception of n=2 to n=3. param E: requested electron-impact energy in eV type E: float, np.ndarray param Ai: fit coefficient type Ai: float param I: threshold energy in eV type I: float """ sigma = 1.76e-16*A1**2/(A3*E/I)*(1-np.exp(-1*A3*A4*E/I)) * (A5*(np.log(E/I)+1/(2*E/I)) + (A6-A5 * np.log(2*A1**2/A3))*(1-1/(E/I))) return sigma |
||||||||||||
Fit Precision | 0.6 % | ||||||||||||
Fit Coefficients |
|
||||||||||||
x-range | 1.3432098765432097 – |