No description
Find a file
2022-12-21 16:01:52 +01:00
.github pre-commit: integrate markdownlint, format previously ignored files 2020-08-25 15:09:58 +02:00
arch Update arch files (#2467) 2022-12-21 16:01:52 +01:00
benchmarks Remove missing mentions of mpi2 or mpi3 2022-12-19 14:36:07 +01:00
cmake Remove the troublesome cmake file 2022-12-02 18:12:21 +01:00
data Introduce force field database for Fist 2022-12-14 17:05:33 +01:00
exts Include Mi250 GPU 2022-08-29 17:55:45 +02:00
src Updating SIRIUS to latest version 2022-12-21 11:02:53 +01:00
tests Adjust tolerance 2022-12-21 10:22:47 +01:00
tools mpich 3.4.3 -> 4.0.3 2022-12-21 15:11:49 +01:00
.dockerignore Remove old dockerignore file 2022-02-13 22:06:01 +01:00
.gitattributes add Github Action workflow to create release tarball 2019-12-06 14:23:21 +01:00
.gitignore Cmake improvements 2022-11-22 14:57:45 +01:00
.gitmodules prettify: update to fprettify v0.3.5 2019-11-20 17:35:01 +01:00
CMakeLists.txt Various fixes for the cmake build system 2022-12-09 21:45:51 +01:00
cp2k.pc.in Use cmake to build cp2k 2022-10-27 18:00:54 +02:00
INSTALL.md Drop Support for MPI 2.0 (#2438) 2022-12-08 14:20:11 +01:00
LICENSE LICENSE: initial commit 2018-10-02 16:53:44 +02:00
Makefile Add support for Torch which is needed by NequIP 2022-11-30 11:54:22 +01:00
README.md precommit: Switch from markdownlint to mdformat 2022-11-06 16:15:27 +01:00
README_cmake.md precommit: Switch from markdownlint to mdformat 2022-11-06 16:15:27 +01:00

CP2K

CP2K is a quantum chemistry and solid state physics software package that can perform atomistic simulations of solid state, liquid, molecular, periodic, material, crystal, and biological systems. CP2K provides a general framework for different modeling methods such as DFT using the mixed Gaussian and plane waves approaches GPW and GAPW. Supported theory levels include DFTB, LDA, GGA, MP2, RPA, semi-empirical methods (AM1, PM3, PM6, RM1, MNDO, ...), and classical force fields (AMBER, CHARMM, ...). CP2K can do simulations of molecular dynamics, metadynamics, Monte Carlo, Ehrenfest dynamics, vibrational analysis, core level spectroscopy, energy minimization, and transition state optimization using NEB or dimer method.

CP2K is written in Fortran 2008 and can be run efficiently in parallel using a combination of multi-threading, MPI, and CUDA.

Downloading CP2K source code

To clone the current master (development version):

git clone --recursive https://github.com/cp2k/cp2k.git cp2k

Note the --recursive flag that is needed because CP2K uses git submodules.

To clone a release version vx.y:

git clone -b support/vx.y --recursive https://github.com/cp2k/cp2k.git cp2k

For more information on downloading CP2K, see Downloading CP2K. For help on git, see Git Tips & Tricks.

Install CP2K

The easiest way to build CP2K with all of its dependencies is as a Docker container.

For building CP2K from scratch see the installation instructions.

  • CP2K.org for showcases of scientific work, tutorials, exercises, presentation slides, etc.
  • The manual with descriptions of all the keywords for the CP2K input file
  • The dashboard to get an overview of the currently tested architectures
  • The Google group to get help if you could not find an answer in one of the previous links
  • Acknowledgements for list of institutions and grants that help to fund the development of CP2K

Directory organization

  • arch: Collection of definitions for different architectures and compilers
  • benchmarks: Inputs for benchmarks
  • data: Simulation parameters e.g. basis sets and pseudopotentials
  • exts: Access to external libraries via GIT submodules
  • src: The source code
  • tests: Inputs for tests and regression tests
  • tools: Mixed collection of useful scripts related to cp2k

Additional directories created during build process:

  • lib: Libraries built during compilation
  • obj: Objects and other intermediate compilation-time files
  • exe: Where the executables will be located