Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / lagrangian / molecularDynamics / molecule / reducedUnits / reducedUnitsIO.C
blob6c7bd8f6f5398e92b0ce2d584faa168497ddbd4c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2008-2010 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
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 \*---------------------------------------------------------------------------*/
26 #include "reducedUnits.H"
27 #include "IOstreams.H"
29 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
31 Foam::Ostream& Foam::operator<<(Ostream& os, const reducedUnits& rU)
33     os  << nl << "Defined: " << nl
34         << tab << "refLength = " << rU.refLength() << " m" << nl
35         << tab << "refTime = " << rU.refTime() << " s" << nl
36         << tab << "refMass = " << rU.refMass() << " kg" << nl
37         << tab << "Boltzmann constant, kb = " << reducedUnits::kb << " J/K"
38         << nl << "Calculated: " << nl
39         << tab << "refEnergy = " << rU.refEnergy() << " J" << nl
40         << tab << "refTemp = " << rU.refTemp() << " K" << nl
41         << tab << "refForce = " << rU.refForce() << " N" << nl
42         << tab << "refVelocity = " << rU.refVelocity() << " m/s" << nl
43         << tab << "refVolume = " << rU.refVolume() << " m^3" << nl
44         << tab << "refPressure = " << rU.refPressure() << " N/m^2" << nl
45         << tab << "refMassDensity = " << rU.refMassDensity() << " kg/m^3" << nl
46         << tab << "refNumberDensity = " << rU.refNumberDensity() << " m^-3"
47         << endl;
49     // Check state of Ostream
50     os.check
51     (
52         "Foam::Ostream& Foam::operator<<(Foam::Ostream&, "
53         "const Foam::reducedUnits&)"
54     );
56     return os;
60 // ************************************************************************* //