BUG: settings.csh: SGIMPI setting
[OpenFOAM-2.0.x.git] / src / engine / engineTime / engineTime.H
blobf80504f75af6860ac3b040cc0a7d98879adb1787
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::engineTime
27 Description
28     Manage time in terms of engine RPM and crank-angle.
30     When engineTime is in effect, the userTime is reported in degrees
31     crank-angle instead of in seconds. The RPM to be used is specified in
32     \c constant/engineGeometry. If only a time conversion is required,
33     the geometric engine parameters can be dropped or set to zero.
35     For example,
36     \verbatim
37         rpm             rpm  [0 0 -1 0 0]  2000;
39         conRodLength    conRodLength  [0 1 0 0 0] 0.0;
40         bore            bore          [0 1 0 0 0] 0.0;
41         stroke          stroke        [0 1 0 0 0] 0.0;
42         clearance       clearance     [0 1 0 0 0] 0.0;
43     \endverbatim
45 Note
46    The engineTime can currently only be selected at compile-time.
48 SourceFiles
49     engineTime.C
51 \*---------------------------------------------------------------------------*/
53 #ifndef engineTime_H
54 #define engineTime_H
56 #include "Time.H"
57 #include "dictionary.H"
58 #include "dimensionedScalar.H"
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62 namespace Foam
65 /*---------------------------------------------------------------------------*\
66                         Class engineTime Declaration
67 \*---------------------------------------------------------------------------*/
69 class engineTime
71     public Time
73     // Private data
75         IOdictionary dict_;
77         //- RPM is required
78         dimensionedScalar rpm_;
80         //- Optional engine geometry parameters
81         dimensionedScalar conRodLength_;
82         dimensionedScalar bore_;
83         dimensionedScalar stroke_;
84         dimensionedScalar clearance_;
87     // Private Member Functions
89         //- Disallow default bitwise copy construct
90         engineTime(const engineTime&);
92         //- Disallow default bitwise assignment
93         void operator=(const engineTime&);
95         //- adjust read time values
96         void timeAdjustment();
98 public:
100     // Constructors
102         //- Construct from objectRegistry arguments
103         engineTime
104         (
105             const word& name,
106             const fileName& rootPath,
107             const fileName& caseName,
108             const fileName& systemName = "system",
109             const fileName& constantName = "constant",
110             const fileName& dictName = "engineGeometry"
111         );
113     //- Destructor
114     virtual ~engineTime()
115     {}
118     // Member Functions
120         // Conversion
122             //- Convert degrees to seconds (for given engine speed in RPM)
123             scalar degToTime(const scalar theta) const;
125             //- Convert seconds to degrees (for given engine speed in RPM)
126             scalar timeToDeg(const scalar t) const;
128             //- Calculate the piston position from the engine geometry
129             //  and given crank angle.
130             scalar pistonPosition(const scalar theta) const;
133         // Access
135             //- Return the engine geometry dictionary
136             const dictionary& engineDict() const
137             {
138                 return dict_;
139             }
141             //- Return the engines current operating RPM
142             const dimensionedScalar& rpm() const
143             {
144                 return rpm_;
145             }
147             //- Return the engines connecting-rod length
148             const dimensionedScalar& conRodLength() const
149             {
150                 return conRodLength_;
151             }
153             //- Return the engines bore
154             const dimensionedScalar& bore() const
155             {
156                 return bore_;
157             }
159             //- Return the engines stroke
160             const dimensionedScalar& stroke() const
161             {
162                 return stroke_;
163             }
165             //- Return the engines clearance-gap
166             const dimensionedScalar& clearance() const
167             {
168                 return clearance_;
169             }
172             //- Return current crank-angle
173             scalar theta() const;
175             //- Return current crank-angle translated to a single revolution
176             //  (value between -180 and 180 with 0 = top dead centre)
177             scalar thetaRevolution() const;
179             //- Return crank-angle increment
180             scalar deltaTheta() const;
182             //- Return current piston position
183             dimensionedScalar pistonPosition() const;
185             //- Return piston displacement for current time step
186             dimensionedScalar pistonDisplacement() const;
188             //- Return piston speed for current time step
189             dimensionedScalar pistonSpeed() const;
192         // Member functions overriding the virtual functions in time
194             //- Convert the user-time (CA deg) to real-time (s).
195             virtual scalar userTimeToTime(const scalar theta) const;
197             //- Convert the real-time (s) into user-time (CA deg)
198             virtual scalar timeToUserTime(const scalar t) const;
200             //- Read the control dictionary and set the write controls etc.
201             virtual void readDict();
204         // Edit
206             //- Read the controlDict and set all the parameters
207             virtual bool read();
211 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
213 } // End namespace Foam
215 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
217 #endif
219 // ************************************************************************* //