CFD | OpenFOAM Installation

OpenFOAM

OpenFOAM是一個CFD軟體。它包括一系列應用程序,這些應用程式在CFD中執行一系列任務。應用程式主要分為兩類:link

  • 求解器,用於執行CFD計算;
  • 以及實現上述任務的其他程序;

在OpenFOAM-11之前,每個流動類型都需要呼叫特定的求解器。由於流動類型非常多,OpenFOAM層包含了近100個解算器。像simpleFoam和pimpleFoam這樣的求解器自上世紀90年代初以來一直是OpenFOAM的主力。

然而OpenFOAM-11引進了模組化求解器,其為一個重大的改進。應用程式解算器被單一foamRun求解器取代,foamRun是一個框架性求解器。 foamRun可以載入一個求解器模組,該模組繼續呼叫對應的流動類型。例如之前simpleFoam以及pisoFoam的算例,都採用foamRun求解器來運作。在foamRun求解器程式碼中,會依據對應的演算法進行調整。這在程式碼層次的改動是相當大的。 OpenFOAM-11可以認為是一次徹底的改變。官方將這次改動的原因解釋為更加的貼近多物理場的特性,對於多物理場的耦合更加的成熟。當然這裡面也存在商業上的原因。

特別的,OpenFOAM-11還有一個foamMultiRun求解器,它可以接受兩個或更多域區域,並為每個區域應用不同的求解器模組。例如,它可以將一個或多個流體和固體的模組耦合起來,典型的引用就是多區域傳熱流動。

  • OpenFOAM-11,OpenFOAM-v2306 | Jul 13, 2023 | CFD中文网, openFoam-11 | CFD中文网
    • ESI以及基金会纷纷推出OpenFOAM-v2306以及OpenFOAM-v11。后者改动尤其巨大。求解器模块化,比如之前的icoFoam是个求解器,但目前被处理成了一个库。OpenFOAM-v11比之前,在多物理场耦合方面,更加友好。但更加增加了使用难度。
    • 尤其是对于OpenFOAM-11这面。OpenFOAM这面几个大改动,一个是OpenFOAM-3.0,一个是OpenFOAM-11。这个OpenFOAM-11改的,改的相当大。
    • 是。。。OpeNFOAM11改动很大.. 我开始用了都发蒙
    • 你就用paraFoam -buildin也行,我自己也用这个(如果不看做拉格朗日粒子的话)

Binary/Source Package

  • OpenFOAM Binary/Source Package Repository
    • source/ Source Code Packs for Compiling OpenFOAM (v1.7.0-12) on Linux
    • third-party/ Source Code Packs of Third Party Software supporting OpenFOAM (v1.7.0-12) on Linux

Software for Compilation

原理:OpenFOAM編譯需要一些軟體和函式庫,像是 flex, zlib 之類

Repository and compilation software:

  • Git distributed version control software used for the OpenFOAM source repositories.
  • Compiler: either GCC version 5.5 or above; or LLVM Clang version 16 or above (possibly earlier); or the Intel oneAPI DPC++/C++ Compiler version 2021.3.0 or above. GCC is most commonly available and the version can be checked by typing
  • FLEX fast lexical analyser, used by OpenFOAM for reading files of third-party format
  • cmake build software for compiling ParaView, the third-party visualisation toolkit.

Software for OpenFOAM (and ParaView):

  • OpenMPI message passing interface for parallel computation.
  • ParaView can be installed as a system package, in which case its dependencies do not need to be installed. However, in order to compile its reader modules within OpenFOAM, all its dependencies need to be installed including the development environments of QT, graphics (GL), data formats, etc
1
2
3
4
5
6
7
8
 $ micromamba env create -n cfd_env
Empty environment created at prefix: /home/wpsze/micromamba/envs/cfd_env
$ micromamba install conda-forge::zlib
$ micromamba install anaconda::cmake
$ micromamba install conda-forge::flex
$ micromamba install conda-forge::bison
$ micromamba install conda-forge::cgal
$ micromamba install anaconda::metis

載入環境

安裝需要載入 Intel 編譯環境和 gcc 環境,且 gcc 環境不應高於 Intel 編譯器環境

Environment variables

