├── .gitignore ├── LICENSE ├── README.md ├── dgenen.f90 ├── eigvs.f90 ├── eigvz.f90 ├── kdelta.f90 ├── makefile ├── mstar.f90 ├── read_mommat_nb.f90 ├── read_mommat_pij.f90 ├── read_mommat_pij_vasp.f90 ├── read_numlines.f90 ├── read_numlines_vasp.f90 ├── test_files └── W2k │ └── Si.struct └── utils └── dat2csv.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source 2 | *.o 3 | 4 | # Executables 5 | mstar 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/README.md -------------------------------------------------------------------------------- /dgenen.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/dgenen.f90 -------------------------------------------------------------------------------- /eigvs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/eigvs.f90 -------------------------------------------------------------------------------- /eigvz.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/eigvz.f90 -------------------------------------------------------------------------------- /kdelta.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/kdelta.f90 -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/makefile -------------------------------------------------------------------------------- /mstar.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/mstar.f90 -------------------------------------------------------------------------------- /read_mommat_nb.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/read_mommat_nb.f90 -------------------------------------------------------------------------------- /read_mommat_pij.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/read_mommat_pij.f90 -------------------------------------------------------------------------------- /read_mommat_pij_vasp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/read_mommat_pij_vasp.f90 -------------------------------------------------------------------------------- /read_numlines.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/read_numlines.f90 -------------------------------------------------------------------------------- /read_numlines_vasp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/read_numlines_vasp.f90 -------------------------------------------------------------------------------- /test_files/W2k/Si.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/test_files/W2k/Si.struct -------------------------------------------------------------------------------- /utils/dat2csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubel75/mstar/HEAD/utils/dat2csv.sh --------------------------------------------------------------------------------