etc/caseDicts/postProcessing: simplified configuration files

This commit is contained in:
Henry Weller
2016-06-13 17:03:06 +01:00
parent c201df1284
commit b758db8882
47 changed files with 231 additions and 371 deletions

View File

@ -10,15 +10,12 @@ Description
\*---------------------------------------------------------------------------*/
streamlines
{
nLines 20;
start (0 -4 1e-06); // Ensure that points do not coincide with
end (0 4 1e-06); // mesh faces, but instead lie inside cells
fields (U p);
nLines 20;
start (0 -4 1e-06); // Ensure that points do not coincide with
end (0 4 1e-06); // mesh faces, but instead lie inside cells
fields (U p);
// Must be last entry
#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"
}
// Must be last entry
#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"
// ************************************************************************* //

View File

@ -14,51 +14,48 @@ Description
\*---------------------------------------------------------------------------*/
#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"
fields (p U);
surfaces
{
#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"
(
xNormal
{
$cuttingPlane;
}
fields (p U);
surfaces
(
xNormal
yNormal
{
$cuttingPlane;
pointAndNormalDict
{
$cuttingPlane;
}
normalVector $y; // Overrides default normalVector (1 0 0)
} // $y: macro for (0 1 0)
}
yNormal
zNormal
{
$cuttingPlane;
pointAndNormalDict
{
$cuttingPlane;
pointAndNormalDict
{
normalVector $y; // Overrides default normalVector (1 0 0)
} // $y: macro for (0 1 0)
basePoint (0 0 2); // Overrides default basePoint (0 0 0)
normalVector $z; // $y: macro for (0 0 1)
}
}
zNormal
{
$cuttingPlane;
pointAndNormalDict
{
basePoint (0 0 2); // Overrides default basePoint (0 0 0)
normalVector $z; // $y: macro for (0 0 1)
}
}
p100
{
$isosurface;
isoField p;
isoValue 100;
}
p100
{
$isosurface;
isoField p;
isoValue 100;
}
CAD
{
$patchSurface;
patches (CAD);
}
);
}
CAD
{
$patchSurface;
patches (CAD);
}
);
// ************************************************************************* //