FreeFOAM The Cross-Platform CFD Toolkit
transport.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::XiModels::transport
26 
27 Description
28  Simple transport model for Xi based on Gulders correlation
29  with a linear correction function to give a plausible profile for Xi.
30  See report TR/HGW/10 for details on the Weller two equations model.
31  See \link XiModel.H \endlink for more details on flame wrinkling modelling.
32 
33 SourceFiles
34  transport.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef transport_H
39 #define transport_H
40 
41 #include "../XiModel/XiModel.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 namespace XiModels
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class transport Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 class transport
57 :
58  public XiModel
59 {
60  // Private data
61 
62  scalar XiShapeCoef;
63 
64  autoPtr<XiEqModel> XiEqModel_;
65  autoPtr<XiGModel> XiGModel_;
66 
67 
68  // Private Member Functions
69 
70  //- Disallow copy construct
71  transport(const transport&);
72 
73  //- Disallow default bitwise assignment
74  void operator=(const transport&);
75 
76 
77 public:
78 
79  //- Runtime type information
80  TypeName("transport");
81 
82 
83  // Constructors
84 
85  //- Construct from components
86  transport
87  (
88  const dictionary& XiProperties,
91  const volScalarField& Su,
92  const volScalarField& rho,
93  const volScalarField& b,
94  const surfaceScalarField& phi
95  );
96 
97 
98  // Destructor
99 
100  virtual ~transport();
101 
102 
103  // Member Functions
104 
105  //- Return the flame diffusivity
106  virtual tmp<volScalarField> Db() const;
107 
108  //- Add Xi to the multivariateSurfaceInterpolationScheme table
109  virtual void addXi
110  (
112  )
113  {
114  fields.add(Xi_);
115  }
116 
117  //- Correct the flame-wrinking Xi
118  virtual void correct()
119  {
120  notImplemented("transport::correct()");
121  }
122 
123  //- Correct the flame-wrinking Xi using the given convection scheme
125 
126  //- Update properties from given dictionary
127  virtual bool read(const dictionary& XiProperties);
128 };
129 
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 } // End namespace XiModels
134 } // End namespace Foam
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 #endif
139 
140 // ************************ vim: set sw=4 sts=4 et: ************************ //