Files
CFDEMcoupling-PFM/tutorials/cfdemSolverPimple/bubblingFluidizedBed_Smoothing/CFD/system/controlDict
2024-01-23 15:20:48 +01:00

128 lines
2.8 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application cfdemSolverPimple;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 20;
deltaT 0.0002;
writeControl adjustableRunTime;
writeInterval 0.01;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable true;
adjustTimeStep no;
maxCo 0.8;
functions
{
fieldAverage1
{
type fieldAverage;
functionObjectLibs ( "libfieldFunctionObjects.so" );
writeControl writeTime;
fields
(
Us
{
mean on;
prime2Mean off;
base time;
window 18.0;
}
voidfraction
{
mean on;
prime2Mean off;
base time;
window 18.0;
}
p
{
mean on;
prime2Mean off;
base time;
window 18.0;
}
);
}
probes
{
type probes;
functionObjectLibs ("libsampling.so");
name probes;
probeLocations
(
(0.0018 0.0045 0.0023)
(0.0116 0.0045 0.0023)
(0.0214 0.0045 0.0023)
(0.0018 0.0045 0.0159)
(0.0116 0.0045 0.0159)
(0.0214 0.0045 0.0159)
(0.0018 0.0045 0.0311)
(0.0116 0.0045 0.0311)
(0.0214 0.0045 0.0311)
(0.0018 0.0045 0.0462)
(0.0116 0.0045 0.0462)
(0.0214 0.0045 0.0462)
(0.0018 0.0045 0.0614)
(0.0116 0.0045 0.0614)
(0.0214 0.0045 0.0614)
(0.0018 0.0045 0.0765)
(0.0116 0.0045 0.0765)
(0.0214 0.0045 0.0765)
);
// fields to be probed
fields
(
voidfraction
U
);
// write at same frequency as fields
writeControl timeStep;
writeInterval 50;
}
}
// ************************************************************************* //