The sub-loops of the solution control are now named more consistently, with ambiguously named methods such as finalIter replaced with ones like finalPimpleIter, so that it is clear which loop they represent. In addition, the final logic has been improved so that it restores state after a sub-iteration, and so that sub-iterations can be used on their own without an outer iteration in effect. Previously, if the non-orthogonal loop were used outside of a pimple/piso iteration, the final iteration would not execute with final settings.
105 lines
2.8 KiB
C
105 lines
2.8 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Application
|
|
moveDynamicMesh
|
|
|
|
Description
|
|
Mesh motion and topological mesh changes utility.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "argList.H"
|
|
#include "Time.H"
|
|
#include "dynamicFvMesh.H"
|
|
#include "pimpleControl.H"
|
|
#include "vtkSurfaceWriter.H"
|
|
#include "cyclicAMIPolyPatch.H"
|
|
#include "PatchTools.H"
|
|
#include "checkGeometry.H"
|
|
|
|
using namespace Foam;
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#include "addRegionOption.H"
|
|
argList::addBoolOption
|
|
(
|
|
"checkAMI",
|
|
"check AMI weights"
|
|
);
|
|
|
|
#include "setRootCase.H"
|
|
#include "createTime.H"
|
|
#include "createNamedDynamicFvMesh.H"
|
|
|
|
const bool checkAMI = args.optionFound("checkAMI");
|
|
|
|
if (checkAMI)
|
|
{
|
|
Info<< "Writing VTK files with weights of AMI patches." << nl << endl;
|
|
}
|
|
|
|
pimpleControl pimple(mesh);
|
|
|
|
bool moveMeshOuterCorrectors
|
|
(
|
|
pimple.dict().lookupOrDefault<Switch>("moveMeshOuterCorrectors", false)
|
|
);
|
|
|
|
while (runTime.loop())
|
|
{
|
|
Info<< "Time = " << runTime.timeName() << endl;
|
|
|
|
while (pimple.loop())
|
|
{
|
|
if (pimple.firstPimpleIter() || moveMeshOuterCorrectors)
|
|
{
|
|
mesh.update();
|
|
}
|
|
}
|
|
|
|
mesh.checkMesh(true);
|
|
|
|
if (checkAMI)
|
|
{
|
|
writeAMIWeightsSums(mesh);
|
|
}
|
|
|
|
runTime.write();
|
|
|
|
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
|
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
|
<< nl << endl;
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|