WM options

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
WM_THIRD_PARTY_DIR=$HOME/OpenFOAM/ThirdParty-1.6.x
WM_PROJECT_INST_DIR=$HOME/OpenFOAM
WM_PROJECT_DIR=$HOME/OpenFOAM/OpenFOAM-1.6.x
WM_DIR=$HOME/OpenFOAM/OpenFOAM-1.6.x/wmake
WM_PROJECT_USER_DIR=$HOME/OpenFOAM/$USER-1.6.x

WM_PRECISION_OPTION=DP
WM_ARCH_OPTION=64
WM_LINK_LANGUAGE=c++
WM_ARCH=linux64
WM_CXXFLAGS=-m64 -fPIC
WM_CFLAGS=-m64 -fPIC
WM_PROJECT_VERSION=1.6.x
WM_COMPILER_LIB_ARCH=64
WM_CXX=g++
WM_COMPILER_ARCH=
WM_PROJECT=OpenFOAM
WM_LDFLAGS=-m64
WM_COMPILER=Gcc
WM_MPLIB=OPENMPI
WM_CC=gcc
WM_COMPILE_OPTION=Opt
WM_OPTIONS=linux64GccDPOpt
WM_PRECISION_OPTION=DP
WM_ARCH_OPTION=64

FOAM options

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FOAM_SOLVERS=$HOME/OpenFOAM/OpenFOAM-1.6.x/applications/solvers
FOAM_APPBIN=$HOME/OpenFOAM/OpenFOAM-1.6.x/applications/bin/linux64GccDPOpt
FOAM_TUTORIALS=$HOME/OpenFOAM/OpenFOAM-1.6.x/tutorials
FOAM_JOB_DIR=$HOME/OpenFOAM/jobControl
FOAM_LIB=$HOME/OpenFOAM/OpenFOAM-1.6.x/lib
FOAM_SITE_APPBIN=$HOME/OpenFOAM/site/1.6.x/bin/linux64GccDPOpt
FOAM_MPI_LIBBIN=$HOME/OpenFOAM/OpenFOAM-1.6.x/lib/linux64GccDPOpt/openmpi-1.3.3
FOAM_APP=$HOME/OpenFOAM/OpenFOAM-1.6.x/applications
FOAM_SITE_LIBBIN=$HOME/OpenFOAM/site/1.6.x/lib/linux64GccDPOpt
FOAM_SRC=$HOME/OpenFOAM/OpenFOAM-1.6.x/src
FOAM_SIGFPE=
FOAM_UTILITIES=$HOME/OpenFOAM/OpenFOAM-1.6.x/applications/utilities
FOAM_USER_LIBBIN=WM_PROJECT_USER_DIR/lib/linux64GccDPOpt
FOAM_INST_DIR=$HOME/OpenFOAM
FOAM_LIBBIN=$HOME/OpenFOAM/OpenFOAM-1.6.x/lib/linux64GccDPOpt
FOAM_RUN=WM_PROJECT_USER_DIR/run
FOAM_USER_APPBIN=WM_PROJECT_USER_DIR/applications/bin/linux64GccDPOpt

Other options

1
2
3
4
5
6
7
MPI_ARCH_PATH=$HOME/OpenFOAM/ThirdParty-1.6.x/openmpi-1.3.3/platforms/linux64GccDPOpt
ParaView_INST_DIR=$HOME/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1
OPAL_PREFIX=$HOME/OpenFOAM/ThirdParty-1.6.x/openmpi-1.3.3/platforms/linux64GccDPOpt
ParaView_DIR=$HOME/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
PARAVIEW_DIR=/opt/packages/Paraview3
ParaView_VERSION=3.6.1
MPI_HOME=$HOME/OpenFOAM/ThirdParty-1.6.x/openmpi-1.3.3

修改OpenFOAM的配置

For OpenFOAM-11/etc/bashrc,

1
2
3
4
5
6
7
8
9
10
11
12
13
59 #- Compiler location:
60 # WM_COMPILER_TYPE= system | ThirdParty (OpenFOAM)
61 export WM_COMPILER_TYPE=system

63 #- Compiler:
64 # WM_COMPILER = Gcc | Gcc48 ... Gcc62 | Clang | Icx
65 export WM_COMPILER=Icx
66 unset WM_COMPILER_ARCH WM_COMPILER_LIB_ARCH

