Calculates cross section for a proton-Hydrogen impact excitation transition from
the state to the state at energy eb
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in) | :: | eb | Relative collision energy [keV/amu] |
Cross Section []
function p_excit_2_3_janev(eb) result(sigma)
!+Calculates cross section for a proton-Hydrogen impact excitation transition from
!+the \(n=2\) state to the \(m=3\) state at energy `eb`
!+
!+###Equation
!+$$ H^+ + H(2) \rightarrow H^+ + H(3) $$
!+
!+###References
!+* Eq. 32 and Table 6 in Ref. 2 [[atomic_tables(module)]]
!+
real(Float64), intent(in) :: eb
!+ Relative collision energy [keV/amu]
real(Float64) :: sigma
!+ Cross Section [\(cm^2\)]
real(Float64), dimension(6), parameter :: c = [394.51d0, 0.013597d0, &
0.16565d0, -0.8949d0, &
21.606d0, 0.62426d0 ]
!+ Fitting parameters from Table 6 in Ref. 2
sigma = 1.d-16 * c(1)*(c(2)*exp(-c(3)*eb)/(eb**c(4)) + &
exp(-c(5)/eb)*log(1.+c(6)*eb)/eb)
end function p_excit_2_3_janev