mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
173 lines
4.0 KiB
C
173 lines
4.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 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
|
|
)
|
|
{
|
|
forAll(*this, i)
|
|
{
|
|
this->operator[](i).postMove(p, cellI, dt);
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
void Foam::CloudFunctionObjectList<CloudType>::postPatch
|
|
(
|
|
const typename CloudType::parcelType& p,
|
|
const label patchI
|
|
)
|
|
{
|
|
forAll(*this, i)
|
|
{
|
|
this->operator[](i).postPatch(p, patchI);
|
|
}
|
|
}
|
|
|
|
|
|
template<class CloudType>
|
|
void Foam::CloudFunctionObjectList<CloudType>::postFace
|
|
(
|
|
const typename CloudType::parcelType& p
|
|
)
|
|
{
|
|
forAll(*this, i)
|
|
{
|
|
this->operator[](i).postFace(p);
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|