smallPoolFire2D fireFoam tutorial: improved stability of the BCs.
[OpenFOAM-1.6.x.git] / src / postProcessing / functionObjects / forces / forceCoeffs / forceCoeffs.H
blobd9a948db0896e2115d8de42adf671ef98315de51
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 Class
26     Foam::forceCoeffs
28 Description
29     Derived from the forces function object, creates a specialisation to
30     calculate lift and drag forces.
32 SourceFiles
33     forceCoeffs.C
34     IOforceCoeffs.H
36 \*---------------------------------------------------------------------------*/
38 #ifndef forceCoeffs_H
39 #define forceCoeffs_H
41 #include "forces.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                         Class forceCoeffs Declaration
50 \*---------------------------------------------------------------------------*/
52 class forceCoeffs
54     public forces
56     // Private data
58         // Force coefficient geometry
60             //- Lift
61             vector liftDir_;
63             //- Drag
64             vector  dragDir_;
66             //- Pitch
67             vector pitchAxis_;
70         // Free-stream conditions
72             //- Velocity magnitude
73             scalar magUInf_;
76         // Reference scales
78             //- Length
79             scalar lRef_;
81             //- Area
82             scalar Aref_;
85     // Private member functions
87         //- Disallow default bitwise copy construct
88         forceCoeffs(const forceCoeffs&);
90         //- Disallow default bitwise assignment
91         void operator=(const forceCoeffs&);
94 protected:
96     //- Output file header information
97     virtual void writeFileHeader();
100 public:
102     //- Runtime type information
103     TypeName("forceCoeffs");
106     // Constructors
108         //- Construct for given objectRegistry and dictionary.
109         //  Allow the possibility to load fields from files
110         forceCoeffs
111         (
112             const word& name,
113             const objectRegistry&,
114             const dictionary&,
115             const bool loadFromFiles = false
116         );
119     // Destructor
121         virtual ~forceCoeffs();
124     // Member Functions
126         //- Read the forces data
127         virtual void read(const dictionary&);
129         //- Execute, currently does nothing
130         virtual void execute();
132         //- Execute at the final time-loop, currently does nothing
133         virtual void end();
135         //- Write the forces
136         virtual void write();
140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 } // End namespace Foam
144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
146 #endif
148 // ************************************************************************* //