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_3_4_janev(eb) result(sigma)
!+Calculates cross section for a proton-Hydrogen impact excitation transition from
!+the \(n=3\) state to the \(m=4\) state at energy `eb`
!+
!+###Equation
!+$$ H^+ + H(3) \rightarrow H^+ + H(4) $$
!+
!+###References
!+* Eq. 35 and Table 7 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 = [1247.5d0, 0.068781d0, &
0.521176d0, -1.2722d0, &
11.319d0, 2.6235d0 ]
!+ Fitting parameters from Table 7 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_3_4_janev