The DAFoam package can be compiled with various dependency versions. Here we elaborate on how to compile it on Ubuntu 20.04 using the dependencies shown in the following table.
Ubuntu | Compiler | OpenMPI | mpi4py | PETSc | petsc4py | CGNS | Python | Numpy | Scipy | Cython |
---|---|---|---|---|---|---|---|---|---|---|
20.04.5 | gcc/9.4 | 3.1.6 | 3.1.3 | 3.14.6 | 3.14.1 | 4.1.2 | 3.8 | 1.21.2 | 1.7.1 | 0.29.21 |
To compile, you can just copy the code blocks in the following steps and run them on the terminal. If a code block contains multiple lines, copy all the lines and run them on the terminal. Make sure each step run successfully before going to the next one. The entire compilation may take a few hours, the most time-consuming part is to compile OpenFOAM.
Prerequisites
Run this on terminal to install prerequisites:
sudo apt-get update && \ sudo apt-get install -y build-essential flex bison cmake zlib1g-dev libboost-system-dev libboost-thread-dev libreadline-dev libncurses-dev libxt-dev freeglut3-dev texinfo libscotch-dev libcgal-dev gfortran swig wget git vim cmake-curses-gui libfl-dev apt-utils libibverbs-dev ca-certificates pkg-config liblapack-dev libmetis-dev --no-install-recommends
Root folder
First create a “dafoam” folder in your home directory. Then create a “loadDAFoam.sh” bash script and set up the root path $DAFOAM_ROOT_PATH. Finally, we will create the “packages”, “OpenFOAM”, and “repos” folders. We will compile and install everything in $DAFOAM_ROOT_PATH.
mkdir -p $HOME/dafoam && \ mkdir -p $HOME/dafoam/packages $HOME/dafoam/OpenFOAM $HOME/dafoam/OpenFOAM/sharedBins $HOME/dafoam/OpenFOAM/sharedLibs $HOME/dafoam/repos && \ echo '#!/bin/bash' > $HOME/dafoam/loadDAFoam.sh && \ echo '# DAFoam root path' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export DAFOAM_ROOT_PATH=$HOME/dafoam' >> $HOME/dafoam/loadDAFoam.sh && \ chmod 755 $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh
Python
Install Miniconda3 by running this command:
cd $HOME/dafoam/packages && \ wget https://repo.anaconda.com/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh && \ chmod 755 Miniconda3-py38_4.10.3-Linux-x86_64.sh && \ ./Miniconda3-py38_4.10.3-Linux-x86_64.sh -b -p $HOME/dafoam/packages/miniconda3 && \ echo '# Miniconda3' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PATH=$DAFOAM_ROOT_PATH/packages/miniconda3/bin:$PATH' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$DAFOAM_ROOT_PATH/packages/miniconda3/lib' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PYTHONUSERBASE=no-local-libs' >> $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh
In the above, we use “export PYTHONUSERBASE=no-local-libs” to bypass the site-packages in user’s .local directory because they may conflict with the DAFoam packages. Then we can upgrade the pip utility:
pip install --upgrade pip && \ pip install numpy==1.21.2 && \ pip install scipy==1.7.1 && \ pip install cython==0.29.21 && \ pip install numpy-stl==2.16.0 && \ pip install pynastran==1.3.3 && \ pip install nptyping==1.4.4 && \ pip install tensorflow-cpu==2.12
OpenMPI
First append relevant environmental variables by running:
echo '# OpenMPI-3.1.6' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export MPI_INSTALL_DIR=$DAFOAM_ROOT_PATH/packages/openmpi-3.1.6/opt-gfortran' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MPI_INSTALL_DIR/lib' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PATH=$MPI_INSTALL_DIR/bin:$PATH' >> $HOME/dafoam/loadDAFoam.sh&& \ . $HOME/dafoam/loadDAFoam.sh
Then, configure and build OpenMPI:
cd $HOME/dafoam/packages && \ wget https://download.open-mpi.org/release/open-mpi/v3.1/openmpi-3.1.6.tar.gz && \ tar -xvf openmpi-3.1.6.tar.gz && \ cd openmpi-3.1.6 && \ ./configure --prefix=$MPI_INSTALL_DIR && \ make all install
To verify the installation, run:
mpicc -v
You should see the version of the compiled OpenMPI.
Finally, install mpi4py-3.1.3:
pip install mpi4py==3.1.3
Petsc
First append relevant environmental variables by running:
echo '# Petsc-3.14.6' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PETSC_DIR=$DAFOAM_ROOT_PATH/packages/petsc-3.14.6' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PETSC_ARCH=real-opt' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PETSC_DIR/$PETSC_ARCH/lib' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PETSC_LIB=$PETSC_DIR/$PETSC_ARCH/lib' >> $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh
Then, configure and compile:
cd $HOME/dafoam/packages && \ wget https://www.mcs.anl.gov/petsc/mirror/release-snapshots/petsc-3.14.6.tar.gz && \ tar -xvf petsc-3.14.6.tar.gz && \ cd petsc-3.14.6 && \ ./configure --PETSC_ARCH=real-opt --with-scalar-type=real --with-debugging=0 --download-metis=yes --download-parmetis=yes --download-superlu_dist=yes --download-fblaslapack=yes --with-shared-libraries=yes --with-fortran-bindings=1 --with-cxx-dialect=C++11 && \ make PETSC_DIR=$HOME/dafoam/packages/petsc-3.14.6 PETSC_ARCH=real-opt all
Finally, install petsc4py-3.14.1:
cd $PETSC_DIR/src/binding/petsc4py && \ pip install .
CGNS
First append relevant environmental variables by running:
echo '# CGNS-4.1.2' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export CGNS_HOME=$DAFOAM_ROOT_PATH/packages/CGNS-4.1.2/opt-gfortran' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PATH=$PATH:$CGNS_HOME/bin' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CGNS_HOME/lib' >> $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh
Then, configure and compile:
cd $HOME/dafoam/packages && \ wget https://github.com/CGNS/CGNS/archive/v4.1.2.tar.gz && \ tar -xvaf v4.1.2.tar.gz && \ cd CGNS-4.1.2 && \ mkdir -p build && \ cd build && \ cmake .. -DCGNS_ENABLE_FORTRAN=1 -DCMAKE_INSTALL_PREFIX=$CGNS_HOME -DCGNS_BUILD_CGNSTOOLS=0 && \ make all install
IPOPT
Download Ipopt-3.13.2 and set up the relevant environmental variables to loadDAFoam.sh by running:
echo '# Ipopt' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export IPOPT_DIR=$DAFOAM_ROOT_PATH/packages/Ipopt' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$IPOPT_DIR/lib' >> $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh
Next, compiles the ThirdParty dependencies Metis and Mumps by running:
cd $HOME/dafoam/packages && \ git clone -b stable/3.13 https://github.com/coin-or/Ipopt.git && \ cd $IPOPT_DIR && \ git clone -b stable/2.1 https://github.com/coin-or-tools/ThirdParty-Mumps.git && \ cd ThirdParty-Mumps && \ ./get.Mumps && \ ./configure --prefix=$IPOPT_DIR && \ make && \ make install
Finally, compile Ipopt by running:
cd $IPOPT_DIR && \ mkdir build && \ cd build && \ ../configure --prefix=${IPOPT_DIR} --disable-java --with-mumps --with-mumps-lflags="-L${IPOPT_DIR}/lib -lcoinmumps" --with-mumps-cflags="-I${IPOPT_DIR}/include/coin-or/mumps" && \ make && \ make install
MACH-Aero framework
The supported repo versions in the MACH-Aero framework for DAFoam-v3.1.2 is as follows
baseclasses | pySpline | pyGeo | multipoint | pyHyp | cgnsUtilities | IDWarp | pyOptSparse | pyOFM | DAFoam |
---|---|---|---|---|---|---|---|---|---|
v1.6.1 | v1.5.2 | v1.13.0 | v1.4.0 | v2.5.0 | v2.6.0 | v2.6.0 | v2.10.1 | v1.2.2 | v3.1.2 |
Now run this command to install all the repos for MACH-Aero:
. $HOME/dafoam/loadDAFoam.sh && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/baseclasses/archive/v1.6.1.tar.gz -O baseclasses.tar.gz && \ tar -xvf baseclasses.tar.gz && cd baseclasses-1.6.1 && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/pyspline/archive/v1.5.2.tar.gz -O pyspline.tar.gz && \ tar -xvf pyspline.tar.gz && cd pyspline-1.5.2 && \ cp config/defaults/config.LINUX_GFORTRAN.mk config/config.mk && \ make && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/pygeo/archive/v1.13.0.tar.gz -O pygeo.tar.gz && \ tar -xvf pygeo.tar.gz && cd pygeo-1.13.0 && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/multipoint/archive/v1.4.0.tar.gz -O multipoint.tar.gz && \ tar -xvf multipoint.tar.gz && cd multipoint-1.4.0 && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/pyhyp/archive/v2.5.0.tar.gz -O pyhyp.tar.gz && \ tar -xvf pyhyp.tar.gz && cd pyhyp-2.5.0 && \ cp -r config/defaults/config.LINUX_GFORTRAN_OPENMPI.mk config/config.mk && \ make && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/cgnsutilities/archive/v2.6.0.tar.gz -O cgnsutilities.tar.gz && \ tar -xvf cgnsutilities.tar.gz && cd cgnsutilities-2.6.0 && \ cp config/defaults/config.LINUX_GFORTRAN.mk config/config.mk && \ make && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/idwarp/archive/v2.6.0.tar.gz -O idwarp.tar.gz && \ tar -xvf idwarp.tar.gz && cd idwarp-2.6.0 && \ cp -r config/defaults/config.LINUX_GFORTRAN_OPENMPI.mk config/config.mk && \ make && pip install . && \ cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/pyoptsparse/archive/v2.10.1.tar.gz -O pyoptsparse.tar.gz && \ tar -xvf pyoptsparse.tar.gz && cd pyoptsparse-2.10.1 && \ pip install .
OpenFOAM
There are three versions of OpenFOAM to compile: original, reverse-mode AD (ADR), and forward-mode AD (ADF). The reverse-mode AD enables the JacobianFree adjoint option, and the forward-mode AD enables the brute-force AD for verifying the adjoint accuracy.
Build Original
Run the following:
cd $HOME/dafoam/OpenFOAM && \ wget https://sourceforge.net/projects/openfoam/files/v1812/OpenFOAM-v1812.tgz/download -O OpenFOAM-v1812.tgz && \ wget https://sourceforge.net/projects/openfoam/files/v1812/ThirdParty-v1812.tgz/download -O ThirdParty-v1812.tgz && \ tar -xvf OpenFOAM-v1812.tgz && \ tar -xvf ThirdParty-v1812.tgz && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812 && \ sed -i 's/$HOME/$DAFOAM_ROOT_PATH/g' etc/bashrc && \ wget https://github.com/DAFoam/files/releases/download/v1.0.0/UPstream.C && \ mv UPstream.C src/Pstream/mpi/UPstream.C && \ sed -i '159s/.*/ Foam::List< char >\&\& buffer,/g' src/OpenFOAM/db/IOstreams/memory/IListStream.H && \ echo '# OpenFOAM-v1812' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'source $DAFOAM_ROOT_PATH/OpenFOAM/OpenFOAM-v1812/etc/bashrc' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export LD_LIBRARY_PATH=$DAFOAM_ROOT_PATH/OpenFOAM/sharedLibs:$LD_LIBRARY_PATH' >> $HOME/dafoam/loadDAFoam.sh && \ echo 'export PATH=$DAFOAM_ROOT_PATH/OpenFOAM/sharedBins:$PATH' >> $HOME/dafoam/loadDAFoam.sh && \ . $HOME/dafoam/loadDAFoam.sh && \ export WM_NCOMPPROCS=4 && \ ./Allwmake
WM_NCOMPPROCS
parameter before running ./Allwmake
Finally, verify the installation by running:
simpleFoam -help
It should see some basic information of OpenFOAM
Build Reverse Mode AD
Run the following:
cd $HOME/dafoam/OpenFOAM && \ wget https://github.com/DAFoam/OpenFOAM-v1812-AD/archive/v1.3.1.tar.gz -O OpenFOAM-v1812-AD.tgz && \ tar -xvf OpenFOAM-v1812-AD.tgz && mv OpenFOAM-v1812-AD-* OpenFOAM-v1812-ADR && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812-ADR && \ sed -i 's/WM_PROJECT_VERSION=v1812-AD/WM_PROJECT_VERSION=v1812-ADR/g' etc/bashrc && \ sed -i 's/$HOME/$DAFOAM_ROOT_PATH/g' etc/bashrc && \ sed -i 's/export WM_CODI_AD_MODE=CODI_AD_FORWARD/export WM_CODI_AD_MODE=CODI_AD_REVERSE/g' etc/bashrc && \ . $HOME/dafoam/loadDAFoam.sh && \ source etc/bashrc && \ export WM_NCOMPPROCS=4 && \ ./Allwmake 2> warningLog.txt
Then, verify the installation by running:
DASimpleFoamReverseAD -help
It should see some basic information of DASimpleFoamReverseAD.
After OpenFOAM-v1812-ADR is compiled and verified, we need to link all the compiled AD libraries to the original OpenFOAM-v1812 folder. Note that we need to link the relative path because we want this to be portable.
cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib && \ ln -s ../../../../OpenFOAM-v1812-ADR/platforms/*/lib/*.so . && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib/dummy && \ ln -s ../../../../../OpenFOAM-v1812-ADR/platforms/*/lib/dummy/*.so . && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib/openmpi-system && \ ln -s ../../../../../OpenFOAM-v1812-ADR/platforms/*/lib/openmpi-system/*.so .
Build Forward Mode AD
Run the following:
cd $HOME/dafoam/OpenFOAM && \ wget https://github.com/DAFoam/OpenFOAM-v1812-AD/archive/v1.3.1.tar.gz -O OpenFOAM-v1812-AD.tgz && \ tar -xvf OpenFOAM-v1812-AD.tgz && mv OpenFOAM-v1812-AD-* OpenFOAM-v1812-ADF && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812-ADF && \ sed -i 's/WM_PROJECT_VERSION=v1812-AD/WM_PROJECT_VERSION=v1812-ADF/g' etc/bashrc && \ sed -i 's/$HOME/$DAFOAM_ROOT_PATH/g' etc/bashrc && \ . $HOME/dafoam/loadDAFoam.sh && \ source etc/bashrc && \ export WM_NCOMPPROCS=4 && \ ./Allwmake 2> warningLog.txt
After OpenFOAM-v1812-ADF is compiled and verified, we need to link all the compiled AD libraries to the original OpenFOAM-v1812 folder. Note that we need to link the relative path because we want this to be portable.
cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib && \ ln -s ../../../../OpenFOAM-v1812-ADF/platforms/*/lib/*.so . && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib/dummy && \ ln -s ../../../../../OpenFOAM-v1812-ADF/platforms/*/lib/dummy/*.so . && \ cd $HOME/dafoam/OpenFOAM/OpenFOAM-v1812/platforms/*/lib/openmpi-system && \ ln -s ../../../../../OpenFOAM-v1812-ADF/platforms/*/lib/openmpi-system/*.so .
Once done, unset the AD environment, and re-source the original OpenFOAM-v1812. This step is needed everytime you compile an AD versions of DAFoam or OpenFOAM!
unset WM_CODI_AD_MODE && \ . $HOME/dafoam/loadDAFoam.sh
pyOFM
Compile pyOFM by running:
cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/pyofm/archive/v1.2.2.tar.gz -O pyofm.tar.gz && \ tar -xvf pyofm.tar.gz && cd pyofm-1.2.2 && \ . $HOME/dafoam/loadDAFoam.sh && \ make && pip install .
DAFoam
Similar to OpenFOAM, we need to compile three versions of DAFoam: original, reverse-mode AD (ADR), and forward-mode AD (ADF). It can be done by running the following commands:
cd $HOME/dafoam/repos && \ wget https://github.com/mdolab/dafoam/archive/v3.1.2.tar.gz -O dafoam.tar.gz && \ tar -xvf dafoam.tar.gz && cd dafoam-* && \ . $HOME/dafoam/loadDAFoam.sh && \ export DAFOAM_NO_WARNINGS=1 && \ ./Allmake && \ source $HOME/dafoam/OpenFOAM/OpenFOAM-v1812-ADR/etc/bashrc && \ ./Allclean && ./Allmake && \ source $HOME/dafoam/OpenFOAM/OpenFOAM-v1812-ADF/etc/bashrc && \ ./Allclean && ./Allmake && \ pip install .
Once done, unset the AD environment, and re-source the original OpenFOAM-v1812. This step is needed everytime you compile an AD versions of DAFoam!
unset WM_CODI_AD_MODE && \ . $HOME/dafoam/loadDAFoam.sh
MDO packages
To perform multidisplinary deisgn optimization, we need to install the following packages:
OpenMDAO is an open-source multidisciplinary optimization framework.
. $HOME/dafoam/loadDAFoam.sh && \ pip install openmdao==3.26
Mphys is an interface that faciliate the interation between low- and high-fidelity tools within OpenMDAO.
. $HOME/dafoam/loadDAFoam.sh && \ cd $HOME/dafoam/repos && \ wget https://github.com/OpenMDAO/mphys/archive/b6db107d05937d95a46b392b6f5759677a93e46d.tar.gz -O mphys.tar.gz && \ tar -xvf mphys.tar.gz && mv mphys-* mphys && \ cd mphys && pip install .
FUNtoFEM is a generic aeroelastic analysis and adjoint-based gradient evaluation tools.
. $HOME/dafoam/loadDAFoam.sh && \ cd $HOME/dafoam/repos && \ wget https://github.com/smdogroup/funtofem/archive/refs/tags/v0.3.tar.gz -O funtofem.tar.gz && \ tar -xvf funtofem.tar.gz && mv funtofem-* funtofem && \ cd funtofem && cp Makefile.in.info Makefile.in && \ sed -i "s/git/dafoam\/repos/g" Makefile.in && \ make && pip install -e .
TACS is a finite-element library for analysis and adjoint-based gradient evaluation
. $HOME/dafoam/loadDAFoam.sh && \ cd $HOME/dafoam/repos && \ wget https://github.com/smdogroup/tacs/archive/refs/tags/v3.4.0.tar.gz -O tacs.tar.gz && \ tar -xvf tacs.tar.gz && mv tacs-* tacs && \ cd tacs/extern && \ wget https://github.com/DAFoam/files/releases/download/TACS_Extern/TACS_extern.tar.gz && tar -xzf TACS_extern.tar.gz && \ rm -rf metis-4.0.3* && \ wget https://github.com/DAFoam/files/releases/download/TACS_Extern/metis-5.1.0.tar.gz && \ tar -czvf TACS_extern.tar.gz metis*.tar.gz UFconfig*.tar.gz AMD*.tar.gz &&\ tar -xzf metis*.tar.gz && \ cd metis-5.1.0 && make config prefix=$HOME/dafoam/repos/tacs/extern/metis/ CFLAGS="-fPIC" && make install && \ cd ../../ && \ cp Makefile.in.info Makefile.in && \ ls && \ sed -i "s/git/dafoam\/repos/g" Makefile.in && \ make && pip install -e . && \ cd extern/f5tovtk && make && cp f5tovtk $HOME/dafoam/OpenFOAM/sharedBins
DAFoam regression tests
To verify the DAFoam installation, you can run the regression tests:
cd $HOME/dafoam/repos/dafoam-*/tests && ./Allrun
The regression tests should take less than 30 minutes. The test progress will be printed to screen. Make sure you see this at the end:
************************************************************ **************** All DAFoam tests passed! ****************** ************************************************************
In summary, here is the folder structures for all the installed packages:
$HOME/dafoam loadDAFoam.sh - OpenFOAM - OpenFOAM-v1812 - OpenFOAM-v1812-ADF - OpenFOAM-v1812-ADR - ThirdParty-v1812 - packages - Ipopt - miniconda3 - CGNS-4.1.2 - openmpi-3.1.6 - petsc-3.14.6 - repos - baseclasses - cgnsutilities - dafoam - funtofem - idwarp - multipoint - mphys - pygeo - pyhyp - pyofm - pyoptsparse - pyspline - tacs
The loadDAFoam.sh file should look like this:
#!/bin/bash # DAFoam root path export DAFOAM_ROOT_PATH=$HOME/dafoam # Miniconda3 export PATH=$DAFOAM_ROOT_PATH/packages/miniconda3/bin:$PATH export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$DAFOAM_ROOT_PATH/packages/miniconda3/lib export PYTHONUSERBASE=no-local-libs # OpenMPI-3.1.6 export MPI_INSTALL_DIR=$DAFOAM_ROOT_PATH/packages/openmpi-3.1.6/opt-gfortran export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MPI_INSTALL_DIR/lib export PATH=$MPI_INSTALL_DIR/bin:$PATH # PETSC export PETSC_DIR=$DAFOAM_ROOT_PATH/packages/petsc-3.14.6 export PETSC_ARCH=real-opt export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PETSC_DIR/$PETSC_ARCH/lib export PETSC_LIB=$PETSC_DIR/$PETSC_ARCH/lib # CGNS-4.1.2 export CGNS_HOME=$DAFOAM_ROOT_PATH/packages/CGNS-4.1.2/opt-gfortran export PATH=$PATH:$CGNS_HOME/bin export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CGNS_HOME/lib # Ipopt export IPOPT_DIR=$DAFOAM_ROOT_PATH/packages/Ipopt export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$IPOPT_DIR/lib # OpenFOAM-v1812 source $DAFOAM_ROOT_PATH/OpenFOAM/OpenFOAM-v1812/etc/bashrc export LD_LIBRARY_PATH=$DAFOAM_ROOT_PATH/OpenFOAM/sharedLibs:$LD_LIBRARY_PATH export PATH=$DAFOAM_ROOT_PATH/OpenFOAM/sharedBins:$PATH
Compile SNOPT for pyOptSparse (optional)
This step is needed if you want to use the SNOPT optimizer. Detailed instructions are available from pyOptSparse Documentation.
SNOPT is a commercial package, and you can purchase it from here. Once you obtain the SNOPT source code, copy all the source files (except for snopth.f) to the “$HOME/dafoam/repos/pyoptsparse-2.10.1/pyoptsparse/pySNOPT/source” folder. Then, run this command to compile pyOptSparse with SNOPT.
cd $HOME/dafoam/repos/pyoptsparse-2.10.1 && \ pip install .
Make the DAFoam package portable (optional)
This step is only needed if you want to change the root path of your installation, e.g., copy your compiled DAFoam packages to another directory.
The only thing you need to do is to modify the interpreter lines “#!” for files in $HOME/dafoam/packages/miniconda3/. This is because Miniconda hard codes the Python path, so we need to chagne it to “#!/usr/bin/env python”
First find an example of the hard-coded interpreter line from $HOME/dafoam/packages/miniconda3/bin/conda. Run this command
head -1 $HOME/dafoam/packages/miniconda3/bin/conda
You may see an output like this:
#!/home/replace_this_with_your_username/dafoam/packages/miniconda3/bin/python
Then run this command to replace all the hard-coded interpreter lines:
sed -i 's,^#\!/home/replace_this_with_your_username/dafoam/packages/miniconda3/bin/python,#!/usr/bin/env python,g' $HOME/dafoam/packages/miniconda3/*/*
Finally, you can change the DAFOAM_ROOT_PATH value (in loadDAFoam.sh) to your new directory, source the “loadDAFoam.sh” script again, and run DAFoam without compiling everything again.