NumerovShooting
Documentation for NumerovShooting.
See the Index for the complete list of documented functions and types.
The code, which is hosted on GitHub, is tested using various continuous integration services for its validity.
This repository is created and maintained by @singularitti, and contributions are highly welcome.
Package features
This repo stores a Julia implementation of Paolo Giannozzi's course Numerical Methods in Quantum Mechanics of year 2018-2019. But only for the Numerov's method in the first chapter.
Course Description
The lecture notes is here.
Goals
this course provides an introduction to numerical methods and techniques useful for the numerical solution of quantum mechanical problems, especially in atomic and condensed-matter physics. The course is organized as a series of theoretical lessons in which the physical problems and the numerical concepts needed for their resolution are presented, followed by practical sessions in which examples of implementatation for specific simple problems are presented. The student will learn to use the concepts and to practise scientific programming by modifying and extending the examples presented during the course.
Syllabus
Schroedinger equations in one dimension: techniques for numerical solutions. Solution of the Schroedinger equations for a potential with spherical symmetry. Scattering from a potential. Variational method: expansion on a basis of functions, secular problem, eigenvalues and eigenvectors. Examples: gaussian basis, plane-wave basis. Many-electron systems: Hartree and Hartree-Fock equations: self-consistent field, exchange interaction. Numerical solution of Hartree-Fock equations in atoms with radial integration and on a gaussian basis set. Introduction to numerical solution of electronic states in molecules. Electronic states in solids: solution of the Schroedinger equation for periodic potentials. Introduction to exact diagonalization of spin systems. Introduction to Density-Functional Theory.
No. | My code | Subject |
---|---|---|
1. | One-dimensional Schroedinger equation: general features of the discrete spectrum, relationship between energy, parity, number of intersections of a solution. Harmonic oscillator: analytical solution. Discretization, Numerov algorithm, numerical stability, eigenvalue search using stable outwards and inwards integrations. (Notes: Ch.1) | |
2. | Numerical solution of the one-dimensional Schroedinger equation: examples for the harmonic oscillator (code harmonic0: Fortran, C; code harmonic1: Fortran, C). | |
3. | Three-dimensional Schroedinger equation: Central potentials, variable separation, logarithmic grids, perturbative estimate to accelerate eigenvalue convergence. (Notes: Ch.2). A glimpse on true three-dimensional problems on a grid. (Notes: appendix B) | |
4. | Numerical solution for spherically symmetric potentials: example for Hydrogen atom (code hydrogen_radial: Fortran, C; needed Fortran routines solve_sheq , init_pot , do_mesh ) | |
5. | Scattering from a potential: cross section, phase shifts, resonances. (Notes: Ch.3; Thijssen: Ch.2) | |
6. | Calculation of cross sections: numerical solution for Lennard-Jones potential (code crossection: Fortran, C). | |
7. | Variational method: Schroedinger equation as minimum problem, expansion on a basis of functions, secular problem, introduction to diagonalization algorithms. (Notes: Ch.4; Thijssen: Ch.3) | |
8. | Variational method using an orthonormal basis set: example of a potential well in plane waves (code pwell: Fortran, C). | |
9. | Non-orthonormal basis sets: gaussian functions. (Notes: Ch.5) | |
10. | Variational method with gaussian basis set: solution for Hydrogen atom (code hydrogen_gauss: Fortran, C; needed Fortran routine diag ). | |
11. | Self-consistent field: solution of the many-body problem: Hartree method, self-consistent field. (Notes: Ch.6) | |
12. | He atom with Hartree approximation: solution with radial integration and self-consistency (code heliumhfradial: Fortran, C). | |
13. | Hartree-Fock method: Slater determinants, Hartree-Fock equations (Notes: Ch.7; Thijssen: Ch.4.1-4.5) | |
14. | Helium atom with Hartree-Fock approximation: solution with gaussian basis and diagonalization (code heliumhfgauss: Fortran, C). | |
15. | Molecules: Born-Oppenheimer approximation, potential energy surface, diatomic molecules. introduction to numerical solution for molecules. (Notes: Ch.8; Thijssen: Ch.4.6-4.8) | |
16. | Molecules with gaussian basis: solution of Hartree-Fock equations on a gaussian basis for a H2 molecule (code h2hfgauss: Fortran, C). | |
17. | Electronic states in crystals: Bloch theorem, band structure. (Notes: Ch.9; Thijssen: Ch.4.6-4.8) | |
18. | Periodic potentials: numerical solution with plane waves of the Kronig-Penney model (code periodicwell: Fortran, C; needed Fortran routine cft ). | |
19. | Electronic states in crystals II: three-dimensional case, methods of solution, plane wave basis set, introduction to the concept of pseudopotential. (Notes: Ch.10; Thijssen: Ch.6.1-6.4, 6.7) | |
20. | Pseudopotentials: solution of the Cohen-Bergstresser model for Silicon (code cohenbergstresser: Fortran, C). | |
21. | Spin systems Introduction to spin systems: Heisenberg model, exact diagonalization, iterative methods for diagonalization, sparseness. (Notes: Ch.11) | |
22. | Exact Diagonalization Solution of the Heisenberg model with Lanczos chains (code heisenberg_exact: Fortran, C). | |
23. | Density-Functional Theory Introduction to the theory and to the plane-wave pseudopotential method (Notes: Ch.12) | |
24. | Density-Functional Theory II Fast Fourier-Trasform and iterative techniques (dumb and less dumb code, only Fortran, solving Si with Appelbaum-Hamann pseudopotentials). Assignment of exam problems. |
Installation
The package can be installed with the Julia package manager. From the Julia REPL, type ]
to enter the Pkg mode and run:
pkg> add NumerovShooting
Or, equivalently, via Pkg.jl
:
julia> import Pkg; Pkg.add("NumerovShooting")
Resolving package versions... ERROR: expected package `NumerovShooting [a831be1b]` to be registered
Documentation
- STABLE — documentation of the most recently tagged version.
- DEV — documentation of the in-development version.
Project status
The package is developed for and tested against Julia v1.6
and above on Linux, macOS, and Windows.
Questions and contributions
You can post usage questions on our discussion page.
We welcome contributions, feature requests, and suggestions. If you encounter any problems, please open an issue. The Contributing page has a few guidelines that should be followed when opening pull requests and contributing code.
Manual outline
- Installation Guide
- Numerov's method
- Troubleshooting
- Contributing
- Style Guide
- Design Principles
- Consistency vs adherence
- Community contribution guidelines
- Open source contributions are allowed to start small and grow over time
- Generic code is preferred unless code is known to be specific
- Internal types should match the types used by users when possible
- Trait definition and adherence to generic interface is preferred when possible
- Macros should be limited and only be used for syntactic sugar
- Errors should be caught as early as possible, and error messages should be made contextually clear for newcomers
- Subpackaging and interface packages is preferred over conditional modules via Requires.jl
- Functions should either attempt to be non-allocating and reuse caches, or treat inputs as immutable
- Out-of-place and immutability is preferred when sufficient performant
- Tests should attempt to cover a wide gamut of input types
- When in doubt, a submodule should become a subpackage or separate package
- Globals should be avoided whenever possible
- Type-stable and type-grounded code is preferred wherever possible
- Closures should be avoided whenever possible
- Numerical functionality should use the appropriate generic numerical interfaces
- Functions should capture one underlying principle
- Internal choices should be exposed as options whenever possible
- Prefer code reuse over rewrites whenever possible
- Prefer to not shadow functions