VFD-F Series

Step 6: Repeat step 2 to 5 for the next 8-bit byte of the command message. Continue doing this until all bytes have been processed. The final contents of the CRC register are the CRC value. When transmitting the CRC value in the message, the upper and lower bytes of the CRC value must be swapped, i.e. the lower order byte will be transmitted first.

For example, read 2 words from the to address 2102H of AMD with address 01H. The CRC register content of last byte from ADR to number of data is F76FH. The command message is as following. 6FH will transmit before F7H.

Command message:

ADR

01H

CMD

03H

Data starting

02H

address

02H

Number of data

00H

(word)

02H

CRC CHK Low

6FH

CRC CHK High

F7H

The following is an example of CRC generation using C language. The function takes two arguments:

Unsigned char* data Å a pointer to the message buffer

Unsigned char length Å the quantity of bytes in the message buffer

The function returns the CRC values as a type of unsigned integer. unsigned int crc_chk(unsigned char* data, unsigned char length){

int j;

unsigned int reg_crc=0xFFFF; while(length--){

reg_crc ^= *data++; for(j=0;j<8;j++){

if(reg_crc & 0x01){ /* LSB(b0)=1 */ reg_crc=(reg_crc>>1) ^ 0xA001;

}else{ reg_crc=reg_crc >>1;

}

}

}

return reg_crc;

}

5

DELTA ELECTRONICS, INC. ALL RIGHTS RESERVED

5-55

Page 88
Image 88
Delta Electronics VFD-F Series manual 6FH, F7H

VFD-F Series specifications

Delta Electronics has established itself as a leader in the production of Variable Frequency Drives (VFDs), and the VFD-F Series exemplifies their commitment to innovation and efficiency in motor control solutions. Designed for a wide range of applications, the VFD-F Series ensures seamless operation in various industrial settings, from pumps and fans to conveyor systems and HVAC equipment.

One of the primary features of the VFD-F Series is its compact design, which allows for easy integration into existing systems without consuming excessive space. This makes it an ideal choice for projects where space is limited. The series also boasts a high IP20 protection rating, ensuring that the drives are safeguarded against dust and accidental contact, contributing to their reliability and longevity.

The VFD-F Series utilizes advanced control technologies, including vector control and scalar control. Vector control provides precise torque and speed control, allowing for optimal performance under varying load conditions. This is particularly advantageous in applications requiring high accuracy, such as robotics and machine tools. The scalar control mode, on the other hand, is simpler and suitable for applications where precise control is not as critical.

Energy efficiency is a hallmark of the VFD-F Series. By allowing users to control motor speed and torque based on the actual demand, these drives can significantly reduce energy consumption compared to traditional fixed-speed motors. Coupled with Delta's energy-saving algorithms, the VFD-F Series not only promotes sustainable operation but also helps lower operational costs.

Another key characteristic of the VFD-F Series is its user-friendly interface. The intuitive control panel and programmable features enable quick setup and adjustments. Furthermore, the series supports multiple communication protocols, including Modbus, CANopen, and EtherCAT, which facilitate integration into various automation systems.

Safety features are paramount in the design of the VFD-F Series. It includes built-in protections against over-voltage, over-current, and overheating, ensuring safe operation in demanding environments. Additionally, its compliance with international safety standards underlines its reliability and robustness.

In summary, Delta Electronics' VFD-F Series stands out with its compact design, advanced control technologies, energy efficiency, user-friendly interface, and integral safety features. These characteristics make it a formidable solution for industries seeking high-performance motor control while maximizing efficiency and safety. As the demand for integrated and intelligent automation solutions grows, the VFD-F Series is well-positioned to meet these challenges head-on, reinforcing Delta Electronics’ reputation as a pioneer in the field.