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

@ -32,7 +32,7 @@ Solution:
sub-dictionary in the case controlDict file, e.g.
functions
{
#includeEtc "caseDicts/postProcessing/flowRate/flowRatePatch"
#includeFunc flowRatePatch
... other function objects here ...
}

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
CourantNo
{
type CourantNo;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ CourantNo
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -12,8 +12,6 @@ Description
\*---------------------------------------------------------------------------*/
Lambda2
{
type Lambda2;
libs ("libfieldFunctionObjects.so");
@ -21,6 +19,5 @@ Lambda2
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
MachNo
{
type MachNo;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ MachNo
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
PecletNo
{
type PecletNo;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ PecletNo
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
Q
{
type Q;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ Q
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
R
{
type turbulenceFields;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ R
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
components
{
type components;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ components
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
div
{
type div;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ div
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
enstrophy
{
type enstrophy;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ enstrophy
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -13,8 +13,6 @@ Description
\*---------------------------------------------------------------------------*/
flowType
{
type flowType;
libs ("libfieldFunctionObjects.so");
@ -22,6 +20,5 @@ flowType
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
grad
{
type grad;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ grad
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
mag
{
type mag;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ mag
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
magSqr
{
type magSqr;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ magSqr
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -11,14 +11,11 @@ Description
\*---------------------------------------------------------------------------*/
randomise
{
#includeEtc "caseDicts/postProcessing/fields/randomise.cfg"
field <fieldName>;
// Set the magnitude of the perturbation
magPerturbation <scalar>;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
turbulenceFields
{
type turbulenceFields;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ turbulenceFields
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
vorticity
{
type vorticity;
libs ("libfieldFunctionObjects.so");
@ -19,6 +17,5 @@ vorticity
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -11,13 +11,10 @@ Description
\*---------------------------------------------------------------------------*/
wallShearStress
{
type wallShearStress;
libs ("libfieldFunctionObjects.so");
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,14 +10,11 @@ Description
\*---------------------------------------------------------------------------*/
writeObjects
{
type writeObjects;
libs ("libutilityFunctionObjects.so");
objects (<object names>);
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -10,13 +10,10 @@ Description
\*---------------------------------------------------------------------------*/
yPlus
{
type yPlus;
libs ("libfieldFunctionObjects.so");
executeControl writeTime;
writeControl writeTime;
}
// ************************************************************************* //

View File

@ -12,11 +12,8 @@ Description
\*---------------------------------------------------------------------------*/
flowRatePatch
{
name <patchName>;
#includeEtc "caseDicts/postProcessing/flowRate/flowRatePatch.cfg"
}
// ************************************************************************* //

View File

@ -13,11 +13,8 @@ Description
\*---------------------------------------------------------------------------*/
volFlowRateSurface
{
triSurface <triSurfaceFile>;
#includeEtc "caseDicts/postProcessing/flowRate/volFlowRateSurface.cfg"
}
// ************************************************************************* //

View File

@ -12,8 +12,6 @@ Description
\*---------------------------------------------------------------------------*/
forceCoeffsCompressible
{
patches (patch1 patch2);
magUInf 20;
@ -28,6 +26,5 @@ forceCoeffsCompressible
pitchAxis (0 1 0);
#includeEtc "caseDicts/postProcessing/forces/forceCoeffsCompressible.cfg"
}
// ************************************************************************* //

View File

@ -12,8 +12,6 @@ Description
\*---------------------------------------------------------------------------*/
forceCoeffsIncompressible
{
patches (patch1 patch2);
magUInf 20;
@ -27,6 +25,5 @@ forceCoeffsIncompressible
pitchAxis (0 1 0);
#includeEtc "caseDicts/postProcessing/forces/forceCoeffs.cfg"
}
// ************************************************************************* //

View File

@ -11,14 +11,11 @@ Description
\*---------------------------------------------------------------------------*/
forcesCompressible
{
patches (patch1 patch2);
CofR (0 0 0);
pitchAxis (0 1 0);
#includeEtc "caseDicts/postProcessing/forces/forcesCompressible.cfg"
}
// ************************************************************************* //

View File

@ -11,8 +11,6 @@ Description
\*---------------------------------------------------------------------------*/
forcesIncompressible
{
#includeEtc "caseDicts/postProcessing/forces/forces.cfg"
rhoInf 1.225; // Fluid density
@ -20,6 +18,5 @@ forcesIncompressible
CofR (0 0 0);
pitchAxis (0 1 0);
}
// ************************************************************************* //

View File

@ -11,8 +11,6 @@ Description
\*---------------------------------------------------------------------------*/
singleGraph
{
start (0 1e-06 0);
end (1 1e-06 0);
fields (U p);
@ -21,6 +19,5 @@ singleGraph
// Must be last entry
#includeEtc "caseDicts/postProcessing/graphs/graph.cfg"
}
// ************************************************************************* //

View File

@ -10,11 +10,8 @@ Description
\*---------------------------------------------------------------------------*/
cellMax
{
#includeEtc "caseDicts/postProcessing/minMax/cellMinMax.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -10,11 +10,8 @@ Description
\*---------------------------------------------------------------------------*/
cellMin
{
#includeEtc "caseDicts/postProcessing/minMax/cellMin.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -10,11 +10,8 @@ Description
\*---------------------------------------------------------------------------*/
faceMax
{
#includeEtc "caseDicts/postProcessing/minMax/faceMinMax.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -10,11 +10,8 @@ Description
\*---------------------------------------------------------------------------*/
faceMin
{
#includeEtc "caseDicts/postProcessing/minMax/faceMin.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -11,11 +11,8 @@ Description
\*---------------------------------------------------------------------------*/
minMaxComponents
{
#includeEtc "caseDicts/postProcessing/minMax/minMaxComponents.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -11,11 +11,8 @@ Description
\*---------------------------------------------------------------------------*/
minMaxMagnitude
{
#includeEtc "caseDicts/postProcessing/minMax/fieldMinMax.cfg"
fields (U p);
}
// ************************************************************************* //

View File

@ -12,11 +12,8 @@ Description
\*---------------------------------------------------------------------------*/
residuals
{
#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg"
fields (p U);
}
// ************************************************************************* //

View File

@ -11,12 +11,9 @@ Description
\*---------------------------------------------------------------------------*/
pressureDifferencePatch
{
patch1 <patch1>;
patch2 <patch2>;
#includeEtc "caseDicts/postProcessing/pressure/pressureDifferencePatch.cfg"
}
// ************************************************************************* //

View File

@ -11,12 +11,9 @@ Description
\*---------------------------------------------------------------------------*/
pressureDifferenceSurface
{
triSurface1 <triSurface1>;
triSurface2 <triSurface2>;
#includeEtc "caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg"
}
// ************************************************************************* //

View File

@ -11,11 +11,8 @@ Description
\*---------------------------------------------------------------------------*/
staticPressure
{
#includeEtc "caseDicts/postProcessing/pressure/staticPressure.cfg"
rhoInf 1.2; // Density to scale
}
// ************************************************************************* //

View File

@ -11,11 +11,8 @@ Description
\*---------------------------------------------------------------------------*/
totalPressureCompressible
{
#includeEtc "caseDicts/postProcessing/pressure/totalPressureCompressible.cfg"
pRef 0;
}
// ************************************************************************* //

View File

@ -11,12 +11,9 @@ Description
\*---------------------------------------------------------------------------*/
totalPressureIncompressible
{
#includeEtc "caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg"
pRef 0.0;
rhoInf 1.2;
}
// ************************************************************************* //

View File

@ -11,8 +11,6 @@ Description
\*---------------------------------------------------------------------------*/
boundaryCloud
{
fields (p U);
points
@ -25,6 +23,5 @@ boundaryCloud
patches (".*");
#includeEtc "caseDicts/postProcessing/probes/boundaryCloud.cfg"
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
internalCloud
{
fields (p U);
points
(
@ -19,6 +17,5 @@ internalCloud
);
#includeEtc "caseDicts/postProcessing/probes/internalCloud.cfg"
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ Description
\*---------------------------------------------------------------------------*/
probes
{
#includeEtc "caseDicts/postProcessing/probes/probes.cfg"
fields (p U);
@ -19,6 +17,5 @@ probes
(
(0 0 0)
);
}
// ************************************************************************* //

View File

@ -14,14 +14,11 @@ Description
\*---------------------------------------------------------------------------*/
scalarTransport
{
type scalarTransport;
libs ("libsolverFunctionObjects.so");
field s;
schemesField s;
D 1e-09;
}
// ************************************************************************* //

View File

@ -10,14 +10,10 @@ Description
\*---------------------------------------------------------------------------*/
patchAverage
{
name <patchName>;
fields (<field names>);
operation average;
#includeEtc "caseDicts/postProcessing/surfaceRegion/patch.cfg"
}
// ************************************************************************* //

View File

@ -10,14 +10,10 @@ Description
\*---------------------------------------------------------------------------*/
patchIntegrate
{
name <patchName>;
fields (<field names>);
operation areaIntegrate;
#includeEtc "caseDicts/postProcessing/surfaceRegion/patch.cfg"
}
// ************************************************************************* //

View File

@ -10,8 +10,6 @@ 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
@ -19,6 +17,5 @@ streamlines
// Must be last entry
#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"
}
// ************************************************************************* //

View File

@ -14,8 +14,6 @@ Description
\*---------------------------------------------------------------------------*/
surfaces
{
#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"
fields (p U);
@ -59,6 +57,5 @@ surfaces
patches (CAD);
}
);
}
// ************************************************************************* //