GM6000 Digital Heater Controller Branch: main
SDX-1330
Config.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Flc_Config_h_
2#define Ajax_Heating_Flc_Config_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 <stdint.h>
16#include <string.h>
17
18
19/// Number of member sets supported
20#define AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS 5
21
22///
23namespace Ajax {
24///
25namespace Heating {
26///
27namespace Flc {
28
29
30
31/** Struct defines the geometry of the input membership function
32 */
34{
35 int32_t outputScalar; //!< Scaler value (applied to numerator) used when defuzzifying the output
36 int32_t maxY; //!< Maximum Y axis value
37 int32_t errScalar; //!< Scaler applied to the calculate error value (before fuzzifying)
38 int32_t dErrScalar; //!< Scaler applied to the calculate dError value (before fuzzifying). Recommend that is value is larger than errScalar
39 int32_t outK[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]; //!< Set Strengths for the output membership function
40
41
42 /// Constructor (to ensure any pad bytes get zero'd -->needed for brute force compare operation)
44 {
45 memset( (void*) this, 0, sizeof( Config_T ) );
46 }
47
48 /// Copy Constructor (to ensure any pad bytes get zero'd)
49 Config_T( const Config_T& other )
50 {
51 memcpy( (void*) this, (void*) &other, sizeof( Config_T ) );
52 }
53
54 /// Constructor - all arguments
55 Config_T( int32_t outputscalar,
56 int32_t maxy,
57 int32_t errscalar,
58 int32_t derrscalar,
60 {
61 memset( (void*) this, 0, sizeof( Config_T ) );
62 outputScalar = outputscalar;
63 maxY = maxy;
64 errScalar = errscalar;
65 dErrScalar = derrscalar;
66 memcpy( outK, outk, sizeof( outK ) );
67 }
68
69 /// Comparison operator (for DM support)
70 bool operator == ( Config_T const other ) const
71 {
72 return memcmp( this, &other, sizeof( Config_T ) ) == 0;
73 }
74
75 /// Copy operator
76 Config_T& operator =( const Config_T& other )
77 {
78 memcpy( (void*) this, (void*) &other, sizeof( Config_T ) );
79 return *this;
80 }
81};
82
83}; // end namespaces
84};
85};
86#endif // end header latch
87
#define AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS
Number of member sets supported.
Definition Config.h:20
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
Config_T()
Constructor (to ensure any pad bytes get zero'd -->needed for brute force compare operation)
Definition Config.h:43
int32_t maxY
Maximum Y axis value.
Definition Config.h:36
int32_t errScalar
Scaler applied to the calculate error value (before fuzzifying)
Definition Config.h:37
int32_t dErrScalar
Scaler applied to the calculate dError value (before fuzzifying).
Definition Config.h:38
int32_t outK[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS]
Set Strengths for the output membership function.
Definition Config.h:39
Config_T & operator=(const Config_T &other)
Copy operator.
Definition Config.h:76
Config_T(const Config_T &other)
Copy Constructor (to ensure any pad bytes get zero'd)
Definition Config.h:49
int32_t outputScalar
Scaler value (applied to numerator) used when defuzzifying the output.
Definition Config.h:35
bool operator==(Config_T const other) const
Comparison operator (for DM support)
Definition Config.h:70
Config_T(int32_t outputscalar, int32_t maxy, int32_t errscalar, int32_t derrscalar, int32_t outk[AJAX_HEATING_FLC_CONFIG_NUM_MEMBER_SETS])
Constructor - all arguments.
Definition Config.h:55