CP2K misaraty 收录于 学术 2019-04-17 约 178 字 预计阅读 1 分钟 目录 前言 CP2K是使用混合高斯和平面波基组的DFT计算软件。 1 使用Intel 2017编译器。 1 source /opt/longrun/intel2017/parallel_studio_xe_2017.5.061/psxevars.sh 下载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 下载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 下载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 cp2k编译安装教程 ↩︎