allowing libraries containing and supporting special boundary conditions to be loaded at run-time.
64 lines
1.3 KiB
C++
64 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
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object controlDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
application foamMultiRun;
|
|
|
|
regionSolvers
|
|
{
|
|
solid solid;
|
|
shell fluid;
|
|
tube fluid;
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
// ************************************************************************* //
|