Cross section scattering of H2 - Ar and H2 - Xe
Files | Size | Format | Created | Updated | License | Source |
---|---|---|---|---|---|---|
4 | 37.4 kB | csv | Open Data Commons Public Domain Dedication and License v1.0 |
Numerical simulation of cross-section based on "Molecular beam scattering studies of orbiting resonances and the determination of van der Waals potentials for H–Ne, Ar, Kr, and Xe and for H2–Ar, Kr, and Xe"
Data Files
File | Description | Size | Last modified | Download |
---|---|---|---|---|
cross-section | 15.8 kB | cross-section | ||
cross-section | 9.59 kB | cross-section | ||
cross-section | 9.59 kB | cross-section | ||
iris | 2.45 kB | iris |
Data Previews
Cross section scattering
Schema
name | type |
---|---|
x | number |
y | number |
z | number |
Cross section scattering
Schema
name | type |
---|---|
x | number |
y | number |
z | number |
Cross section scattering
Schema
name | type |
---|---|
x | number |
y | number |
z | number |
Iris
Schema
name | type |
---|---|
sepal_length | number |
sepal_width | number |
petal_length | number |
petal_width | number |
Simulation result (H2+ - Ar):
H2 + Xe:
Here are some notes about the problem:
Draft
A study on cross-section scattering
Idea
The aim is to understand the phenomenon of scattering between the atom of hydrogen and some other inert noble gas, through some procedure, preferably numerical. For this example, I chose the scattering of a Hydrogen particle (lighter) by a potential of a Krypton particle (heavier), for which experimental results were published by Toennies[1]. My goal was to replicate the results developed in the article numerically. For this, the system equation was formulated from the Schrödinger equation, and it was solved numerically (with a Lennard-Jones potential to model the interaction between particles) to obtain total and partial cross-sections (as well as wave function, asymptotic wave function, effective potential).
Thus, the Schrödinger equation of the system was solved:
where is a spherical potential. It is known that in this case, all the eigenfunctions of the system are also eigenfunctions of the angular momentum operators, that is, they can be rewritten as linear combinations of spherical harmonics in the form:
By applying the separation of variables, this reduces the problem to the radial case of the equation, where the problem is a function of the coordinate that varies from to , is the reduced mass of the entire system.
The phase shifts (dependent on potential and energy) are calculated from the asymptotic behavior of the wave function as follows:
where , and , and where and are Bessel functions and . Thus, the total cross-section is given by:
Using the Lennard-Jones potential to model the interaction between the two atoms, we have:
where meV and .
Results
The graph below is the numerical solution of the system showing the series of variables of interest, followed by the original graph in the experimental article:
In the experiment, the center of mass energy in electronvolts (eV) was related to the total cross-section in barns. The solver was written in Python and used the Numerov algorithm to solve the system equation, the Scipy library for Bessel functions, Numpy for matrix and series operations, and Matplotlib for plots. The file solver.py
simulates the cross-section resulting from the H-Kr interaction under the parameters specified in params.json
, a CSV file containing the series of interest can be generated and plotted with the script plot.py
. The entire procedure can be executed with the file run.sh
.
As mentioned earlier, the numerical result seems to be in agreement with the experimental results conducted by Toennies[1].
Future Work
Future research can explore the following areas:
- Exploring other models that describe intermolecular interaction more accurately (instead of Lennard-Jones), for example with non-parametric models generated with machine learning.
- Using other integration methods besides Numerov (e.g., integral formulation of the problem).
- Adaptive meshes.
- Code parallelization.
- Simulation of complex molecules with interesting applications (material characterization).
References
I tried to include a PDF file but couldn't, not sure why, tried the pdf url and the blob one.
Cannot plot multiple series in the same plot :|