Files
openfoam/src/lagrangian/intermediate/submodels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectList.C

201 lines
4.5 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 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 "CloudFunctionObjectList.H"
#include "entry.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class CloudType>
Foam::CloudFunctionObjectList<CloudType>::CloudFunctionObjectList
(
CloudType& owner
)
:
PtrList<CloudFunctionObject<CloudType> >(),
owner_(owner),
dict_(dictionary::null)
{}
template<class CloudType>
Foam::CloudFunctionObjectList<CloudType>::CloudFunctionObjectList
(
CloudType& owner,
const dictionary& dict,
const bool readFields
)
:
PtrList<CloudFunctionObject<CloudType> >(),
owner_(owner),
dict_(dict)
{
if (readFields)
{
wordList modelNames(dict.toc());
Info<< "Constructing cloud functions" << endl;
if (modelNames.size() > 0)
{
this->setSize(modelNames.size());
forAll(modelNames, i)
{
const word& modelName = modelNames[i];
this->set
(
i,
CloudFunctionObject<CloudType>::New
(
dict,
owner,
modelName
)
);
}
}
else
{
Info<< " none" << endl;
}
}
}
template<class CloudType>
Foam::CloudFunctionObjectList<CloudType>::CloudFunctionObjectList
(
const CloudFunctionObjectList& cfol
)
:
PtrList<CloudFunctionObject<CloudType> >(cfol),
owner_(cfol.owner_),
dict_(cfol.dict_)
{}
// * * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * //
template<class CloudType>
Foam::CloudFunctionObjectList<CloudType>::~CloudFunctionObjectList()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::preEvolve()
{
forAll(*this, i)
{
this->operator[](i).preEvolve();
}
}
template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::postEvolve()
{
forAll(*this, i)
{
this->operator[](i).postEvolve();
}
}
template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::postMove
(
const typename CloudType::parcelType& p,
const label cellI,
const scalar dt,
bool& keepParticle
)
{
forAll(*this, i)
{
this->operator[](i).postMove(p, cellI, dt, keepParticle);
if (!keepParticle)
{
return;
}
}
}
template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::postPatch
(
const typename CloudType::parcelType& p,
const polyPatch& pp,
const scalar trackFraction,
const tetIndices& tetIs,
bool& keepParticle
)
{
forAll(*this, i)
{
this->operator[](i).postPatch
(
p,
pp,
trackFraction,
tetIs,
keepParticle
);
if (!keepParticle)
{
return;
}
}
}
template<class CloudType>
void Foam::CloudFunctionObjectList<CloudType>::postFace
(
const typename CloudType::parcelType& p,
const label faceI,
bool& keepParticle
)
{
forAll(*this, i)
{
this->operator[](i).postFace(p, faceI, keepParticle);
if (!keepParticle)
{
return;
}
}
}
// ************************************************************************* //