BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / electromagnetics / magneticFoam / magnet.H
blob031f64ca095a03bb597fdccfd5de42ef5db3d0b8
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.
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 Class
25     Foam::magnet
27 Description
28     Class to hold the defining data for a permanent magnet, in particular
29     the name, relative permeability and remanence.
31 SourceFiles
33 \*---------------------------------------------------------------------------*/
35 #ifndef magnet_H
36 #define magnet_H
38 #include "dimensionedVector.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 // Forward declaration of classes
46 class Istream;
47 class Ostream;
49 // Forward declaration of friend functions and operators
50 class magnet;
51 Istream& operator>>(Istream&, magnet&);
52 Ostream& operator<<(Ostream&, const magnet&);
54 /*---------------------------------------------------------------------------*\
55                          Class magnet Declaration
56 \*---------------------------------------------------------------------------*/
58 class magnet
60     // Private data
62         word name_;
63         scalar relativePermeability_;
64         dimensionedScalar remanence_;
65         vector orientation_;
67 public:
69     // Constructors
71         //- Null constructor for lists
72         inline magnet()
73         :
74             remanence_("Mr", dimensionSet(0, -1, 0, 0, 0, 1, 0), 0),
75             orientation_(vector::zero)
76         {}
78         //- Construct from components
79         inline magnet
80         (
81             const word& name,
82             const scalar mur,
83             const scalar Mr,
84             const vector& orientation
85         )
86         :
87             name_(name),
88             relativePermeability_(mur),
89             remanence_("Mr", dimensionSet(0, -1, 0, 0, 0, 1, 0), Mr),
90             orientation_(orientation)
91         {}
93         //- Construct from Istream
94         inline magnet(Istream& is)
95         :
96             remanence_("Mr", dimensionSet(0, -1, 0, 0, 0, 1, 0), 0),
97             orientation_(vector::zero)
98         {
99             is >> *this;
100         }
103     // Member Functions
105         //- Return name
106         inline const word& name() const
107         {
108             return name_;
109         }
111         //- Return relative permeability
112         inline scalar mur() const
113         {
114             return relativePermeability_;
115         }
117         //- Return remenance
118         inline const dimensionedScalar& Mr() const
119         {
120             return remanence_;
121         }
123         //- Return orientation
124         inline const vector& orientation() const
125         {
126             return orientation_;
127         }
130     // IOstream operators
132         inline friend Istream& operator>>(Istream& is, magnet& m)
133         {
134             is.readBegin("magnet");
135             is  >> m.name_
136                 >> m.relativePermeability_
137                 >> m.remanence_.value()
138                 >> m.orientation_;
139             is.readEnd("magnet");
141             // Check state of Istream
142             is.check("operator>>(Istream&, magnet&)");
144             return is;
145         }
147         inline friend Ostream& operator<<(Ostream& os, const magnet& m)
148         {
149             os  << token::BEGIN_LIST
150                 << m.name_ << token::SPACE
151                 << m.relativePermeability_ << token::SPACE
152                 << m.remanence_.value()
153                 << m.orientation_
154                 << token::END_LIST;
156             return os;
157         }
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
163 } // End namespace Foam
165 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
167 #endif
169 // ************************************************************************* //