From 251c628c7772c2b0c04d1bc51563adbaae4eae5d Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Sat, 6 Nov 2021 00:51:28 +0000 Subject: [PATCH] moveEngineMesh: Removed as no longer required moveDynamicMesh can be used to move engine meshes which use fvMeshMovers --- .../manipulation/moveEngineMesh/Make/files | 3 - .../manipulation/moveEngineMesh/Make/options | 10 --- .../moveEngineMesh/moveEngineMesh.C | 67 ------------------- 3 files changed, 80 deletions(-) delete mode 100644 applications/utilities/mesh/manipulation/moveEngineMesh/Make/files delete mode 100644 applications/utilities/mesh/manipulation/moveEngineMesh/Make/options delete mode 100644 applications/utilities/mesh/manipulation/moveEngineMesh/moveEngineMesh.C diff --git a/applications/utilities/mesh/manipulation/moveEngineMesh/Make/files b/applications/utilities/mesh/manipulation/moveEngineMesh/Make/files deleted file mode 100644 index b659eec8e9..0000000000 --- a/applications/utilities/mesh/manipulation/moveEngineMesh/Make/files +++ /dev/null @@ -1,3 +0,0 @@ -moveEngineMesh.C - -EXE = $(FOAM_APPBIN)/moveEngineMesh diff --git a/applications/utilities/mesh/manipulation/moveEngineMesh/Make/options b/applications/utilities/mesh/manipulation/moveEngineMesh/Make/options deleted file mode 100644 index a82119ff74..0000000000 --- a/applications/utilities/mesh/manipulation/moveEngineMesh/Make/options +++ /dev/null @@ -1,10 +0,0 @@ -EXE_INC = \ - -I$(LIB_SRC)/engine/lnInclude \ - -I$(LIB_SRC)/finiteVolume/lnInclude \ - -I$(LIB_SRC)/meshTools/lnInclude - -EXE_LIBS = \ - -lengine \ - -ldynamicMesh \ - -lfiniteVolume \ - -lmeshTools diff --git a/applications/utilities/mesh/manipulation/moveEngineMesh/moveEngineMesh.C b/applications/utilities/mesh/manipulation/moveEngineMesh/moveEngineMesh.C deleted file mode 100644 index 4dea47ca29..0000000000 --- a/applications/utilities/mesh/manipulation/moveEngineMesh/moveEngineMesh.C +++ /dev/null @@ -1,67 +0,0 @@ -/*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 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 . - -Application - moveEngineMesh - -Description - Solver for moving meshes for engine calculations. - -\*---------------------------------------------------------------------------*/ - -#include "fvCFD.H" -#include "engineMesh.H" - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -int main(int argc, char *argv[]) -{ - #include "setRootCase.H" - - #include "createTime.H" - #include "createEngineMesh.H" - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - Info<< "\nStarting time loop\n" << endl; - - while (runTime.loop()) - { - Info<< "Time = " << runTime.timeName() << endl; - - mesh.move(); - - runTime.write(); - - Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s" - << " ClockTime = " << runTime.elapsedClockTime() << " s" - << nl << endl; - } - - Info<< "End\n" << endl; - - return 0; -} - - -// ************************************************************************* //