The "Conversion of Molecules from Left Handed to Right Handed Form Through Electron Collision" project focuses on studying the impact of electron collision on the orientation of a junction of Biphenyl molecule.
- Clone git repo
git clone https://github.com/ArtDoctor/Conversion-of-a-Molecules-Form-from-Left-Handed-to-Right-Handed-through-Electron-Collision/tree/main
- Create Python venv
python -m venv venv
source venv/bin/activate
or in Windows:
.\.venv\Scripts\activate
- Install Python packages
pip install -r requirements.txt
Using this venv all notebooks should run withour errors.
- Solve Schrodinger Equation using FDM
- Solve Schrodinger Equation using Exponential Fourier Basis
- Solve Schrodinger Equation using Sines and Cosines Fourier Basis
- Check patterns of wave function eigenvalues at higher energies
- Check delta splitting for energy eigenvalues for every group of 4 eigenstates, try to improve accuracy
- Reproduce main reference paper till the checkpoint - reproduce graphs (Energy dependence of the averaged transmission probability (see text) for three coupling strengths α and temperature T = 0.)
- Try trapezoidal integration instead of standard numpy integration
- Improve FDM accuracy by using corner matrix elements
Selected steps are currently in progress.