COMP: ensight writer compilation for 64-bit labels (issue #263)

GIT: added missing source file.

ENH: add tutorial example under incompressible/simpleFoam/motorBike
This commit is contained in:
Mark Olesen
2016-10-28 11:49:05 +02:00
parent b2ee629a94
commit aca0b1ca04
5 changed files with 129 additions and 22 deletions

View File

@ -50,6 +50,7 @@ functions
#include "wallBoundedStreamLines"
#include "cuttingPlane"
#include "forceCoeffs"
#include "ensightWrite"
}

View File

@ -0,0 +1,17 @@
// -*- C++ -*-
// Minimal example of using the ensight write function object.
// Many more options possible
ensightWrite
{
type ensightWrite;
libs ("libutilityFunctionObjects.so");
log true;
// Fields to output (words or regex)
fields (U p "(k|epsilon|omega)");
writeControl writeTime;
writeIterval 1;
}
// ************************************************************************* //