GM6000 Digital Heater Controller Branch: main
SDX-1330
System.h
Go to the documentation of this file.
1#ifndef Ajax_SimHouse_System_h_
2#define Ajax_SimHouse_System_h_
3/*-----------------------------------------------------------------------------
4* This file is from Michael Moran's OSCL library (http://mnmoran.org/oscl.html)
5* and has no copyright and/our usage restrictions. It has been slightly
6* modified for inclusion in the colony.apps repository
7*
8* Copyright 2003 Michael Nelson Moran
9* This software may be copied and used without restriction.
10*----------------------------------------------------------------------------*/
11/** @file */
12
13///
14namespace Ajax
15{
16///
17namespace SimHouse
18{
19
20
21/** This class simulates a "system" whose state is affected
22 by its environment and any number of control systems
23 that may change the environment over time. The design of
24 this class was inspired by the electrical theory surrounding
25 the charging and discharging of a capacitor by a voltage
26 source (potential) through a resistance. The environment
27 in exactly the same way as the various controlling sources,
28 that is as a potential and a series resistance. Although
29 this model is based upon electrical engineering, it is
30 essentially unit-less and may be applied to similarly behaving
31 systems (e.g. thermal systems).
32 */
33class System
34{
35private:
36 /** Contains the time in seconds between system
37 updates.
38 */
39 const double _tickPeriodInSeconds;
40
41 /** The potential of the system after the previous
42 system update. This value is used as the starting
43 point for the next system update calculation,
44 and is modified appropriately at that time.
45 */
46 double _previousOutputPotential;
47
48public:
49 /** This value represents the default value of the
50 resistance between the system and the environmental
51 potential.
52 */
54
55 /** This value represents the capacity of the system.
56 E.g. in an electrical system this is the value of
57 the capacitor. It affects the overall "inertia" of
58 the simulated system.
59 */
61
62 /** This value is used during the start() -> accumulate() ->
63 finish() sequence to hold the accumulated "equivalent"
64 potential of the combined environment and control
65 sources. Its value is calculated in the same way as
66 the "open-circuit voltage" in a Thevenin equivalent
67 circuit.
68 */
69 double _peq;
70
71 /** This value is used during the start() -> accumulate() ->
72 finish() sequence to hold the accumulated "equivalent"
73 resistance of the combined environment and control
74 sources. Its value is calculated in the same way as
75 the "equivalent series resistance" in a Thevenin equivalent
76 circuit.
77 */
78 double _req;
79
80public:
81 /**
82 * tickPeriodInSeconds is the time between each
83 * call to the tick() operations.
84 * controlResistance is the "internal" resistance
85 * of the control input to other network.
86 * environmentResistance is the "internal" resistance
87 * of the environment.
88 * capacitance is the amount of charge that can be
89 * stored in the system.
90 * initialOutputPotential is the initial voltage across
91 * the capacitor/system.
92 */
93 System( double tickPeriodInSeconds,
94 double environmentResistance,
95 double capacitance,
96 double initialOutputPotential ) noexcept;
97
98 /** This operation is used to start an accumulation cycle.
99 It allows several sources to affect the calculation
100 of the system output over the next cycle. In this
101 variant, the potential is that of the "environment"
102 and the resistance is assumed to be that of the
103 environment as specified by the constructor.
104 */
105 void start( double potential ) noexcept;
106
107 /** This operation is used to start an accumulation cycle.
108 It allows several sources to affect the calculation
109 of the system output over the next cycle. In this
110 variant, the potential is that of the "environment"
111 and the resistance is also that of the "environment"
112 and is used instead of the constant supplied in the
113 constructor.
114 */
115 void start( double potential, double resistance ) noexcept;
116
117 /** This operation is to be invoked zero or more times after
118 one of the start() operations and before the finish()
119 operation. Each invocation accumulates a new potential
120 source into the system calculation. This allows any
121 number of sources, each consisting of a potential and
122 a resistance to affect the next state of the system.
123 */
124 void accumulate( double potential, double resistance ) noexcept;
125
126 /** This operation is issued after one of the start() operations
127 and zero or more accumulate() operations to calculate the
128 new output potential/state of the system, that is returned as
129 a result.
130 */
131 double finish() noexcept;
132
133};
134
135}; // end namespaces
136};
137#endif // end header latch
138
This class simulates a "system" whose state is affected by its environment and any number of control ...
Definition System.h:34
System(double tickPeriodInSeconds, double environmentResistance, double capacitance, double initialOutputPotential) noexcept
tickPeriodInSeconds is the time between each call to the tick() operations.
double _environmentResistance
This value represents the default value of the resistance between the system and the environmental po...
Definition System.h:53
double _capacitance
This value represents the capacity of the system.
Definition System.h:60
double finish() noexcept
This operation is issued after one of the start() operations and zero or more accumulate() operations...
double _req
This value is used during the start() -> accumulate() -> finish() sequence to hold the accumulated "e...
Definition System.h:78
void start(double potential, double resistance) noexcept
This operation is used to start an accumulation cycle.
void accumulate(double potential, double resistance) noexcept
This operation is to be invoked zero or more times after one of the start() operations and before the...
void start(double potential) noexcept
This operation is used to start an accumulation cycle.
double _peq
This value is used during the start() -> accumulate() -> finish() sequence to hold the accumulated "e...
Definition System.h:69
The 'Ajax' namespace is the root name space all GM6000 application specific source code.