27 lines
2.5 KiB
Plaintext
27 lines
2.5 KiB
Plaintext
(* @PATH := '\/Danfoss FC' *)
|
||
TYPE FC_Status_Word :
|
||
STRUCT
|
||
B00_ControlReady : BOOL ; (* Bit 00 =0 The frequency converter as tripped *)
|
||
B01_DriveReady : BOOL ; (* Bit 01 =1 The frequency converter is ready for operation, but there is an active coasting command via the digital inputs or via serial communication *)
|
||
B02_Coasting : BOOL ; (* Bit 02 =1 The frequency converter can start the motor when a start command is given *)
|
||
B03_Trip : BOOL ; (* Bit 03 =1 The frequency converter is tripped and that a reset signal is required to re-establish operation *)
|
||
B04_Error : BOOL ; (* Bit 04 = 1 there is a frequency converter error but no trip *)
|
||
B05_Reserved : BOOL ; (* *)
|
||
B06_Triplock : BOOL ; (* Bit 06 = 1 The frequency converter is tripped, and locked *)
|
||
B07_Warning : BOOL ; (* Bit 07 = 1 a warning has occurred *)
|
||
B08_Speed_OK : BOOL ; (* Bit 08 = 0 The motor is running, but that the present speed is different from the preset speed reference.
|
||
It might, for example, be the case while the speed is being ramped up/down during start/stop *)
|
||
B09_BusControl : BOOL ; (* Bit 09 = 1 means that it is possible to control the frequency converter via the fieldbus/ serial communication *)
|
||
B10_FrequencyLimit_OK : BOOL ; (* Bit 10 = 0 if the output frequency has reached the value in par. 4-11 Motor speed low limit or par.4-13 Motor speed high limit
|
||
Bit 10 = 1 means that the output frequency is within the defined limits *)
|
||
B11_InOperation : BOOL ; (* Bit 11 = 1 The frequency converter has a start signal or that the output frequency is greater than 0 Hz *)
|
||
B12_Drive_OK : BOOL ; (* Bit 12 = 1 The inverter has stopped because of over temperature, but that the unit has not tripped and will resume operation once the over temperature stops *)
|
||
B13_Voltage_OK : BOOL ; (* Bit 13 = 1 The DC voltage in the frequency converter’s intermediate circuit is too low or too high *)
|
||
B14_Torque_OK : BOOL ; (* Bit 14 = 0 The motor current is lower than the torque limit selected in par. 4-16 Torque limit motor mode or par. 4-17 Torque limit generator mode.
|
||
Bit 14 = 1 The torque limit in par. 4-16 and 4-17 has been exceeded *)
|
||
B15_Timer_OK : BOOL ; (* Bit 15 = 0 The timers for motor thermal protection and VLT thermal protection, respectively, have not exceeded 100%.
|
||
Bit 15 = 1 One of the timers has exceeded 100% *)
|
||
END_STRUCT
|
||
END_TYPE
|
||
(* @END_DECLARATION := '0' *)
|