ENH: allow invariant surfaces for sampling (#1418)

- an advanced feature, for example when sampling on a static patch
  while some motion occurs elsewhere. [use with caution]

- If the sampled surface dictionary is modified during run-time, the
  ensight file indexing for the geometry will become out of sync.
  This is addressed in a subsequent commit.
This commit is contained in:
Mark Olesen
2019-08-30 15:46:07 +02:00
committed by Andrew Heather
parent 880d81475b
commit 8037b8d6a8
5 changed files with 36 additions and 7 deletions

View File

@ -15,10 +15,10 @@ surfaces
surfaceFormat vtk;
fields (p U Q);
interpolationScheme cellPoint;
// interpolationScheme cellPoint; //<- default
surfaces
(
{
zNormal
{
type cuttingPlane;
@ -44,8 +44,10 @@ surfaces
type patch;
patches ("propeller.*");
interpolate true;
invariant true; // Unaffected by mesh motion
surfaceFormat ensight;
}
);
}
}