/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2012 OpenFOAM Foundation Copyright (C) 2020 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 3 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, see . \*---------------------------------------------------------------------------*/ #include "extrudedMesh.H" #include "wallPolyPatch.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template Foam::pointField Foam::extrudedMesh::extrudedPoints ( const PrimitivePatch& extrudePatch, const extrudeModel& model ) { const pointField& surfacePoints = extrudePatch.localPoints(); const vectorField& surfaceNormals = extrudePatch.pointNormals(); const label nLayers = model.nLayers(); pointField ePoints((nLayers + 1)*surfacePoints.size()); for (label layer=0; layer <= nLayers; ++layer) { const label offset = layer*surfacePoints.size(); forAll(surfacePoints, i) { ePoints[offset + i] = model ( surfacePoints[i], surfaceNormals[i], layer ); } } return ePoints; } template Foam::faceList Foam::extrudedMesh::extrudedFaces ( const PrimitivePatch& extrudePatch, const extrudeModel& model ) { const pointField& surfacePoints = extrudePatch.localPoints(); const List& surfaceFaces = extrudePatch.localFaces(); const edgeList& surfaceEdges = extrudePatch.edges(); const label nInternalEdges = extrudePatch.nInternalEdges(); const label nLayers = model.nLayers(); label nFaces = (nLayers + 1)*surfaceFaces.size() + nLayers*surfaceEdges.size(); faceList eFaces(nFaces); labelList quad(4); label facei = 0; // Internal faces for (label layer=0; layer Foam::cellList Foam::extrudedMesh::extrudedCells ( const PrimitivePatch& extrudePatch, const extrudeModel& model ) { const List& surfaceFaces = extrudePatch.localFaces(); const edgeList& surfaceEdges = extrudePatch.edges(); const label nInternalEdges = extrudePatch.nInternalEdges(); const label nLayers = model.nLayers(); cellList eCells(nLayers*surfaceFaces.size()); // Size the cells forAll(surfaceFaces, i) { const face& f = surfaceFaces[i]; for (label layer=0; layer Foam::extrudedMesh::extrudedMesh ( const IOobject& io, const PrimitivePatch& extrudePatch, const extrudeModel& model ) : polyMesh ( io, extrudedPoints(extrudePatch, model), extrudedFaces(extrudePatch, model), extrudedCells(extrudePatch, model) ), model_(model) { List patches(3); label facei = nInternalFaces(); label sz = model_.nLayers() *(extrudePatch.nEdges() - extrudePatch.nInternalEdges()); patches[0] = new wallPolyPatch ( "sides", sz, facei, 0, boundaryMesh(), wallPolyPatch::typeName ); facei += sz; patches[1] = new polyPatch ( "originalPatch", extrudePatch.size(), facei, 1, boundaryMesh(), polyPatch::typeName ); facei += extrudePatch.size(); patches[2] = new polyPatch ( "otherSide", extrudePatch.size(), facei, 2, boundaryMesh(), polyPatch::typeName ); addPatches(patches); } // ************************************************************************* //