In [1]:
import cse
import numpy as np
Single initial-states coupled-channel problem
In [2]:
X = cse.Cse()
In [4]:
X.solve(2000)
In [5]:
X.cm
Out[5]:
In [6]:
X.vib
Out[6]:
In [7]:
X.Bv
Out[7]:
In [8]:
%matplotlib inline
import matplotlib.pyplot as plt
In [9]:
plt.plot(X.R, X.wavefunction[:, 0, 0])
plt.axis(xmax=5)
Out[9]:
initial and final states coupled-channel problem
set up
In [10]:
Y = cse.Xs()
evaluate cross section
In [15]:
Y.calculate_xs(np.arange(110, 174, 1), eni=800)
In [16]:
plt.plot(1.0e7/Y.wavenumber, Y.xs)
Out[16]:
In [ ]: