FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

cellModelIO.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Description
00025     Read construct cellPrimitiveModel from Istream.
00026     Write cellPrimitiveModel to Ostream
00027 
00028 \*---------------------------------------------------------------------------*/
00029 
00030 #include "cellModel.H"
00031 #include <OpenFOAM/dictionaryEntry.H>
00032 
00033 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00034 
00035 namespace Foam
00036 {
00037 
00038 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00039 
00040 cellModel::cellModel(Istream& is)
00041 {
00042     dictionaryEntry entry(dictionary::null, is);
00043     name_ = entry.keyword();
00044     entry.lookup("index") >> index_;
00045     entry.lookup("numberOfPoints") >> nPoints_;
00046     entry.lookup("faces") >> faces_;
00047     entry.lookup("edges") >> edges_;
00048 }
00049 
00050 
00051 Ostream& operator<<(Ostream& os, const cellModel& c)
00052 {
00053     os  << "name" << tab << c.name_ << tab
00054         << "index" << tab << c.index_ << tab
00055         << "numberOfPoints" << tab << c.nPoints_ << tab
00056         << "faces" << tab << c.faces_ << tab
00057         << "edges" << tab << c.edges_ << endl;
00058 
00059     return os;
00060 }
00061 
00062 
00063 #if defined (__GNUC__)
00064 template<>
00065 #endif
00066 Ostream& operator<<(Ostream& os, const InfoProxy<cellModel>& ip)
00067 {
00068     const cellModel& cm = ip.t_;
00069 
00070     os  << "name = " << cm.name() << ", "
00071         << "index = " << cm.index() << ", "
00072         << "number of points = " << cm.nPoints() << ", "
00073         << "number of faces = " << cm.nFaces() << ", "
00074         << "number of edges = " << cm.nEdges()
00075         << endl;
00076 
00077     return os;
00078 }
00079 
00080 
00081 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00082 
00083 } // End namespace Foam
00084 
00085 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines