when I optimize the system with multiplicity equals to 2 using the cp2k code, I find that the integrated absolute spin density is very high to 180. I think it is wrong, because the energy is very low, which leads to the adsorption energy is -40 eV. Obviously, it is wrong. Anyone can give me some suggestion? The following is my input file :
&DFT
BASIS_SET_FILE_NAME BASIS_MOLOPT
POTENTIAL_FILE_NAME POTENTIAL
# WFN_RESTART_FILE_NAME initial_MnO2_100_lico2-RESTART.wfn
CHARGE 0 #Net charge
MULTIPLICITY 2 #Spin multiplicity
UKS
&QS
EPS_DEFAULT 1.0E-12 #Set all EPS_xxx to values such that the energy will be correct up to this value
&END QS
&POISSON
PERIODIC XY #Direction(s) of PBC for calculating electrostatics
PSOLVER ANALYTIC #The way to solve Poisson equation
&END POISSON
&XC
&XC_FUNCTIONAL PBE
&END XC_FUNCTIONAL
&END XC
&MGRID
CUTOFF 400
REL_CUTOFF 55
&END MGRID
&SCF
MAX_SCF 128
EPS_SCF 1.0E-06 #Convergence threshold of density matrix of inner SCF
# SCF_GUESS RESTART #Use wavefunction from WFN_RESTART_FILE_NAME file as initial guess
&DIAGONALIZATION
ALGORITHM STANDARD #Algorithm for diagonalization. DAVIDSON is faster for large systems
&END DIAGONALIZATION
&MIXING #How to mix old and new density matrices
METHOD BROYDEN_MIXING #PULAY_MIXING is also a good alternative
ALPHA 0.3 #Default. Mixing 40% of new density matrix with the old one
NBROYDEN 24 #Default is 4. Number of previous steps stored for the actual mixing scheme
&END MIXING
&SMEAR
METHOD FERMI_DIRAC
ELECTRONIC_TEMPERATURE 300 #Electronic temperature of Fermi-Dirac smearing in K
&END SMEAR
ADDED_MOS 120 120 #Number of virtual MOs to solve for alpha and beta spins
&RESTART #Note: Use "&RESTART OFF" can prevent generating wfn file
BACKUP_COPIES 0 #Maximum number of backup copies of wfn file. 0 means never
&END RESTART
&END PRINT
&END SCF
&END DFT
&END FORCE_EVAL
&MOTION
&GEO_OPT
TYPE MINIMIZATION #Search for minimum
KEEP_SPACE_GROUP F #If T, then space group will be detected and preserved
OPTIMIZER BFGS #Can also be CG (more robust for difficult cases) or LBFGS
&BFGS
TRUST_RADIUS 0.2 #Trust radius (maximum stepsize) in Angstrom
# RESTART_HESSIAN T #If read initial Hessian, uncomment this line and specify the file in the next line
# RESTART_FILE_NAME to_be_specified
&END BFGS
MAX_ITER 400 #Maximum number of geometry optimization
#The following thresholds of geometry convergence are the default ones
MAX_DR 3E-3 #Maximum geometry change
RMS_DR 1.5E-3 #RMS geometry change
MAX_FORCE 4.5E-4 #Maximum force
RMS_FORCE 3E-4 #RMS force
&END GEO_OPT
&TRAJECTORY
FORMAT pdb
&END TRAJECTORY
&RESTART
BACKUP_COPIES 0 #Maximum number of backing up restart file, 0 means never
&END RESTART
&END PRINT
&END MOTION