86 #- MPI implementation:
87 # WM_MPLIB = SYSTEMOPENMPI | OPENMPI | SYSTEMMPI | MPICH | MPICH-GM | HPMPI
88 # | MPI | FJMPI | QSMPI | SGIMPI | INTELMPI
89 export WM_MPLIB=INTELMPI

For cannot find -lz issude,

check -lz

使用以下命令查詢gcc能否搜尋到指定的庫檔:

1
2
3
4
5
6
7
 $ gcc -lz --verbose
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
...
/usr/bin/ld: cannot find -lz
collect2: error: ld returned 1 exit status

若安裝了軟體,找到了庫檔案的路徑。但依然會提示上述錯誤。則表示gcc的搜尋路徑不包含該庫檔案所在的路徑。

  • 修改環境變數
    • $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/biosoft/hdf5-1.8.15-patch1/lib/
    • 修改環境變數 LD_LIBRARY_PATH,加入函式庫檔案所在路徑。使用 export 指令使修改生效。
    • $ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/biosoft/hdf5-1.8.15-patch1/lib/' >> ~/.bashrc
    • $ source ~/.bashrc
    • 將上述 export 指令加入設定檔 ~/.bashrc,使其永久生效。
    • $ export LIBRARY_PATH=/opt/biosoft/hdf5-1.8.15-patch1/lib/:$LIBRARY_PATH
    • 若修改變數 LD_LIBRARY_PATH 不奏效,則修改變數 LIBRARY_PATH
  1. cannot find -lz
    1. -lz - is zlib, http://zlib.net/
      1. You may need -L/opt/lib to specify a path. This should give you another linker error, looking for zlib. Then add -lz.
    2. -lm - is the math library as you've worked out (implementation defined AFAIK)
    3. -lrt - provides POSIX realtime extensions: http://www.s-gms.ms.edus.si/cgi-bin/man-cgi?librt+3LIB
  2. vim ThirdParty-11/scotch_6.0.9/src/Makefile.inc
1
2
3
4
5
 6 AR      = icx

9 CCS = icx
10 CCP = mpiicc
11 CCD = mpiicc

setup env

  • openfoam_env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Openfoam needs
source /home/wpsze/micromamba/etc/profile.d/micromamba.sh
micromamba activate cfd_env

source /home/wpsze/intel/oneapi/setvars.sh intel64
export MPI_ROOT=/home/wpsze/intel/oneapi/mpi/2021.9.0
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/wpsze/micromamba/envs/cfd_env/lib
export C_INCLUDE_PATH=/home/wpsze/micromamba/envs/cfd_env/include
export CPLUS_INCLUDE_PATH=/home/wpsze/micromamba/envs/cfd_env/include

export LIBRARY_PATH=/home/wpsze/micromamba/envs/cfd_env/lib
export PATH=/home/wpsze/intel/oneapi/mpi/2021.9.0/bin:$PATH

make --version
cmake --version
gcc --version
g++ --version
gfortran --version
which mpiifort
mpiifort --version
which mpiicc
mpiicc --version

mpirun -np 4 echo "hello"

編譯安裝 ThirdParty

進入到 ThirdParty 的解壓縮目錄

在執行編譯之前,先輸入指令 echo $MPI_ROOT 查看該變數是否有值! 這點十分重要,如果MPI_ROOT為空,那麼編譯 ThirdParty 不會報錯,但是會有一個warning資訊說缺少MPI_ROOT,會缺少 ptscotchf.h 。這就導致在編譯 OpenFOAM的時候,會報錯說缺少 ptscotchf.h 導致編譯失敗!一般來說,載入intel編譯環境之後會自動 export MPI_ROOT 這個變量,但是也可以手動設置,輸入 which mpicc ,然後複製該目錄,複製到 mpi 層即可!

然後執行 ./Allclean 進行清理,再執行 ./Allwmake 進行編譯

如果發生報錯:本目錄不是 WM_THIRD_PARTY_DIR 目錄。說明 OpenFOAM 的 bashrc 檔案配置出現了問題,請確保 WM_THIRD_PARTY_DIR 所指定的目錄確定是ThirdParty目錄的上層目錄。

