├── .gitignore ├── 1_Installation.ipynb ├── 2_Periodic_problems_and_plane_waves.ipynb ├── 3_Density_functional_theory.ipynb ├── 4_DFT_Research_Challenges.ipynb ├── 5_Solving_the_SCF_problem.ipynb ├── 6_Analysing_SCF_convergence.ipynb ├── 7_Exercises.ipynb ├── Manifest.toml ├── Project.toml ├── README.md ├── environment.yml ├── img ├── AlSiO2H_repeat_20.pdf ├── AlSiO2H_repeat_20.png ├── Al_repeat_40.pdf ├── Al_repeat_40.png ├── GaAs_repeat_40.pdf ├── GaAs_repeat_40.png ├── SiO2_repeat_39.pdf ├── SiO2_repeat_39.png ├── Silicon_crystal.jpg ├── Silicon_crystal.jpg.source ├── alsio2.pdf ├── alsio2.png ├── dftk_4nodes.pdf ├── dftk_4nodes.png ├── dftk_4nodes_vert.pdf ├── dftk_4nodes_vert.png ├── si_band_errors.pdf ├── si_band_errors.png ├── silicon.png ├── silicon_bands.png └── surface.png ├── install-manual.jl └── install.jl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/.gitignore -------------------------------------------------------------------------------- /1_Installation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/1_Installation.ipynb -------------------------------------------------------------------------------- /2_Periodic_problems_and_plane_waves.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/2_Periodic_problems_and_plane_waves.ipynb -------------------------------------------------------------------------------- /3_Density_functional_theory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/3_Density_functional_theory.ipynb -------------------------------------------------------------------------------- /4_DFT_Research_Challenges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/4_DFT_Research_Challenges.ipynb -------------------------------------------------------------------------------- /5_Solving_the_SCF_problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/5_Solving_the_SCF_problem.ipynb -------------------------------------------------------------------------------- /6_Analysing_SCF_convergence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/6_Analysing_SCF_convergence.ipynb -------------------------------------------------------------------------------- /7_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/7_Exercises.ipynb -------------------------------------------------------------------------------- /Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/Manifest.toml -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/environment.yml -------------------------------------------------------------------------------- /img/AlSiO2H_repeat_20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/AlSiO2H_repeat_20.pdf -------------------------------------------------------------------------------- /img/AlSiO2H_repeat_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/AlSiO2H_repeat_20.png -------------------------------------------------------------------------------- /img/Al_repeat_40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/Al_repeat_40.pdf -------------------------------------------------------------------------------- /img/Al_repeat_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/Al_repeat_40.png -------------------------------------------------------------------------------- /img/GaAs_repeat_40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/GaAs_repeat_40.pdf -------------------------------------------------------------------------------- /img/GaAs_repeat_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/GaAs_repeat_40.png -------------------------------------------------------------------------------- /img/SiO2_repeat_39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/SiO2_repeat_39.pdf -------------------------------------------------------------------------------- /img/SiO2_repeat_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/SiO2_repeat_39.png -------------------------------------------------------------------------------- /img/Silicon_crystal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/Silicon_crystal.jpg -------------------------------------------------------------------------------- /img/Silicon_crystal.jpg.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/Silicon_crystal.jpg.source -------------------------------------------------------------------------------- /img/alsio2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/alsio2.pdf -------------------------------------------------------------------------------- /img/alsio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/alsio2.png -------------------------------------------------------------------------------- /img/dftk_4nodes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/dftk_4nodes.pdf -------------------------------------------------------------------------------- /img/dftk_4nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/dftk_4nodes.png -------------------------------------------------------------------------------- /img/dftk_4nodes_vert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/dftk_4nodes_vert.pdf -------------------------------------------------------------------------------- /img/dftk_4nodes_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/dftk_4nodes_vert.png -------------------------------------------------------------------------------- /img/si_band_errors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/si_band_errors.pdf -------------------------------------------------------------------------------- /img/si_band_errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/si_band_errors.png -------------------------------------------------------------------------------- /img/silicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/silicon.png -------------------------------------------------------------------------------- /img/silicon_bands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/silicon_bands.png -------------------------------------------------------------------------------- /img/surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/img/surface.png -------------------------------------------------------------------------------- /install-manual.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/install-manual.jl -------------------------------------------------------------------------------- /install.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfherbst/aachen_introduction_dftk/HEAD/install.jl --------------------------------------------------------------------------------