Files
CFDEMcoupling-PFM/tutorials/cfdemSolverRhoPimple/ErgunTestMPI/CFD/system/controlDict
danielque 70617eb360 replace deprecated outputControl and outputInterval
replace with writeControl and writeInterval
2017-08-31 14:50:59 +02:00

98 lines
2.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application pisoFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0.5;
deltaT 0.00025;
writeControl adjustableRunTime;
writeInterval 0.1;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
runTimeModifiable yes;
adjustTimeStep no;
maxCo 0.1;
functions
{
probes
{
type probes;
// Where to load it from
functionObjectLibs ( "libsampling.so" );
// Name of the directory for probe data
name probes;
probeLocations
(
(0.00003 0 0.0001)
(0.00003 0 0.0026)
(0.00003 0 0.0051)
(0.00003 0 0.0076)
(0.00003 0 0.0101)
(0.00003 0 0.0126)
(0.00003 0 0.0151)
(0.00003 0 0.0176)
(0.00003 0 0.0201)
(0.00003 0 0.0226)
(0.00003 0 0.0251)
(0.00003 0 0.0276)
(0.00003 0 0.0301)
(0.00003 0 0.0326)
(0.00003 0 0.0351)
(0.00003 0 0.0375)
(0.00003 0 0.0401)
(0.00003 0 0.0426)
(0.00003 0 0.0451)
(0.00003 0 0.0476)
(0.00003 0 0.0529)
);
// Fields to be probed
fields ( p U T voidfraction volAverage_voidfraction);
// Write at same frequency as fields
writeControl timeStep;//outputTime;
writeInterval 1;
}
}
// ************************************************************************* //