CP2K: Difference between revisions

From Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:




  ###########################
  ##############################
  ### Load Evironment Variables
  ### Load Evironment Variables
  ###########################
  ##############################
  . /etc/profile.d/modules.sh
  . /etc/profile.d/modules.sh
  module load cp2k/2.3
  module load cp2k/2.3


  ###########################
  ################
  ### Running Job
  ### Running Job
  ###########################
  ################
  export OMP_NUM_THREADS=1
  export OMP_NUM_THREADS=1
 
mpirun -np $NSLOTS cp2k.popt -i myinputfile.inp -o myoutputfile.out
mpirun -np $NSLOTS cp2k.popt -i myinputfile.inp -o myoutputfile.out

Latest revision as of 16:07, 28 January 2013

go back to Main Page, Computational Resources, Chemistry & More, Computational Codes


CP2K is a program to perform atomistic and molecular simulations of solid state, liquid, molecular, and biological systems. It provides a general framework for different methods such as e.g., density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW) and classical pair and many-body potentials.


http://www.cp2k.org/


In order to send a cp2k calculation you must to make your submit script including the next directives:


##############################
### Load Evironment Variables
##############################
. /etc/profile.d/modules.sh
module load cp2k/2.3
################
### Running Job
################
export OMP_NUM_THREADS=1
mpirun -np $NSLOTS cp2k.popt -i myinputfile.inp -o myoutputfile.out