- user-selectable format (vtk or vtu, ascii or binary) - dictionary syntax closer to ensightWrite - tutorial example in windAroundBuildings
18 lines
428 B
C++
18 lines
428 B
C++
// -*- 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;
|
|
writeInterval 1;
|
|
}
|
|
|
|
// ************************************************************************* //
|