openfoam/tutorials/multiphase/interFoam/laminar/waveExampleStokesV/system/controlDict
Mark Olesen 0ea219adf5 TUT: consistent writeCompression option
- Use on/off vs longer compressed/uncompressed.
  For consistency, replaced yes/no with on/off.

- Avoid the combination of binary/compressed,
  which is disallowed and provokes a warning anyhow
2017-06-13 06:50:16 +02:00

145 lines
3.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: plus |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application interFoam;
startFrom latestTime;
startTime 0;
stopAt endTime;
endTime 30.0;
deltaT 0.01;
writeControl adjustableRunTime;
writeInterval 0.033;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable yes;
adjustTimeStep on;
maxCo 0.65;
maxAlphaCo 0.65;
maxDeltaT 0.05;
functions
{
line
{
type sets;
libs ("libsampling.so");
enabled true;
writeControl writeTime;
writeInterval 1;
interpolationScheme cellPoint;
setFormat raw;
sets
(
line1
{
type uniform;
axis distance;
start ( 1.0 0.005 0.0 );
end ( 1.0 0.005 0.8 );
nPoints 1001;
}
line2
{
type uniform;
axis distance;
start ( 2.0 0.005 0.0 );
end ( 2.0 0.005 0.8 );
nPoints 1001;
}
line3
{
type uniform;
axis distance;
start ( 3.0 0.005 0.0 );
end ( 3.0 0.005 0.8 );
nPoints 1001;
}
line4
{
type uniform;
axis distance;
start ( 4.0 0.005 0.0 );
end ( 4.0 0.005 0.8 );
nPoints 1001;
}
line5
{
type uniform;
axis distance;
start ( 5 0.005 0.0 );
end ( 5 0.005 0.8 );
nPoints 1001;
}
line6
{
type uniform;
axis distance;
start ( 7.0 0.005 0.0 );
end ( 7.0 0.005 0.8 );
nPoints 1001;
}
line7
{
type uniform;
axis distance;
start ( 8.0 0.005 0.0 );
end ( 8.0 0.005 0.8 );
nPoints 1001;
}
line8
{
type uniform;
axis distance;
start ( 9.0 0.005 0.0 );
end ( 9.0 0.005 0.8 );
nPoints 1001;
}
);
fixedLocations false;
fields
(
U alpha.water
);
}
}
// ************************************************************************* //