mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- Since 'bool' and 'Switch' use the _identical_ input mechanism (ie, both accept true/false, on/off, yes/no, none, 1/0), the main reason to prefer one or the other is the output. The output for Switch is as text (eg, "true"), whereas for bool it is label (0 or 1). If the output is required for a dictionary, Switch may be appropriate. If the output is not required, or is only used for Pstream exchange, bool can be more appropriate.
119 lines
3.0 KiB
C
119 lines
3.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 "setUpdater.H"
|
|
#include "polyTopoChanger.H"
|
|
#include "polyTopoChange.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "mapPolyMesh.H"
|
|
#include "cellSet.H"
|
|
#include "faceSet.H"
|
|
#include "pointSet.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(setUpdater, 0);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
polyMeshModifier,
|
|
setUpdater,
|
|
dictionary
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::setUpdater::setUpdater
|
|
(
|
|
const word& name,
|
|
const dictionary& dict,
|
|
const label index,
|
|
const polyTopoChanger& mme
|
|
)
|
|
:
|
|
polyMeshModifier(name, index, mme, dict.get<bool>("active"))
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::setUpdater::~setUpdater()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
bool Foam::setUpdater::changeTopology() const
|
|
{
|
|
// I am never cause of changeTopo
|
|
return false;
|
|
}
|
|
|
|
|
|
void Foam::setUpdater::setRefinement(polyTopoChange&) const
|
|
{}
|
|
|
|
|
|
void Foam::setUpdater::modifyMotionPoints(pointField&) const
|
|
{}
|
|
|
|
|
|
void Foam::setUpdater::updateMesh(const mapPolyMesh& morphMap)
|
|
{
|
|
// Mesh has changed topologically. Update all sets.
|
|
if (debug)
|
|
{
|
|
Pout<< "setUpdater::updateMesh(const mapPolyMesh& morphMap)"
|
|
<< endl;
|
|
}
|
|
|
|
updateSets<cellSet>(morphMap);
|
|
updateSets<faceSet>(morphMap);
|
|
updateSets<pointSet>(morphMap);
|
|
}
|
|
|
|
|
|
void Foam::setUpdater::write(Ostream& os) const
|
|
{
|
|
os << nl << type() << nl;
|
|
}
|
|
|
|
|
|
void Foam::setUpdater::writeDict(Ostream& os) const
|
|
{
|
|
os << nl;
|
|
|
|
os.beginBlock(name());
|
|
os.writeEntry("type", type());
|
|
os.writeEntry("active", active());
|
|
os.endBlock();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|