Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / fields / GeometricFields / pointFields / pointFields.C
blob7937b7c74b043ca6706b32fe32e1a1a9baec6049
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
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 \*---------------------------------------------------------------------------*/
26 #include "polyMesh.H"
27 #include "pointFields.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 defineTemplate2TypeNameAndDebug(pointScalarField::DimensionedInternalField, 0);
37 defineTemplate2TypeNameAndDebug(pointVectorField::DimensionedInternalField, 0);
38 defineTemplate2TypeNameAndDebug
40     pointSphericalTensorField::DimensionedInternalField,
41     0
43 defineTemplate2TypeNameAndDebug
45     pointSymmTensorField::DimensionedInternalField,
46     0
48 defineTemplate2TypeNameAndDebug(pointTensorField::DimensionedInternalField, 0);
51 defineTemplateTypeNameAndDebug(pointScalarField, 0);
52 defineTemplateTypeNameAndDebug(pointVectorField, 0);
53 defineTemplateTypeNameAndDebug(pointSphericalTensorField, 0);
54 defineTemplateTypeNameAndDebug(pointSymmTensorField, 0);
55 defineTemplateTypeNameAndDebug(pointTensorField, 0);
57 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 } // End namespace Foam
61 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //