initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / finiteVolume / divSchemes / divScheme / divScheme.C
blobe40cece4d4dd87c2b063c043c55e0d2b7886e3bd
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 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
26     Abstract base class for finite volume calculus div schemes.
28 \*---------------------------------------------------------------------------*/
30 #include "fv.H"
31 #include "HashTable.H"
32 #include "linear.H"
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 namespace Foam
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace fv
44 // * * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * //
46 template<class Type>
47 tmp<divScheme<Type> > divScheme<Type>::New
49     const fvMesh& mesh,
50     Istream& schemeData
53     if (fv::debug)
54     {
55         Info<< "divScheme<Type>::New(const fvMesh&, Istream&) : "
56                "constructing divScheme<Type>"
57             << endl;
58     }
60     if (schemeData.eof())
61     {
62         FatalIOErrorIn
63         (
64             "divScheme<Type>::New(const fvMesh&, Istream&)",
65             schemeData
66         )   << "Div scheme not specified" << endl << endl
67             << "Valid div schemes are :" << endl
68             << IstreamConstructorTablePtr_->toc()
69             << exit(FatalIOError);
70     }
72     word schemeName(schemeData);
74     typename IstreamConstructorTable::iterator cstrIter =
75         IstreamConstructorTablePtr_->find(schemeName);
77     if (cstrIter == IstreamConstructorTablePtr_->end())
78     {
79         FatalIOErrorIn
80         (
81             "divScheme<Type>::New(const fvMesh&, Istream&)",
82             schemeData
83         )   << "unknown div scheme " << schemeName << endl << endl
84             << "Valid div schemes are :" << endl
85             << IstreamConstructorTablePtr_->toc()
86             << exit(FatalIOError);
87     }
89     return cstrIter()(mesh, schemeData);
93 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
95 template<class Type>
96 divScheme<Type>::~divScheme()
100 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 } // End namespace fv
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 } // End namespace Foam
111 // ************************************************************************* //