GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
Ajax::Heating::Flc::Api Class Reference

This class implements the Fuzzy logic controller as defined by the SWA-1330 GM6000 Fuzzy Logic Temperature Control document. More...

Detailed Description

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>

Collaboration diagram for Ajax::Heating::Flc::Api:
[legend]

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::MpFlcConfigm_mpCfg
 Config Model Point.
 
Config_T m_cfg
 Runtime config.
 
bool m_firstCycle
 Flag for first-cycle.
 

Constructor & Destructor Documentation

◆ Api()

Ajax::Heating::Flc::Api::Api ( Ajax::Dm::MpFlcConfig mpCfg)

Constructor.

Member Function Documentation

◆ calcChange()

int32_t Ajax::Heating::Flc::Api::calcChange ( int32_t  currentTemp,
int32_t  setpoint 
)
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

◆ defuzz()

int32_t Ajax::Heating::Flc::Api::defuzz ( const int32_t  outVector[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS])
protectednoexcept

Helper method the defuzzifys the output vector.

◆ fuzzify()

void Ajax::Heating::Flc::Api::fuzzify ( int32_t  inValue,
int32_t  fuzzyOut[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS] 
)
protectednoexcept

Helper method to fuzzify an input value.

◆ runInference()

void Ajax::Heating::Flc::Api::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] 
)
protectednoexcept

Helper that executes the inference rules.

◆ start()

bool Ajax::Heating::Flc::Api::start ( )
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

◆ stop()

void Ajax::Heating::Flc::Api::stop ( )
noexcept

This method is used to stop the controller.

Once stopped, the controller can be restarted by calling start().

Member Data Documentation

◆ m_cfg

Config_T Ajax::Heating::Flc::Api::m_cfg
protected

Runtime config.

◆ m_firstCycle

bool Ajax::Heating::Flc::Api::m_firstCycle
protected

Flag for first-cycle.

◆ m_mpCfg

Ajax::Dm::MpFlcConfig& Ajax::Heating::Flc::Api::m_mpCfg
protected

Config Model Point.

◆ m_prevDeltaError

int32_t Ajax::Heating::Flc::Api::m_prevDeltaError
protected

Previous delta error.


The documentation for this class was generated from the following file: