Remove trailing whitespace systematically
[foam-extend-3.2.git] / applications / solvers / solidMechanics / deprecatedSolvers / contactStressFoam / contactPatchPair.H
blobf7c2c4cd98847aa464c30818e16b8e756e041ecd
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     |
5     \\  /    A nd           | For copyright notice see file Copyright
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     contactPatchPair
27 Description
29 SourceFiles
30     contactPatchPair.C
31     contactPatchPairSlavePressure.C
32     contactPatchPairUpdateContact.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef contactPatchPair_H
37 #define contactPatchPair_H
39 #include "fvMesh.H"
40 #include "primitivePatchInterpolation.H"
41 #include "patchToPatchInterpolation.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class contactPatchPair Declaration
50 \*---------------------------------------------------------------------------*/
52 class contactPatchPair
54     // Private data
56         //- Reference to mesh
57         const fvMesh& mesh_;
59         //- Index of the directionMixed patch
60         const label masterPatchIndex_;
62         //- Index of the gradient patch
63         const label slavePatchIndex_;
65         //- Master patch interpolator
66         primitivePatchInterpolation masterInterpolate_;
68         //- Slave patch interpolator
69         primitivePatchInterpolation slaveInterpolate_;
71         //- Patch to patch interpolator
72         patchToPatchInterpolation patchToPatchInterpolate_;
74         //- Contact tolerance
75         const scalar tol_;
77         //- Touch fraction
78         scalarField touchFraction_;
80         //- Slave displacement
81         vectorField slaveDisplacement_;
83     // Private Member Functions
85         //- Disallow default bitwise copy construct
86         contactPatchPair(const contactPatchPair&);
88         //- Disallow default bitwise assignment
89         void operator=(const contactPatchPair&);
92 public:
94     // Constructors
96         //- Construct from components
97         contactPatchPair
98         (
99             const fvMesh& m,
100             const label master,
101             const label slave,
102             const scalar tolerance
103         );
106     // Member Functions
108         //- Update contact data
109         void updateContact
110         (
111             const volVectorField& disp
112         );
114         //- Return contact fraction for patch
115         const scalarField& touchFraction() const
116         {
117             return touchFraction_;
118         }
120         //- Return slave patch displacement
121         const vectorField& slaveDisplacement() const
122         {
123             return slaveDisplacement_;
124         }
126         //- Return slave patch pressure
127         tmp<scalarField> slavePressure
128         (
129             const scalarField& traction
130         ) const;
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 } // End namespace Foam
139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
141 #endif
143 // ************************************************************************* //