├── .gitignore ├── LICENSE ├── README.md └── VASP ├── .gitignore ├── Check_convergence ├── dEnergy.sh └── dForce.sh ├── README.md ├── cell_tool.py ├── chgcent.py ├── chgcent_cube.py ├── chgdiff.py ├── impose_sym.py ├── kp_gen.py ├── murn.f ├── p4vmod.py ├── pp_gen.py ├── spincar.py ├── vasp_clean.py ├── vaspwfc ├── plotwfc ├── vasp_constant.py └── vaspwfc.py ├── view_atoms.py └── vtotav.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/README.md -------------------------------------------------------------------------------- /VASP/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /VASP/Check_convergence/dEnergy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/Check_convergence/dEnergy.sh -------------------------------------------------------------------------------- /VASP/Check_convergence/dForce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/Check_convergence/dForce.sh -------------------------------------------------------------------------------- /VASP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/README.md -------------------------------------------------------------------------------- /VASP/cell_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/cell_tool.py -------------------------------------------------------------------------------- /VASP/chgcent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/chgcent.py -------------------------------------------------------------------------------- /VASP/chgcent_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/chgcent_cube.py -------------------------------------------------------------------------------- /VASP/chgdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/chgdiff.py -------------------------------------------------------------------------------- /VASP/impose_sym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/impose_sym.py -------------------------------------------------------------------------------- /VASP/kp_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/kp_gen.py -------------------------------------------------------------------------------- /VASP/murn.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/murn.f -------------------------------------------------------------------------------- /VASP/p4vmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/p4vmod.py -------------------------------------------------------------------------------- /VASP/pp_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/pp_gen.py -------------------------------------------------------------------------------- /VASP/spincar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/spincar.py -------------------------------------------------------------------------------- /VASP/vasp_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/vasp_clean.py -------------------------------------------------------------------------------- /VASP/vaspwfc/plotwfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/vaspwfc/plotwfc -------------------------------------------------------------------------------- /VASP/vaspwfc/vasp_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/vaspwfc/vasp_constant.py -------------------------------------------------------------------------------- /VASP/vaspwfc/vaspwfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/vaspwfc/vaspwfc.py -------------------------------------------------------------------------------- /VASP/view_atoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/view_atoms.py -------------------------------------------------------------------------------- /VASP/vtotav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chengcheng-Xiao/Tools/HEAD/VASP/vtotav.py --------------------------------------------------------------------------------