Files
OpenFOAM-12/src/lagrangian/functionObjects/particles/particles.C
Henry Weller 69dbca58fb Moved src/functionObjects/lagrangian -> src/lagrangian/functionObjects
to localise Lagrangian functionality
2023-02-04 10:50:39 +00:00

149 lines
3.3 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2016-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/>.
\*---------------------------------------------------------------------------*/
#include "particles.H"
#include "viscosityModel.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
namespace functionObjects
{
defineTypeNameAndDebug(particles, 0);
addToRunTimeSelectionTable
(
functionObject,
particles,
dictionary
);
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::functionObjects::particles::particles
(
const word& name,
const Time& runTime,
const dictionary& dict
)
:
fvMeshFunctionObject(name, runTime, dict),
g_
(
IOobject
(
"g",
time_.constant(),
mesh_,
IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE
),
dimensionedVector(dimAcceleration, Zero)
),
viscosity_
(
mesh_.lookupObject<viscosityModel>(physicalProperties::typeName)
),
rhoValue_
(
"rho",
dimDensity,
viscosity_
),
rho_
(
IOobject
(
"rho",
time_.name(),
mesh_
),
mesh_,
rhoValue_
),
mu_("mu", rhoValue_*viscosity_.nu()),
U_
(
mesh_.lookupObject<volVectorField>(dict.lookupOrDefault<word>("U", "U"))
),
cloudName_
(
dict.lookupOrDefault<word>("cloud", "cloud")
),
cloudPtr_
(
parcelCloud::New
(
cloudName_,
rho_,
U_,
mu_,
g_
)
)
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::functionObjects::particles::~particles()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::functionObjects::particles::read
(
const dictionary& dict
)
{
fvMeshFunctionObject::read(dict);
return true;
}
bool Foam::functionObjects::particles::execute()
{
mu_ = rhoValue_*viscosity_.nu();
cloudPtr_->evolve();
return true;
}
bool Foam::functionObjects::particles::write()
{
return true;
}
// ************************************************************************* //