/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | \\ / A nd | For copyright notice see file Copyright \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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 3 of the License, or (at your option) any later version. foam-extend 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 foam-extend. If not, see . 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