mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
145 lines
3.6 KiB
C
145 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
|
|
\\/ 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 "DimensionedField.H"
|
|
#include "IOstreams.H"
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
void Foam::DimensionedField<Type, GeoMesh>::readField
|
|
(
|
|
const dictionary& fieldDict,
|
|
const word& fieldDictEntry
|
|
)
|
|
{
|
|
dimensions_.reset(dimensionSet(fieldDict.lookup("dimensions")));
|
|
|
|
Field<Type> f(fieldDictEntry, fieldDict, GeoMesh::size(mesh_));
|
|
this->transfer(f);
|
|
}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
void Foam::DimensionedField<Type, GeoMesh>::readIfPresent
|
|
(
|
|
const word& fieldDictEntry
|
|
)
|
|
{
|
|
if
|
|
(
|
|
(this->readOpt() == IOobject::READ_IF_PRESENT && this->headerOk())
|
|
|| this->readOpt() == IOobject::MUST_READ
|
|
|| this->readOpt() == IOobject::MUST_READ_IF_MODIFIED
|
|
)
|
|
{
|
|
readField(dictionary(readStream(typeName)), fieldDictEntry);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
Foam::DimensionedField<Type, GeoMesh>::DimensionedField
|
|
(
|
|
const IOobject& io,
|
|
const Mesh& mesh,
|
|
const word& fieldDictEntry
|
|
)
|
|
:
|
|
regIOobject(io),
|
|
Field<Type>(0),
|
|
mesh_(mesh),
|
|
dimensions_(dimless)
|
|
{
|
|
readField(dictionary(readStream(typeName)), fieldDictEntry);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
bool Foam::DimensionedField<Type, GeoMesh>::writeData
|
|
(
|
|
Ostream& os,
|
|
const word& fieldDictEntry
|
|
) const
|
|
{
|
|
os.writeKeyword("dimensions") << dimensions() << token::END_STATEMENT
|
|
<< nl << nl;
|
|
|
|
Field<Type>::writeEntry(fieldDictEntry, os);
|
|
|
|
// Check state of Ostream
|
|
os.check
|
|
(
|
|
"bool DimensionedField<Type, GeoMesh>::writeData"
|
|
"(Ostream& os, const word& fieldDictEntry) const"
|
|
);
|
|
|
|
return (os.good());
|
|
}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
bool Foam::DimensionedField<Type, GeoMesh>::writeData(Ostream& os) const
|
|
{
|
|
return writeData(os, "value");
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const DimensionedField<Type, GeoMesh>& df
|
|
)
|
|
{
|
|
df.writeData(os);
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const tmp<DimensionedField<Type, GeoMesh> >& tdf
|
|
)
|
|
{
|
|
tdf().writeData(os);
|
|
tdf.clear();
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|