GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Flc_Api_h_
2#define Ajax_Heating_Flc_Api_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
15#include "colony_config.h"
16#include "Ajax/Dm/MpFlcConfig.h"
17
18///
19namespace Ajax {
20///
21namespace Heating {
22///
23namespace Flc {
24
25/** This class implements the Fuzzy logic controller as defined by the
26 SWA-1330 GM6000 Fuzzy Logic Temperature Control document.
27
28 The interface should be called on periodic basis.
29
30 The interface receives its 'configuration' via model points
31
32 Inputs are (all values must have the same degree units):
33 Current Temperature
34 Current Setpoint
35
36 Outputs:
37 Value to change/adjust the current capacity 'output signal'
38
39 */
40class Api
41{
42public:
43 /// Constructor
45
46public:
47 /** This method is used to initialize/reset the Controller. It should
48 be called once, before calls to calcChange().
49
50 Return true if successful; else false is returned
51 */
52 bool start() noexcept;
53
54 /** This method should be called on a fixed periodic basis to calculate
55 the fuzzy output. The output is change (to increase/decrease) the
56 current request output capacity
57 */
58 int32_t calcChange( int32_t currentTemp, int32_t setpoint ) noexcept;
59
60 /** This method is used to stop the controller. Once stopped, the
61 controller can be restarted by calling start().
62 */
63 void stop() noexcept;
64
65protected:
66 /// Helper method to fuzzify an input value
67 void fuzzify( int32_t inValue, int32_t fuzzyOut[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS] ) noexcept;
68
69 /// Helper that executes the inference rules
71 const int32_t m2Vector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS],
72 int32_t outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS] ) noexcept;
73
74 /// Helper method the defuzzifys the output vector
75 int32_t defuzz( const int32_t outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS] ) noexcept;
76
77protected:
78 /// Previous delta error
80
81 /// Config Model Point
82 Ajax::Dm::MpFlcConfig& m_mpCfg;
83
84 /// Runtime config
86
87 /// Flag for first-cycle
89};
90
91
92}; // end namespaces
93};
94};
95#endif // end header latch
96
#define AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS
Number of member sets supported.
Definition Config.h:20
This class provides a concrete implementation for a Point who's data a Ajax::Heating::Flc::Config_t d...
Definition MpFlcConfig.h:42
This class implements the Fuzzy logic controller as defined by the SWA-1330 GM6000 Fuzzy Logic Temper...
Definition Api.h:41
void fuzzify(int32_t inValue, int32_t fuzzyOut[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]) noexcept
Helper method to fuzzify an input value.
void runInference(const int32_t m1Vector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS], const int32_t m2Vector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS], int32_t outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]) noexcept
Helper that executes the inference rules.
bool m_firstCycle
Flag for first-cycle.
Definition Api.h:88
int32_t calcChange(int32_t currentTemp, int32_t setpoint) noexcept
This method should be called on a fixed periodic basis to calculate the fuzzy output.
void stop() noexcept
This method is used to stop the controller.
Ajax::Dm::MpFlcConfig & m_mpCfg
Config Model Point.
Definition Api.h:82
int32_t m_prevDeltaError
Previous delta error.
Definition Api.h:79
Api(Ajax::Dm::MpFlcConfig &mpCfg)
Constructor.
bool start() noexcept
This method is used to initialize/reset the Controller.
int32_t defuzz(const int32_t outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]) noexcept
Helper method the defuzzifys the output vector.
Config_T m_cfg
Runtime config.
Definition Api.h:85
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
Struct defines the geometry of the input membership function.
Definition Config.h:34