From 0494e7f486e5f0b0328145fab58606b32c48ddb8 Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 3 Feb 2011 10:09:51 +0000 Subject: [PATCH] STYLE: cellPointWeight.H.old : extraneous file --- .../cellPointWeight/cellPointWeight.H.old | 140 --------------------- 1 file changed, 140 deletions(-) delete mode 100644 src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.H.old diff --git a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.H.old b/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.H.old deleted file mode 100644 index 5bdb3954..00000000 --- a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.H.old +++ /dev/null @@ -1,140 +0,0 @@ -/*---------------------------------------------------------------------------*\ - ========= | - \\ / F ield | OpenFOAM: The Open Source CFD Toolbox - \\ / O peration | - \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd. - \\/ 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 . - -Class - cellPointWeight - -Description - -SourceFiles - cellPointWeight.C - findCellPointTet.H - findCellPointTriangle.H - -\*---------------------------------------------------------------------------*/ - -#ifndef cellPointWeight_H -#define cellPointWeight_H - -#include "vector.H" - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -namespace Foam -{ - -class polyMesh; - -/*---------------------------------------------------------------------------*\ - Class cellPointWeight Declaration -\*---------------------------------------------------------------------------*/ - -class cellPointWeight -{ - // Private data - - vector position_; - label cellNo_; - label face_; - FixedList weights_; - FixedList faceVertices_; - label cellFace_; - - - // Private Member Functions - - bool findTet - ( - const polyMesh& mesh, - const label nFace, - vector tetPoints[], - label tetLabelCandidate[], - scalar phiCandidate[], - label& closestFace, - scalar& minDistance - ); - - bool findTriangle - ( - const polyMesh& mesh, - const label nFace - ); - - -public: - - // Constructors - - //- Construct from components - cellPointWeight - ( - const polyMesh& mesh, - const vector& position, - const label nCell, - const label facei = -1 - ); - - - // Member Functions - - //- cell label - inline label cell() const - { - return cellNo_; - } - - //- face label - inline label face() const - { - return face_; - } - - //- interpolation weights - inline const FixedList& weights() const - { - return weights_; - } - - //- interpolation addressing for points on face - inline const FixedList& faceVertices() const - { - return faceVertices_; - } - - //- face label - inline label cellFace() const - { - return cellFace_; - } -}; - - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -} // End namespace Foam - -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -#endif - -// ************************************************************************* // -- 2.11.4.GIT