openfoam/tutorials/finiteArea/surfactantFoam/planeTransport/system/areaWrite
2019-08-30 16:45:45 +02:00

31 lines
518 B
C++

// -*- C++ -*-
// Use the areaWrite function object
areaWrite
{
type areaWrite;
libs (utilityFunctionObjects);
log true;
writeControl writeTime;
writeInterval 1;
// verbose true;
// Fields to output (words or regex)
fields (".*");
surfaceFormat ensight;
// surfaceFormat vtk;
formatOptions
{
vtk
{
format ascii;
}
}
}
// ************************************************************************* //