initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / radiation / submodels / scatterModel / scatterModel / scatterModel.H
blob78bc7b41ecab31004f27b0f701de5e7e83272c74
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 Class
26     Foam::radiation::scatterModel
28 Description
29     Base class for radiation scattering
31 \*---------------------------------------------------------------------------*/
33 #ifndef scatterModel_H
34 #define scatterModel_H
36 #include "IOdictionary.H"
37 #include "autoPtr.H"
38 #include "runTimeSelectionTables.H"
39 #include "volFields.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
45 namespace radiation
48 /*---------------------------------------------------------------------------*\
49                            Class scatterModel Declaration
50 \*---------------------------------------------------------------------------*/
52 class scatterModel
55 protected:
57     // Protected data
59         //- Reference to the fvMesh
60         const fvMesh& mesh_;
62 public:
64     //- Runtime type information
65     TypeName("scatterModel");
67     // Declare runtime constructor selection table
69         declareRunTimeSelectionTable
70         (
71             autoPtr,
72             scatterModel,
73             dictionary,
74             (
75                 const dictionary& dict,
76                 const fvMesh& mesh
77             ),
78             (dict, mesh)
79         );
82     // Constructors
84         //- Construct from components
85         scatterModel
86         (
87             const dictionary& dict,
88             const fvMesh& mesh
89         );
92     // Selector
94         static autoPtr<scatterModel> New
95         (
96             const dictionary& dict,
97             const fvMesh& mesh
98         );
101     // Destructor
103         virtual ~scatterModel();
106     // Member Functions
108         // Access
110             //- Return scatter coefficient
111             virtual tmp<volScalarField> sigmaEff() const = 0;
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 } // End namespace radiation
118 } // End namespace Foam
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #endif
124 // ************************************************************************* //