ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / surfMesh / surfaceFormats / ftr / FTRsurfaceFormat.C
blobf8cec7b8564f5178ec6acd2ee3dfc0d6239d7ce1
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 \*---------------------------------------------------------------------------*/
26 #include "FTRsurfaceFormat.H"
27 #include "Keyed.H"
28 #include "IFstream.H"
30 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
32 template<class Face>
33 Foam::fileFormats::FTRsurfaceFormat<Face>::FTRsurfaceFormat
35     const fileName& filename
38     read(filename);
42 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
44 template<class Face>
45 bool Foam::fileFormats::FTRsurfaceFormat<Face>::read
47     const fileName& filename
50     this->clear();
52     IFstream is(filename);
53     if (!is.good())
54     {
55         FatalErrorIn
56         (
57             "fileFormats::FTRsurfaceFormat::read(const fileName&)"
58         )
59             << "Cannot read file " << filename
60             << exit(FatalError);
61     }
63     List<ftrPatch> ftrPatches(is);
65     // points read directly
66     is >> this->storedPoints();
68     // triFaces read with attached keys
69     List< Keyed<triFace> > facesRead(is);
71     List<Face>  faceLst(facesRead.size());
72     List<label> zoneIds(facesRead.size());
74     // disentangle faces/keys - already triangulated
75     forAll(facesRead, faceI)
76     {
77         // unfortunately cannot transfer to save memory
78         faceLst[faceI] = facesRead[faceI];
79         zoneIds[faceI] = facesRead[faceI].key();
80     }
82     this->storedFaces().transfer(faceLst);
83     this->storedZoneIds().transfer(zoneIds);
84     facesRead.clear();
86     // change ftrPatch into surfZoneIdentifier
87     List<surfZoneIdentifier> newZones(ftrPatches.size());
88     forAll(newZones, zoneI)
89     {
90         newZones[zoneI] = surfZoneIdentifier
91         (
92             ftrPatches[zoneI].name(),
93             zoneI
94         );
95     }
97     this->storedZoneToc().transfer(newZones);
98     return true;
102 // ************************************************************************* //