mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Tried to sort out the scripts in the tutorials but found it is messed up. Will start again from a new version from Mattijs
This commit is contained in:
@ -1,74 +0,0 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.4 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
|
||||
root "";
|
||||
case "";
|
||||
instance "";
|
||||
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 1000;
|
||||
|
||||
// Calculation time step
|
||||
deltaT 1;
|
||||
|
||||
// Type of write output control
|
||||
writeControl timeStep;
|
||||
|
||||
// Interval with which the results are output
|
||||
writeInterval 100;
|
||||
|
||||
// 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;
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user