├── LICENSE ├── README.md ├── create_patch.sh ├── create_patch_5.4.4_from_6.2.1.sh ├── vasp.5.4.4 ├── diff_patches_6.2.1 │ ├── .objects.diff.patch │ ├── base.F.diff.patch │ ├── main.F.diff.patch │ ├── metagga.F.diff.patch │ ├── nmr.F.diff.patch │ ├── pot.F.diff.patch │ ├── reader.F.diff.patch │ ├── wave.F.diff.patch │ └── xml_writer.F.diff.patch └── patches │ ├── .objects.patch │ ├── base.F.patch │ ├── main.F.patch │ ├── metagga.F.patch │ ├── nmr.F.patch │ ├── pot.F.patch │ ├── reader.F.patch │ ├── wave.F.patch │ └── xml_writer.F.patch ├── vasp.6.2.1 ├── patches │ ├── .objects.patch │ ├── base.F.patch │ ├── main.F.patch │ ├── metagga.F.patch │ ├── nmr.F.patch │ ├── pot.F.patch │ ├── reader.F.patch │ ├── wave_struct.F.patch │ └── xml_writer.F.patch ├── patches_minimal │ └── pot.F.patch └── src │ ├── source_free_bxc.F │ └── works_in_progress │ ├── source_free_bxc_q0.F │ ├── source_free_bxc_q0crude.F │ └── source_free_bxc_ztt.F ├── vasp.6.4.1 ├── patches │ ├── .objects.patch │ ├── base.F.patch │ ├── main.F.patch │ ├── metagga.F.patch │ ├── nmr.F.patch │ ├── pot.F.patch │ ├── reader.F.patch │ ├── wave_struct.F.patch │ └── xml_writer.F.patch └── patches_minimal │ └── pot.F.patch └── visualization ├── Bxc_visualize.ipynb ├── example_files └── Mn3ZnN │ ├── CHGCAR.gz │ ├── Mn3ZnN_source_free.png │ └── XCPOT.gz └── visualize_helper_functions.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/README.md -------------------------------------------------------------------------------- /create_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/create_patch.sh -------------------------------------------------------------------------------- /create_patch_5.4.4_from_6.2.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/create_patch_5.4.4_from_6.2.1.sh -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/.objects.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/.objects.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/base.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/base.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/main.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/main.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/metagga.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/metagga.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/nmr.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/nmr.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/pot.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/pot.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/reader.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/reader.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/wave.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/wave.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/diff_patches_6.2.1/xml_writer.F.diff.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/diff_patches_6.2.1/xml_writer.F.diff.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/.objects.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/.objects.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/base.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/base.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/main.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/main.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/metagga.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/metagga.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/nmr.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/nmr.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/pot.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/pot.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/reader.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/reader.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/wave.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/wave.F.patch -------------------------------------------------------------------------------- /vasp.5.4.4/patches/xml_writer.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.5.4.4/patches/xml_writer.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/.objects.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/.objects.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/base.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/base.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/main.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/main.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/metagga.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/metagga.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/nmr.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/nmr.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/pot.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/pot.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/reader.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/reader.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/wave_struct.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/wave_struct.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches/xml_writer.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches/xml_writer.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/patches_minimal/pot.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/patches_minimal/pot.F.patch -------------------------------------------------------------------------------- /vasp.6.2.1/src/source_free_bxc.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/src/source_free_bxc.F -------------------------------------------------------------------------------- /vasp.6.2.1/src/works_in_progress/source_free_bxc_q0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/src/works_in_progress/source_free_bxc_q0.F -------------------------------------------------------------------------------- /vasp.6.2.1/src/works_in_progress/source_free_bxc_q0crude.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/src/works_in_progress/source_free_bxc_q0crude.F -------------------------------------------------------------------------------- /vasp.6.2.1/src/works_in_progress/source_free_bxc_ztt.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.2.1/src/works_in_progress/source_free_bxc_ztt.F -------------------------------------------------------------------------------- /vasp.6.4.1/patches/.objects.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/.objects.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/base.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/base.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/main.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/main.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/metagga.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/metagga.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/nmr.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/nmr.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/pot.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/pot.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/reader.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/reader.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/wave_struct.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/wave_struct.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches/xml_writer.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches/xml_writer.F.patch -------------------------------------------------------------------------------- /vasp.6.4.1/patches_minimal/pot.F.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/vasp.6.4.1/patches_minimal/pot.F.patch -------------------------------------------------------------------------------- /visualization/Bxc_visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/visualization/Bxc_visualize.ipynb -------------------------------------------------------------------------------- /visualization/example_files/Mn3ZnN/CHGCAR.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/visualization/example_files/Mn3ZnN/CHGCAR.gz -------------------------------------------------------------------------------- /visualization/example_files/Mn3ZnN/Mn3ZnN_source_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/visualization/example_files/Mn3ZnN/Mn3ZnN_source_free.png -------------------------------------------------------------------------------- /visualization/example_files/Mn3ZnN/XCPOT.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/visualization/example_files/Mn3ZnN/XCPOT.gz -------------------------------------------------------------------------------- /visualization/visualize_helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guycmoore/source_free_Bxc_VASP/HEAD/visualization/visualize_helper_functions.py --------------------------------------------------------------------------------