Files
OpenFOAM-12/tutorials/heatTransfer/chtMultiRegionFoam/coolingCylinder2D/system/controlDict
Jakub Knir 3b4ea79e67 coolingCylinder2D: New conjugate heat transfer example of a solid cylinder cooled by water.
This tutorial demonstrates multi-region meshing using blockMesh and
solves transient heat transfer to steady-state.
2020-12-17 15:47:37 +00:00

62 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application chtMultiRegionFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 20;
deltaT 0.01;
writeControl adjustableRunTime;
writeInterval 0.1;
purgeWrite 0;
writeFormat ascii;
writePrecision 8;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable true;
adjustTimeStep no;
maxCo 5;
maxDi 200;
maxDeltaT 1;
functions
{
#includeFunc "patchAverage(funcName=cylinderT, region=fluid, name=fluid_to_solid, field=T)"
#includeFunc "patchAverage(funcName=inletU, region=fluid, name=inlet, field=U)"
}
// ************************************************************************* //