mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
18 lines
424 B
C++
18 lines
424 B
C++
// -*- C++ -*-
|
|
// Minimal example of using the ensight write function object.
|
|
// Many more options possible
|
|
ensightWrite
|
|
{
|
|
type ensightWrite;
|
|
libs (utilityFunctionObjects);
|
|
log true;
|
|
|
|
// Fields to output (words or regex)
|
|
fields (U p "(k|epsilon|omega)");
|
|
|
|
writeControl writeTime;
|
|
writeInterval 1;
|
|
}
|
|
|
|
// ************************************************************************* //
|