diff --git a/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/files b/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/files deleted file mode 100644 index e4c51df442..0000000000 --- a/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/files +++ /dev/null @@ -1,3 +0,0 @@ -interactingKinematicParcelFoam.C - -EXE = $(FOAM_APPBIN)/interactingKinematicParcelFoam diff --git a/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/options b/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/options deleted file mode 100644 index 83ef9251c5..0000000000 --- a/applications/solvers/lagrangian/interactingKinematicParcelFoam/Make/options +++ /dev/null @@ -1,22 +0,0 @@ -EXE_INC = \ - -I$(LIB_SRC)/lagrangian/basic/lnInclude \ - -I$(LIB_SRC)/lagrangian/intermediate/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \ - -I$(LIB_SRC)/thermophysicalModels/radiation/lnInclude \ - -I$(LIB_SRC)/turbulenceModels/compressible/turbulenceModel \ - -I$(LIB_SRC)/finiteVolume/lnInclude \ - -I$(LIB_SRC)/meshTools/lnInclude \ - -EXE_LIBS = \ - -llagrangian \ - -llagrangianIntermediate \ - -lthermophysicalFunctions \ - -lbasicThermophysicalModels \ - -lspecie \ - -lradiation \ - -lcompressibleRASModels \ - -lcompressibleLESModels \ - -lfiniteVolume \ - -lmeshTools diff --git a/applications/solvers/lagrangian/interactingKinematicParcelFoam/createFields.H b/applications/solvers/lagrangian/interactingKinematicParcelFoam/createFields.H deleted file mode 100644 index 1899a13e41..0000000000 --- a/applications/solvers/lagrangian/interactingKinematicParcelFoam/createFields.H +++ /dev/null @@ -1,63 +0,0 @@ - Info<< "Reading thermophysical properties\n" << endl; - - autoPtr pThermo - ( - basicPsiThermo::New(mesh) - ); - basicPsiThermo& thermo = pThermo(); - - volScalarField rho - ( - IOobject - ( - "rho", - runTime.timeName(), - mesh, - IOobject::NO_READ, - IOobject::AUTO_WRITE - ), - thermo.rho() - ); - - Info<< "\nReading field U\n" << endl; - volVectorField U - ( - IOobject - ( - "U", - runTime.timeName(), - mesh, - IOobject::MUST_READ, - IOobject::AUTO_WRITE - ), - mesh - ); - - #include "compressibleCreatePhi.H" - - Info<< "Creating turbulence model\n" << endl; - autoPtr turbulence - ( - compressible::turbulenceModel::New - ( - rho, - U, - phi, - thermo - ) - ); - - word interactingKinematicCloudName("interactingKinematicCloud"); - args.optionReadIfPresent("cloudName", interactingKinematicCloudName); - - Info<< "Constructing interactingKinematicCloud " - << interactingKinematicCloudName << endl; - - basicInteractingKinematicCloud interactingKinematicCloud - ( - interactingKinematicCloudName, - rho, - U, - thermo.mu(), - g - ); diff --git a/applications/solvers/lagrangian/interactingKinematicParcelFoam/interactingKinematicParcelFoam.C b/applications/solvers/lagrangian/interactingKinematicParcelFoam/interactingKinematicParcelFoam.C deleted file mode 100644 index 7267f70c0e..0000000000 --- a/applications/solvers/lagrangian/interactingKinematicParcelFoam/interactingKinematicParcelFoam.C +++ /dev/null @@ -1,79 +0,0 @@ -/*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | Copyright (C) 2008-2009 OpenCFD Ltd. - \\/ 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 2 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, write to the Free Software Foundation, - Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -Application - interactingKinematicParcelFoam - -Description - Transient solver for the passive transport of a single interactingKinematic - particle could, where the particles interact. - - Uses a pre- calculated velocity field to evolve the cloud. - -\*---------------------------------------------------------------------------*/ - -#include "fvCFD.H" -#include "basicPsiThermo.H" -#include "turbulenceModel.H" -#include "basicInteractingKinematicCloud.H" - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -int main(int argc, char *argv[]) -{ - argList::validOptions.insert("cloudName", "cloud name"); - - #include "setRootCase.H" - #include "createTime.H" - #include "createMesh.H" - #include "readGravitationalAcceleration.H" - #include "createFields.H" - #include "compressibleCourantNo.H" - - // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - - Info<< "\nStarting time loop\n" << endl; - - while (runTime.loop()) - { - Info<< "Time = " << runTime.timeName() << nl << endl; - - Info<< "Evolving " << interactingKinematicCloud.name() << endl; - interactingKinematicCloud.evolve(); - interactingKinematicCloud.info(); - - runTime.write(); - - Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s" - << " ClockTime = " << runTime.elapsedClockTime() << " s" - << nl << endl; - } - - Info<< "End\n" << endl; - - return 0; -} - - -// ************************************************************************* //