ash.H
Go to the documentation of this file.
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.
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::ash
26 
27 Description
28  Coal ash solid properties
29 
30 SourceFiles
31  ash.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef solid_ash_H
36 #define solid_ash_H
37 
38 #include "solidProperties.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 class ash;
46 
47 Ostream& operator<<
48 (
49  Ostream&,
50  const ash&
51 );
52 
53 
54 /*---------------------------------------------------------------------------*\
55  Class ash Declaration
56 \*---------------------------------------------------------------------------*/
57 
58 class ash
59 :
60  public solidProperties
61 {
62 
63 public:
64 
65  //- Runtime type information
66  TypeName("ash");
67 
68 
69  // Constructors
70 
71  //- Construct null
72  ash();
73 
74  //- Construct from solidProperties
75  ash(const solidProperties& s);
76 
77  //- Construct from Istream
78  ash(Istream& is);
79 
80  //- Construct from dictionary
81  ash(const dictionary& dict);
82 
83  //- Construct copy
84  ash(const ash& s);
85 
86  //- Construct and return clone
87  virtual autoPtr<solidProperties> clone() const
88  {
89  return autoPtr<solidProperties>(new ash(*this));
90  }
91 
92 
93  // I-O
94 
95  //- Write the function coefficients
96  void writeData(Ostream& os) const;
97 
98 
99  // Ostream Operator
100 
101  friend Ostream& operator<<(Ostream& os, const ash& s);
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace Foam
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 #endif
112 
113 // ************************************************************************* //
void writeData(Ostream &os) const
Write the function coefficients.
Definition: ash.C:80
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
Coal ash solid properties.
Definition: ash.H:57
friend Ostream & operator<<(Ostream &os, const ash &s)
gmvFile<< "tracers "<< particles.size()<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().x()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().y()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().z()<< " ";}gmvFile<< nl;forAll(lagrangianScalarNames, i){word name=lagrangianScalarNames[i];IOField< scalar > s(IOobject(name, runTime.timeName(), cloud::prefix, mesh, IOobject::MUST_READ, IOobject::NO_WRITE))
ash()
Construct null.
Definition: ash.C:41
virtual autoPtr< solidProperties > clone() const
Construct and return clone.
Definition: ash.H:86
The thermophysical properties of a solid.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
TypeName("ash")
Runtime type information.
Namespace for OpenFOAM.