Replaced the 'postProcess' argument to the 'write' and 'execute' functions with the single static member 'postProcess' in the functionObject base-class.
177 lines
5.2 KiB
C++
177 lines
5.2 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2016 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/>.
|
|
|
|
Class
|
|
Foam::functionObjects::icoUncoupledKinematicCloud
|
|
|
|
Group
|
|
grpLagrangianFunctionObjects
|
|
|
|
Description
|
|
This functionObject tracks a uncoupled kinematic particle cloud in the
|
|
specified velocity field of an incompressible flow (laminar, RANS or LES).
|
|
|
|
It may be used in conjunction with any transient single-phase incompressible
|
|
flow solver such as pisoFoam or pimpleFoam and tracks the particles or
|
|
parcels without affecting the the flow-field.
|
|
|
|
The kinematicCloud requires the the density of the fluid which is looked-up
|
|
from constant/transportProperties dictionary and the acceleration due to
|
|
gravity which is read from the constant/g file if present or defaults to
|
|
zero.
|
|
|
|
The kinematicCloud properties are read from the
|
|
constant/kinematicCloudProperties dictionary in the usual manner.
|
|
|
|
Example of function object specification:
|
|
\verbatim
|
|
tracks
|
|
{
|
|
libs ("liblagrangianFunctionObjects.so");
|
|
type icoUncoupledKinematicCloud;
|
|
}
|
|
\endverbatim
|
|
|
|
\heading Function object usage
|
|
\table
|
|
Property | Description | Required | Default value
|
|
type | Type name: icoUncoupledKinematicCloud | yes |
|
|
U | Name of the velocity field | no | U
|
|
kinematicCloud | Name of the kinematicCloud | no | kinematicCloud
|
|
\endtable
|
|
|
|
SeeAlso
|
|
Foam::functionObjects::fvMeshFunctionObject
|
|
|
|
SourceFiles
|
|
icoUncoupledKinematicCloud.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef functionObjects_icoUncoupledKinematicCloud_H
|
|
#define functionObjects_icoUncoupledKinematicCloud_H
|
|
|
|
#include "fvMeshFunctionObject.H"
|
|
#include "basicKinematicCollidingCloud.H"
|
|
#include "volFields.H"
|
|
#include "uniformDimensionedFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class singlePhaseTransportModel;
|
|
|
|
namespace functionObjects
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class icoUncoupledKinematicCloud Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class icoUncoupledKinematicCloud
|
|
:
|
|
public fvMeshFunctionObject
|
|
{
|
|
// Private member data
|
|
|
|
//- Optional acceleration due to gravity
|
|
uniformDimensionedVectorField g_;
|
|
|
|
//- Reference to the laminar transport model
|
|
const singlePhaseTransportModel& laminarTransport_;
|
|
|
|
//- Uniform density value
|
|
dimensionedScalar rhoValue_;
|
|
|
|
//- Density field needed to construct kinematicCloud
|
|
volScalarField rho_;
|
|
|
|
//- Dynamic viscosity field needed to construct kinematicCloud
|
|
volScalarField mu_;
|
|
|
|
//- Reference to the velocity field
|
|
const volVectorField& U_;
|
|
|
|
//- Name of the cloud
|
|
word kinematicCloudName_;
|
|
|
|
//- The kinematic cloud
|
|
basicKinematicCollidingCloud kinematicCloud_;
|
|
|
|
|
|
// Private member functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
icoUncoupledKinematicCloud(const icoUncoupledKinematicCloud&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator==(const icoUncoupledKinematicCloud&);
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("icoUncoupledKinematicCloud");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct for given objectRegistry and dictionary.
|
|
// Allow the possibility to load fields from files
|
|
icoUncoupledKinematicCloud
|
|
(
|
|
const word& name,
|
|
const Time& runTime,
|
|
const dictionary& dict
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~icoUncoupledKinematicCloud();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Read the controls
|
|
virtual bool read(const dictionary&);
|
|
|
|
//- Track the cloud
|
|
virtual bool execute();
|
|
|
|
//- Write the cloud
|
|
virtual bool write();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace functionObjects
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|