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 typingFLEX
fast lexical analyser, used by OpenFOAM for reading files of third-party formatcmake
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 |
|
載入環境
安裝需要載入 Intel 編譯環境和 gcc 環境,且 gcc 環境不應高於 Intel 編譯器環境
Environment variables
WM options
1 |
|
FOAM options
1 |
|
Other options
1 |
|
修改OpenFOAM的配置
For OpenFOAM-11/etc/bashrc
,
1 |
|
For cannot find -lz issude,
check -lz
使用以下命令查詢gcc能否搜尋到指定的庫檔:
1 |
|
若安裝了軟體,找到了庫檔案的路徑。但依然會提示上述錯誤。則表示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
。
- cannot find -lz
-lz
- is zlib, http://zlib.net/- You may need
-L/opt/lib
to specify a path. This should give you another linker error, looking for zlib. Then add-lz
.
- You may need
-lm
- is the math library as you've worked out (implementation defined AFAIK)-lrt
- provides POSIX realtime extensions: http://www.s-gms.ms.edus.si/cgi-bin/man-cgi?librt+3LIB
- vim
ThirdParty-11/scotch_6.0.9/src/Makefile.inc
1 |
|
setup env
- openfoam_env.sh
1 |
|
編譯安裝 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 |
|
output:
1 |
|
編譯安裝 OpenFOAM
進入到OpenFOAM 的安裝目錄,執行 ./Allwmake -j
以開始編譯,-j
這一參數的意思是調用起所有的CPU核心來並行編譯,當然,如果不希望調用起這麼多核,也可以指定核心數,例如 ./Allwmake -j 8
,只使用8 個核心
編譯過程十分漫長,如果編譯中途報錯說無法建立xx目錄,手動建立即可,然後重新執行 ./Allwmake -j
會從中斷處開始編譯而不是重新從頭開始編譯。
1 |
|
配置運作環境
設定與編譯時相同的 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
編譯版paraFoam:一次複製下面所有內容到終端機: 1
2
3
4
5
6
7cd $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-mim-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 |
|
使用 paraview
開啟 test.foam
,即可查看執行結果。
Remote paraview (Recommend)
- Remote and parallel visualization
- High performance computing: How to connect to a remote ParaView server
Remote side (HPC),
- create a conda env
1 |
|
- open a server with define port number
1 |
|
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.)









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 |
|
Parallel execution
Scalability
- Model name: Intel(R) Xeon Phi(TM) CPU 7250 @ 1.40GHz
- cpu MHz : 1500.915
- Socket(s) : 1
- cpu cores : 68
1 |
|
- model name : Intel(R) Xeon(R) Gold 6342 CPU @ 2.80GHz
- cpu MHz : 3500.000
- Socket(s) : 2
- cpu cores : 24
- siblings : 48
1 |
|
性能测试CFD标准算例
- 200万网格/OpenFOAM
- 适用于机器内存大于16G的机器
- 2000万网格/OpenFOAM
- 适用于机器内存大于70G的机器
- 2亿网格/OpenFOAM
- 适用于机器内存大于512G的机器
References
- 使用Intel编译器编译OpenFOAM
- 使用OpenFOAM软件进行流体力学仿真计算
- Linux 平台 OpenFOAM 安装及调试指南【附安装脚本】
- 天河 2 号超算安装 OpenFOAM 7 (不含CGAL)
- y.tab.c:270:6: error: conflicting types for ‘scotchyyerror’
- 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.
- /usr/bin/ld: cannot find -lxxx 的解决办法
- LIBRARY_PATH和LD_LIBRARY_PATH环境变量的区别
LIBRARY_PATH
环境变量用于在程序编译期间查找动态链接库时指定查找共享库的路径LD_LIBRARY_PATH
环境变量用于在程序加载运行期间查找动态链接库时指定除了系统默认路径之外的其他路径