initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / fields / UniformDimensionedFields / UniformDimensionedField.C
blobbcf5ddc58dc4f01a4b0ad94b20eb075cd016e96f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2009-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 #include "UniformDimensionedField.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<class Type>
32 Foam::UniformDimensionedField<Type>::UniformDimensionedField
34     const IOobject& io,
35     const dimensioned<Type>& dt
38     regIOobject(io),
39     dimensioned<Type>(dt)
43 template<class Type>
44 Foam::UniformDimensionedField<Type>::UniformDimensionedField
46     const UniformDimensionedField<Type>& rdt
49     regIOobject(rdt),
50     dimensioned<Type>(rdt)
54 template<class Type>
55 Foam::UniformDimensionedField<Type>::UniformDimensionedField
57     const IOobject& io
60     regIOobject(io),
61     dimensioned<Type>(regIOobject::name(), dimless, pTraits<Type>::zero)
63     dictionary dict(readStream(typeName));
64     this->dimensions().reset(dict.lookup("dimensions"));
65     this->value() = dict.lookup("value");
69 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
71 template<class Type>
72 Foam::UniformDimensionedField<Type>::~UniformDimensionedField()
76 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
78 template<class Type>
79 bool Foam::UniformDimensionedField<Type>::writeData(Ostream& os) const
81     os.writeKeyword("dimensions") << this->dimensions() << token::END_STATEMENT
82         << nl;
83     os.writeKeyword("value") << this->value() << token::END_STATEMENT
84         << nl << nl;
86     return (os.good());
90 // * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * * //
92 template<class Type>
93 void Foam::UniformDimensionedField<Type>::operator=
95     const UniformDimensionedField<Type>& rhs
98     dimensioned<Type>::operator=(rhs);
102 template<class Type>
103 void Foam::UniformDimensionedField<Type>::operator=
105     const dimensioned<Type>& rhs
108     dimensioned<Type>::operator=(rhs);
112 // ************************************************************************* //