to ensure the thermal coupled boundary conditions are loaded before the solid solver module.
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object controlDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
application foamMultiRun;
|
|
|
|
regionSolvers
|
|
{
|
|
solid solid;
|
|
shell fluid;
|
|
tube fluid;
|
|
}
|
|
|
|
libs ("libcoupledThermophysicalTransportModels.so");
|
|
|
|
startFrom startTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 1000;
|
|
|
|
deltaT 1;
|
|
|
|
writeControl adjustableRunTime;
|
|
|
|
writeInterval 100;
|
|
|
|
purgeWrite 0;
|
|
|
|
writeFormat binary;
|
|
|
|
writePrecision 6;
|
|
|
|
writeCompression off;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable on;
|
|
|
|
adjustTimeStep off;
|
|
|
|
functions
|
|
{
|
|
#includeFunc residuals(region = shell, p_rgh, U, h)
|
|
#includeFunc residuals(region = tube, p_rgh, U, h)
|
|
#includeFunc residuals(region = solid, h)
|
|
}
|
|
|
|
// ************************************************************************* //
|