openfoam/tutorials/incompressible/simpleFoam/backwardFacingStep2D/system/sample
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

67 lines
1.2 KiB
C++

// -*- C++ -*-
type sets;
libs (sampling);
writeControl onEnd;
interpolationScheme cellPoint;
setFormat raw;
fields (p U turbulenceProperties:devReff);
sets
{
Uref
{
type cloud;
axis y;
points ((-0.0508 0.0508 0.01));
}
x_by_h_m04
{
type face;
axis y;
start (-0.0508 -0.0127 0);
end (-0.0508 0.1016 0);
nPoints 100;
}
x_by_h_01
{
type face;
axis y;
start (0.0127 -0.0127 0);
end (0.0127 0.1016 0);
nPoints 100;
}
x_by_h_04
{
type face;
axis y;
start (0.0508 -0.0127 0);
end (0.0508 0.1016 0);
nPoints 100;
}
x_by_h_06
{
type face;
axis y;
start (0.0762 -0.0127 0);
end (0.0762 0.1016 0);
nPoints 100;
}
x_by_h_10
{
type face;
axis y;
start (0.127 -0.0127 0);
end (0.127 0.1016 0);
nPoints 100;
}
}
// ************************************************************************* //