faceCoupleInfoTemplates.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2017 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
28#include "faceCoupleInfo.H"
29
30// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
31
32// Add a T entry
33template<template<class> class FaceList>
34Foam::pointField Foam::faceCoupleInfo::calcFaceCentres
35(
36 const FaceList<face>& faces,
37 const pointField& points,
38 const label start,
39 const label size
40)
41{
42 pointField fc(size);
43
44 label facei = start;
45
46 forAll(fc, i)
47 {
48 fc[i] = faces[facei++].centre(points);
49 }
50 return fc;
51}
52
53
54template<template<class> class FaceList>
55Foam::pointField Foam::faceCoupleInfo::calcFacePointAverages
56(
57 const FaceList<face>& faces,
58 const pointField& points,
59 const label start,
60 const label size
61)
62{
63 pointField fpa(size, Zero);
64
65 label facei = start;
66
67 forAll(fpa, i)
68 {
69 forAll(faces[facei], j)
70 {
71 fpa[i] += points[faces[facei][j]];
72 }
73 fpa[i] /= faces[facei++].size();
74 }
75 return fpa;
76}
77
78
79// ************************************************************************* //
void size(const label n)
Older name for setAddressableSize.
Definition: UList.H:114
const pointField & points
static constexpr const zero Zero
Global zero (0)
Definition: zero.H:131
#define forAll(list, i)
Loop across all elements in list.
Definition: stdFoam.H:333