polyTopoChanger: Simplified pending removal

The legacy fvMeshTopoChangersMovingCone removed, replaced by the more general
mesh mapping approach, see tutorials incompressibleFluid/movingCone and
shockFluid/movingCone.
This commit is contained in:
Henry Weller
2023-12-12 20:24:12 +00:00
parent fb21aac461
commit a315ddf370
12 changed files with 15 additions and 963 deletions

View File

@ -1,3 +0,0 @@
attachMesh.C
EXE = $(FOAM_APPBIN)/attachMesh

View File

@ -1,7 +0,0 @@
EXE_INC = \
-I$(LIB_SRC)/dynamicMesh/lnInclude
EXE_LIBS = \
-ldynamicMesh \
-lgenericPatches \
-lmeshTools

View File

@ -1,75 +0,0 @@
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2023 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
attachMesh
Description
Attach topologically detached mesh using prescribed mesh modifiers.
\*---------------------------------------------------------------------------*/
#include "argList.H"
#include "polyMesh.H"
#include "Time.H"
#include "attachPolyTopoChanger.H"
using namespace Foam;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int main(int argc, char *argv[])
{
#include "addOverwriteOption.H"
argList::noParallel();
#include "setRootCase.H"
#include "createTimeNoFunctionObjects.H"
#include "createPolyMesh.H"
const word oldInstance = mesh.pointsInstance();
const bool overwrite = args.optionFound("overwrite");
if (!overwrite)
{
runTime++;
}
Info<< "Time = " << runTime.userTimeName() << nl
<< "Attaching sliding interface" << endl;
attachPolyTopoChanger(mesh).attach();
if (overwrite)
{
mesh.setInstance(oldInstance);
}
mesh.write();
Info<< "End\n" << endl;
return 0;
}
// ************************************************************************* //

View File

@ -455,8 +455,6 @@ int main(int argc, char *argv[])
if (overwrite)
{
mesh.setInstance(oldInstance);
stitcher.instance() = oldInstance;
stitcher.writeOpt() = IOobject::NO_WRITE;
}
Info<< nl << "Writing polyMesh to time " << runTime.name() << endl;