119 lines
2.8 KiB
C++
119 lines
2.8 KiB
C++
/*--------------------------------*- 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;
|
|
location "system";
|
|
object controlDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
application chtMultiRegionSimpleFoam;
|
|
|
|
startFrom startTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 2000;
|
|
|
|
deltaT 1;
|
|
|
|
writeControl timeStep;
|
|
|
|
writeInterval 100;
|
|
|
|
purgeWrite 5;
|
|
|
|
writeFormat ascii;
|
|
|
|
writePrecision 7;
|
|
|
|
writeCompression uncompressed;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable true;
|
|
|
|
functions
|
|
{
|
|
topAir_minX
|
|
{
|
|
type faceSource;
|
|
functionObjectLibs ("libfieldFunctionObjects.so");
|
|
|
|
enabled yes;
|
|
outputControl outputTime;
|
|
|
|
region topAir;
|
|
|
|
// Output to log&file (yes) or to file only
|
|
log yes;
|
|
|
|
// Output field values as well
|
|
valueOutput no;
|
|
|
|
// Type of source: patch/faceZone/sampledSurface
|
|
source patch;
|
|
|
|
// if patch or faceZone: name of patch or faceZone
|
|
sourceName minX;
|
|
|
|
// Operation: areaAverage/sum/weightedAverage ...
|
|
operation areaIntegrate;
|
|
|
|
fields
|
|
(
|
|
p
|
|
phi // surface fields not supported for sampledSurface
|
|
U
|
|
);
|
|
}
|
|
|
|
topAir_maxX
|
|
{
|
|
type faceSource;
|
|
functionObjectLibs ("libfieldFunctionObjects.so");
|
|
|
|
enabled yes;
|
|
outputControl outputTime;
|
|
|
|
region topAir;
|
|
|
|
// Output to log&file (yes) or to file only
|
|
log yes;
|
|
|
|
// Output field values as well
|
|
valueOutput no;
|
|
|
|
// Type of source: patch/faceZone/sampledSurface
|
|
source patch;
|
|
|
|
// if patch or faceZone: name of patch or faceZone
|
|
sourceName maxX;
|
|
|
|
// Operation: areaAverage/sum/weightedAverage ...
|
|
operation areaIntegrate;
|
|
|
|
fields
|
|
(
|
|
p
|
|
phi // surface fields not supported for sampledSurface
|
|
U
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
// ************************************************************************* //
|