|
AMC Digiflex Drive: DQ-NAC

NOTE: DQ-NAC Series drives are supported in MPI version 03.03.xx. If you are using an MPI version 03.04.06 or later, use the DPQ Series drives.
Drive FPGA Table
| Node Type |
Option |
Valid FPGAs |
Name |
0x0001A001 |
0x00000000 |
0x00010011 |
|
0x0001A001 |
0x00000001 |
0x00010011 |
|
0x0001A001 |
0x00000002 |
0x00010011 |
|
0x0001A001 |
0x00000003 |
0x00010011 |
|
0x0001A001 |
0x00000004 |
0x00010011 |
|
0x0001A001 |
0x00000005 |
0x00010011 |
|
0x0001A001 |
0x00000006 |
0x00010011 |
|
Drive Monitor: Monitoring Real-time Data from Drive
Some data from the drive is not part of the standard MEI I/O. Although, it can be monitored in real-time from the drive. For more information on how to monitor real-time data from the drive, see Drive Monitor.
List of real-time monitor fields. This is a partial list of supported fields. Consult your drive manual for a complete list.
| |
- Bus Voltage
- Demand Torque
- Measured Torque
- Drive Temperature
- Analog Input 1
- Analog Input 2
|
Drive Monitor Table
|
/* amc_digiflex.h */
/*
* Drive Monitor Table
*/
typedef enum DIGIFLEXMonitorAddress { DIGIFLEXMonitorAddressNULL = 0x0000, DIGIFLEXMonitorAddressBUS_VOLTAGE = 0x1000, DIGIFLEXMonitorAddressDEMAND_TORQUE = 0x1202, DIGIFLEXMonitorAddressMEASURED_TORQUE = 0x1203, DIGIFLEXMonitorAddressDRIVE_TEMP = 0x1C00, DIGIFLEXMonitorAddressANALOG_INPUT1 = 0x1E00, DIGIFLEXMonitorAddressANALOG_INPUT2 = 0x1E01, DIGIFLEXMonitorAddressANALOG_INPUT3 = 0x1E02, DIGIFLEXMonitorAddressANALOG_INPUT4 = 0x1E03
} DIGIFLEXMonitorAddress; |
|