Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / thermophysicalModels / solids / CaCO3 / CaCO3.H
blobee89ad9cd04f90864aafb51e85e6acd7dfc2ab80
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::CaCO3
27 Description
28     Calcium carbonate (limestone)
30 SourceFiles
31     CaCO3.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef solid_CaCO3_H
36 #define solid_CaCO3_H
38 #include "solid.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 class CaCO3;
47 Ostream& operator<<
49      Ostream&,
50      const CaCO3&
54 /*---------------------------------------------------------------------------*\
55                               Class CaCO3 Declaration
56 \*---------------------------------------------------------------------------*/
58 class CaCO3
60     public solid
63 public:
65     //- Runtime type information
66     TypeName("CaCO3");
69     // Constructors
71         //- Construct null
72         CaCO3();
74         //- Construct from solid
75         CaCO3(const solid& s);
77         //- Construct from Istream
78         CaCO3(Istream& is);
81     // I-O
83         //- Write the function coefficients
84         void writeData(Ostream& os) const;
87     // Ostream Operator
89         friend Ostream& operator<<(Ostream& os, const CaCO3& s);
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 } // End namespace Foam
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 #endif
101 // ************************************************************************* //