/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\/ 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 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 "treeDataTriSurface.H" #include "triSurfaceTools.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // template<> Foam::volumeType Foam::treeDataPrimitivePatch::getVolumeType ( const indexedOctree>& oc, const point& sample ) const { // Find nearest face to sample pointIndexHit info = oc.findNearest(sample, sqr(GREAT)); if (info.index() == -1) { FatalErrorInFunction << "Could not find " << sample << " in octree." << abort(FatalError); } // Get actual intersection point on face label facei = info.index(); triSurfaceTools::sideType t = triSurfaceTools::surfaceSide ( patch_, sample, facei ); if (t == triSurfaceTools::UNKNOWN) { return volumeType::UNKNOWN; } else if (t == triSurfaceTools::INSIDE) { return volumeType::INSIDE; } else if (t == triSurfaceTools::OUTSIDE) { return volumeType::OUTSIDE; } else { FatalErrorInFunction << "problem" << abort(FatalError); return volumeType::UNKNOWN; } } // ************************************************************************* //