-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EVERY_N_STEP keyword for linear response calculations (cp2k#3692)
- Loading branch information
1 parent
3f890bb
commit 3de98e9
Showing
4 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
################################### | ||
@SET RUN_TYPE MD | ||
@SET CUTOFF 200 | ||
@SET FUNCTIONAL LDA | ||
@SET PRINT_LEVEL MEDIUM | ||
@SET BASIS_SET_FILE_NAME GTH_BASIS_SETS | ||
@SET BASIS_SET SZV-GTH | ||
@SET EPS_SCF 1.08E-5 | ||
@SET EPS_LINRES 5.0E-5 | ||
################################### | ||
&GLOBAL | ||
PRINT_LEVEL $PRINT_LEVEL | ||
PROJECT second | ||
RUN_TYPE $RUN_TYPE | ||
&END GLOBAL | ||
|
||
&FORCE_EVAL | ||
METHOD Quickstep | ||
&DFT | ||
BASIS_SET_FILE_NAME $BASIS_SET_FILE_NAME | ||
CHARGE 0 | ||
POTENTIAL_FILE_NAME POTENTIAL | ||
&MGRID | ||
CUTOFF $CUTOFF | ||
NGRIDS 1 | ||
&END MGRID | ||
&POISSON | ||
PERIODIC NONE | ||
POISSON_SOLVER ANALYTIC | ||
&END POISSON | ||
&MOMENTS | ||
PERIODIC FALSE | ||
&END MOMENTS | ||
&END PRINT | ||
&QS | ||
EXTRAPOLATION ASPC | ||
EXTRAPOLATION_ORDER 3 | ||
METHOD GPW | ||
&END QS | ||
&SCF | ||
EPS_SCF $EPS_SCF | ||
SCF_GUESS ATOMIC | ||
&OT | ||
PRECONDITIONER FULL_SINGLE_INVERSE | ||
&END OT | ||
&END SCF | ||
&XC | ||
&XC_FUNCTIONAL $FUNCTIONAL | ||
&END XC_FUNCTIONAL | ||
&END XC | ||
&END DFT | ||
&PROPERTIES | ||
&LINRES | ||
EPS $EPS_LINRES | ||
EVERY_N_STEP 2 | ||
MAX_ITER 1000 | ||
PRECONDITIONER FULL_SINGLE_INVERSE | ||
&DCDR | ||
&APT | ||
FILENAME __STD_OUT__ | ||
&END APT | ||
&END PRINT | ||
&END DCDR | ||
&PROGRAM_RUN_INFO | ||
&END PROGRAM_RUN_INFO | ||
&END PRINT | ||
&END LINRES | ||
&END PROPERTIES | ||
&SUBSYS | ||
&CELL | ||
ABC [angstrom] 5.0 5.0 5.0 | ||
PERIODIC NONE | ||
&END CELL | ||
&COORD | ||
O 0.000000 0.000000 0.000000 | ||
H 0.000000 0.769665 -0.591648 | ||
H 0.000000 -0.769665 -0.591648 | ||
&END COORD | ||
&KIND DEFAULT | ||
BASIS_SET $BASIS_SET | ||
POTENTIAL GTH-$FUNCTIONAL | ||
&END KIND | ||
&END SUBSYS | ||
&END FORCE_EVAL | ||
|
||
&MOTION | ||
&MD | ||
ENSEMBLE NVT | ||
STEPS 6 | ||
TEMPERATURE 300.0 | ||
TIMESTEP 0.5 | ||
&THERMOSTAT | ||
&NOSE | ||
LENGTH 3 | ||
MTS 2 | ||
TIMECON 100.0 | ||
YOSHIDA 3 | ||
&END NOSE | ||
&END THERMOSTAT | ||
&END MD | ||
&END MOTION |