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_8_janev(eb) result(sigma)
!+Calculates cross section for a proton-Hydrogen impact excitation transition from
!+the \(n=3\) state to the \(m=8\) state at energy `eb`
!+
!+###Equation
!+$$ H^+ + H(3) \rightarrow H^+ + H(8) $$
!+
!+###References
!+* Eq. 36 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), parameter :: A = 2.545d-1
sigma = A*p_excit_3_6_janev(eb)
end function p_excit_3_8_janev