OpenFOAM is a free, open source CFD software package released free and open-source under the GNU General Public License through www.openfoam.com. It has a large user base across most areas of engineering and science, from both commercial and academic organisations. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics.
Models are implemented using an equation syntax that closely follows the mathematical notation, e.g. building from the operators for:
time rate of change: \( \ddt{\phi} \)
gradient: \( \grad \phi \)
divergence: \( \div \phi \)
laplacian: \( \laplacian \phi \)
linearised sources: \( s \phi \)
complex equations can be written concisely in a human-readable form. The above example makes use of explicit operations using Finite Volume Calculus, represented by the fvc::
prefix. Implicit terms are represented analogously using the Finite Volume Method fvm::
form, e.g. the transport equation to evolve the P-1 radiation model:
\[ \div \left( \Gamma \grad G \right) - a G = -4 \epsilon \sigma T^4 - E \]
is represented by the code:
Many applications are supplied ready-to-use with the code together with a tutorial suite to showcase the functionality. As an open-source tool, users are able to see the inner workings of the algorithms and models, providing a robust platform for future developments and collaborative research.
The code is released in multiple formats:
For the latest information, please see www.openfoam.com/download/.
On installation, the OpenFOAM distribution comprises the main directories:
Each OpenFOAM case is described by a collection of files, providing details of e.g. the mesh, physical models, solver and post-processing controls:
OpenFOAM is primarily driven using the command line, as described below
OpenFOAM includes an extensive collection of library functionality covering most aspects engineering flow problems, described under the following links:
Applications:
Parallel processing:
OpenFOAM includes many tools to derive additional data from the calculations and generate set-ups for batch-driven processes:
Would you like to suggest an improvement to this page? | Create an issue |
Copyright © 2017-2019 OpenCFD Ltd.