initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / meshes / polyMesh / polyPatches / basic / generic / genericPolyPatch.C
blob47730b06deb4c0e6880bfd26f80d114f4d581721
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 #include "genericPolyPatch.H"
28 #include "addToRunTimeSelectionTable.H"
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 namespace Foam
34     defineTypeNameAndDebug(genericPolyPatch, 0);
36     addToRunTimeSelectionTable(polyPatch, genericPolyPatch, word);
37     addToRunTimeSelectionTable(polyPatch, genericPolyPatch, dictionary);
41 // * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * * * * * //
43 Foam::genericPolyPatch::genericPolyPatch
45     const word& name,
46     const label size,
47     const label start,
48     const label index,
49     const polyBoundaryMesh& bm
52     polyPatch(name, size, start, index, bm)
56 Foam::genericPolyPatch::genericPolyPatch
58     const word& name,
59     const dictionary& dict,
60     const label index,
61     const polyBoundaryMesh& bm
64     polyPatch(name, dict, index, bm),
65     actualTypeName_(dict.lookup("type")),
66     dict_(dict)
70 Foam::genericPolyPatch::genericPolyPatch
72     const genericPolyPatch& pp,
73     const polyBoundaryMesh& bm
76     polyPatch(pp, bm),
77     actualTypeName_(pp.actualTypeName_),
78     dict_(pp.dict_)
82 Foam::genericPolyPatch::genericPolyPatch
84     const genericPolyPatch& pp,
85     const polyBoundaryMesh& bm,
86     const label index,
87     const label newSize,
88     const label newStart
91     polyPatch(pp, bm, index, newSize, newStart),
92     actualTypeName_(pp.actualTypeName_),
93     dict_(pp.dict_)
97 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
99 Foam::genericPolyPatch::~genericPolyPatch()
103 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
105 void Foam::genericPolyPatch::write(Ostream& os) const
107     os.writeKeyword("type") << actualTypeName_ << token::END_STATEMENT << nl;
108     patchIdentifier::write(os);
109     os.writeKeyword("nFaces") << size() << token::END_STATEMENT << nl;
110     os.writeKeyword("startFace") << start() << token::END_STATEMENT << nl;
112     for
113     (
114         dictionary::const_iterator iter = dict_.begin();
115         iter != dict_.end();
116         ++iter
117     )
118     {
119         if
120         (
121             iter().keyword() != "type"
122          && iter().keyword() != "nFaces"
123          && iter().keyword() != "startFace"
124         )
125         {
126             iter().write(os);
127         }
128     }
132 // ************************************************************************* //