編譯完成之後,在同一會話視窗下回到OpenFOAM的安裝目錄,然後開始編譯安裝OpenFOAM

1
2
3
4
5
6
7
8
9
10
11
source /home/wpsze/openfoam/openfoam11/openfoam_env.sh

source /home/wpsze/openfoam/openfoam11/OpenFOAM-11/etc/bashrc
cd /home/wpsze/openfoam/openfoam11/ThirdParty-11

pwd
echo $PATH
echo $MPI_ROOT

./Allclean
./Allwmake | tee Allwmake.log

output:

1
2
3
4
5
6
7
8
9
10
========================================
Build Metis decomposition
optional component Metis was not found
========================================
Build Zoltan decomposition
optional component Zoltan was not found

========================================
Done ThirdParty Allwmake
========================================

編譯安裝 OpenFOAM

進入到OpenFOAM 的安裝目錄,執行 ./Allwmake -j 以開始編譯,-j 這一參數的意思是調用起所有的CPU核心來並行編譯,當然,如果不希望調用起這麼多核,也可以指定核心數,例如 ./Allwmake -j 8 ,只使用8 個核心

編譯過程十分漫長,如果編譯中途報錯說無法建立xx目錄,手動建立即可,然後重新執行 ./Allwmake -j 會從中斷處開始編譯而不是重新從頭開始編譯。

1
2
3
4
5
6
7
8
9
10
source /home/wpsze/openfoam/openfoam11/openfoam_env.sh

source /home/wpsze/openfoam/openfoam11/OpenFOAM-11/etc/bashrc
cd /home/wpsze/openfoam/openfoam11/OpenFOAM-11

pwd
echo $MPI_ROOT

./Allclean
./Allwmake -j 16 | tee Allwmake.log

配置運作環境

設定與編譯時相同的 MPI 編譯環境 - 將 OpenFOAM-x.0 裡面的 bin和platforms/linux64IccDPInt32Opt/bin 加入 PATH - 將 OpenFOAM-x.0 裡面的 platforms/linux64IccDPInt32Opt/lib 及其子目錄加入 LD_LIBRARY_PATH - 將 ThirdParty-x.0 裡面的 platforms/linux64IccDPInt32/lib 及其子目錄加入 LD_LIBRARY_PATH

測試OpenFOAM

  • 新建一個測試目錄,將內容複製進去,然後執行OpenFOAM指令測試,如下:
  • cp -r OpenFoam-x.0/tutorials/incompressible/simpleFoam/pitzDaily .
  • cd pitzDaily
  • blockMesh
  • simpleFoam

ParaView(後處理工具)安裝

安裝OpenFOAM之後,還需要安裝ParaView。主要用於對OpenFOAM算例進行後處理。 Paraview的安裝有倆種方式。

  • 一種是安裝原版paraivew,
  • 一種是在OpenFOAM環境中編譯paraFoam。

注意,原版ParaView不能顯示拉格朗日粒子,但處理大網格算例較快。可按照所需進行選擇。也可兩者同時安裝。

原版ParaView:可用透過下面的指令來安裝:

1
sudo apt install paraview
在使用的過程中,可以在OpenFOAM算例下建立一個空檔案並命名為case.foam,然後在終端機鍵入paraview即可運作。運行後,用ParaView打開case.foam即可。

編譯版paraFoam:一次複製下面所有內容到終端機:

1
2
3
4
5
6
7
cd $HOME/OpenFOAM/ThirdParty-11 &&
sudo apt-get install git cmake build-essential libgl1-mesa-dev libxt-dev libqt5x11extras5-dev libqt5help5 qttools5-dev qtxmlpatterns5-dev-tools libqt5svg5-devm-py3335-m​​im-pyon ninja-build qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools &&
./makeParaView &&
wmRefresh &&
cd $FOAM_UTILITIES/postProcessing/graphics/PVReaders &&
./Allwclean &&
./Allwmake

其會自動下載 ParaView 並開始編譯,編譯過程較長。然後鍵入 paraFoam 即可運行,其會自動建立一個後綴為 .OpenFOAM 的文件,並自動掛載。

Create a empty file as .foam

在資料夾中新增一個 .foam 的空文件,如

1
$ touch test.foam

使用 paraview 開啟 test.foam,即可查看執行結果。

