GM6000 Digital Heater Controller Branch: main
SDX-1330
House.h
1#ifndef Ajax_Heating_Simulated_House_h_
2#define Ajax_Heating_Simulated_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
14#include "colony_config.h"
15#include "Ajax/SimHouse/House.h"
17#include "Cpl/Dm/Mp/Bool.h"
18#include "Cpl/Dm/Mp/Double.h"
19
20
21///
22namespace Ajax
23{
24///
25namespace Heating
26{
27///
28namespace Simulated
29{
30
31
32/** This class glues the House Simulation into the Heater Application.
33 The specified IDT model point is updated with the output of simulation - when
34 the 'mpSimEnabled' MP is true. Requires an outdoor temperature model point
35 as an input
36 */
38{
39public:
40 /// Constructor
42 Cpl::Dm::Mp::Bool& mpSimEnabled,
43 Cpl::Dm::Mp::Double& mpOutdoorTemperature );
44
45protected:
46 /// Override my parent class to hook into the Algorithm periodic timing
47 void intervalExpired() noexcept;
48
49 /// Helper method
51
52
53protected:
54 /// The underlying house simulation
55 Ajax::SimHouse::House m_sim;
56
57 /// INPUT: Enable switch
58 Cpl::Dm::Mp::Bool& m_mpSimEnabled;
59
60 /// INPUT: Outdoor temperature
61 Cpl::Dm::Mp::Double& m_mpOutdoorTemperature;
62};
63
64}; // end namespace(s)
65};
66};
67
68#endif // end header latch
This class glues the House Simulation into the Heater Application.
Definition House.h:38
void executeSimulation()
Helper method.
Cpl::Dm::Mp::Double & m_mpOutdoorTemperature
INPUT: Outdoor temperature.
Definition House.h:61
House(Cpl::Dm::MailboxServer &myMbox, Cpl::Dm::Mp::Bool &mpSimEnabled, Cpl::Dm::Mp::Double &mpOutdoorTemperature)
Constructor.
Cpl::Dm::Mp::Bool & m_mpSimEnabled
INPUT: Enable switch.
Definition House.h:58
void intervalExpired() noexcept
Override my parent class to hook into the Algorithm periodic timing.
Ajax::SimHouse::House m_sim
The underlying house simulation.
Definition House.h:55
This class implements the Heating Algorithm Supervisor.
Definition Api.h:47
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a bool.
Definition Bool.h:40
This class provides a concrete implementation for a Point who's data is a double.
Definition Double.h:41
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20