📄 park.h
字号:
/* =================================================================================
File name: PARK.H (IQ version)
Originator: Digital Control Systems Group
Texas Instruments
Description:
Header file containing constants, data type definitions, and
function prototypes for the PARK.
=====================================================================================
History:
-------------------------------------------------------------------------------------
05-15-2002 Release Rev 1.0
------------------------------------------------------------------------------*/
typedef struct { _iq ds; /* Input: stationary d-axis stator variable */
_iq qs; /* Input: stationary q-axis stator variable */
_iq ang; /* Input: rotating angle (pu) */
_iq de; /* Output: rotating d-axis stator variable */
_iq qe; /* Output: rotating q-axis stator variable */
void (*calc)(); /* Pointer to calculation function */
} PARK;
typedef PARK *PARK_handle;
/*-----------------------------------------------------------------------------
Default initalizer for the PARK object.
-----------------------------------------------------------------------------*/
#define PARK_DEFAULTS { 0, \
0, \
0, \
0, \
0, \
(void (*)(long))park_calc }
/*------------------------------------------------------------------------------
Prototypes for the functions in PARK.C
------------------------------------------------------------------------------*/
void park_calc(PARK_handle);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -