3.11.3 tmcTypes_AlphaBeta_s Struct
C
/* Structure representing Alpha-Beta stationary frame quantities: Floating point version
typedef struct
{
float32_t alpha; /* Alpha axis quantity */
float32_t beta; /* Beta axis quantity */
}tmcTypes_AlphaBeta_s;
/* Structure representing Alpha-Beta stationary frame quantities: Fixed point version */
typedef struct
{
int16_t alpha; /* Alpha axis quantity */
int16_t beta; /* Beta axis quantity */
} tmcTypes_AlphaBeta_s;
Summary
Structure representing Alpha-Beta stationary frame quantities.
Description
This structure is used to hold the Alpha-Beta stationary frame quantities, such as current and voltage.
Remarks
Refer the generated header file for the exact typedef signature.
