GM6000 Digital Heater Controller Branch: main
SDX-1330
House.h
Go to the documentation of this file.
1#ifndef Ajax_House_House_h_
2#define Ajax_House_House_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16
17///
18namespace Ajax
19{
20///
21namespace SimHouse
22{
23
24
25/** This class provides a 'functional' simulation of house with respect to
26 Outdoor temperature, Indoor temperature, and active HVAC capacity. Essentially,
27 this class provide functional feedback for a thermostat's control algorithm.
28 The feedback is NOT representative of actual house/thermal dynamics, but is
29 sufficient to functional test a control algorithm. This class uses the
30 System class as basis for the feedback.
31
32 Some terminology, notes, design, etc.
33
34 maxOdt = Maximum Outdoor temperature for the simulation in degrees Fahrenheit
35 minOdt = Minimum Outdoor temperature for the simulation in degrees Fahrenheit
36 System.maxPotenial = maxOdt - minOdt;
37 coolingCapacity = -(System.maxPotenial * odtCoolingLoadRating), e.g. -(140' * 0.33) = -46.2'
38 heatingCapacity = System.maxPotenial * odtHeatingLoadRating, e.g. 140' *1.0 = 140'
39 percentActivityCapacity = Current active HVAC capacity. 0.0 = No active capacity, 1.0 = Full Capacity
40 inPotOdt = current outdoor temperature - minOdt
41 InPotHVAC = (coolingCapacity? coolingCapacity : heatingCapacity) * percentActivityCapacity
42 System.InPot = inPotOdt + InPotHVAC
43 Indoor Temperature = System.OutPot + minOdt
44*/
45class House
46{
47protected:
48 /// System simulation
50
51 /// Maximum Outdoor temperature
52 double m_maxOdt;
53
54 /// Minimum Outdoor temperature
55 double m_minOdt;
56
57 /// Cooling capacity
58 double m_coolCap;
59
60 /// Heating capacity
61 double m_heatCap;
62
63 /// Environment resistance
65
66 /// Cooling resistance
68
69 /// Heating resistance
71
72public:
73 /** Constructor. See class description for argument semantics.
74
75 Note: The systemXxxEnvResistance arguments determines the thermal transfer
76 characteristics of the simulated house/system. The larger the
77 value, the slower the thermal transfer. See the System class
78 for additional details for these arguments.
79 */
80 House( double tickPeriodInSeconds = 1.0, // i.e. how frequent the tick() method is called
81 double initialOdt = 70.0, // Initial outdoor temperature
82 double maxOdt = 120.0,
83 double minOdt = -20.0,
84 double odtCoolingLoadRating = 0.33,
85 double odtHeatingLoadRating = 1.0,
86 double systemEnvResistance = 10.0, // Resistance used when NO active conditioning
87 double systemHeatingEnvResistance = 10.0, // Resistance used when actively cooling
88 double systemCoolingEnvResistance = 35.0 ); // Resistance used when actively heating
89
90public:
91 /** This method is called every N seconds. The call frequency MUST
92 match the tickPeriodInSeconds argument specified in the instance's
93 constructor.
94
95 The method returns the newly calculated indoor temperature in degrees
96 Fahrenheit.
97 */
98 double tick( double currentOdt, double percentActiveCapacity, bool coolingCapacity ) noexcept;
99
100};
101
102
103
104}; // end namespaces
105};
106#endif // end header latch
This class provides a 'functional' simulation of house with respect to Outdoor temperature,...
Definition House.h:46
double m_minOdt
Minimum Outdoor temperature.
Definition House.h:55
double tick(double currentOdt, double percentActiveCapacity, bool coolingCapacity) noexcept
This method is called every N seconds.
double m_heatCap
Heating capacity.
Definition House.h:61
double m_coolingEnvResistance
Cooling resistance.
Definition House.h:67
House(double tickPeriodInSeconds=1.0, double initialOdt=70.0, double maxOdt=120.0, double minOdt=-20.0, double odtCoolingLoadRating=0.33, double odtHeatingLoadRating=1.0, double systemEnvResistance=10.0, double systemHeatingEnvResistance=10.0, double systemCoolingEnvResistance=35.0)
Constructor.
System m_sim
System simulation.
Definition House.h:49
double m_coolCap
Cooling capacity.
Definition House.h:58
double m_maxOdt
Maximum Outdoor temperature.
Definition House.h:52
double m_envResistance
Environment resistance.
Definition House.h:64
double m_heatingEnvResistance
Heating resistance.
Definition House.h:70
This class simulates a "system" whose state is affected by its environment and any number of control ...
Definition System.h:34
The 'Ajax' namespace is the root name space all GM6000 application specific source code.