The patch field 'autoMap' and 'rmap' functions have been replaced with a
single 'map' function that can used to do any form of in-place
patch-to-patch mapping. The exact form of mapping is now controlled
entirely by the mapper object.
An example 'map' function is shown below:
void nutkRoughWallFunctionFvPatchScalarField::map
(
const fvPatchScalarField& ptf,
const fvPatchFieldMapper& mapper
)
{
nutkWallFunctionFvPatchScalarField::map(ptf, mapper);
const nutkRoughWallFunctionFvPatchScalarField& nrwfpsf =
refCast<const nutkRoughWallFunctionFvPatchScalarField>(ptf);
mapper(Ks_, nrwfpsf.Ks_);
mapper(Cs_, nrwfpsf.Cs_);
}
This single function replaces these two previous functions:
void nutkRoughWallFunctionFvPatchScalarField::autoMap
(
const fvPatchFieldMapper& m
)
{
nutkWallFunctionFvPatchScalarField::autoMap(m);
m(Ks_, Ks_);
m(Cs_, Cs_);
}
void nutkRoughWallFunctionFvPatchScalarField::rmap
(
const fvPatchScalarField& ptf,
const labelList& addr
)
{
nutkWallFunctionFvPatchScalarField::rmap(ptf, addr);
const nutkRoughWallFunctionFvPatchScalarField& nrwfpsf =
refCast<const nutkRoughWallFunctionFvPatchScalarField>(ptf);
Ks_.rmap(nrwfpsf.Ks_, addr);
Cs_.rmap(nrwfpsf.Cs_, addr);
}
Calls to 'autoMap' should be replaced with calls to 'map' with the same
mapper object and the patch field itself provided as the source. Calls
to 'rmap' should be replaced with calls to 'map' by wrapping the
addressing in a 'reverseFvPatchFieldMapper' (or
'reversePointPatchFieldMapper') object.
This change simplifies the creation of new patch fields and hence
improves extensibility. It also provides more options regarding general
mapping strategies between patches. Previously, general abstracted
mapping was only possible in 'autoMap'; i.e., from a patch to itself.
Now, general mapping is possible between different patches.
189 lines
5.5 KiB
C++
189 lines
5.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2023 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 "pointFieldReconstructor.H"
|
|
#include "fvMesh.H"
|
|
#include "reversePointPatchFieldMapper.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::PointField<Type>>
|
|
Foam::pointFieldReconstructor::reconstructField(const IOobject& fieldIoObject)
|
|
{
|
|
// Read the field for all the processors
|
|
PtrList<PointField<Type>> procFields
|
|
(
|
|
procMeshes_.size()
|
|
);
|
|
|
|
forAll(procMeshes_, proci)
|
|
{
|
|
procFields.set
|
|
(
|
|
proci,
|
|
new PointField<Type>
|
|
(
|
|
IOobject
|
|
(
|
|
fieldIoObject.name(),
|
|
procMeshes_[proci].time().name(),
|
|
procMeshes_[proci],
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
pointMesh::New(procMeshes_[proci])
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// Create the internalField
|
|
Field<Type> internalField(completeMesh_.size());
|
|
|
|
// Create the patch fields
|
|
PtrList<pointPatchField<Type>> patchFields(completeMesh_.boundary().size());
|
|
|
|
|
|
forAll(procMeshes_, proci)
|
|
{
|
|
const PointField<Type>&
|
|
procField = procFields[proci];
|
|
|
|
// Get processor-to-global addressing for use in rmap
|
|
const labelList& procToGlobalAddr = pointProcAddressing_[proci];
|
|
|
|
// Set the cell values in the reconstructed field
|
|
internalField.rmap
|
|
(
|
|
procField.primitiveField(),
|
|
procToGlobalAddr
|
|
);
|
|
|
|
// Set the boundary patch values in the reconstructed field
|
|
forAll(procField.boundaryField(), patchi)
|
|
{
|
|
// Get patch index of the original patch
|
|
const label curBPatch =
|
|
patchi < completeMesh_.boundary().size() ? patchi : -1;
|
|
|
|
// check if the boundary patch is not a processor patch
|
|
if (curBPatch != -1)
|
|
{
|
|
if (!patchFields(curBPatch))
|
|
{
|
|
patchFields.set
|
|
(
|
|
curBPatch,
|
|
pointPatchField<Type>::New
|
|
(
|
|
procField.boundaryField()[patchi],
|
|
completeMesh_.boundary()[curBPatch],
|
|
DimensionedField<Type, pointMesh>::null(),
|
|
setSizePointPatchFieldMapper
|
|
(
|
|
completeMesh_.boundary()[curBPatch].size()
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
patchFields[curBPatch].map
|
|
(
|
|
procField.boundaryField()[patchi],
|
|
reversePointPatchFieldMapper
|
|
(
|
|
patchPointAddressing_[proci][patchi]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Construct and write the field
|
|
// setting the internalField and patchFields
|
|
return tmp<PointField<Type>>
|
|
(
|
|
new PointField<Type>
|
|
(
|
|
IOobject
|
|
(
|
|
fieldIoObject.name(),
|
|
completeMesh_().time().name(),
|
|
completeMesh_(),
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
completeMesh_,
|
|
procFields[0].dimensions(),
|
|
internalField,
|
|
patchFields
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// Reconstruct and write all point fields
|
|
template<class Type>
|
|
void Foam::pointFieldReconstructor::reconstructFields
|
|
(
|
|
const IOobjectList& objects,
|
|
const HashSet<word>& selectedFields
|
|
)
|
|
{
|
|
word fieldClassName
|
|
(
|
|
PointField<Type>::typeName
|
|
);
|
|
|
|
IOobjectList fields = objects.lookupClass(fieldClassName);
|
|
|
|
if (fields.size())
|
|
{
|
|
Info<< " Reconstructing " << fieldClassName << "s\n" << endl;
|
|
|
|
forAllConstIter(IOobjectList, fields, fieldIter)
|
|
{
|
|
if
|
|
(
|
|
!selectedFields.size()
|
|
|| selectedFields.found(fieldIter()->name())
|
|
)
|
|
{
|
|
Info<< " " << fieldIter()->name() << endl;
|
|
|
|
reconstructField<Type>(*fieldIter())().write();
|
|
|
|
nReconstructed_++;
|
|
}
|
|
}
|
|
|
|
Info<< endl;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|