前言
AxiSEM3D有两个版本。之前介绍过安装老的版本见https://blog.nickwhyy.top/post/axisem3d/ 。今天介绍安装新版本的方法。
下载
要下载AxiSEM3D,可以在终端中输入以下命令:
1
2
3
4
| # 新版本为AxiSEM-3D
$ git clone https://github.com/kuangdai/AxiSEM-3D.git AxiSEM3D
# synchronize to github
$ git -C AxiSEM3D pull
|
安装依赖包
安装
Eigen, 和 Boost都是直接下载,然后解压即可。
1
2
3
4
5
6
7
| # 在AxiSEM的目录下,新建一个build文件夹,然后进入该文件夹
$ mkdir -p build && cd $_
$ rm -rf ./* && cmake -Dcxx=mpiicpc -Deigen=$HOME/.axisem3d_depends/eigen3 -Dboost=$HOME/.axisem3d_depends/boost_1_73_0 -Dmetis=$HOME/.axisem3d_depends/metis-5.1.0 -Dnetcdf=/home/opt/netcdf/c-4.7.4-intel -Dfftw=/home/opt/fftw/3.3.8-intel -Dflags="-O3 -std=c++17" ../SOLVER/
# 使用高版本的gcc编译器(>=5)
$ scl enable devtoolset 11 bash
# 编译
$ make -j8
|
测试
- 复制一个
sbatch
脚本
1
| $ cp /home/opt/intel.sh .
|
- 修该该脚本的任务数
- 修改执行的代码部分
1
| $MPI_HOME/bin/mpiexec -n 4 -wdir $WORKPATH $WORKPATH/axisem3d
|
- 如果报以下错误,则说明安装成功
1
2
3
4
5
6
7
8
9
| Computing is started at Mon Jan 17 09:23:50 CST 2022.
!!!!!!!!!!!! AxiSEM3D ABORTED UPON RUNTIME EXCEPTION !!!!!!!!!!!
FROM: io::verifyDirectories
WHAT: Missing input directory:
/home/lloyd/AxiSEM3D/build/input
TIME: 2022-01-17T09:23:55
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Abort(1) on node 0 (rank 0 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
Computing is stopped at Mon Jan 17 09:23:55 CST 2022.
|
修订历史
参考资料