• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H18-May-2020-

arch/H03-May-2022-1,3921,150

benchmarks/H18-May-2020-1,378,5791,378,054

data/H18-May-2020-505,573504,089

exts/H03-May-2022-185,991155,800

src/H18-May-2020-1,181,848884,726

tests/H18-May-2020-638,727628,425

tools/H18-May-2020-95,79979,511

.dockerignoreH A D18-May-202045 76

COPYRIGHTH A D18-May-20202.3 KiB3130

INSTALL.mdH A D18-May-202021.5 KiB313240

LICENSEH A D18-May-202017.7 KiB340281

MakefileH A D03-May-202218.6 KiB520346

README.mdH A D18-May-20202.7 KiB5035

README.md

1# CP2K
2
3CP2K 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.
4
5CP2K is written in Fortran 2008 and can be run efficiently in parallel using a combination of multi-threading, MPI, and CUDA.
6
7## Downloading CP2K source code
8
9To clone the current master (development version):
10```console
11$ git clone --recursive https://github.com/cp2k/cp2k.git cp2k
12```
13Note the ``--recursive`` flag that is needed because CP2K uses git submodules.
14
15To clone a release version v*x.y*:
16```console
17$ git clone -b support/vx.y https://github.com/cp2k/cp2k.git cp2k
18```
19
20For more information on downloading CP2K, see [Downloading CP2K](https://www.cp2k.org/download).
21For help on git, see [Git Tips & Tricks](https://github.com/cp2k/cp2k/wiki/Git-Tips-&-Tricks).
22
23## Install CP2K
24
25See [installation instructions](./INSTALL.md)
26
27## Links
28
29* [CP2K.org](https://www.cp2k.org) for showcases of scientific work, tutorials, exercises, presentation slides, etc.
30* [The manual](https://manual.cp2k.org/) with descriptions of all the keywords for the CP2K input file
31* [The dashboard](https://dashboard.cp2k.org) to get an overview of the currently tested architectures
32* [The Google group](https://groups.google.com/group/cp2k) to get help if you could not find an answer in one of the previous links
33* [Acknowledgements](https://www.cp2k.org/funding) for list of institutions and grants that help to fund the development of CP2K
34
35## Directory organization
36
37* [`arch`](./arch): Collection of definitions for different architectures and compilers
38* [`benchmarks`](./benchmarks): Inputs for benchmarks
39* [`data`](./data): Simulation parameters e.g. basis sets and pseudopotentials
40* [`exts`](./exts): Access to external libraries via GIT submodules
41* [`src`](./src): The source code
42* [`tests`](./tests): Inputs for tests and regression tests
43* [`tools`](./tools): Mixed collection of useful scripts related to cp2k
44
45Additional directories created during build process:
46
47* `lib`: Libraries built during compilation
48* `obj`: Objects and other intermediate compilation-time files
49* `exe`: Where the executables will be located
50