The '-region' option has been leveraged to significantly simplify the meshing and decomposition in the movingCone cases. These cases have also been corrected to restore the variation in decomposition between the different meshes, which is important for thoroughly testing the patch field mapping. The shockFluid case has also had its duration extended a little in order to span the final mesh mapping time.
57 lines
1.1 KiB
C++
57 lines
1.1 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 foamRun;
|
|
|
|
solver shockFluid;
|
|
|
|
startFrom startTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 2.25e-05;
|
|
|
|
deltaT 1e-08;
|
|
|
|
writeControl adjustableRunTime;
|
|
|
|
writeInterval 5e-7;
|
|
|
|
purgeWrite 0;
|
|
|
|
writeFormat binary;
|
|
|
|
writePrecision 6;
|
|
|
|
writeCompression off;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable true;
|
|
|
|
adjustTimeStep yes;
|
|
|
|
maxCo 0.2;
|
|
|
|
maxDeltaT 1;
|
|
|
|
|
|
// ************************************************************************* //
|