HILLSPOT

From VASP Wiki
Revision as of 14:26, 30 January 2017 by Karsai (talk | contribs) (Created page with "During the metadynamics simulation, the ime-dependent bias potential (see {{TAG|MDALGO}}) is written in file {{TAG|HILLSPOT}} using the same format as for the {{TAG|PENALTYPO...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

During the metadynamics simulation, the ime-dependent bias potential (see MDALGO) is written in file HILLSPOT using the same format as for the PENALTYPOT file. If the metadynamics is performed as a sequence of shorter runs (which is recommended), the HILLSPOT file should be copied into PENALTYPOT at the end of each run. The following is an example of script running the sequence of 100 simulations:

#!/bin/bash
i=1
while [ $i -le 100 ]
do
  cp POSCAR POSCAR.$i
  ./vasp
  cp CONTCAR POSCAR
  cp REPORT REPORT.$i
  cp HILLSPOT PENALTYPOT
  let i=i+1
done
\end{verbatim}

Related Tags and Sections

MDALGO, HILLSPOT


Contents