76 lines
1.9 KiB
Text
76 lines
1.9 KiB
Text
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.4 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// FoamX Case Dictionary.
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "boundaryFoam";
|
|
case "boundaryWallFunctions";
|
|
instance "system";
|
|
local "";
|
|
|
|
class dictionary;
|
|
object controlDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Foam Application Class
|
|
application boundaryFoam;
|
|
|
|
// Start point of run
|
|
startFrom startTime;
|
|
|
|
// Calculation start time
|
|
startTime 0;
|
|
|
|
// End point of run
|
|
stopAt endTime;
|
|
|
|
// Calculation end time
|
|
endTime 5000;
|
|
|
|
// Calculation time step
|
|
deltaT 1;
|
|
|
|
// Type of write output control
|
|
writeControl timeStep;
|
|
|
|
// Interval with which the results are output
|
|
writeInterval 1000;
|
|
|
|
// Limits number of time directories before overwriting
|
|
purgeWrite 0;
|
|
|
|
// Write Format
|
|
writeFormat ascii;
|
|
|
|
// Significant figures of written ASCII data
|
|
writePrecision 6;
|
|
|
|
// Write Compression
|
|
writeCompression uncompressed;
|
|
|
|
// Time directories name format
|
|
timeFormat general;
|
|
|
|
// Decimal precision of time directory names
|
|
timePrecision 6;
|
|
|
|
// Can parameters be modified during run time?
|
|
runTimeModifiable yes;
|
|
|
|
// Output format for graphs
|
|
graphFormat raw;
|
|
|
|
|
|
// ************************************************************************* //
|