1#ifndef Ajax_Heating_Flc_Api_h_
2#define Ajax_Heating_Flc_Api_h_
15#include "colony_config.h"
58 int32_t
calcChange( int32_t currentTemp, int32_t setpoint ) noexcept;
#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