106 lines
3 KiB
C++
106 lines
3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright held by original author
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::MapFvSurfaceField
|
|
|
|
Description
|
|
Map surface internal field on topology change. This is a partial
|
|
template specialisation, see MapGeometricFields.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef MapFvSurfaceField_H
|
|
#define MapFvSurfaceField_H
|
|
|
|
#include "Field.H"
|
|
#include "surfaceMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
template<class Type, class MeshMapper>
|
|
class MapInternalField<Type, MeshMapper, surfaceMesh>
|
|
{
|
|
public:
|
|
|
|
MapInternalField()
|
|
{}
|
|
|
|
void operator()
|
|
(
|
|
Field<Type>& field,
|
|
const MeshMapper& mapper
|
|
) const;
|
|
};
|
|
|
|
|
|
template<class Type, class MeshMapper>
|
|
void MapInternalField<Type, MeshMapper, surfaceMesh>::operator()
|
|
(
|
|
Field<Type>& field,
|
|
const MeshMapper& mapper
|
|
) const
|
|
{
|
|
if (field.size() != mapper.surfaceMap().sizeBeforeMapping())
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"void MapInternalField<Type, MeshMapper, surfaceMesh>::"
|
|
"operator()\n"
|
|
"(\n"
|
|
" Field<Type>& field,\n"
|
|
" const MeshMapper& mapper\n"
|
|
") const"
|
|
) << "Incompatible size before mapping. Field size: " << field.size()
|
|
<< " map size: " << mapper.surfaceMap().sizeBeforeMapping()
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
field.autoMap(mapper.surfaceMap());
|
|
|
|
// Flip the flux
|
|
const labelList flipFaces = mapper.surfaceMap().flipFaceFlux().toc();
|
|
|
|
forAll (flipFaces, i)
|
|
{
|
|
if (flipFaces[i] < field.size())
|
|
{
|
|
field[flipFaces[i]] *= -1.0;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|