![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class implements the Fuzzy logic controller as defined by the SWA-1330 GM6000 Fuzzy Logic Temperature Control document. More...
This class implements the Fuzzy logic controller as defined by the SWA-1330 GM6000 Fuzzy Logic Temperature Control document.
The interface should be called on periodic basis.
The interface receives its 'configuration' via model points
Inputs are (all values must have the same degree units): Current Temperature Current Setpoint
Outputs: Value to change/adjust the current capacity 'output signal'
#include <Api.h>
Public Member Functions | |
Api (Ajax::Dm::MpFlcConfig &mpCfg) | |
Constructor. | |
bool | start () noexcept |
This method is used to initialize/reset the Controller. | |
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. | |
Protected Member Functions | |
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. | |
int32_t | defuzz (const int32_t outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]) noexcept |
Helper method the defuzzifys the output vector. | |
Protected Attributes | |
int32_t | m_prevDeltaError |
Previous delta error. | |
Ajax::Dm::MpFlcConfig & | m_mpCfg |
Config Model Point. | |
Config_T | m_cfg |
Runtime config. | |
bool | m_firstCycle |
Flag for first-cycle. | |
Ajax::Heating::Flc::Api::Api | ( | Ajax::Dm::MpFlcConfig & | mpCfg | ) |
Constructor.
|
noexcept |
This method should be called on a fixed periodic basis to calculate the fuzzy output.
The output is change (to increase/decrease) the current request output capacity
|
protectednoexcept |
Helper method the defuzzifys the output vector.
|
protectednoexcept |
Helper method to fuzzify an input value.
|
protectednoexcept |
Helper that executes the inference rules.
|
noexcept |
This method is used to initialize/reset the Controller.
It should be called once, before calls to calcChange().
Return true if successful; else false is returned
|
noexcept |
This method is used to stop the controller.
Once stopped, the controller can be restarted by calling start().
|
protected |
Runtime config.
|
protected |
Flag for first-cycle.
|
protected |
Config Model Point.
|
protected |
Previous delta error.