initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / primitives / Scalar / Scalar.C
blobcdd94c7b15316b4a548d95d1dcd74e53c8598fd5
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 namespace Foam
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 const char* const pTraits<Scalar>::typeName = "scalar";
35 const Scalar pTraits<Scalar>::zero = 0.0;
36 const Scalar pTraits<Scalar>::one = 1.0;
37 const Scalar pTraits<Scalar>::min = -ScalarVGREAT;
38 const Scalar pTraits<Scalar>::max = ScalarVGREAT;
40 const char* pTraits<Scalar>::componentNames[] = { "x" };
42 pTraits<Scalar>::pTraits(Istream& is)
44     is >> p_;
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 word name(const Scalar val)
52     std::ostringstream buf;
53     buf << val;
54     return buf.str();
58 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
60 Scalar readScalar(Istream& is)
62     Scalar rs;
63     is >> rs;
65     return rs;
69 Istream& operator>>(Istream& is, Scalar& s)
71     token t(is);
73     if (!t.good())
74     {
75         is.setBad();
76         return is;
77     }
79     if (t.isNumber())
80     {
81         s = t.number();
82     }
83     else
84     {
85         is.setBad();
86         FatalIOErrorIn("operator>>(Istream&, Scalar&)", is)
87             << "wrong token type - expected Scalar found " << t.info()
88             << exit(FatalIOError);
90         return is;
91     }
93     // Check state of Istream
94     is.check("Istream& operator>>(Istream&, Scalar&)");
96     return is;
100 Ostream& operator<<(Ostream& os, const Scalar s)
102     os.write(s);
103     os.check("Ostream& operator<<(Ostream&, const Scalar&)");
104     return os;
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 } // End namespace Foam
112 // ************************************************************************* //