1#ifndef Ajax_SimHouse_System_h_
2#define Ajax_SimHouse_System_h_
39 const double _tickPeriodInSeconds;
46 double _previousOutputPotential;
94 double environmentResistance,
96 double initialOutputPotential )
noexcept;
105 void start(
double potential )
noexcept;
115 void start(
double potential,
double resistance )
noexcept;
124 void accumulate(
double potential,
double resistance )
noexcept;
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.