PhaseThermophysicalTransportModel.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2020 OpenFOAM Foundation
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::PhaseThermophysicalTransportModel
26 
27 Description
28  Templated base class for multiphase thermophysical transport models.
29 
30 SourceFiles
31  PhaseThermophysicalTransportModel.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef PhaseThermophysicalTransportModel_H
36 #define PhaseThermophysicalTransportModel_H
37 
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class PhaseThermophysicalTransportModel Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 template<class MomentumTransportModel, class ThermoModel>
51 :
52  public ThermophysicalTransportModel<MomentumTransportModel, ThermoModel>
53 {
54 
55 public:
56 
58  typedef ThermoModel thermoModel;
60 
61 
62  // Constructors
63 
64  //- Construct
66  (
67  const momentumTransportModel& momentumTransport,
68  const thermoModel& thermo
69  );
70 
71 
72  // Selectors
73 
74  //- Return a reference to the selected turbulence model
76  (
77  const momentumTransportModel& momentumTransport,
78  const thermoModel& thermo
79  );
80 
81 
82  //- Destructor
84  {}
85 };
86 
87 
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
89 
90 } // End namespace Foam
91 
92 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
93 
94 #ifdef NoRepository
96 #endif
97 
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 
100 #endif
101 
102 // ************************************************************************* //
static autoPtr< PhaseThermophysicalTransportModel > New(const momentumTransportModel &momentumTransport, const thermoModel &thermo)
Return a reference to the selected turbulence model.
Templated base class for multiphase thermophysical transport models.
Templated abstract base class for thermophysical transport models.
virtual const thermoModel & thermo() const
Access function to incompressible transport model.
PhaseThermophysicalTransportModel(const momentumTransportModel &momentumTransport, const thermoModel &thermo)
Construct.
const momentumTransportModel & momentumTransport() const
Access function to incompressible transport model.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Templated abstract base class for turbulence models.
Namespace for OpenFOAM.