ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / utilities / thermophysical / mixtureAdiabaticFlameT / mixture.H
blobf5bd3dcd5a92a7b8dac719d37244d5ebca455431
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::mixture
27 Description
29 SourceFiles
30     mixtureI.H
31     mixture.C
32     mixtureIO.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef mixture_H
37 #define mixture_H
39 #include "error.H"
41 #include "List.H"
42 #include "substance.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class mixture Declaration
51 \*---------------------------------------------------------------------------*/
53 class mixture
55     public List<substance>
57     // Private data
59         word name_;
62 public:
64     // Constructors
66         //- Construct from Istream
67         mixture(Istream& is)
68         :
69             List<substance>(is),
70             name_(is)
71         {
72             scalar volTot = 0;
74             for (label i = 0; i < size(); i++)
75             {
76                 volTot += operator[](i).volFrac();
77             }
79             if (volTot > 1.001 || volTot < 0.999)
80             {
81                 FatalErrorIn("mixture::mixture(istream& is)")
82                     << "Sum of volume fractions for Mixture " << name_
83                     << " = " << volTot << endl
84                     << "Should equal one."
85                     << abort(FatalError);
86             }
87         }
90     // Member Functions
92         // Access
94             const word& name() const
95             {
96                 return name_;
97             }
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 } // End namespace Foam
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 #endif
109 // ************************************************************************* //