├── .gitignore ├── LICENSE ├── README.md ├── bloch_w.f90 ├── check_in_args.f90 ├── fold2Bloch.f90 ├── graphics ├── GaP+N.png └── perovskite.png ├── gvect.f90 ├── kgen_prim.f90 ├── makefile ├── open_f2b.f90 ├── read_wavcar_head.f90 ├── recip.f90 ├── utils ├── README.md ├── f2b-band-structure.plt ├── fold.m ├── ubs_bmp.m └── ubs_dots.m └── vcross.f90 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/README.md -------------------------------------------------------------------------------- /bloch_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/bloch_w.f90 -------------------------------------------------------------------------------- /check_in_args.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/check_in_args.f90 -------------------------------------------------------------------------------- /fold2Bloch.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/fold2Bloch.f90 -------------------------------------------------------------------------------- /graphics/GaP+N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/graphics/GaP+N.png -------------------------------------------------------------------------------- /graphics/perovskite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/graphics/perovskite.png -------------------------------------------------------------------------------- /gvect.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/gvect.f90 -------------------------------------------------------------------------------- /kgen_prim.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/kgen_prim.f90 -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/makefile -------------------------------------------------------------------------------- /open_f2b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/open_f2b.f90 -------------------------------------------------------------------------------- /read_wavcar_head.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/read_wavcar_head.f90 -------------------------------------------------------------------------------- /recip.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/recip.f90 -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/f2b-band-structure.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/utils/f2b-band-structure.plt -------------------------------------------------------------------------------- /utils/fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/utils/fold.m -------------------------------------------------------------------------------- /utils/ubs_bmp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/utils/ubs_bmp.m -------------------------------------------------------------------------------- /utils/ubs_dots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/utils/ubs_dots.m -------------------------------------------------------------------------------- /vcross.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/fold2Bloch-VASP/HEAD/vcross.f90 --------------------------------------------------------------------------------