TUT: add vtkWrite to movingCone

This commit is contained in:
Mark Olesen
2018-12-17 18:16:40 +01:00
parent a85fb097ef
commit 7ee9c3b8c0
2 changed files with 18 additions and 0 deletions

View File

@ -52,6 +52,7 @@ maxCo 0.2;
functions
{
#include "cuttingPlane"
#include "vtkWrite"
}
// ************************************************************************* //

View File

@ -0,0 +1,17 @@
// -*- C++ -*-
// Minimal example of using the vtkWrite function object.
vtkWrite
{
type vtkWrite;
libs ("libutilityFunctionObjects.so");
writeControl writeTime;
boundary false;
// Fields to output (words or regex)
fields (U p "(k|epsilon|omega)");
}
// ************************************************************************* //