BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / finiteVolume / interpolation / mapping / fvFieldMappers / MapFvVolField.H
blob87458cc6e6bd3c6192c0ba2faa946e853ca5cc02
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Description
25     Map volume internal field on topology change.  This is a partial
26     template specialisation, see MapGeometricFields.
28 \*---------------------------------------------------------------------------*/
30 #ifndef MapFvVolField_H
31 #define MapFvVolField_H
33 #include "Field.H"
34 #include "volMesh.H"
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 namespace Foam
41 template<class Type, class MeshMapper>
42 class MapInternalField<Type, MeshMapper, volMesh>
44 public:
46     MapInternalField()
47     {}
49     void operator()
50     (
51         Field<Type>& field,
52         const MeshMapper& mapper
53     ) const;
57 template<class Type, class MeshMapper>
58 void MapInternalField<Type, MeshMapper, volMesh>::operator()
60     Field<Type>& field,
61     const MeshMapper& mapper
62 ) const
64     if (field.size() != mapper.volMap().sizeBeforeMapping())
65     {
66         FatalErrorIn
67         (
68             "void MapInternalField<Type, MeshMapper, volMesh>::operator()\n"
69             "(\n"
70             "    Field<Type>& field,\n"
71             "    const MeshMapper& mapper\n"
72             ") const"
73         )  << "Incompatible size before mapping.  Field size: " << field.size()
74            << " map size: " << mapper.volMap().sizeBeforeMapping()
75            << abort(FatalError);
76     }
78     field.autoMap(mapper.volMap());
82 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
84 } // End namespace Foam
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
88 #endif
90 // ************************************************************************* //