170 lines
4 KiB
C
170 lines
4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2015 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 "fvOptionList.H"
|
|
#include "surfaceFields.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fv
|
|
{
|
|
defineTypeNameAndDebug(optionList, 0);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
const Foam::dictionary& Foam::fv::optionList::optionsDict
|
|
(
|
|
const dictionary& dict
|
|
) const
|
|
{
|
|
if (dict.found("options"))
|
|
{
|
|
return dict.subDict("options");
|
|
}
|
|
else
|
|
{
|
|
return dict;
|
|
}
|
|
}
|
|
|
|
|
|
bool Foam::fv::optionList::readOptions(const dictionary& dict)
|
|
{
|
|
checkTimeIndex_ = mesh_.time().timeIndex() + 2;
|
|
|
|
bool allOk = true;
|
|
forAll(*this, i)
|
|
{
|
|
option& bs = this->operator[](i);
|
|
bool ok = bs.read(dict.subDict(bs.name()));
|
|
allOk = (allOk && ok);
|
|
}
|
|
return allOk;
|
|
}
|
|
|
|
|
|
void Foam::fv::optionList::checkApplied() const
|
|
{
|
|
if (mesh_.time().timeIndex() == checkTimeIndex_)
|
|
{
|
|
forAll(*this, i)
|
|
{
|
|
const option& bs = this->operator[](i);
|
|
bs.checkApplied();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::fv::optionList::optionList(const fvMesh& mesh, const dictionary& dict)
|
|
:
|
|
PtrList<option>(),
|
|
mesh_(mesh),
|
|
checkTimeIndex_(mesh_.time().startTimeIndex() + 2)
|
|
{
|
|
reset(optionsDict(dict));
|
|
}
|
|
|
|
|
|
Foam::fv::optionList::optionList(const fvMesh& mesh)
|
|
:
|
|
PtrList<option>(),
|
|
mesh_(mesh),
|
|
checkTimeIndex_(mesh_.time().startTimeIndex() + 2)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::fv::optionList::reset(const dictionary& dict)
|
|
{
|
|
// Count number of active fvOptions
|
|
label count = 0;
|
|
forAllConstIter(dictionary, dict, iter)
|
|
{
|
|
if (iter().isDict())
|
|
{
|
|
count++;
|
|
}
|
|
}
|
|
|
|
this->setSize(count);
|
|
label i = 0;
|
|
forAllConstIter(dictionary, dict, iter)
|
|
{
|
|
if (iter().isDict())
|
|
{
|
|
const word& name = iter().keyword();
|
|
const dictionary& sourceDict = iter().dict();
|
|
|
|
this->set
|
|
(
|
|
i++,
|
|
option::New(name, sourceDict, mesh_)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
bool Foam::fv::optionList::read(const dictionary& dict)
|
|
{
|
|
return readOptions(optionsDict(dict));
|
|
}
|
|
|
|
|
|
bool Foam::fv::optionList::writeData(Ostream& os) const
|
|
{
|
|
// Write list contents
|
|
forAll(*this, i)
|
|
{
|
|
os << nl;
|
|
this->operator[](i).writeHeader(os);
|
|
this->operator[](i).writeData(os);
|
|
this->operator[](i).writeFooter(os);
|
|
}
|
|
|
|
// Check state of IOstream
|
|
return os.good();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
|
|
|
|
Foam::Ostream& Foam::operator<<(Ostream& os, const fv::optionList& options)
|
|
{
|
|
options.writeData(os);
|
|
return os;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|