Pass the phase-name through hierarchy Add phase-name to variables Split basicCombustionMixture Update applications accordingly
136 lines
3.9 KiB
C++
136 lines
3.9 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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::basicMultiComponentMixture
|
|
|
|
Description
|
|
Multi-component mixture.
|
|
|
|
Provides a list of mass fraction fields and helper functions to
|
|
query mixture composition.
|
|
|
|
SourceFiles
|
|
basicMultiComponentMixture.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef basicMultiComponentMixture_H
|
|
#define basicMultiComponentMixture_H
|
|
|
|
#include "volFields.H"
|
|
#include "PtrList.H"
|
|
#include "speciesTable.H"
|
|
#include "typeInfo.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class basicMultiComponentMixture Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class basicMultiComponentMixture
|
|
{
|
|
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
//- Table of specie names
|
|
speciesTable species_;
|
|
|
|
//- Species mass fractions
|
|
PtrList<volScalarField> Y_;
|
|
|
|
|
|
public:
|
|
|
|
//- Run time type information
|
|
TypeName("basicMultiComponentMixture");
|
|
|
|
|
|
//- The base class of the mixture
|
|
typedef basicMultiComponentMixture basicMixtureType;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from dictionary, species names, mesh and phase name
|
|
basicMultiComponentMixture
|
|
(
|
|
const dictionary&,
|
|
const wordList& specieNames,
|
|
const fvMesh&,
|
|
const word&
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~basicMultiComponentMixture()
|
|
{}
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Return the table of species
|
|
inline const speciesTable& species() const;
|
|
|
|
//- Return the mass-fraction fields
|
|
inline PtrList<volScalarField>& Y();
|
|
|
|
//- Return the const mass-fraction fields
|
|
inline const PtrList<volScalarField>& Y() const;
|
|
|
|
//- Return the mass-fraction field for a specie given by index
|
|
inline volScalarField& Y(const label i);
|
|
|
|
//- Return the const mass-fraction field for a specie given by index
|
|
inline const volScalarField& Y(const label i) const;
|
|
|
|
//- Return the mass-fraction field for a specie given by name
|
|
inline volScalarField& Y(const word& specieName);
|
|
|
|
//- Return the const mass-fraction field for a specie given by name
|
|
inline const volScalarField& Y(const word& specieName) const;
|
|
|
|
//- Does the mixture include this specie?
|
|
inline bool contains(const word& specieName) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "basicMultiComponentMixtureI.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|