1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
// -*- C++ -*-
// Minimal example of using the ensight write function object.
// Many more options possible
ensightWrite
{
type ensightWrite;
libs (utilityFunctionObjects);
log true;
nodeValues true;
// Fields to output (words or regex)
fields (U p "(k|epsilon|omega)");
// Limit output region
bounds (0 0 0) (245 180 80);
//- Write more frequent than fields
writeControl timeStep;
writeInterval 5;
}
// ************************************************************************* //
|