engineTime.C
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 \*---------------------------------------------------------------------------*/
25 
26 #include "engineTime.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace userTimes
34 {
37 }
38 }
39 
40 
41 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42 
44 :
46  rpm_("rpm", dimless/dimTime, 0)
47 {
49 }
50 
51 
52 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
53 
55 {}
56 
57 
58 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
59 
61 {
62  return rpm_;
63 }
64 
65 
67 (
68  const scalar theta
69 ) const
70 {
71  return theta/(6*rpm_.value());
72 }
73 
74 
75 Foam::scalar Foam::userTimes::engine::timeToUserTime(const scalar t) const
76 {
77  return t*(6*rpm_.value());
78 }
79 
80 
82 {
83  return "CAD";
84 }
85 
86 
88 {
89  rpm_.read(dict(controlDict));
90  return true;
91 }
92 
93 
94 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
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
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
addToRunTimeSelectionTable(userTime, engine, dictionary)
defineTypeNameAndDebug(engine, 0)
Namespace for OpenFOAM.
const dimensionSet dimless
const dimensionSet dimTime
runTime controlDict().lookup("adjustTimeStep") >> adjustTimeStep
dictionary dict