initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / dynamicMesh / boundaryPatch / boundaryPatch.C
blobad789b4150bbd80a062d4999d286eaf543ce4ce6
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 "boundaryPatch.H"
28 #include "dictionary.H"
29 #include "Ostream.H"
31 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
33 Foam::boundaryPatch::boundaryPatch
35     const word& name,
36     const label index,
37     const label size,
38     const label start,
39     const word& physicalType
42     patchIdentifier(name, index, physicalType),
43     size_(size),
44     start_(start)
48 Foam::boundaryPatch::boundaryPatch
50     const word& name,
51     const dictionary& dict,
52     const label index
55     patchIdentifier(name, dict, index),
56     size_(readLabel(dict.lookup("nFaces"))),
57     start_(readLabel(dict.lookup("startFace")))
61 Foam::boundaryPatch::boundaryPatch(const boundaryPatch& p)
63     patchIdentifier(p.name(), p.index(), p.physicalType()),
64     size_(p.size()),
65     start_(p.start())
69 Foam::boundaryPatch::boundaryPatch(const boundaryPatch& p, const label index)
71     patchIdentifier(p.name(), index, p.physicalType()),
72     size_(p.size()),
73     start_(p.start())
77 Foam::autoPtr<Foam::boundaryPatch> Foam::boundaryPatch::clone() const
79     return autoPtr<boundaryPatch>(new boundaryPatch(*this));
83 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
85 Foam::boundaryPatch::~boundaryPatch()
89 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
91 void Foam::boundaryPatch::write(Ostream& os) const
93     patchIdentifier::write(os);
94     os.writeKeyword("nFaces") << size_ << token::END_STATEMENT << nl;
95     os.writeKeyword("startFace") << start_ << token::END_STATEMENT << nl;
99 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
101 Foam::Ostream& Foam::operator<<(Ostream& os, const boundaryPatch& p)
103     p.write(os);
104     os.check("Ostream& operator<<(Ostream& f, const boundaryPatch&)");
105     return os;
109 // ************************************************************************* //