Newer
Older
Henry Weller
committed
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
Henry Weller
committed
\\/ M anipulation |
-------------------------------------------------------------------------------
| Copyright (C) 2015-2018 OpenFOAM Foundation
Henry Weller
committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::InterfaceCompositionPhaseChangePhaseSystem
Description
Class to provide interfacial heat and mass transfer between a number of
phases according to a interface composition model.
The interface temperature is calculated such that the net rate at which the
heat is transferred to the interface is equal to the latent heat consumed by
the mass transfer.
SourceFiles
InterfaceCompositionPhaseChangePhaseSystem.C
\*---------------------------------------------------------------------------*/
#ifndef InterfaceCompositionPhaseChangePhaseSystem_H
#define InterfaceCompositionPhaseChangePhaseSystem_H
#include "phaseSystem.H"
Henry Weller
committed
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
class interfaceCompositionModel;
class massTransferModel;
Henry Weller
committed
/*---------------------------------------------------------------------------*\
Class InterfaceCompositionPhaseChangePhaseSystem Declaration
\*---------------------------------------------------------------------------*/
template<class BasePhaseSystem>
class InterfaceCompositionPhaseChangePhaseSystem
:
public BasePhaseSystem
Henry Weller
committed
{
protected:
// Protected typedefs
typedef HashTable
<
autoPtr<interfaceCompositionModel>,
phasePairKey,
phasePairKey::hash
> interfaceCompositionModelTable;
typedef HashTable
<
Pair<autoPtr<BlendedInterfacialModel<massTransferModel>>>,
phasePairKey,
phasePairKey::hash
> massTransferModelTable;
typedef HashPtrTable
<
HashPtrTable<volScalarField>,
phasePairKey,
phasePairKey::hash
>
iDmdtSuSpTable;
typedef HashPtrTable<volScalarField, phasePairKey, phasePairKey::hash>
iDmdtTable;
Henry Weller
committed
// Protected data
// Sub Models
//- The number of interface correctors
const label nInterfaceCorrectors_;
//- Mass transfer models
massTransferModelTable massTransferModels_;
Henry Weller
committed
//- Interface composition models
interfaceCompositionModelTable interfaceCompositionModels_;
//- The explicit part of the interfacial mass transfer rates
//- The implicit part of the interfacial mass transfer rates
// Protected member functions
//- Return the interfacial mass transfer rate for a pair for a pair
virtual tmp<volScalarField> iDmdt(const phasePairKey& key) const;
Henry Weller
committed
public:
// Constructors
//- Construct from fvMesh
InterfaceCompositionPhaseChangePhaseSystem(const fvMesh&);
//- Destructor
virtual ~InterfaceCompositionPhaseChangePhaseSystem();
// Member Functions
//- Return the mass transfer rate for a pair
virtual tmp<volScalarField> dmdt(const phasePairKey& key) const;
//- Return the mass transfer rates for each phase
virtual PtrList<volScalarField> dmdts() const;
Henry Weller
committed
//- Return the mass transfer matrices
virtual autoPtr<phaseSystem::massTransferTable> massTransfer() const;
//- Correct the interface temperatures
virtual void correctInterfaceThermo();
Henry Weller
committed
//- Read base phaseProperties dictionary
virtual bool read();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "InterfaceCompositionPhaseChangePhaseSystem.C"
Henry Weller
committed
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //