DataSet D8062

\[\mathrm{e}^- + \mathrm{Li} \; 2p \rightarrow \mathrm{Li} \; 3s + \mathrm{e}^-\]


Process EEX: Excitation
Data type cross section | uploaded on 2022-07-21
comment Reaction 1.1.6a

Methodsemi-empirical
Columns
  1. E /eV
  2. sigma /cm2
Uncertainty50 %
Ref
DataDownload (data from fit)

Fitted Data

Fit Function
Details
\[\begin{align*} \sigma = 5.984e-16 \; \frac{ucont \; cstr} {pe} \\ ucont = \left(1- \frac{1}{x} \right)^{pcf(7)}; \; \; x = \frac{pe}{pcf(1)} \\ cstr = \begin{cases} pcf(2) + \frac{pcf(3)}{x} + \frac{pcf(4)}{x^2} + \frac{pcf(5)}{x^3} & \text{if} \; pcf(6) = 0 \\ pcf(6) \; \ln(x) + pcf(2) + \frac{pcf(3)}{x} + \frac{pcf(4)}{x^2} + \frac{pcf(5)}{x^3} & \text{if} \; pcf(6) \ne 0 \\ \end{cases} \end{align*}\]
Python MISSING FIT FUNCTION
Fortran
c
c##############################################################################
c
      subroutine neexh2(pe, pcf, kncf, pxs, kermsg)
c
c     this is a subroutine to calculate cross sections (cm[2])
c     versus energy (ev) for electron impact excitation.
c
c     pe = collision energy in ev
c
c     pcf(1) = threshold energy (ev), eth.
c     pcf(2-7) = parameters for fit to the cross section
c
c     kermsg = blank if no errors
c
c     pxs = cross section in cm[2]
c
c------------------------------------------------------------------------
c
      double precision pe, pcf, pxs
      double precision cstr, ryd, ksq, x, alog, u , ucont, eth
c
      dimension pcf(7)
      character*(*) kermsg
c
      data ryd/13.6d0/
c
      eth = pcf(1)
      if(pe .ge. eth) then
        kermsg = ' '
      else
        pxs = 0.0d0
        return
      endif
c
        ksq= pe/ryd
        etrans = eth/ryd
        x=ksq/etrans
        xsq = x*x
        xsq2 = xsq*xsq
        alog = 0.0d0
c
        if (pcf(6) .ne. zero) alog = pcf(6) * dlog (x)
        cstr = alog + pcf(2) + pcf(3)/x + pcf(4)/xsq + pcf(5)/(x*xsq)
c
        u = (pe - eth) / eth
        ucont = ( u / (u + 1.0d0)) ** pcf(7)
        pxs =   5.984e-16 *  ucont * cstr / pe
c
      return
      end
Fit Coefficients
pcf(1)
 1.525e+00
pcf(2)
 1.069e-02
pcf(3)
-2.409e+00
pcf(4)
 5.750e+00
pcf(5)
 0.000e+00
pcf(6)
 8.095e+00
pcf(7)
 5.534e-01
kncf
 7.000e+00
x-range 1.525 – 20000.0