OpenFOAM: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Draft}} Category:Software ; Description: The OpenFOAM (Open Field Operation and Manipulation) CFD Toolbox is a free, open source CFD software package. OpenFOAM has an ex...") |
No edit summary |
||
Line 5: | Line 5: | ||
; Documentation: [http://www.openfoam.com OpenFOAM homepage] and [http://www.openfoam.org/docs/user/tutorials.php Tutorials]. | ; Documentation: [http://www.openfoam.com OpenFOAM homepage] and [http://www.openfoam.org/docs/user/tutorials.php Tutorials]. | ||
; Usage: | ; Usage: | ||
: OpenFOAM requires substantial preparation of your environment. In order to run OpenFOAM commands (such as <code>paraFoam</code>, <code>blockMesh</code>, etc), you must load a [[ | : OpenFOAM requires substantial preparation of your environment. In order to run OpenFOAM commands (such as <code>paraFoam</code>, <code>blockMesh</code>, etc), you must load a [[Using modules| modulefile]] followed by sourcing a configuration script. | ||
: Here is an example of a serial submission script for OpenFOAM 5.0: | : Here is an example of a serial submission script for OpenFOAM 5.0: | ||
<pre> | <pre> |
Revision as of 19:37, 27 November 2017
This article is a draft
This is not a complete article: This is a draft, a work in progress that is intended to be published into an article, which may or may not be ready for inclusion in the main wiki. It should not necessarily be considered factual or authoritative.
- Description
- The OpenFOAM (Open Field Operation and Manipulation) CFD Toolbox is a free, open source CFD software package. 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.
- Modulefile
openfoam
- Documentation
- OpenFOAM homepage and Tutorials.
- Usage
- OpenFOAM requires substantial preparation of your environment. In order to run OpenFOAM commands (such as
paraFoam
,blockMesh
, etc), you must load a modulefile followed by sourcing a configuration script. - Here is an example of a serial submission script for OpenFOAM 5.0:
#$ -cwd #$ -l h_rt=01:00:00 module purge module load gcc/4.6.4 openmpi/gcc openfoam/ source $OPENFOAM/etc/bashrc blockMesh icoFoam
- Here is an example of a parallel submission script for OpenFOAM 2.3.0:
#$ -cwd #$ -l h_rt=01:00:00 #$ -pe ompi* 4 module purge module load gcc/4.6.4 openmpi/gcc openfoam/2.3.0 source $OPENFOAM/etc/bashrc blockMesh mpirun icoFoam -parallel
- Mesh preparation (
blockMesh
) may be fast enough to be done at the command line (see Head Node Policies). The solver (icoFoam
and others) is usually the most expensive step and should always be submitted as a Grid Engine job except in very small test cases or tutorials.
- Performance
- OpenFOAM can emit a lot of debugging information in very frequent small writes (e.g. hundreds per second). This may lead to poor performance on our network file systems. If you are in stable production and don't need the debug output, you can reduce or disable it with:
$ mkdir -p $HOME/.OpenFOAM/$WM_PROJECT_VERSION $ cp $WM_PROJECT_DIR/etc/controlDict $HOME/.OpenFOAM/$WM_PROJECT_VERSION/
- followed by editing the
debugSwitches
dictionary in$HOME/.OpenFOAM/$WM_PROJECT_VERSION/controlDict
, changing flags from values >0 to 0. (Contribution from C. Lane)