STYLE: use switch value for 'writeCompression' in controlDict's

- simpler/clearer to use "on/off" instead of "compressed/uncompressed"
This commit is contained in:
Mark Olesen
2010-04-09 13:12:35 +02:00
parent 10141f907b
commit 3fef72510e
123 changed files with 263 additions and 265 deletions

View File

@ -14,37 +14,36 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application interPhaseChangeFoam;
application interPhaseChangeFoam;
startFrom latestTime;
startFrom latestTime;
startTime 0;
startTime 0;
stopAt endTime;
stopAt endTime;
endTime 0.05;
endTime 0.05;
deltaT 1e-8;
deltaT 1e-8;
writeControl adjustableRunTime;
writeControl adjustableRunTime;
writeInterval 0.001;
writeInterval 0.001;
purgeWrite 0;
purgeWrite 0;
writeFormat ascii;
writeFormat ascii;
writePrecision 6;
writePrecision 6;
writeCompression uncompressed;
writeCompression off;
timeFormat general;
timeFormat general;
runTimeModifiable yes;
runTimeModifiable true;
adjustTimeStep on;
maxCo 1.0;
adjustTimeStep yes;
maxCo 1.0;
// ************************************************************************* //