mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- output the "uniform", "nonuniform" Field entry tags as words instead of raw character strings, which can help for direct tokenization or when sending/receiving via Pstreams.
742 lines
17 KiB
C
742 lines
17 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
Copyright (C) 2015-2019 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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 "FieldMapper.H"
|
|
#include "FieldM.H"
|
|
#include "dictionary.H"
|
|
#include "contiguous.H"
|
|
#include "mapDistributeBase.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
:
|
|
List<Type>(mapAddressing.size())
|
|
{
|
|
map(mapF, mapAddressing);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
:
|
|
List<Type>(mapAddressing.size())
|
|
{
|
|
map(tmapF, mapAddressing);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelListList& mapAddressing,
|
|
const scalarListList& mapWeights
|
|
)
|
|
:
|
|
List<Type>(mapAddressing.size())
|
|
{
|
|
map(mapF, mapAddressing, mapWeights);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelListList& mapAddressing,
|
|
const scalarListList& mapWeights
|
|
)
|
|
:
|
|
List<Type>(mapAddressing.size())
|
|
{
|
|
map(tmapF, mapAddressing, mapWeights);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const UList<Type>& mapF,
|
|
const FieldMapper& mapper,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(mapper.size())
|
|
{
|
|
map(mapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const UList<Type>& mapF,
|
|
const FieldMapper& mapper,
|
|
const Type& defaultValue,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(mapper.size(), defaultValue)
|
|
{
|
|
map(mapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const UList<Type>& mapF,
|
|
const FieldMapper& mapper,
|
|
const UList<Type>& defaultValues,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(defaultValues)
|
|
{
|
|
map(mapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const FieldMapper& mapper,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(mapper.size())
|
|
{
|
|
map(tmapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const FieldMapper& mapper,
|
|
const Type& defaultValue,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(mapper.size(), defaultValue)
|
|
{
|
|
map(tmapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const FieldMapper& mapper,
|
|
const UList<Type>& defaultValues,
|
|
const bool applyFlip
|
|
)
|
|
:
|
|
List<Type>(defaultValues)
|
|
{
|
|
map(tmapF, mapper, applyFlip);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Field<Type>::Field
|
|
(
|
|
const word& keyword,
|
|
const dictionary& dict,
|
|
const label len
|
|
)
|
|
{
|
|
if (len)
|
|
{
|
|
ITstream& is = dict.lookup(keyword);
|
|
|
|
// Read first token
|
|
token firstToken(is);
|
|
|
|
if (firstToken.isWord())
|
|
{
|
|
if (firstToken.wordToken() == "uniform")
|
|
{
|
|
this->setSize(len);
|
|
operator=(pTraits<Type>(is));
|
|
}
|
|
else if (firstToken.wordToken() == "nonuniform")
|
|
{
|
|
is >> static_cast<List<Type>&>(*this);
|
|
label currentSize = this->size();
|
|
if (currentSize != len)
|
|
{
|
|
if (len < currentSize && allowConstructFromLargerSize)
|
|
{
|
|
#ifdef FULLDEBUG
|
|
IOWarningInFunction(dict)
|
|
<< "Sizes do not match. "
|
|
<< "Re-sizing " << currentSize
|
|
<< " entries to " << len
|
|
<< endl;
|
|
#endif
|
|
|
|
// Resize the data
|
|
this->setSize(len);
|
|
}
|
|
else
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "size " << this->size()
|
|
<< " is not equal to the given value of " << len
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "Expected keyword 'uniform' or 'nonuniform', found "
|
|
<< firstToken.wordToken()
|
|
<< exit(FatalIOError);
|
|
}
|
|
}
|
|
else if (is.version() == IOstream::versionNumber(2,0))
|
|
{
|
|
IOWarningInFunction(dict)
|
|
<< "Expected keyword 'uniform' or 'nonuniform', "
|
|
"assuming deprecated Field format from "
|
|
"Foam version 2.0." << endl;
|
|
|
|
this->setSize(len);
|
|
|
|
is.putBack(firstToken);
|
|
operator=(pTraits<Type>(is));
|
|
}
|
|
else
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "Expected keyword 'uniform' or 'nonuniform', found "
|
|
<< firstToken.info() << exit(FatalIOError);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
{
|
|
Field<Type>& f = *this;
|
|
|
|
if (f.size() != mapAddressing.size())
|
|
{
|
|
f.setSize(mapAddressing.size());
|
|
}
|
|
|
|
if (mapF.size() > 0)
|
|
{
|
|
forAll(f, i)
|
|
{
|
|
const label mapI = mapAddressing[i];
|
|
|
|
if (mapI >= 0)
|
|
{
|
|
f[i] = mapF[mapI];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
{
|
|
map(tmapF(), mapAddressing);
|
|
tmapF.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelListList& mapAddressing,
|
|
const scalarListList& mapWeights
|
|
)
|
|
{
|
|
Field<Type>& f = *this;
|
|
|
|
if (f.size() != mapAddressing.size())
|
|
{
|
|
f.setSize(mapAddressing.size());
|
|
}
|
|
|
|
if (mapWeights.size() != mapAddressing.size())
|
|
{
|
|
FatalErrorInFunction
|
|
<< mapWeights.size() << " map size: " << mapAddressing.size()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
forAll(f, i)
|
|
{
|
|
const labelList& localAddrs = mapAddressing[i];
|
|
const scalarList& localWeights = mapWeights[i];
|
|
|
|
f[i] = Zero;
|
|
|
|
forAll(localAddrs, j)
|
|
{
|
|
f[i] += localWeights[j]*mapF[localAddrs[j]];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelListList& mapAddressing,
|
|
const scalarListList& mapWeights
|
|
)
|
|
{
|
|
map(tmapF(), mapAddressing, mapWeights);
|
|
tmapF.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const UList<Type>& mapF,
|
|
const FieldMapper& mapper,
|
|
const bool applyFlip
|
|
)
|
|
{
|
|
if (mapper.distributed())
|
|
{
|
|
// Fetch remote parts of mapF
|
|
const mapDistributeBase& distMap = mapper.distributeMap();
|
|
Field<Type> newMapF(mapF);
|
|
|
|
if (applyFlip)
|
|
{
|
|
distMap.distribute(newMapF);
|
|
}
|
|
else
|
|
{
|
|
distMap.distribute(newMapF, noOp());
|
|
}
|
|
|
|
if (mapper.direct() && notNull(mapper.directAddressing()))
|
|
{
|
|
map(newMapF, mapper.directAddressing());
|
|
}
|
|
else if (!mapper.direct())
|
|
{
|
|
map(newMapF, mapper.addressing(), mapper.weights());
|
|
}
|
|
else if (mapper.direct() && isNull(mapper.directAddressing()))
|
|
{
|
|
// Special case, no local mapper. Assume ordering already correct
|
|
// from distribution. Note: this behaviour is different compared
|
|
// to local mapper.
|
|
this->transfer(newMapF);
|
|
this->setSize(mapper.size());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if
|
|
(
|
|
mapper.direct()
|
|
&& notNull(mapper.directAddressing())
|
|
&& mapper.directAddressing().size()
|
|
)
|
|
{
|
|
map(mapF, mapper.directAddressing());
|
|
}
|
|
else if (!mapper.direct() && mapper.addressing().size())
|
|
{
|
|
map(mapF, mapper.addressing(), mapper.weights());
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::map
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const FieldMapper& mapper,
|
|
const bool applyFlip
|
|
)
|
|
{
|
|
map(tmapF(), mapper, applyFlip);
|
|
tmapF.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::autoMap
|
|
(
|
|
const FieldMapper& mapper,
|
|
const bool applyFlip
|
|
)
|
|
{
|
|
if (mapper.distributed())
|
|
{
|
|
// Fetch remote parts of *this
|
|
const mapDistributeBase& distMap = mapper.distributeMap();
|
|
Field<Type> fCpy(*this);
|
|
|
|
if (applyFlip)
|
|
{
|
|
distMap.distribute(fCpy);
|
|
}
|
|
else
|
|
{
|
|
distMap.distribute(fCpy, noOp());
|
|
}
|
|
|
|
if
|
|
(
|
|
(mapper.direct()
|
|
&& notNull(mapper.directAddressing()))
|
|
|| !mapper.direct()
|
|
)
|
|
{
|
|
this->map(fCpy, mapper);
|
|
}
|
|
else if (mapper.direct() && isNull(mapper.directAddressing()))
|
|
{
|
|
// Special case, no local mapper. Assume ordering already correct
|
|
// from distribution. Note: this behaviour is different compared
|
|
// to local mapper.
|
|
this->transfer(fCpy);
|
|
this->setSize(mapper.size());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if
|
|
(
|
|
(
|
|
mapper.direct()
|
|
&& notNull(mapper.directAddressing())
|
|
&& mapper.directAddressing().size()
|
|
)
|
|
|| (!mapper.direct() && mapper.addressing().size())
|
|
)
|
|
{
|
|
Field<Type> fCpy(*this);
|
|
map(fCpy, mapper);
|
|
}
|
|
else
|
|
{
|
|
this->setSize(mapper.size());
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::rmap
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
{
|
|
Field<Type>& f = *this;
|
|
|
|
forAll(mapF, i)
|
|
{
|
|
label mapI = mapAddressing[i];
|
|
|
|
if (mapI >= 0)
|
|
{
|
|
f[mapI] = mapF[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::rmap
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelUList& mapAddressing
|
|
)
|
|
{
|
|
rmap(tmapF(), mapAddressing);
|
|
tmapF.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::rmap
|
|
(
|
|
const UList<Type>& mapF,
|
|
const labelUList& mapAddressing,
|
|
const UList<scalar>& mapWeights
|
|
)
|
|
{
|
|
Field<Type>& f = *this;
|
|
|
|
f = Zero;
|
|
|
|
forAll(mapF, i)
|
|
{
|
|
f[mapAddressing[i]] += mapF[i]*mapWeights[i];
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::rmap
|
|
(
|
|
const tmp<Field<Type>>& tmapF,
|
|
const labelUList& mapAddressing,
|
|
const UList<scalar>& mapWeights
|
|
)
|
|
{
|
|
rmap(tmapF(), mapAddressing, mapWeights);
|
|
tmapF.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::negate()
|
|
{
|
|
TFOR_ALL_F_OP_OP_F(Type, *this, =, -, Type, *this)
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<typename Foam::Field<Type>::cmptType>>
|
|
Foam::Field<Type>::component
|
|
(
|
|
const direction d
|
|
) const
|
|
{
|
|
auto tres = tmp<Field<cmptType>>::New(this->size());
|
|
::Foam::component(tres.ref(), *this, d);
|
|
return tres;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::replace
|
|
(
|
|
const direction d,
|
|
const UList<cmptType>& sf
|
|
)
|
|
{
|
|
TFOR_ALL_F_OP_FUNC_S_F(Type, *this, ., replace, const direction, d,
|
|
cmptType, sf)
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::replace
|
|
(
|
|
const direction d,
|
|
const tmp<Field<cmptType>>& tsf
|
|
)
|
|
{
|
|
replace(d, tsf());
|
|
tsf.clear();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::replace
|
|
(
|
|
const direction d,
|
|
const cmptType& c
|
|
)
|
|
{
|
|
TFOR_ALL_F_OP_FUNC_S_S(Type, *this, ., replace, const direction, d,
|
|
cmptType, c)
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class VSForm>
|
|
VSForm Foam::Field<Type>::block(const label start) const
|
|
{
|
|
VSForm vs;
|
|
for (direction i=0; i<VSForm::nComponents; i++)
|
|
{
|
|
vs[i] = this->operator[](start + i);
|
|
}
|
|
return vs;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>> Foam::Field<Type>::T() const
|
|
{
|
|
auto tres = tmp<Field<Type>>::New(this->size());
|
|
::Foam::T(tres.ref(), *this);
|
|
return tres;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::writeEntry(const word& keyword, Ostream& os) const
|
|
{
|
|
if (keyword.size())
|
|
{
|
|
os.writeKeyword(keyword);
|
|
}
|
|
|
|
// The contents are 'uniform' if the list is non-empty
|
|
// and all entries have identical values.
|
|
|
|
if (is_contiguous<Type>::value && List<Type>::uniform())
|
|
{
|
|
os << word("uniform") << token::SPACE << this->first();
|
|
}
|
|
else
|
|
{
|
|
os << word("nonuniform") << token::SPACE;
|
|
List<Type>::writeEntry(os);
|
|
}
|
|
|
|
os << token::END_STATEMENT << nl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::operator=(const Field<Type>& rhs)
|
|
{
|
|
if (this == &rhs)
|
|
{
|
|
return; // Self-assignment is a no-op
|
|
}
|
|
|
|
List<Type>::operator=(rhs);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::Field<Type>::operator=(const tmp<Field>& rhs)
|
|
{
|
|
if (this == &(rhs()))
|
|
{
|
|
return; // Self-assignment is a no-op
|
|
}
|
|
|
|
List<Type>::operator=(rhs());
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
template<class Form, class Cmpt, Foam::direction nCmpt>
|
|
void Foam::Field<Type>::operator=(const VectorSpace<Form,Cmpt,nCmpt>& vs)
|
|
{
|
|
TFOR_ALL_F_OP_S(Type, *this, =, VSType, vs)
|
|
}
|
|
|
|
|
|
#define COMPUTED_ASSIGNMENT(TYPE, op) \
|
|
\
|
|
template<class Type> \
|
|
void Foam::Field<Type>::operator op(const UList<TYPE>& f) \
|
|
{ \
|
|
TFOR_ALL_F_OP_F(Type, *this, op, TYPE, f) \
|
|
} \
|
|
\
|
|
template<class Type> \
|
|
void Foam::Field<Type>::operator op(const tmp<Field<TYPE>>& tf) \
|
|
{ \
|
|
operator op(tf()); \
|
|
tf.clear(); \
|
|
} \
|
|
\
|
|
template<class Type> \
|
|
void Foam::Field<Type>::operator op(const TYPE& t) \
|
|
{ \
|
|
TFOR_ALL_F_OP_S(Type, *this, op, TYPE, t) \
|
|
}
|
|
|
|
COMPUTED_ASSIGNMENT(Type, +=)
|
|
COMPUTED_ASSIGNMENT(Type, -=)
|
|
COMPUTED_ASSIGNMENT(scalar, *=)
|
|
COMPUTED_ASSIGNMENT(scalar, /=)
|
|
|
|
#undef COMPUTED_ASSIGNMENT
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Ostream Operator * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::Ostream& Foam::operator<<(Ostream& os, const Field<Type>& f)
|
|
{
|
|
os << static_cast<const List<Type>&>(f);
|
|
return os;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::Ostream& Foam::operator<<(Ostream& os, const tmp<Field<Type>>& tf)
|
|
{
|
|
os << tf();
|
|
tf.clear();
|
|
return os;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "FieldFunctions.C"
|
|
|
|
// ************************************************************************* //
|