fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / tetDecompositionFiniteElement / fields / tetPolyPatchFields / tetPolyPatchField / tetPolyPatchFields.C
blobdb6ba102144764ab2a920a18ba21dd686e7891de
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 Description
27 \*---------------------------------------------------------------------------*/
29 #include "tetFemMatrices.H"
30 #include "tetPolyPatchFields.H"
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 namespace Foam
37 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
39 typedef PointPatchField
40 <tetPolyPatchField, tetPointMesh, tetPolyPatch, tetFemMatrix, scalar>
41     baseTetPolyPatchScalarField;
43 typedef PointPatchField
44 <tetPolyPatchField, tetPointMesh, tetPolyPatch, tetFemMatrix, vector>
45     baseTetPolyPatchVectorField;
47 typedef PointPatchField
48 <tetPolyPatchField, tetPointMesh, tetPolyPatch, tetFemMatrix, sphericalTensor>
49     baseTetPolyPatchSphericalTensorField;
51 typedef PointPatchField
52 <tetPolyPatchField, tetPointMesh, tetPolyPatch, tetFemMatrix, symmTensor>
53     baseTetPolyPatchSymmTensorField;
55 typedef PointPatchField
56 <tetPolyPatchField, tetPointMesh, tetPolyPatch, tetFemMatrix, tensor>
57     baseTetPolyPatchTensorField;
59 defineNamedTemplateTypeNameAndDebug(baseTetPolyPatchScalarField, 0);
60 defineTemplateRunTimeSelectionTable(baseTetPolyPatchScalarField, PointPatch);
61 defineTemplateRunTimeSelectionTable(baseTetPolyPatchScalarField, patchMapper);
62 defineTemplateRunTimeSelectionTable(baseTetPolyPatchScalarField, dictionary);
64 defineNamedTemplateTypeNameAndDebug(baseTetPolyPatchVectorField, 0);
65 defineTemplateRunTimeSelectionTable(baseTetPolyPatchVectorField, PointPatch);
66 defineTemplateRunTimeSelectionTable(baseTetPolyPatchVectorField, patchMapper);
67 defineTemplateRunTimeSelectionTable(baseTetPolyPatchVectorField, dictionary);
69 defineNamedTemplateTypeNameAndDebug(baseTetPolyPatchSphericalTensorField, 0);
70 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSphericalTensorField, PointPatch);
71 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSphericalTensorField, patchMapper);
72 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSphericalTensorField, dictionary);
74 defineNamedTemplateTypeNameAndDebug(baseTetPolyPatchSymmTensorField, 0);
75 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSymmTensorField, PointPatch);
76 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSymmTensorField, patchMapper);
77 defineTemplateRunTimeSelectionTable(baseTetPolyPatchSymmTensorField, dictionary);
79 defineNamedTemplateTypeNameAndDebug(baseTetPolyPatchTensorField, 0);
80 defineTemplateRunTimeSelectionTable(baseTetPolyPatchTensorField, PointPatch);
81 defineTemplateRunTimeSelectionTable(baseTetPolyPatchTensorField, patchMapper);
82 defineTemplateRunTimeSelectionTable(baseTetPolyPatchTensorField, dictionary);
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 } // End namespace Foam
89 // ************************************************************************* //