 |
AM261x Motor Control SDK
10.02.00
|
|
Go to the documentation of this file.
52 #include "../dcl_common.h"
59 typedef struct dcl_df13_sps {
70 #define DF13_SPS_DEFAULTS { 0.25f, 0.25f, 0.25f, 0.25f, 0.0f, 0.0f, 0.0f, 0.0f }
104 #define DF13_DEFAULTS { 0.25f, 0.25f, 0.25f, 0.25f, 0.0f, 0.0f, 0.0f, \
105 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, \
106 &(DCL_DF13_SPS)DF13_SPS_DEFAULTS, &(DCL_CSS)DCL_CSS_DEFAULTS }
116 #define DF13_INT_DEFAULTS .d1=0.0f, .d2=0.0f, .d3=0.0f, .d4=0.0f, .d5=0.0f, \
117 .d6=0.0f, .a0=0.0f, .d0=0.0f, .d7=0.0f, \
118 .sps=&(DCL_DF13_SPS)DF13_SPS_DEFAULTS, .css=&(DCL_CSS)DCL_CSS_DEFAULTS
125 #define DCL_initDF13() &(DCL_DF13)DF13_DEFAULTS
133 #define DCL_initDF13asParam(_b0,_b1,_b2,_b3,_a1,_a2,_a3) &(DCL_DF13){ .b0=_b0, .b1=_b1, \
134 .b2=_b2, .b3=_b3, .a1=_a1, .a2=_a2, .a3=_a3, DF13_INT_DEFAULTS }
146 #define DCL_initDF13asSPS(df_ptr,sps_ptr) \
148 DCL_DF13* new_df = (df_ptr) ? df_ptr : DCL_initDF13(); \
149 DCL_DF13_SPS* new_sps = (sps_ptr) ? sps_ptr : &(DCL_DF13_SPS)DF13_SPS_DEFAULTS; \
152 *new_df =(DCL_DF13){ (new_sps)->b0, (new_sps)->b1, (new_sps)->b2, (new_sps)->b3, \
153 (new_sps)->a1, (new_sps)->a2, (new_sps)->a3, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, \
154 0.0f, 0.0f, 0.0f, (DCL_DF13_SPS*)new_sps, &(DCL_CSS)DCL_CSS_DEFAULTS }; \
170 df->d1 = df->d2 = df->d3 = df->d4 = df->d5 = df->d6 = 0.0f;
181 df->b0 = df->sps->b0;
182 df->b1 = df->sps->b1;
183 df->b2 = df->sps->b2;
184 df->b3 = df->sps->b3;
185 df->a1 = df->sps->a1;
186 df->a2 = df->sps->a2;
187 df->a3 = df->sps->a3;
245 #ifdef DCL_ERROR_HANDLING_ENABLED
267 float32_t a0p = 8.0f + (alpha2 * 4.0f * T) + (alpha1 * 2.0f * T * T) + (alpha0 * T * T * T);
269 df->sps->b0 = zpk->
K * (8.0f + (beta2 * 4.0f * T) + (beta1 * 2.0f * T * T) + (beta0 * T * T * T)) / a0p;
270 df->sps->b1 = zpk->
K * (-24.0f - (beta2 * 4.0f * T) + (beta1 * 2.0f * T * T) + (3.0f * beta0 * T * T * T)) / a0p;
271 df->sps->b2 = zpk->
K * (24.0f - (beta2 * 4.0f * T) - (beta1 * 2.0f * T * T) + (3.0f * beta0 * T * T * T)) / a0p;
272 df->sps->b3 = zpk->
K * (-8.0f + (beta2 * 4.0f * T) - (beta1 * 2.0f * T * T) + (beta0 * T * T * T)) / a0p;
274 df->sps->a1 = (-24.0f - (alpha2 * 4.0f * T) + (alpha1 * 2.0f * T * T) + (3.0f * alpha0 * T * T * T)) / a0p;
275 df->sps->a2 = (24.0f - (alpha2 * 4.0f * T) - (alpha1 * 2.0f * T * T) + (3.0f * alpha0 * T * T * T)) / a0p;
276 df->sps->a3 = (-8.0f + (alpha2 * 4.0f * T) - (alpha1 * 2.0f * T * T) + (alpha0 * T * T * T)) / a0p;
288 float32_t v4 = (ek * df->b0) + (df->d1 * df->b1) + (df->d2 * df->b2) + (df->d3 * df->b3) - (df->d4 * df->a1) - (df->d5 * df->a2) - (df->d6 * df->a3);
309 float32_t v4 = (ek * df->b0) + (df->d1 * df->b1) + (df->d2 * df->b2) + (df->d3 * df->b3) - (df->d4 * df->a1) - (df->d5 * df->a2) - (df->d6 * df->a3);
379 p->d4 = (ek * p->b0) + vk;
397 v9 = (ek * p->b1) + (p->d1 * p->b2) + (p->d2 * p->b3) - (uk * p->a1) - (p->d5 * p->a2) - (p->d6 * p->a3);
412 #endif // _DCL_DF13_H_
_DCL_CODE_ACCESS bool DCL_isStablePn3(float32_t a0, float32_t a1, float32_t a2, float32_t a3)
Determines stability of a third order polynomial with real coefficients P(z) = a0 z^3 + a1 z^2 + a2 z...
Definition: dcl_stability.h:91
float32_t b2
pos. coefficient to e(k-2)
Definition: dcl_df13.h:62
float32_t K
Real gain.
Definition: dcl_zpk3.h:67
_DCL_CODE_ACCESS void DCL_loadDF13asZPK(DCL_DF13 *df, DCL_ZPK3 *zpk)
Loads the DF13 shadow coefficients from a ZPK3 description.
Definition: dcl_df13.h:243
float complex z2
Complex zeros 2.
Definition: dcl_zpk3.h:62
_DCL_CODE_ACCESS bool DCL_isStableDF13(DCL_DF13 *df)
Determines stability of the shadow compensator.
Definition: dcl_df13.h:230
float32_t b3
pos. coefficient to e(k-3)
Definition: dcl_df13.h:80
float32_t b3
pos. coefficient to e(k-3)
Definition: dcl_df13.h:63
float32_t a0
No Longer Needed.
Definition: dcl_df13.h:67
_DCL_CRIT_ACCESS void DCL_runDF13PartialUpdate(DCL_DF13 *df, float32_t ek, float32_t uk)
Update DF13 controller based on pre-computed control effort.
Definition: dcl_df13.h:320
float complex p2
Complex poles 2.
Definition: dcl_zpk3.h:65
_DCL_CODE_ACCESS bool DCL_updateDF13(DCL_DF13 *df)
A conditional update based on the update flag. If the update status is set, the function will update ...
Definition: dcl_df13.h:213
float32_t a0
No longer needed.
Definition: dcl_df13.h:93
_DCL_CODE_ACCESS void DCL_updateDF13NoCheck(DCL_DF13 *df)
Loads DF13 tuning parameter from its SPS parameter with interrupt protection.
Definition: dcl_df13.h:195
@ dcl_none
No error.
Definition: dcl_error.h:57
float32_t d2
e(k-2)
Definition: dcl_df13.h:87
_DCL_CODE_ACCESS void DCL_resetDF13(DCL_DF13 *df)
Resets DF13 internal storage data with interrupt protection Implemented as inline C function.
Definition: dcl_df13.h:165
DCL_DF13_SPS * sps
updates compensator parameter
Definition: dcl_df13.h:98
float32_t a2
neg. coefficient to u(k-2)
Definition: dcl_df13.h:65
float32_t a2
neg. coefficient to u(k-2)
Definition: dcl_df13.h:82
_DCL_CRIT_ACCESS float32_t DCL_runDF13_C5(DCL_DF13 *p, float32_t ek, float32_t vk)
Legacy C28 Function for maintaining backwards compatibility. It Executes an immediate 3rd order Direc...
Definition: dcl_df13.h:377
#define DCL_runErrorHandler(ptr)
Prototype for basic error handler.
Definition: dcl_error.h:108
_DCL_CRIT_ACCESS float32_t DCL_runDF13Clamp(DCL_DF13 *df, float32_t ek, float32_t Umax, float32_t Umin)
Executes a 3rd order Direct Form 1 controller with clamp.
Definition: dcl_df13.h:360
#define DCL_getUpdateStatus(p)
Determine whether a parameter update-in-progress flag is set.
Definition: dcl_css.h:121
#define DCL_clearUpdateStatus(p)
Definition: dcl_css.h:115
float32_t b0
pos. coefficient to e(k)
Definition: dcl_df13.h:60
float32_t d1
e(k-1)
Definition: dcl_df13.h:86
float32_t d7
No longer needed.
Definition: dcl_df13.h:95
float32_t a3
neg. coefficient to u(k-3)
Definition: dcl_df13.h:83
_DCL_CRIT_ACCESS float32_t DCL_runDF13PartialCompute(DCL_DF13 *df, float32_t ek)
Immediate computation to obtain DF13 servo error without updating the controller.
Definition: dcl_df13.h:307
#define _DCL_CODE_ACCESS
Defines the scope of dcl functions.
Definition: dcl_common.h:63
float32_t d0
No longer needed.
Definition: dcl_df13.h:94
float complex p1
Complex poles 1.
Definition: dcl_zpk3.h:64
DCL_CSS * css
configuration & debugging
Definition: dcl_df13.h:99
float32_t b1
pos. coefficient to e(k-1)
Definition: dcl_df13.h:78
float32_t a1
neg. coefficient to u(k-1)
Definition: dcl_df13.h:64
DCL_DF13 object for storing df13 specific parameters.
Definition: dcl_df13.h:75
_DCL_CODE_ACCESS void DCL_forceUpdateDF13(DCL_DF13 *df)
Loads DF13 tuning parameter from its SPS parameter without interrupt protection.
Definition: dcl_df13.h:179
uint32_t dcl_interrupt_t
Definition: dcl_common.h:109
float complex z3
Complex zeros 3.
Definition: dcl_zpk3.h:63
#define DCL_isZero(x)
Determines floating point numerical proximity to zero.
Definition: dcl_macro.h:75
Defines the DCL_DF13 shadow parameter set used for updating compensator parameter.
Definition: dcl_df13.h:59
float32_t d4
u(k-1)
Definition: dcl_df13.h:89
_DCL_VOLATILE struct dcl_df13 DCL_DF13
float32_t a1
neg. coefficient to u(k-1)
Definition: dcl_df13.h:81
Defines the controller common support structure.
Definition: dcl_css.h:56
float32_t d6
u(k-3)
Definition: dcl_df13.h:91
#define DCL_restoreInts(v)
Definition: dcl_common.h:108
float complex p3
Complex poles 3.
Definition: dcl_zpk3.h:66
@ dcl_param_invalid_err
Parameter not valid.
Definition: dcl_error.h:59
_DCL_CODE_ACCESS bool DCL_runClamp(float32_t *data, float32_t Umax, float32_t Umin)
Saturates a control variable and returns true if either limit is exceeded.
Definition: dcl_clamp.h:57
Defines the DCL_ZPK3 structure.
Definition: dcl_zpk3.h:60
#define _DCL_VOLATILE
Defines volatile for DCL strctures Flags can be defined in dcl.h or user files before including DCL l...
Definition: dcl_common.h:75
float32_t b2
pos. coefficient to e(k-2)
Definition: dcl_df13.h:79
#define DCL_getErrorInfo(ptr)
Macro to store error info in CSS.
Definition: dcl_error.h:98
_DCL_CRIT_ACCESS float32_t DCL_runDF13_C6(DCL_DF13 *p, float32_t ek, float32_t uk)
Legacy C28 Function for maintaining backwards compatibility. It executes a partial pre-computed 3rd o...
Definition: dcl_df13.h:393
_DCL_CRIT_ACCESS float32_t DCL_runDF13(DCL_DF13 *df, float32_t ek)
Executes a 3rd order Direct Form 1 controller.
Definition: dcl_df13.h:286
#define DCL_setError(ptr, code)
Macro to set error code in CSS.
Definition: dcl_error.h:80
#define _DCL_CRIT_ACCESS
Defines the scope of critical dcl functions.
Definition: dcl_common.h:67
float32_t d5
u(k-2)
Definition: dcl_df13.h:90
float32_t d3
e(k-3)
Definition: dcl_df13.h:88
float float32_t
Definition: dcl_common.h:58
float32_t b1
pos. coefficient to e(k-1)
Definition: dcl_df13.h:61
float32_t a3
neg. coefficient to u(k-3)
Definition: dcl_df13.h:66
float complex z1
Complex zeros 1.
Definition: dcl_zpk3.h:61
#define DCL_disableInts()
Define enable and disable interrupt operations.
Definition: dcl_common.h:107
float32_t b0
pos. coefficient to e(k)
Definition: dcl_df13.h:77