Flou1D is a one-dimensional solver for the Navier-Stokes equations. It was conceived as a research tool and thus, ease of use has been favored over performance.
Compilation is handled by CMake
:
-
Create a separate folder for the build:
mkdir build
-
Move to the new folder:
cd build
-
Generate the compilation files:
ccmake ..
-
Compile the code:
make [-j #nprocs]
Other compilation tools can be used in step 4 instead of make
. More information in this
link.