BUGFIX: Uninitialised member variables
[foam-extend-3.2.git] / applications / utilities / solidMechanics / patchStressIntegrate / patchStressIntegrate.C
blob0e815349527f2e844c6b400c86c140b14b26cb52
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM 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 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
26     Calculates the total forces on a patch:
27         total force vector
28         total normal force
29         total force in each direction (x, y and z)
31 Author
32     philip.cardiff@ucd.ie
34 \*---------------------------------------------------------------------------*/
36 #include "fvCFD.H"
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 int main(int argc, char *argv[])
42 #   include "setRootCase.H"
44 #   include "createTime.H"
46 #   include "createMesh.H"
48    while(runTime.loop())
49     {
50       Info<< "Time: " << runTime.timeName() << nl << endl;
52   volSymmTensorField sigma
53     (
54      IOobject
55      (
56       "sigma",
57       runTime.timeName(),
58       mesh,
59       IOobject::MUST_READ,
60       IOobject::NO_WRITE
61       ),
62      mesh
63      );
65   Info << nl;
67   vector netForce = vector::zero;
69   forAll(mesh.boundary(), patchID)
70     {
71       vectorField n = mesh.boundary()[patchID].nf();
72       const vectorField& Sf = mesh.boundary()[patchID].Sf();
73       const symmTensorField& sigmaPatch = sigma.boundaryField()[patchID];
75       vector totalForce = sum(Sf & sigmaPatch);
76       netForce += totalForce;
77       scalar totalNormalForce = sum(n & (Sf & sigmaPatch));
78       vector totalShearForce = sum((I -sqr(n)) & (Sf & sigmaPatch));
80       Info << "Patch: " << mesh.boundary()[patchID].name() << nl
81           << "\tTotal Force:\t\t" << totalForce << " N\n"
82           << "\tTotal Normal Force:\t" << totalNormalForce <<  " N\n"
83           << "\tTotal Shear Force:\t" << totalShearForce <<  " N\n" << endl;
84     }
86   Info << nl << "Net force on model is " << netForce << " N" << endl;
88     }
90   Info << nl << "End" << endl;
92   return 0;
96 // ************************************************************************* //