mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
26 lines
465 B
C++
26 lines
465 B
C++
// -*- C++ -*-
|
|
|
|
sampleIso
|
|
{
|
|
type surfaces;
|
|
libs (sampling);
|
|
|
|
writeControl writeTime;
|
|
surfaceFormat vtk;
|
|
fields (U k epsilon nut);
|
|
|
|
surfaces
|
|
{
|
|
envelope
|
|
{
|
|
type isoSurface;
|
|
isoMethod topo;
|
|
isoField k;
|
|
isoValues (1.28 1.29 1.30 1.31 1.32 1.33);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// *********************************************************************** //
|