Files
openfoam/tutorials/compressible/rhoSimpleFoam/squareBend/system/sampleCellCentres
Mark Olesen 8a7221cf50 TUT: update tutorials to use dictionary-style sets
- can now specify sampled sets as dictionary entries instead of a list
  entry.
    can now use:  sets { ... }
    instead of:   sets ( ... );

  This is similar to sampled surfaces and makes it easier to
  manage with dictionary manipulation tools.

TUT: update to use writeTime instead of outputTime
2022-03-10 19:45:20 +01:00

36 lines
626 B
C++

// -*- C++ -*-
sampleSets
{
type sets;
libs (sampling);
log on;
enabled true;
writeControl timeStep;
writeInterval 10;
setFormat vtk;
setFormat csv;
interpolationScheme cell;
// fields ( U p );
fields ( U );
sets
{
centres
{
type cellCentre;
// axis xyz; // default: xyz
// bounds (-0.2 -1 -1) (-0.195 0 1);
bounds (-0.025 -1 -1) (-0.0225 0 1); // single cell layer
}
}
}
// ************************************************************************* //