mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Added mapping support for DimensionedFields
This commit is contained in:
@ -0,0 +1,87 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012 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/>.
|
||||
|
||||
Description
|
||||
Generic internal field mapper for dimensioned fields. For "real" mapping,
|
||||
add template specialisations for mapping of internal fields depending on
|
||||
mesh type.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef MapDimensionedFields_H
|
||||
#define MapDimensionedFields_H
|
||||
|
||||
#include "polyMesh.H"
|
||||
#include "MapFvVolField.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
template<class Type, class MeshMapper, class GeoMesh>
|
||||
void MapDimensionedFields(const MeshMapper& mapper)
|
||||
{
|
||||
typedef DimensionedField<Type, GeoMesh> FieldType;
|
||||
typedef HashTable<const FieldType*> TableType;
|
||||
|
||||
TableType fields
|
||||
(
|
||||
mapper.thisDb().objectRegistry::template lookupClass<FieldType>(true)
|
||||
);
|
||||
|
||||
forAllConstIter(typename TableType, fields, fieldIter)
|
||||
{
|
||||
FieldType& field = const_cast<FieldType&>(*fieldIter());
|
||||
|
||||
if (&field.mesh() == &mapper.mesh())
|
||||
{
|
||||
if (polyMesh::debug)
|
||||
{
|
||||
Info<< "Mapping " << field.typeName << ' ' << field.name()
|
||||
<< endl;
|
||||
}
|
||||
|
||||
MapInternalField<Type, MeshMapper, GeoMesh>()(field, mapper);
|
||||
|
||||
field.instance() = field.time().timeName();
|
||||
}
|
||||
else if (polyMesh::debug)
|
||||
{
|
||||
Info<< "Not mapping " << field.typeName << ' ' << field.name()
|
||||
<< " since originating mesh differs from that of mapper."
|
||||
<< endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -494,6 +494,13 @@ void Foam::fvMesh::mapFields(const mapPolyMesh& meshMap)
|
||||
MapGeometricFields<tensor, fvsPatchField, fvMeshMapper, surfaceMesh>
|
||||
(mapper);
|
||||
|
||||
// Map all the dimensionedFields in the objectRegistry
|
||||
MapDimensionedFields<scalar, fvMeshMapper, volMesh>(mapper);
|
||||
MapDimensionedFields<vector, fvMeshMapper, volMesh>(mapper);
|
||||
MapDimensionedFields<sphericalTensor, fvMeshMapper, volMesh>(mapper);
|
||||
MapDimensionedFields<symmTensor, fvMeshMapper, volMesh>(mapper);
|
||||
MapDimensionedFields<tensor, fvMeshMapper, volMesh>(mapper);
|
||||
|
||||
// Map all the clouds in the objectRegistry
|
||||
mapClouds(*this, meshMap);
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -31,6 +31,7 @@ Description
|
||||
#include "MapGeometricFields.H"
|
||||
#include "MapFvSurfaceField.H"
|
||||
#include "MapFvVolField.H"
|
||||
#include "MapDimensionedFields.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
Reference in New Issue
Block a user