BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git] / src / VectorN / finiteVolume / fields / fvsPatchFields / fvsPatchVectorNFieldsFwd.H
blob989733496572ff06e985eb8f8488593e4d1e8744
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #ifndef fvsPatchVectorNFieldsFwd_H
28 #define fvsPatchVectorNFieldsFwd_H
30 #include "VectorNFieldTypes.H"
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 namespace Foam
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 template<class Type> class fvsPatchField;
41 typedef fvsPatchField<vector2> fvsPatchVector2Field;
42 typedef fvsPatchField<vector3> fvsPatchVector3Field;
43 typedef fvsPatchField<vector4> fvsPatchVector4Field;
44 typedef fvsPatchField<vector6> fvsPatchVector6Field;
45 typedef fvsPatchField<vector8> fvsPatchVector8Field;
47 typedef fvsPatchField<tensor2> fvsPatchTensor2Field;
48 typedef fvsPatchField<tensor3> fvsPatchTensor3Field;
49 typedef fvsPatchField<tensor4> fvsPatchTensor4Field;
50 typedef fvsPatchField<tensor6> fvsPatchTensor6Field;
51 typedef fvsPatchField<tensor8> fvsPatchTensor8Field;
53 typedef fvsPatchField<diagTensor2> fvsPatchDiagTensor2Field;
54 typedef fvsPatchField<diagTensor3> fvsPatchDiagTensor3Field;
55 typedef fvsPatchField<diagTensor4> fvsPatchDiagTensor4Field;
56 typedef fvsPatchField<diagTensor6> fvsPatchDiagTensor6Field;
57 typedef fvsPatchField<diagTensor8> fvsPatchDiagTensor8Field;
59 typedef fvsPatchField<sphericalTensor2> fvsPatchSphericalTensor2Field;
60 typedef fvsPatchField<sphericalTensor3> fvsPatchSphericalTensor3Field;
61 typedef fvsPatchField<sphericalTensor4> fvsPatchSphericalTensor4Field;
62 typedef fvsPatchField<sphericalTensor6> fvsPatchSphericalTensor6Field;
63 typedef fvsPatchField<sphericalTensor8> fvsPatchSphericalTensor8Field;
65 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
67 } // End namespace Foam
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
71 #endif
73 // ************************************************************************* //