etc/caseDicts/postProcessing: Updated for recent developments in functionObjects

This commit is contained in:
Henry Weller
2016-05-26 16:31:32 +01:00
parent 3186245b92
commit fd24c05cf9
67 changed files with 155 additions and 717 deletions

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceSource.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type faceSource; type faceSource;
libs ("libfieldFunctionObjects.so"); libs ("libfieldFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1; writeInterval 1;
valueOutput false; valueOutput false;

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceZoneSource.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg"

View File

@ -5,19 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object patchAverage;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
patchAverage patchAverage
{ {
patch <patchName>; patch <patchName>;
fields ( p ); fields (p);
operation average; operation average;
#includeEtc "caseDicts/postProcessing/faceSource/patchSource.cfg"; #includeEtc "caseDicts/postProcessing/faceSource/patchSource.cfg";

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object patchSource.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg"

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object surfaceSource.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg"

View File

@ -5,18 +5,14 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object Lambda2.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Lambda2 Lambda2
{ {
#includeEtc "caseDicts/postProcessing/fields/Lambda2.cfg" type Lambda2;
libs ("libutilityFunctionObjects.so");
executeControl writeTime;
writeControl writeTime;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -1,23 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object Lambda2.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type Lambda2;
libs ("libutilityFunctionObjects.so");
enabled true;
writeControl writeTime;
// ************************************************************************* //

View File

@ -1,23 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object Q.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type Q;
libs ("libutilityFunctionObjects.so");
enabled true;
writeControl writeTime;
// ************************************************************************* //

View File

@ -8,10 +8,10 @@
randomise randomise
{ {
#includeEtc "caseDicts/postProcessing/fields/randomise.cfg"
// Set the magnitude of the perturbation // Set the magnitude of the perturbation
magPerturbation <scalar>; magPerturbation <scalar>;
#includeEtc "caseDicts/postProcessing/fields/randomise.cfg"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object flowRatePatch;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// This packaged function object sums the flux phi on patch faces so the // This packaged function object sums the flux phi on patch faces so the
// calculated volume flow rate for solvers where phi = volumetric flux, and // calculated volume flow rate for solvers where phi = volumetric flux, and

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object flowRatePatch.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/faceSource/patchSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/patchSource.cfg"

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object volFlowRateSurface;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// This packaged function object interpolates velocity U onto triangles in // This packaged function object interpolates velocity U onto triangles in
// triSurface file and integrates over the surface area. Triangles need to // triSurface file and integrates over the surface area. Triangles need to

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object volFlowRateSurface.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/faceSource/surfaceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/surfaceSource.cfg"

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forceCoeffs.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/forces/forces.cfg" #includeEtc "caseDicts/postProcessing/forces/forces.cfg"

View File

@ -5,18 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forceCoeffsCompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
forceCoeffs forceCoeffs
{ {
patches ( patch1 patch2 ); patches (patch1 patch2);
magUInf 20; magUInf 20;
rhoInf 1.225; rhoInf 1.225;

View File

@ -5,16 +5,7 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forceCoeffsCompressible.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/forces/forceCoeffs.cfg" #includeEtc "caseDicts/postProcessing/forces/forceCoeffs.cfg"
rhoName rho;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,18 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forceCoeffsIncompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
forceCoeffs forceCoeffs
{ {
patches ( patch1 patch2 ); patches (patch1 patch2);
magUInf 20; magUInf 20;
lRef 1; lRef 1;

View File

@ -5,25 +5,14 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forces.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type forces; type forces;
libs ( "libforces.so" ); libs ("libforces.so");
enabled true; writeControl timeStep;
writeControl timeStep; writeInterval 1;
writeInterval 1;
pName p; rho rhoInf; // Incompressible solver
UName U;
rhoName rhoInf; // Incompressible solver
log off; log off;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,18 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forcesCompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
forces forces
{ {
patches ( patch1 patch2 ); patches (patch1 patch2);
CofR (0 0 0); CofR (0 0 0);
pitchAxis (0 1 0); pitchAxis (0 1 0);

View File

@ -5,17 +5,9 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forcesCompressible.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/forces/forces.cfg" #includeEtc "caseDicts/postProcessing/forces/forces.cfg"
rhoName rho;
rhoInf 1; // Redundant rhoInf 1; // Redundant
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,24 +5,16 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object forcesIncompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
forces forces
{ {
#includeEtc "caseDicts/postProcessing/forces/forces.cfg"
rhoInf 1.225; // Fluid density rhoInf 1.225; // Fluid density
patches ( patch1 patch2 ); patches (patch1 patch2);
CofR (0 0 0); CofR (0 0 0);
pitchAxis (0 1 0); pitchAxis (0 1 0);
#includeEtc "caseDicts/postProcessing/forces/forces.cfg"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object graph.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs ("libsampling.so");
enabled true; writeControl writeTime;
writeControl writeTime;
sets sets
( (

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object sampleDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg" #includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg"
@ -26,6 +18,6 @@ sets
} }
); );
fields ( U p ); fields (U p);
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object sampleDict.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
interpolationScheme cellPoint; interpolationScheme cellPoint;

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object graph;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
graph graph
{ {
start (0 1e-06 0); start (0 1e-06 0);
end (1 1e-06 0); end (1 1e-06 0);
fields ( U p ); fields (U p);
#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg" #includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg"

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object cellMax;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
cellMax cellMax
{ {
fields ( U p );
#includeEtc "caseDicts/postProcessing/minMax/cellMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/cellMinMax.cfg"
fields (U p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object cellMin;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
cellMin cellMin
{ {
fields ( U p );
#includeEtc "caseDicts/postProcessing/minMax/cellMin.cfg" #includeEtc "caseDicts/postProcessing/minMax/cellMin.cfg"
fields (U p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object cellMin.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/minMax/cellMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/cellMinMax.cfg"
operation min; operation min;

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object cellMinMax.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type cellSource; type cellSource;
libs ("libfieldFunctionObjects.so"); libs ("libfieldFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1; writeInterval 1;
valueOutput false; valueOutput false;

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceMax;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
faceMax faceMax
{ {
fields ( U p );
#includeEtc "caseDicts/postProcessing/minMax/faceMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/faceMinMax.cfg"
fields (U p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceMin;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
faceMin faceMin
{ {
fields ( U p );
#includeEtc "caseDicts/postProcessing/minMax/faceMin.cfg" #includeEtc "caseDicts/postProcessing/minMax/faceMin.cfg"
fields (U p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceMin.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/minMax/faceMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/faceMinMax.cfg"
operation min; operation min;

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faceMinMax.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type faceSource; type faceSource;
libs ("libfieldFunctionObjects.so"); libs ("libfieldFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1; writeInterval 1;
valueOutput false; valueOutput false;

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fieldMinMax.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type fieldMinMax; type fieldMinMax;
libs ("libfieldFunctionObjects.so"); libs ("libfieldFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1; writeInterval 1;
write true; write true;

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object minMaxComponents;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
minMaxComponents minMaxComponents
{ {
mode components;
#includeEtc "caseDicts/postProcessing/minMax/minMaxComponents.cfg" #includeEtc "caseDicts/postProcessing/minMax/minMaxComponents.cfg"
mode components;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object minMaxComponents.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/minMax/fieldMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/fieldMinMax.cfg"
mode components; mode components;

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object minMaxMagnitude;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
minMaxMagnitude minMaxMagnitude
{ {
fields ( U p );
#includeEtc "caseDicts/postProcessing/minMax/fieldMinMax.cfg" #includeEtc "caseDicts/postProcessing/minMax/fieldMinMax.cfg"
fields (U p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object residuals;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
residuals residuals
{ {
fields ( p U );
#includeEtc "caseDicts/postProcessing/numerical/residuals.cfg" #includeEtc "caseDicts/postProcessing/numerical/residuals.cfg"
fields (p U);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object residuals.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type residuals; type residuals;
libs ("libutilityFunctionObjects.so"); libs ("libutilityFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep; writeInterval 1;
writeInterval 1;
// ************************************************************************* // // ************************************************************************* //

View File

@ -10,15 +10,15 @@ FoamFile
version 2.0; version 2.0;
format ascii; format ascii;
class dictionary; class dictionary;
object pressureTools.cfg; object pressure.cfg;
} }
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type pressureTools; type pressure;
libs ("libutilityFunctionObjects.so"); libs ("libutilityFunctionObjects.so");
enabled true; executeControl writeTime;
writeControl writeTime; writeControl writeTime;
log false; log false;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,22 +5,13 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object pressureDifference.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type fieldValueDelta; type fieldValueDelta;
libs ("libfieldFunctionObjects.so"); libs ("libfieldFunctionObjects.so");
operation subtract; operation subtract;
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1 writeInterval 1
log false; log false;
@ -28,13 +19,13 @@ source1
{ {
#includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg"
operation areaAverage; operation areaAverage;
fields ( p ); fields (p);
} }
source2 source2
{ {
#includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg" #includeEtc "caseDicts/postProcessing/faceSource/faceSource.cfg"
operation areaAverage; operation areaAverage;
fields ( p ); fields (p);
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object pressureDifferencePatch;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
pressureDifferencePatch pressureDifferencePatch
{ {

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object pressureDifferencePatch.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/pressure/pressureDifference.cfg" #includeEtc "caseDicts/postProcessing/pressure/pressureDifference.cfg"

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object pressureDifferenceSurface;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
pressureDifferenceSurface pressureDifferenceSurface
{ {
@ -20,7 +12,7 @@ pressureDifferenceSurface
triSurface2 <triSurface2>; triSurface2 <triSurface2>;
#includeEtc #includeEtc
"caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg" "caseDicts/postProcessing/pressure/pressureDifferenceSurface.cfg"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object pressureDifferenceSurface.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/pressure/pressureDifference.cfg" #includeEtc "caseDicts/postProcessing/pressure/pressureDifference.cfg"

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object staticPressure;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
staticPressure staticPressure
{ {
rho 1.2; // Density to scale
#includeEtc "caseDicts/postProcessing/pressure/staticPressure.cfg" #includeEtc "caseDicts/postProcessing/pressure/staticPressure.cfg"
rho 1.2; // Density to scale
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object staticPressure.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/pressure/pressureTools.cfg" #includeEtc "caseDicts/postProcessing/pressure/pressure.cfg"
calcTotal no; calcTotal no;
calcCoeff no; calcCoeff no;
rhoName rhoInf; rho rhoInf;
rhoInf $rho; rhoInf $rho;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,21 +5,13 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object totalPressureCompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
totalPressure totalPressure
{ {
pRef 0.0;
#includeEtc #includeEtc
"caseDicts/postProcessing/pressure/totalPressureCompressible.cfg" "caseDicts/postProcessing/pressure/totalPressureCompressible.cfg"
pRef 0;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,19 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object totalPressureCompressible.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/pressure/pressureTools.cfg" #includeEtc "caseDicts/postProcessing/pressure/pressure.cfg"
calcTotal no; calcTotal no;
calcCoeff no; calcCoeff no;
rhoName rho;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,22 +5,14 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object totalPressureIncompressible;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
totalPressure totalPressure
{ {
#includeEtc
"caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg"
pRef 0.0; pRef 0.0;
rho 1.2; rho 1.2;
#includeEtc
"caseDicts/postProcessing/pressure/totalPressureIncompressible.cfg"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object totalPressureIncompressible.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/pressure/pressureTools.cfg" #includeEtc "caseDicts/postProcessing/pressure/pressure.cfg"
calcTotal yes; calcTotal yes;
calcCoeff no; calcCoeff no;
rhoName rhoInf; rho rhoInf;
rhoInf $rho; rhoInf $rho;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,18 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object boundaryCloud;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
boundaryCloud boundaryCloud
{ {
fields ( p U ); fields (p U);
points points
( (

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object boundaryCloud.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/probes/cloud.cfg" #includeEtc "caseDicts/postProcessing/probes/cloud.cfg"

View File

@ -5,19 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object cloud.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type sets; type sets;
libs ("libsampling.so"); libs ("libsampling.so");
enabled true; executeControl writeTime;
writeControl writeTime; writeControl writeTime;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,18 +5,10 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object internalCloud;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
internalCloud internalCloud
{ {
fields ( p U ); fields (p U);
points points
( (
(0 0 0) (0 0 0)

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object internalCloud.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#includeEtc "caseDicts/postProcessing/probes/cloud.cfg" #includeEtc "caseDicts/postProcessing/probes/cloud.cfg"

View File

@ -5,24 +5,16 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object probes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
probes probes
{ {
fields ( p U ); #includeEtc "caseDicts/postProcessing/probes/probes.cfg"
fields (p U);
probeLocations probeLocations
( (
(0 0 0) (0 0 0)
); );
#includeEtc "caseDicts/postProcessing/probes/probes.cfg"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object probes.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type probes; type probes;
libs ("libsampling.so"); libs ("libsampling.so");
enabled true; writeControl timeStep;
writeControl timeStep; writeInterval 1;
writeInterval 1;
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Tinlet 1; Tinlet 1;
@ -34,7 +26,6 @@ boundaryField
} }
#includeEtc "caseDicts/setConstraintTypes" #includeEtc "caseDicts/setConstraintTypes"
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object scalarTransport.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
T T
{ {

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object scalarTransport.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type scalarTransport; type scalarTransport;
libs ("libutilityFunctionObjects.so"); libs ("libutilityFunctionObjects.so");
enabled true; writeControl timeStep;
writeControl timeStep;
writeInterval 1; writeInterval 1;
write true; write true;

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object scalarTransportDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// controlDict settings // controlDict settings
startTime 0; startTime 0;

View File

@ -5,14 +5,6 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object scalarTransportDict.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// fvSchemes settings // fvSchemes settings
ddtSchemes ddtSchemes

View File

@ -5,21 +5,13 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object streamlines.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
streamlines streamlines
{ {
nLines 20; nLines 20;
start (0 -4 1e-06); // Ensure that points do not coincide with start (0 -4 1e-06); // Ensure that points do not coincide with
end (0 4 1e-06); // mesh faces, but instead lie inside cells end (0 4 1e-06); // mesh faces, but instead lie inside cells
fields ( U p ); fields (U p);
// Must be last entry // Must be last entry
#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg" #includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"

View File

@ -5,22 +5,14 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object streamlines.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type streamLine; type streamLine;
libs ( "libfieldFunctionObjects.so" ); libs ("libfieldFunctionObjects.so");
writeControl writeTime; executeControl writeTime;
writeControl writeTime;
setFormat vtk; setFormat vtk;
UName U;
trackForward true; trackForward true;
lifeTime 10000; lifeTime 10000;

View File

@ -5,20 +5,12 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object surfaces.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
surfaces surfaces
{ {
#includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg" #includeEtc "caseDicts/postProcessing/visualization/surfaces.cfg"
fields ( p U ); fields (p U);
surfaces surfaces
( (
@ -56,7 +48,7 @@ surfaces
CAD CAD
{ {
$patchSurface; $patchSurface;
patches ( CAD ); patches (CAD);
} }
); );
} }

View File

@ -5,20 +5,11 @@
| \\ / A nd | Web: www.OpenFOAM.org | | \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | | | \\/ M anipulation | |
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object surfaces.cfg;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type surfaces; type surfaces;
libs ("libsampling.so"); libs ("libsampling.so");
enabled true; writeControl writeTime;
writeControl writeTime;
surfaceFormat vtk; surfaceFormat vtk;
interpolationScheme cellPoint; interpolationScheme cellPoint;