라벨이 VASP인 게시물 표시

WARNING: Sub-Space-Matrix is not hermitian in DAV in VASP

If you encounter this warning message WARNING: Sub-Space-Matrix is not hermitian in DAV           16  WARNING: Sub-Space-Matrix is not hermitian in DAV           16  WARNING: Sub-Space-Matrix is not hermitian in DAV           14  -3.350041184628083E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           16  -2.280639085807041E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           16  -2.280639085807041E-004  -2.280639085807041E-004  -2.280639085807041E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           16  -2.280639085807041E-004  -2.280639085807041E-004  -2.693259676600129E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           11   2.490890069212505E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           12  -2.224341915660610E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           13  -2.102364859541623E-004  WARNING: Sub-Space-Matrix is not hermitian in DAV           14 . . . . . . It can

Example of Hubbard U Calculation using VASP

LDAU=.TRUE. LDATYPE=2 LDAUL=-1 2 -1 2 2 LDAUU=0 5.0 0 4.64 9.0 LDAUJ=0 1.0 0 0 0 LDAUPRINT=2 Thanks, JF

Partial (projected) density of states using VASP

EMAX=upper bound (ex> 10) EMIN=lower bound (ex> -10) NEDOS=intervals (ex> 2001) LORBIT=11 Thanks, JF

Submit File for Iterative Calculation in Density Functional Theory (VASP) using Bash Shell

이미지
Many times we run into the situation which we should calculate iterative. In this case, this bash shell script can be used very helpfully. Here is example script. This script is that we can calculate iteratively changing the value of ISIF in INCAR file. sed "s/ISIF=${prei}/ISIF=${i}/" INCAR > temp means that find the lines with ISIF=value of prei (initial value is defined 1) and change it to ISIF=value of i ( i is changed from 1 to 7 ). So, this bash shell makes it possible to simulate with various kinds of relax conditions. $mpi_cmd -np $num_proc -hostfile $PBS_NODEFILE $lmp_cmd > vasp.log 2>&1 This command is excution command. (This is different according to your cluster environment) if [ "${prei}" -eq 7 ]; then mkdir calculatenum_${i} cp * calculatenum_${i} else prei=${i} cp CONTCAR POSCAR fi Here are the if loop that determines wheter calculated files save or not. Last calculation will be saved. The others is not sa