/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright held by original author \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Description Reads CCM files as written by Prostar/ccm using ccm 2.6 (not 2.4) - does polyhedral mesh - does not handle 'interfaces' (couples) - does not handle cyclics. Use createPatch to recreate these - does not do data - does patch names only if they are in the problem description \*---------------------------------------------------------------------------*/ #include "ListOps.H" #include "argList.H" #include "Time.H" #include "fvMesh.H" #include "volFields.H" #include "emptyPolyPatch.H" #include "symmetryPolyPatch.H" #include "wallPolyPatch.H" #include "SortableList.H" #include "cellSet.H" #include #include using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // static char const kDefaultState[] = "default"; static int const kVertOffset = 2; // Determine upper-triangular order for internal faces: labelList getInternalFaceOrder ( const cellList& cells, const labelList& owner, const labelList& neighbour ) { labelList oldToNew(owner.size(), -1); // First unassigned face label newFaceI = 0; forAll(cells, cellI) { const labelList& cFaces = cells[cellI]; SortableList