Calculates cross section for a proton-Hydrogen charge exchange interaction
from the state to the state at energy Erel
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in) | :: | Erel | Relative collision energy [keV/amu] |
Cross Section []
function p_cx_3_5_adas(Erel) result(sigma)
!+Calculates cross section for a proton-Hydrogen charge exchange interaction
!+from the \(n=3\) state to the \(m=5\) state at energy `Erel`
!+
!+###Equation
!+ $$H^+ + H(3) \rightarrow H(5) + H^+$$
!+###References
!+* Ref. 4 [[atomic_tables(module)]]
real(Float64), intent(in) :: Erel
!+ Relative collision energy [keV/amu]
real(Float64) :: sigma
!+ Cross Section [\(cm^2\)]
real(Float64), dimension(11), parameter :: a = [-2.786268232d2, 4.269683825d4, &
-8.973561028d4, 8.365732310d4, &
-4.524587937d4, 1.563630402d4, &
-3.580391824d3, 5.432527332d2, &
-5.267599631d1, 2.962329657d0, &
-7.362649692d-2 ]
real(Float64), parameter :: n = 3.0
real(Float64) :: ee, fac, l, p
ee = max(min(Erel * 1.d3,5.5d5) * n**2.0, 1.d3) !keV to eV
fac = 1.d0
l = log10(ee)
p = a(1) + a(2)*l + a(3)*l**2.0 + a(4)*l**3.0 + &
a(5)*l**4.0 + a(6)*l**5.0 + a(7)*l**6.0 + &
a(8)*l**7.0 + a(9)*l**8.0 + a(10)*l**9.0 + a(11)*l**10.0
sigma = fac*(10.d0**p)
end function p_cx_3_5_adas