Skip to content
Snippets Groups Projects
faceAreaIntersect.C 9.19 KiB
Newer Older
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Copyright (C) 2011 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 <http://www.gnu.org/licenses/>.

\*---------------------------------------------------------------------------*/

#include "faceAreaIntersect.H"

// * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * * //

void Foam::faceAreaIntersect::triSliceWithPlane
(
    const triPoints& tri,
    const plane& p,
    FixedList<triPoints, 10>& tris,
    label& nTris,
    const scalar len
andy's avatar
andy committed
    const scalar matchTol = 1e-6;
    // distance to cutting plane
    FixedList<scalar, 3> d;

    // determine how many of the points are above the cutting plane
    label nCoPlanar = 0;
    label nPos = 0;
    label posI = -1;
    label negI = -1;
    label copI = -1;
    forAll(tri, i)
    {
        d[i] = ((tri[i] - p.refPoint()) & p.normal());

        if (mag(d[i]) < matchTol*len)

    // Determine triangle area contribution

    if
    (
        (nPos == 3)
     || ((nPos == 2) && (nCoPlanar == 1))
     || ((nPos == 1) && (nCoPlanar == 2)))
        /*
                /\          _____
               /  \         \   /          /\
              /____\         \ /          /  \
            __________    ____v____    __/____\__
            all points above cutting plane
            - add complete triangle to list
        */
    else if ((nPos == 2) && (nCoPlanar == 0))
        /*
             ________
             \      /
            --\----/--
               \  /
                \/
            2 points above plane, 1 below
            - resulting quad above plane split into 2 triangles
andy's avatar
andy committed
            - forget triangle below plane
        // point under the plane
        label i0 = negI;

        // indices of remaining points
        label i1 = d.fcIndex(i0);
        label i2 = d.fcIndex(i1);

        // determine the two intersection points
        point p01 = planeIntersection(d, tri, i0, i1);
        point p02 = planeIntersection(d, tri, i0, i2);

        // forget triangle below plane
        // - decompose quad above plane into 2 triangles and add to list
        setTriPoints(tri[i1], tri[i2], p02, nTris, tris);
        setTriPoints(tri[i1], p02, p01, nTris, tris);
    }
    else if (nPos == 1)
    {
        // point above the plane
        label i0 = posI;

        if (nCoPlanar == 0)
        {
            /*
                   /\
                  /  \
               --/----\--
                /______\
                1 point above plane, 2 below
andy's avatar
andy committed
                - keep triangle above intersection plane
                - forget quad below plane
            // indices of remaining points
            label i1 = d.fcIndex(i0);
            label i2 = d.fcIndex(i1);

            // determine the two intersection points
            point p01 = planeIntersection(d, tri, i0, i1);
            point p02 = planeIntersection(d, tri, i0, i2);
andy's avatar
andy committed
            // add triangle above plane to list
            setTriPoints(tri[i0], p01, p02, nTris, tris);
        }
        else
        {
                  |\
                  | \
                __|__\__
                  |  /
                  | /
                  |/


                1 point above plane, 1 on plane, 1 below
                - keep triangle above intersection plane
            */
            // point indices
            label i1 = negI;
            label i2 = copI;

            // determine the intersection point
            point p01 = planeIntersection(d, tri, i0, i1);

            // add triangle above plane to list
            if (d.fcIndex(i0) == i1)
            {
                setTriPoints(tri[i0], p01, tri[i2], nTris, tris);
            }
            else
            {
                setTriPoints(tri[i0], tri[i2], p01, nTris, tris);
            }
        }
        /*
            _________    __________    ___________
                             /\          \    /
               /\           /  \          \  /
              /  \         /____\          \/
             /____\

            all points below cutting plane - forget
        */
    }
}


Foam::scalar Foam::faceAreaIntersect::triangleIntersect
(
    const triPoints& src,
    const triPoints& tgt,
    const vector& n
)
{
    // Work storage
    FixedList<triPoints, 10> workTris1;
    label nWorkTris1 = 0;
    FixedList<triPoints, 10> workTris2;
    label nWorkTris2 = 0;

    // cut source triangle with all inwards pointing faces of target triangle
    // - triangles in workTris1 are inside target triangle

    scalar t = sqrt(triArea(src));

    // edge 0
    {
        // cut triangle src with plane and put resulting sub-triangles in
        // workTris1 list
        scalar s = mag(tgt[1] - tgt[0]);
        plane pl0(tgt[0], tgt[1], tgt[1] + s*n);
        triSliceWithPlane(src, pl0, workTris1, nWorkTris1, t);
    if (nWorkTris1 == 0)
        // cut workTris1 with plane and put resulting sub-triangles in
        // workTris2 list (re-use tris storage)
        scalar s = mag(tgt[2] - tgt[1]);
        plane pl1(tgt[1], tgt[2], tgt[2] + s*n);
        nWorkTris2 = 0;
        for (label i = 0; i < nWorkTris1; i++)
            triSliceWithPlane(workTris1[i], pl1, workTris2, nWorkTris2, t);
        if (nWorkTris2 == 0)
        // cut workTris2 with plane and put resulting sub-triangles in
        // workTris1 list (re-use workTris1 storage)
        scalar s = mag(tgt[2] - tgt[0]);
        plane pl2(tgt[2], tgt[0], tgt[0] + s*n);
        nWorkTris1 = 0;
        for (label i = 0; i < nWorkTris2; i++)
            triSliceWithPlane(workTris2[i], pl2, workTris1, nWorkTris1, t);
        if (nWorkTris1 == 0)
        {
            return 0.0;
        }
        else
        {
            // calculate area of sub-triangles
            scalar area = 0.0;
            for (label i = 0; i < nWorkTris1; i++)
                area += triArea(workTris1[i]);
            }

            return area;
        }
    }
}


// * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * * //

Foam::faceAreaIntersect::faceAreaIntersect
(
    const pointField& pointsA,
    const pointField& pointsB
)
:
    pointsA_(pointsA),
    pointsB_(pointsB)
{}


// * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //

Foam::scalar Foam::faceAreaIntersect::calc
(
    const face& faceA,
    const face& faceB,
    const vector& n,
    const triangulationMode& triMode
)
{
    // split faces into triangles
    DynamicList<face> trisA;
    DynamicList<face> trisB;

    switch (triMode)
    {
        case tmFan:
        {
            triangleFan(faceA, trisA);
            triangleFan(faceB, trisB);
            break;
        }
        case tmMesh:
        {
            faceA.triangles(pointsA_, trisA);
            faceB.triangles(pointsB_, trisB);

            break;
        }
        default:
        {
            FatalErrorIn
            (
                "Foam::scalar Foam::faceAreaIntersect::calc"
                "("
                    "const face&, "
                    "const face&, "
                    "const vector&, "
                    "const triangulationMode&"
                ")"
            )   << "Unknown triangulation mode enumeration"
                << abort(FatalError);
        }
    }

    // intersect triangles
    scalar totalArea = 0.0;
    forAll(trisA, tA)
    {
        triPoints tpA = getTriPoints(pointsA_, trisA[tA], false);

//        if (triArea(tpA) > ROOTVSMALL)
        {
            forAll(trisB, tB)
            {
                triPoints tpB = getTriPoints(pointsB_, trisB[tB], true);

//                if (triArea(tpB) > ROOTVSMALL)
                {
                    totalArea += triangleIntersect(tpA, tpB, n);
                }
            }
        }
    }

    return totalArea;
}


// ************************************************************************* //