BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / regionModels / thermoBaffleModels / thermoBaffle2D / thermoBaffle2D.H
blob59edf44a358aff56d26d1db42cc829c1e410409f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 Class
25     Foam::thermoBaffle2D
27 Description
28     2D thermal baffle
30 SourceFiles
31     thermoBaffle2D.C
32     thermoBaffle2DI.H
34 \*---------------------------------------------------------------------------*/
36 #ifndef thermoBaffle2D_H
37 #define thermoBaffle2D_H
39 #include "thermoBaffleModel.H"
40 #include "volFieldsFwd.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
47 namespace regionModels
49 namespace thermoBaffleModels
53 /*---------------------------------------------------------------------------*\
54                         Class thermoBaffle2D Declaration
55 \*---------------------------------------------------------------------------*/
57 class thermoBaffle2D
59     public thermoBaffleModel
61 private:
63     // Private member functions
65         //- Disallow default bitwise copy construct
66         thermoBaffle2D(const thermoBaffle2D&);
68         //- Disallow default bitwise assignment
69         void operator=(const thermoBaffle2D&);
71         //- Initialize thermoBaffle2D
72         void init();
75 protected:
77     // Protected data
79         // Solution parameters
81             //- Number of non orthogonal correctors
82             label nNonOrthCorr_;
85         // Thermo properties
87             //- Solid thermo
88             autoPtr<basicSolidThermo> thermo_;
90             //- Temperature / [K]
91             volScalarField& T_;
94         // Source term fields
96             //- Surface energy source  / [J/m2/s]
97             volScalarField Qs_;
99             //- Volumetric energy source  / [J/m3/s]
100             volScalarField Q_;
103     // Protected member functions
105         //- Read control parameters from dictionary
106         virtual bool read();
108         // Equations
110             //- Solve energy equation
111             void solveEnergy();
114 public:
116     //- Runtime type information
117     TypeName("thermoBaffle2D");
120     // Constructors
122         //- Construct from components
123         thermoBaffle2D(const word& modelType, const fvMesh& mesh);
125         //- Construct from components and dict
126         thermoBaffle2D
127         (
128             const word& modelType,
129             const fvMesh& mesh,
130             const dictionary& dict
132         );
135     //- Destructor
136     virtual ~thermoBaffle2D();
139     // Member Functions
141         // Thermo properties
143             //- Return const reference to the basicSolidThermo
144             virtual const basicSolidThermo& thermo() const;
147             // Fields
149                 //- Return the film specific heat capacity [J/kg/K]
150                 virtual const tmp<volScalarField> Cp() const;
152                 //- Return solid absortivity [1/m]
153                 virtual const volScalarField& kappa() const;
155                 //- Return the film mean temperature [K]
156                 virtual const volScalarField& T() const;
158                 //- Return density [Kg/m3]
159                 virtual const volScalarField& rho() const;
161                 //- Return thermal conductivity [W/m/K]
162                 virtual const volScalarField& K() const;
165             // Helper functions
167                 //- Return sensible enthalpy as a function of temperature
168                 //  for a patch
169                 inline tmp<scalarField> hs
170                 (
171                     const scalarField& T,
172                     const label patchI
173                 ) const;
175                 //- Return sensible enthalpy as a function of temperature
176                 inline tmp<volScalarField> hs
177                 (
178                     const volScalarField& T
179                 ) const;
181                 //- Return temperature as a function of sensible enthalpy
182                 inline tmp<volScalarField> T
183                 (
184                     const volScalarField& hs
185                 ) const;
188         // Evolution
190             //- Pre-evolve thermal baffle
191             virtual void preEvolveRegion();
193             //- Evolve thermal baffle
194             virtual void evolveRegion();
198        // I-O
200             //- Provide some feedback
201             virtual void info() const;
205 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
207 } // End namespace thermoBaffleModels
208 } // End namespace regionModels
209 } // End namespace Foam
211 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
213 #include "thermoBaffle2DI.H"
215 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
217 #endif
219 // ************************************************************************* //