Remote paraview (Recommend)

Remote side (HPC),

  • create a conda env
1
2
3
$ micromamba env create -n paraview
$ micromamba activate paraview
$ micromamba install paraview
  • open a server with define port number
1
2
3
4
5
6
$ cd /Case-dir/
$ touch case.foam
$ pvserver --server-port=5566
Waiting for client...
Connection URL: cs://node.HPC.com:5566
Accepting connection(s): node.HPC.com:5566

If pvserver: error while loading shared libraries: libcgns.so.3.4: cannot open shared object file: No such file or directory,

Local PC,

  • Open a new terminal, ssh -N -L 5566:localhost:5566 username@remote-ip
  • Download the same version of paraview. link
  • Open paraview, file --> connect (setup)

Remark: Please re-build $ pvserver --server-port=5566 after disconnect. (pvserver is Exited automatically.)

1
2
3
4
5
6
7
8
9

Remark: "Display is not acessible on the server side. ......" may be login/multiple nodes issue. But, the connection is Done.

OpenFOAM多版本共存

不同大廠的OpenFOAM版本各有特性,因此使用者可能有多版本OpenFOAM共存的需求。多版本OpenFOAM共存非常簡單。舉例說明:如果使用者打算在Ubuntu系統上安裝OpenFOAM-11以及OpenFOAM-8,

1
2
alias of11="source ~/OpenFOAM/OpenFOAM-11/etc/bashrc"
alias of8="source ~/OpenFOAM/OpenFOAM-8/etc/bashrc"

Parallel execution

Scalability

200万网格并行算力测试(OpenFOAM版本)

  • Model name: Intel(R) Xeon Phi(TM) CPU 7250 @ 1.40GHz
    • cpu MHz : 1500.915
    • Socket(s) : 1
    • cpu cores : 68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# cores   Wall time (s):
------------------------
68 215.05
64 240.74
48 290.68
32 298.58
24 365.3
16 544.95
8 721.1
4 1366.75
2 2382.85
1 4529.38

# cores Wall time (s):
------------------------
204 248.78
136 206.09
68 212.28

# cores Wall time (s):
------------------------
204 251.24
136 207.51
68 207.64
  • model name : Intel(R) Xeon(R) Gold 6342 CPU @ 2.80GHz
    • cpu MHz : 3500.000
    • Socket(s) : 2
    • cpu cores : 24
    • siblings : 48
1
2
3
4
5
6
7
8
9
# cores   Wall time (s):
------------------------
48 55.82
24 92.98
16 132.98
8 175.14
4 348.56
2 554.62
1 920.68

性能测试CFD标准算例

  • 200万网格/OpenFOAM
    • 适用于机器内存大于16G的机器
  • 2000万网格/OpenFOAM
    • 适用于机器内存大于70G的机器
  • 2亿网格/OpenFOAM
    • 适用于机器内存大于512G的机器

References

  1. 使用Intel编译器编译OpenFOAM
  2. 使用OpenFOAM软件进行流体力学仿真计算
  3. Linux 平台 OpenFOAM 安装及调试指南【附安装脚本】
  4. 天河 2 号超算安装 OpenFOAM 7 (不含CGAL)
  5. y.tab.c:270:6: error: conflicting types for ‘scotchyyerror’
    1. It means that the scotch library from ThirdParty-10 did not compile successfully. Do you have any ideas about how to solve it? I changed the line 65 in etc/bashrc to use the Intel compiler (because I think that it was possible to compile scotch with icx), however the scotch compilation during the execution of ./Allwmake still used gcc despite my changes.
  6. /usr/bin/ld: cannot find -lxxx 的解决办法
  7. LIBRARY_PATH和LD_LIBRARY_PATH环境变量的区别
    1. LIBRARY_PATH 环境变量用于在程序编译期间查找动态链接库时指定查找共享库的路径
    2. LD_LIBRARY_PATH 环境变量用于在程序加载运行期间查找动态链接库时指定除了系统默认路径之外的其他路径

CFD | OpenFOAM Installation
https://waipangsze.github.io/2024/11/20/CFD-openfoam-installation/
Author
wpsze
Posted on
November 20, 2024
Updated on
January 16, 2025
Licensed under