engineTime.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::userTimes::engine
26 
27 Description
28  A userTime based on engine crank-angle degrees.
29 
30 SourceFiles
31  engineTime.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef engineTime_H
36 #define engineTime_H
37 
38 #include "userTime.H"
39 #include "dimensionedTypes.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 namespace userTimes
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class engine Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class engine
53 :
54  public userTime
55 {
56  // Private Data
57 
58  //- The engine RPM
59  dimensionedScalar rpm_;
60 
61 
62 public:
63 
64  //- Runtime type information
65  TypeName("engine");
66 
67 
68  // Constructors
69 
70  //- Construct from controlDict
72 
73 
74  //- Destructor
75  virtual ~engine();
76 
77 
78  // Member Functions
79 
80  //- Return the RPM
81  const dimensionedScalar& rpm() const;
82 
83  //- Return the theta crank-angle is s
84  virtual scalar userTimeToTime(const scalar theta) const;
85 
86  //- Return the time t in crank-angle
87  virtual scalar timeToUserTime(const scalar t) const;
88 
89  //- Return real-time unit (s)
90  virtual word unit() const;
91 
92  //- Read the controlDict and set all the parameters
93  virtual bool read(const dictionary& controlDict);
94 };
95 
96 
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
98 
99 } // End namespace userTimes
100 } // End namespace Foam
101 
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 
104 #endif
105 
106 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
A userTime based on engine crank-angle degrees.
Definition: engineTime.H:54
virtual scalar timeToUserTime(const scalar t) const
Return the time t in crank-angle.
Definition: engineTime.C:75
virtual scalar userTimeToTime(const scalar theta) const
Return the theta crank-angle is s.
Definition: engineTime.C:67
virtual ~engine()
Destructor.
Definition: engineTime.C:54
virtual bool read(const dictionary &controlDict)
Read the controlDict and set all the parameters.
Definition: engineTime.C:87
const dimensionedScalar & rpm() const
Return the RPM.
Definition: engineTime.C:60
TypeName("engine")
Runtime type information.
engine(const dictionary &controlDict)
Construct from controlDict.
Definition: engineTime.C:43
virtual word unit() const
Return real-time unit (s)
Definition: engineTime.C:81
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
runTime controlDict().lookup("adjustTimeStep") >> adjustTimeStep