mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use compact form for libs () entries
This commit is contained in:
@ -42,7 +42,7 @@ Description
|
|||||||
phaseForces.water
|
phaseForces.water
|
||||||
{
|
{
|
||||||
type phaseForces;
|
type phaseForces;
|
||||||
libs ("libreactingEulerFoamFunctionObjects.so");
|
libs (reactingEulerFoamFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ Description
|
|||||||
box.all.numberDensity.volume.bubbles
|
box.all.numberDensity.volume.bubbles
|
||||||
{
|
{
|
||||||
type sizeDistribution;
|
type sizeDistribution;
|
||||||
libs ("libreactingEulerFoamFunctionObjects.so");
|
libs (reactingEulerFoamFunctionObjects);
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
log true;
|
log true;
|
||||||
|
|||||||
@ -15,7 +15,7 @@ FoamFile
|
|||||||
}
|
}
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
libs ("libblockMesh.so");
|
libs (blockMesh);
|
||||||
|
|
||||||
application PDRblockMesh;
|
application PDRblockMesh;
|
||||||
|
|
||||||
|
|||||||
@ -19,8 +19,7 @@ functions
|
|||||||
processorField
|
processorField
|
||||||
{
|
{
|
||||||
type processorField;
|
type processorField;
|
||||||
|
libs (fieldFunctionObjects);
|
||||||
libs ("libfieldFunctionObjects.so");
|
|
||||||
|
|
||||||
enabled true;
|
enabled true;
|
||||||
|
|
||||||
@ -29,8 +28,7 @@ functions
|
|||||||
cellID
|
cellID
|
||||||
{
|
{
|
||||||
type coded;
|
type coded;
|
||||||
|
libs (utilityFunctionObjects);
|
||||||
libs ("libutilityFunctionObjects.so");
|
|
||||||
|
|
||||||
name cellID;
|
name cellID;
|
||||||
|
|
||||||
|
|||||||
@ -16,7 +16,7 @@ FoamFile
|
|||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
// Make sure all preprocessing tools know about the 'overset' bc
|
// Make sure all preprocessing tools know about the 'overset' bc
|
||||||
libs ("liboverset.so");
|
libs (overset);
|
||||||
|
|
||||||
DebugSwitches
|
DebugSwitches
|
||||||
{
|
{
|
||||||
|
|||||||
@ -18,16 +18,10 @@ functions
|
|||||||
{
|
{
|
||||||
processorField1
|
processorField1
|
||||||
{
|
{
|
||||||
// Type of functionObject
|
|
||||||
type processorField;
|
type processorField;
|
||||||
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
// Where to load it from (if not already in solver)
|
|
||||||
libs ("libfieldFunctionObjects.so");
|
|
||||||
|
|
||||||
// Function object enabled flag
|
|
||||||
enabled true;
|
enabled true;
|
||||||
|
|
||||||
// When to output the average fields
|
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,16 +16,10 @@ FoamFile
|
|||||||
|
|
||||||
processorField
|
processorField
|
||||||
{
|
{
|
||||||
// Type of functionObject
|
|
||||||
type processorField;
|
type processorField;
|
||||||
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
// Where to load it from (if not already in solver)
|
|
||||||
libs ("libfieldFunctionObjects.so");
|
|
||||||
|
|
||||||
// Function object enabled flag
|
|
||||||
enabled true;
|
enabled true;
|
||||||
|
|
||||||
// When to output the average fields
|
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -19,7 +19,7 @@ FoamFile
|
|||||||
type runTimePostProcessing;
|
type runTimePostProcessing;
|
||||||
|
|
||||||
// Where to load it from
|
// Where to load it from
|
||||||
libs ("runTimePostProcessing");
|
libs (runTimePostProcessing);
|
||||||
|
|
||||||
// Function object enabled flag
|
// Function object enabled flag
|
||||||
enabled true;
|
enabled true;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2017-2018 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -48,7 +48,7 @@ Description
|
|||||||
<functionObjectName>
|
<functionObjectName>
|
||||||
{
|
{
|
||||||
type functionObjectType;
|
type functionObjectType;
|
||||||
libs ("libMyFunctionObjectlib.so");
|
libs (myFunctionObjectLib);
|
||||||
region defaultRegion;
|
region defaultRegion;
|
||||||
enabled yes;
|
enabled yes;
|
||||||
timeStart 0;
|
timeStart 0;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2012-2014 OpenFOAM Foundation
|
Copyright (C) 2012-2014 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -61,7 +61,7 @@ functions
|
|||||||
myFunctionObject // user-defined name of function object entry
|
myFunctionObject // user-defined name of function object entry
|
||||||
{
|
{
|
||||||
type functionObjectType;
|
type functionObjectType;
|
||||||
libs ("libMyFunctionObjectlib.so");
|
libs (myFunctionObjectLib);
|
||||||
region defaultRegion;
|
region defaultRegion;
|
||||||
enabled yes;
|
enabled yes;
|
||||||
timeStart 0;
|
timeStart 0;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
AMIWeights1
|
AMIWeights1
|
||||||
{
|
{
|
||||||
type AMIWeights;
|
type AMIWeights;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
writeFields yes;
|
writeFields yes;
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2016 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -41,7 +41,7 @@ Usage
|
|||||||
CourantNo1
|
CourantNo1
|
||||||
{
|
{
|
||||||
type CourantNo;
|
type CourantNo;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -57,7 +57,7 @@ Usage
|
|||||||
Curle1
|
Curle1
|
||||||
{
|
{
|
||||||
type Curle;
|
type Curle;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
patches (surface1 surface2);
|
patches (surface1 surface2);
|
||||||
c0 330;
|
c0 330;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2015 OpenFOAM Foundation
|
Copyright (C) 2013-2015 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -45,7 +45,7 @@ Usage
|
|||||||
DESModelRegions1
|
DESModelRegions1
|
||||||
{
|
{
|
||||||
type DESModelRegions;
|
type DESModelRegions;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,7 +39,7 @@ Usage
|
|||||||
PecletNo1
|
PecletNo1
|
||||||
{
|
{
|
||||||
type PecletNo;
|
type PecletNo;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -49,7 +49,7 @@ Usage
|
|||||||
Q1
|
Q1
|
||||||
{
|
{
|
||||||
type Q;
|
type Q;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
XiReactionRate
|
XiReactionRate
|
||||||
{
|
{
|
||||||
type XiReactionRate;
|
type XiReactionRate;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +41,7 @@ Description
|
|||||||
Ttot
|
Ttot
|
||||||
{
|
{
|
||||||
type add;
|
type add;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
fields (T Tdelta);
|
fields (T Tdelta);
|
||||||
result Ttot;
|
result Ttot;
|
||||||
executeControl writeTime;
|
executeControl writeTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -60,7 +60,7 @@ Usage
|
|||||||
blendingFactor1
|
blendingFactor1
|
||||||
{
|
{
|
||||||
type blendingFactor;
|
type blendingFactor;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -45,7 +45,7 @@ Usage
|
|||||||
columnAverage1
|
columnAverage1
|
||||||
{
|
{
|
||||||
type columnAverage;
|
type columnAverage;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
patches (front side);
|
patches (front side);
|
||||||
fields (U p);
|
fields (U p);
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Usage
|
|||||||
continuityError1
|
continuityError1
|
||||||
{
|
{
|
||||||
type continuityError;
|
type continuityError;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
writeToFile yes;
|
writeToFile yes;
|
||||||
log yes;
|
log yes;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016-2019 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
dpdt2
|
dpdt2
|
||||||
{
|
{
|
||||||
type ddt2;
|
type ddt2;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
fields (p);
|
fields (p);
|
||||||
result d@@dt2;
|
result d@@dt2;
|
||||||
...
|
...
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -36,7 +36,7 @@ Description
|
|||||||
derived
|
derived
|
||||||
{
|
{
|
||||||
type derivedFields;
|
type derivedFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
fields (rhoU pTotal);
|
fields (rhoU pTotal);
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2015-2018 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -37,7 +37,7 @@ Usage
|
|||||||
extractEulerianParticles1
|
extractEulerianParticles1
|
||||||
{
|
{
|
||||||
type extractEulerianParticles;
|
type extractEulerianParticles;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
faceZone f0;
|
faceZone f0;
|
||||||
nLocations 10;
|
nLocations 10;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2019 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -75,7 +75,7 @@ Usage
|
|||||||
fieldAverage1
|
fieldAverage1
|
||||||
{
|
{
|
||||||
type fieldAverage;
|
type fieldAverage;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2018 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -41,7 +41,7 @@ Usage
|
|||||||
fieldCoordinateSystemTransform1
|
fieldCoordinateSystemTransform1
|
||||||
{
|
{
|
||||||
type fieldCoordinateSystemTransform;
|
type fieldCoordinateSystemTransform;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
fields ( U UMean UPrime2Mean );
|
fields ( U UMean UPrime2Mean );
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -41,7 +41,7 @@ Usage
|
|||||||
fieldExtents1
|
fieldExtents1
|
||||||
{
|
{
|
||||||
type fieldExtents;
|
type fieldExtents;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
writeToFile yes;
|
writeToFile yes;
|
||||||
log yes;
|
log yes;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -44,7 +44,7 @@ Usage
|
|||||||
fieldMinMax1
|
fieldMinMax1
|
||||||
{
|
{
|
||||||
type fieldMinMax;
|
type fieldMinMax;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
writeToFile yes;
|
writeToFile yes;
|
||||||
log yes;
|
log yes;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2012-2016 OpenFOAM Foundation
|
Copyright (C) 2012-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
fieldValueDelta1
|
fieldValueDelta1
|
||||||
{
|
{
|
||||||
type fieldValueDelta;
|
type fieldValueDelta;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
operation subtract;
|
operation subtract;
|
||||||
|
|
||||||
region1
|
region1
|
||||||
|
|||||||
@ -46,7 +46,7 @@ Usage
|
|||||||
movingWallPatch
|
movingWallPatch
|
||||||
{
|
{
|
||||||
type surfaceFieldValue;
|
type surfaceFieldValue;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
log true;
|
log true;
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
@ -62,7 +62,7 @@ Usage
|
|||||||
surfaceFieldValue1
|
surfaceFieldValue1
|
||||||
{
|
{
|
||||||
type surfaceFieldValue;
|
type surfaceFieldValue;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
log true;
|
log true;
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
volFieldValue1
|
volFieldValue1
|
||||||
{
|
{
|
||||||
type volFieldValue;
|
type volFieldValue;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
log true;
|
log true;
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2015 OpenFOAM Foundation
|
Copyright (C) 2015 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2019 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -44,7 +44,7 @@ Usage
|
|||||||
fluxSummary1
|
fluxSummary1
|
||||||
{
|
{
|
||||||
type fluxSummary;
|
type fluxSummary;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
write yes;
|
write yes;
|
||||||
log yes;
|
log yes;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -46,7 +46,7 @@ Usage
|
|||||||
htc
|
htc
|
||||||
{
|
{
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
field T;
|
field T;
|
||||||
patches ("walls.*");
|
patches ("walls.*");
|
||||||
@ -65,7 +65,7 @@ Usage
|
|||||||
htc
|
htc
|
||||||
{
|
{
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
field T;
|
field T;
|
||||||
patches ("walls.*");
|
patches ("walls.*");
|
||||||
@ -80,7 +80,7 @@ Usage
|
|||||||
htc
|
htc
|
||||||
{
|
{
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
field T;
|
field T;
|
||||||
patches ("walls.*");
|
patches ("walls.*");
|
||||||
@ -93,7 +93,7 @@ Usage
|
|||||||
htc
|
htc
|
||||||
{
|
{
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
field T;
|
field T;
|
||||||
patches ("walls.*");
|
patches ("walls.*");
|
||||||
|
|||||||
@ -46,7 +46,7 @@ Usage
|
|||||||
Example of function object specification:
|
Example of function object specification:
|
||||||
\verbatim
|
\verbatim
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
htcModel ReynoldsAnalogy;
|
htcModel ReynoldsAnalogy;
|
||||||
UInf (20 0 0);
|
UInf (20 0 0);
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017-2019 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
Example of function object specification:
|
Example of function object specification:
|
||||||
\verbatim
|
\verbatim
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
htcModel fixedReferenceTemperature;
|
htcModel fixedReferenceTemperature;
|
||||||
TRef 300;
|
TRef 300;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017-2019 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
Example of function object specification:
|
Example of function object specification:
|
||||||
\verbatim
|
\verbatim
|
||||||
type heatTransferCoeff;
|
type heatTransferCoeff;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
htcModel localReferenceTemperature;
|
htcModel localReferenceTemperature;
|
||||||
...
|
...
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2017 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,8 +39,7 @@ Usage
|
|||||||
histogram1
|
histogram1
|
||||||
{
|
{
|
||||||
type histogram;
|
type histogram;
|
||||||
|
libs (fieldFunctionObjects);
|
||||||
libs ("libfieldFunctionObjects.so");
|
|
||||||
|
|
||||||
field p;
|
field p;
|
||||||
nBins 100;
|
nBins 100;
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017-2019 OpenFOAM Foundation
|
Copyright (C) 2017-2019 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,7 +40,7 @@ Description
|
|||||||
interfaceHeight1
|
interfaceHeight1
|
||||||
{
|
{
|
||||||
type interfaceHeight;
|
type interfaceHeight;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
alpha alpha.water;
|
alpha alpha.water;
|
||||||
locations ((0 0 0) (10 0 0) (20 0 0));
|
locations ((0 0 0) (10 0 0) (20 0 0));
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
lambVector1
|
lambVector1
|
||||||
{
|
{
|
||||||
type lambVector;
|
type lambVector;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
field UMean;
|
field UMean;
|
||||||
... Base options of fieldExpression ...
|
... Base options of fieldExpression ...
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -43,7 +43,7 @@ Usage
|
|||||||
limitFields1
|
limitFields1
|
||||||
{
|
{
|
||||||
type limitFields;
|
type limitFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
fields (U);
|
fields (U);
|
||||||
limit max;
|
limit max;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016-2019 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Usage
|
|||||||
mapFields1
|
mapFields1
|
||||||
{
|
{
|
||||||
type mapFields;
|
type mapFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
|
|
||||||
mapRegion coarseMesh;
|
mapRegion coarseMesh;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018-2019 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
momentum1
|
momentum1
|
||||||
{
|
{
|
||||||
type momentum;
|
type momentum;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
log yes;
|
log yes;
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -47,7 +47,7 @@ Usage
|
|||||||
nearWallFields1
|
nearWallFields1
|
||||||
{
|
{
|
||||||
type nearWallFields;
|
type nearWallFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -37,7 +37,7 @@ Usage
|
|||||||
particleDistribution1
|
particleDistribution1
|
||||||
{
|
{
|
||||||
type particleDistribution;
|
type particleDistribution;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
cloud "myCloud";
|
cloud "myCloud";
|
||||||
nameVsBinWidth
|
nameVsBinWidth
|
||||||
|
|||||||
@ -81,7 +81,7 @@ Usage
|
|||||||
pressure1
|
pressure1
|
||||||
{
|
{
|
||||||
type pressure;
|
type pressure;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
mode staticCoeff;
|
mode staticCoeff;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,7 +40,7 @@ Usage
|
|||||||
processorField1
|
processorField1
|
||||||
{
|
{
|
||||||
type processorField;
|
type processorField;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -62,7 +62,7 @@ Usage
|
|||||||
proudmanAcousticPower1
|
proudmanAcousticPower1
|
||||||
{
|
{
|
||||||
type proudmanAcousticPower;
|
type proudmanAcousticPower;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
|
|
||||||
// Required additional entries for incompressible calculations
|
// Required additional entries for incompressible calculations
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
readFields1
|
readFields1
|
||||||
{
|
{
|
||||||
type readFields;
|
type readFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
fields (U p);
|
fields (U p);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -54,7 +54,7 @@ Usage
|
|||||||
pRef
|
pRef
|
||||||
{
|
{
|
||||||
type reference;
|
type reference;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
field p;
|
field p;
|
||||||
result pRef;
|
result pRef;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016-2018 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -66,7 +66,7 @@ Usage
|
|||||||
regionSizeDistribution1
|
regionSizeDistribution1
|
||||||
{
|
{
|
||||||
type regionSizeDistribution;
|
type regionSizeDistribution;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
field alpha;
|
field alpha;
|
||||||
patches (inlet);
|
patches (inlet);
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -43,7 +43,7 @@ Usage
|
|||||||
setFlow1
|
setFlow1
|
||||||
{
|
{
|
||||||
type setFlow;
|
type setFlow;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
mode rotation;
|
mode rotation;
|
||||||
scale 1;
|
scale 1;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -175,7 +175,7 @@ Usage
|
|||||||
stabilityBlendingFactor1
|
stabilityBlendingFactor1
|
||||||
{
|
{
|
||||||
type stabilityBlendingFactor;
|
type stabilityBlendingFactor;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
log true;
|
log true;
|
||||||
writeToFile false;
|
writeToFile false;
|
||||||
@ -221,7 +221,7 @@ Usage
|
|||||||
residuals
|
residuals
|
||||||
{
|
{
|
||||||
type residuals;
|
type residuals;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
writeFields true;
|
writeFields true;
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
fields (p);
|
fields (p);
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
streamLine1
|
streamLine1
|
||||||
{
|
{
|
||||||
type streamLine;
|
type streamLine;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +41,7 @@ Description
|
|||||||
Tdiff
|
Tdiff
|
||||||
{
|
{
|
||||||
type subtract;
|
type subtract;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
fields (T Tmean);
|
fields (T Tmean);
|
||||||
result Tdiff;
|
result Tdiff;
|
||||||
executeControl writeTime;
|
executeControl writeTime;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,9 +38,8 @@ Usage
|
|||||||
\verbatim
|
\verbatim
|
||||||
surfaceDistance
|
surfaceDistance
|
||||||
{
|
{
|
||||||
// Where to load it from
|
|
||||||
libs (libfieldFunctionObjects);
|
|
||||||
type surfaceDistance;
|
type surfaceDistance;
|
||||||
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
geometry
|
geometry
|
||||||
{
|
{
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -47,7 +47,7 @@ Usage
|
|||||||
surfaceInterpolate1
|
surfaceInterpolate1
|
||||||
{
|
{
|
||||||
type surfaceInterpolate;
|
type surfaceInterpolate;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
fields ((p pNear)(U UNear));
|
fields ((p pNear)(U UNear));
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2018 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -46,7 +46,7 @@ Usage
|
|||||||
turbulenceFields1
|
turbulenceFields1
|
||||||
{
|
{
|
||||||
type turbulenceFields;
|
type turbulenceFields;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
fields
|
fields
|
||||||
(
|
(
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2015 OpenFOAM Foundation
|
Copyright (C) 2015 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
valueAverage1
|
valueAverage1
|
||||||
{
|
{
|
||||||
type valueAverage;
|
type valueAverage;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
writeToFile yes;
|
writeToFile yes;
|
||||||
log yes;
|
log yes;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2014-2016 OpenFOAM Foundation
|
Copyright (C) 2014-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -41,7 +41,7 @@ Usage
|
|||||||
vorticity1
|
vorticity1
|
||||||
{
|
{
|
||||||
type vorticity;
|
type vorticity;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2017 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -41,7 +41,7 @@ Usage
|
|||||||
wallBoundedStreamLine1
|
wallBoundedStreamLine1
|
||||||
{
|
{
|
||||||
type wallBoundedStreamLine;
|
type wallBoundedStreamLine;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
|
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
|
|
||||||
|
|||||||
@ -43,7 +43,7 @@ Usage
|
|||||||
wallHeatFlux1
|
wallHeatFlux1
|
||||||
{
|
{
|
||||||
type wallHeatFlux;
|
type wallHeatFlux;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
region fluid;
|
region fluid;
|
||||||
patches (".*Wall");
|
patches (".*Wall");
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2016 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -54,7 +54,7 @@ Usage
|
|||||||
wallShearStress1
|
wallShearStress1
|
||||||
{
|
{
|
||||||
type wallShearStress;
|
type wallShearStress;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
patches (".*Wall");
|
patches (".*Wall");
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
writeCellCentres
|
writeCellCentres
|
||||||
{
|
{
|
||||||
type writeCellCentres;
|
type writeCellCentres;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,7 +39,7 @@ Usage
|
|||||||
writeCellVolumes
|
writeCellVolumes
|
||||||
{
|
{
|
||||||
type writeCellVolumes;
|
type writeCellVolumes;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2016 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
yPlus1
|
yPlus1
|
||||||
{
|
{
|
||||||
type yPlus;
|
type yPlus;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016-2019 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -42,7 +42,7 @@ Usage
|
|||||||
zeroGrad
|
zeroGrad
|
||||||
{
|
{
|
||||||
type zeroGradient;
|
type zeroGradient;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
fields (U "(T|k|epsilon|omega)");
|
fields (U "(T|k|epsilon|omega)");
|
||||||
result @@nearWall;
|
result @@nearWall;
|
||||||
...
|
...
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -66,7 +66,7 @@ Usage
|
|||||||
forceCoeffs1
|
forceCoeffs1
|
||||||
{
|
{
|
||||||
type forceCoeffs;
|
type forceCoeffs;
|
||||||
libs ("libforces.so");
|
libs (forces);
|
||||||
...
|
...
|
||||||
log yes;
|
log yes;
|
||||||
writeFields yes;
|
writeFields yes;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2018 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -53,7 +53,7 @@ Usage
|
|||||||
forces1
|
forces1
|
||||||
{
|
{
|
||||||
type forces;
|
type forces;
|
||||||
libs ("libforces.so");
|
libs (forces);
|
||||||
...
|
...
|
||||||
log yes;
|
log yes;
|
||||||
writeFields yes;
|
writeFields yes;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018-2019 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Usage
|
|||||||
hydrostaticPressure1
|
hydrostaticPressure1
|
||||||
{
|
{
|
||||||
type hydrostaticPressure;
|
type hydrostaticPressure;
|
||||||
libs ("libinitialisationFunctionObjects.so");
|
libs (initialisationFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2012-2016 OpenFOAM Foundation
|
Copyright (C) 2012-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -43,7 +43,7 @@ Usage
|
|||||||
cloudInfo1
|
cloudInfo1
|
||||||
{
|
{
|
||||||
type cloudInfo;
|
type cloudInfo;
|
||||||
libs ("liblagrangianFunctionObjects.so");
|
libs (lagrangianFunctionObjects);
|
||||||
...
|
...
|
||||||
clouds
|
clouds
|
||||||
(
|
(
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -37,7 +37,7 @@ Description
|
|||||||
cloudWrite1
|
cloudWrite1
|
||||||
{
|
{
|
||||||
type dataCloud;
|
type dataCloud;
|
||||||
libs ("liblagrangianFunctionObjects.so");
|
libs (lagrangianFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
cloud myCloud;
|
cloud myCloud;
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -43,7 +44,7 @@ Usage
|
|||||||
dsmcFields1
|
dsmcFields1
|
||||||
{
|
{
|
||||||
type dsmcFields;
|
type dsmcFields;
|
||||||
libs ("liblagrangianFunctionObjects.so");
|
libs (lagrangianFunctionObjects);
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenFOAM Foundation
|
Copyright (C) 2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -50,8 +51,8 @@ Usage
|
|||||||
\verbatim
|
\verbatim
|
||||||
tracks
|
tracks
|
||||||
{
|
{
|
||||||
libs ("liblagrangianFunctionObjects.so");
|
|
||||||
type icoUncoupledKinematicCloud;
|
type icoUncoupledKinematicCloud;
|
||||||
|
libs (lagrangianFunctionObjects);
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Description
|
|||||||
cloudWrite1
|
cloudWrite1
|
||||||
{
|
{
|
||||||
type vtkCloud;
|
type vtkCloud;
|
||||||
libs ("liblagrangianFunctionObjects.so");
|
libs (lagrangianFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
format ascii;
|
format ascii;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Usage
|
|||||||
energySpectrum1
|
energySpectrum1
|
||||||
{
|
{
|
||||||
type energySpectrum;
|
type energySpectrum;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
...
|
...
|
||||||
log yes;
|
log yes;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -50,7 +50,7 @@ Usage
|
|||||||
energy
|
energy
|
||||||
{
|
{
|
||||||
type energyTransport;
|
type energyTransport;
|
||||||
libs ("libenergyTransportFunctionObjects.so");
|
libs (energyTransportFunctionObjects);
|
||||||
|
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
@ -96,7 +96,7 @@ Usage
|
|||||||
energy
|
energy
|
||||||
{
|
{
|
||||||
type energyTransport;
|
type energyTransport;
|
||||||
libs ("libenergyTransportFunctionObjects.so");
|
libs (energyTransportFunctionObjects);
|
||||||
|
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2012-2017 OpenFOAM Foundation
|
Copyright (C) 2012-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -57,7 +57,7 @@ Usage
|
|||||||
scalar1
|
scalar1
|
||||||
{
|
{
|
||||||
type scalarTransport;
|
type scalarTransport;
|
||||||
libs ("libsolverFunctionObjects.so");
|
libs (solverFunctionObjects);
|
||||||
|
|
||||||
resetOnStartUp no;
|
resetOnStartUp no;
|
||||||
region cabin;
|
region cabin;
|
||||||
@ -81,7 +81,7 @@ Usage
|
|||||||
sTransport
|
sTransport
|
||||||
{
|
{
|
||||||
type scalarTransport;
|
type scalarTransport;
|
||||||
libs ("libsolverFunctionObjects.so");
|
libs (solverFunctionObjects);
|
||||||
|
|
||||||
enabled true;
|
enabled true;
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2017-2018 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -46,7 +46,7 @@ Description
|
|||||||
abort
|
abort
|
||||||
{
|
{
|
||||||
type abort;
|
type abort;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
|
|
||||||
file "<case>/GOODBYE";
|
file "<case>/GOODBYE";
|
||||||
action writeNow
|
action writeNow
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -35,7 +35,7 @@ Description
|
|||||||
surfaces
|
surfaces
|
||||||
{
|
{
|
||||||
type areaWrite;
|
type areaWrite;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
|
|
||||||
// Write at same frequency as fields
|
// Write at same frequency as fields
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -51,9 +51,9 @@ Usage
|
|||||||
\verbatim
|
\verbatim
|
||||||
difference
|
difference
|
||||||
{
|
{
|
||||||
libs ("libutilityFunctionObjects.so");
|
|
||||||
|
|
||||||
type coded;
|
type coded;
|
||||||
|
libs (utilityFunctionObjects);
|
||||||
|
|
||||||
// Name of on-the-fly generated functionObject
|
// Name of on-the-fly generated functionObject
|
||||||
name writeMagU;
|
name writeMagU;
|
||||||
codeWrite
|
codeWrite
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016-2018 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -37,7 +37,7 @@ Description
|
|||||||
ensight
|
ensight
|
||||||
{
|
{
|
||||||
type ensightWrite;
|
type ensightWrite;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
format binary;
|
format binary;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Usage
|
|||||||
profiling
|
profiling
|
||||||
{
|
{
|
||||||
type parProfiling;
|
type parProfiling;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
|
|
||||||
// Report stats on exit only (instead of every time step)
|
// Report stats on exit only (instead of every time step)
|
||||||
executeControl onEnd;
|
executeControl onEnd;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2016 OpenFOAM Foundation
|
Copyright (C) 2013-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2016 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -39,7 +39,7 @@ Usage
|
|||||||
removeRegisteredObject1
|
removeRegisteredObject1
|
||||||
{
|
{
|
||||||
type removeRegisteredObject;
|
type removeRegisteredObject;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
...
|
...
|
||||||
objects (obj1 obj2);
|
objects (obj1 obj2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2013-2017 OpenFOAM Foundation
|
Copyright (C) 2013-2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -45,7 +45,7 @@ Usage
|
|||||||
setTimeStep1
|
setTimeStep1
|
||||||
{
|
{
|
||||||
type setTimeStep;
|
type setTimeStep;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
|
|
||||||
deltaT table ((0 5e-4)(0.01 1e-3));
|
deltaT table ((0 5e-4)(0.01 1e-3));
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2015-2016 OpenFOAM Foundation
|
Copyright (C) 2015-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2015-2019 OpenCFD Ltd.
|
Copyright (C) 2015-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -47,7 +47,7 @@ Usage
|
|||||||
solverInfo
|
solverInfo
|
||||||
{
|
{
|
||||||
type solverInfo;
|
type solverInfo;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
...
|
...
|
||||||
fields (U p);
|
fields (U p);
|
||||||
writeResidualFields yes;
|
writeResidualFields yes;
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
|
Copyright (C) 2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -43,7 +44,7 @@ Usage
|
|||||||
systemCall1
|
systemCall1
|
||||||
{
|
{
|
||||||
type systemCall;
|
type systemCall;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
...
|
...
|
||||||
executeCalls
|
executeCalls
|
||||||
(
|
(
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2016 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -44,7 +44,7 @@ Usage
|
|||||||
probes
|
probes
|
||||||
{
|
{
|
||||||
type thermoCoupleProbes;
|
type thermoCoupleProbes;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2017-2019 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Usage
|
|||||||
fileUpdate1
|
fileUpdate1
|
||||||
{
|
{
|
||||||
type timeActivatedFileUpdate;
|
type timeActivatedFileUpdate;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
fileToUpdate "<system>/fvSolution";
|
fileToUpdate "<system>/fvSolution";
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2018 OpenFOAM Foundation
|
Copyright (C) 2018 OpenFOAM Foundation
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -36,8 +36,7 @@ Description
|
|||||||
time
|
time
|
||||||
{
|
{
|
||||||
type timeInfo;
|
type timeInfo;
|
||||||
|
libs (utilityFunctionObjects);
|
||||||
libs ("libutilityFunctionObjects.so");
|
|
||||||
|
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017-2019 OpenCFD Ltd.
|
Copyright (C) 2017-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Description
|
|||||||
vtkWrite1
|
vtkWrite1
|
||||||
{
|
{
|
||||||
type vtkWrite;
|
type vtkWrite;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
format binary;
|
format binary;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -57,7 +57,7 @@ Usage
|
|||||||
writeObjects1
|
writeObjects1
|
||||||
{
|
{
|
||||||
type writeObjects;
|
type writeObjects;
|
||||||
libs ("libutilityFunctionObjects.so");
|
libs (utilityFunctionObjects);
|
||||||
...
|
...
|
||||||
objects (obj1 obj2);
|
objects (obj1 obj2);
|
||||||
writeOption anyWrite;
|
writeOption anyWrite;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016-2018 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Description
|
|||||||
patchProbes
|
patchProbes
|
||||||
{
|
{
|
||||||
type patchProbes;
|
type patchProbes;
|
||||||
libs ( "libsampling.so" );
|
libs (sampling);
|
||||||
|
|
||||||
// Name of the directory for probe data
|
// Name of the directory for probe data
|
||||||
name patchProbes;
|
name patchProbes;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
Copyright (C) 2016-2018 OpenCFD Ltd.
|
Copyright (C) 2016-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -40,7 +40,7 @@ Description
|
|||||||
probes
|
probes
|
||||||
{
|
{
|
||||||
type probes;
|
type probes;
|
||||||
libs ("libsampling.so");
|
libs (sampling);
|
||||||
|
|
||||||
// Name of the directory for probe data
|
// Name of the directory for probe data
|
||||||
name probes;
|
name probes;
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
\\ / A nd | www.openfoam.com
|
\\ / A nd | www.openfoam.com
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2019 OpenCFD Ltd.
|
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -35,7 +35,7 @@ Usage
|
|||||||
sets
|
sets
|
||||||
{
|
{
|
||||||
type sets;
|
type sets;
|
||||||
libs ("libsampling.so");
|
libs (sampling);
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ Description
|
|||||||
surfaces
|
surfaces
|
||||||
{
|
{
|
||||||
type surfaces;
|
type surfaces;
|
||||||
libs ("libsampling.so");
|
libs (sampling);
|
||||||
|
|
||||||
// Write at same frequency as fields
|
// Write at same frequency as fields
|
||||||
writeControl outputTime;
|
writeControl outputTime;
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Copyright (C) 2017 OpenFOAM Foundation
|
Copyright (C) 2017 OpenFOAM Foundation
|
||||||
Copyright (C) 2018 OpenCFD Ltd.
|
Copyright (C) 2018-2020 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -38,7 +38,7 @@ Description
|
|||||||
sixDoFRigidBodyState
|
sixDoFRigidBodyState
|
||||||
{
|
{
|
||||||
type sixDoFRigidBodyState;
|
type sixDoFRigidBodyState;
|
||||||
libs ("libsixDoFRigidBodyState.so");
|
libs (sixDoFRigidBodyState);
|
||||||
angleFormat degrees;
|
angleFormat degrees;
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|||||||
@ -49,7 +49,7 @@ functions
|
|||||||
yPlus
|
yPlus
|
||||||
{
|
{
|
||||||
type yPlus;
|
type yPlus;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,7 +49,7 @@ functions
|
|||||||
yPlus
|
yPlus
|
||||||
{
|
{
|
||||||
type yPlus;
|
type yPlus;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
writeControl writeTime;
|
writeControl writeTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,7 +19,7 @@ probes
|
|||||||
name probes;
|
name probes;
|
||||||
type probes;
|
type probes;
|
||||||
|
|
||||||
libs ("libsampling.so");
|
libs (sampling);
|
||||||
|
|
||||||
writeControl timeStep;
|
writeControl timeStep;
|
||||||
writeInterval 1;
|
writeInterval 1;
|
||||||
|
|||||||
@ -56,7 +56,7 @@ functions
|
|||||||
interfaceHeight1
|
interfaceHeight1
|
||||||
{
|
{
|
||||||
type interfaceHeight;
|
type interfaceHeight;
|
||||||
libs ("libfieldFunctionObjects.so");
|
libs (fieldFunctionObjects);
|
||||||
alpha alpha.liquid;
|
alpha alpha.liquid;
|
||||||
locations ((0 0 0));
|
locations ((0 0 0));
|
||||||
direction (1 0 0);
|
direction (1 0 0);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user