目录

CP2K

目录
misaraty 更新 | 2022-01-22
前言
CP2K是使用混合高斯和平面波基组的DFT计算软件。

1

  1. 使用Intel 2017编译器。
1
source /opt/longrun/intel2017/parallel_studio_xe_2017.5.061/psxevars.sh
  1. 下载libint
1
tar zxvf libint-1.1.5.tar.gz && cd libint-1.1.5 && ./configure CC=icc CXX=icpc FC=ifort --prefix=/opt/longrun/libint-1.1.5 --enable-deriv && make -j 16 && make install
  1. 下载libxc
1
tar zxvf libxc-2.2.3.tar.gz && cd /opt/longrun/libxc-2.2.3 && ./configure CC=icc CXX=icpc FC=ifort --prefix=/opt/longrun/libxc-2.2.3/sbin && make -j 16 && make install
  1. 下载CP2K
1
tar zxvf cp2k-4.1.0.tar.gz && cd /opt/longrun/cp2k-4.1.0/makefiles && make -j 16 ARCH=Linux-x86-64-intel-host VERSION=popt LIBINTROOT=/opt/longrun/libint-1.1.5/sbin LIBXCROOT=/opt/longrun/libxc-2.2.3/sbin MKL_STATIC=2

  1. cp2k编译安装教程 ↩︎