DC Motor Speed Regulation-14th week

Source: Internet
Author: User

DC Motor Speed Regulation report

The original controller contains only proportional links. We add integral and differential links and are designed as PID controllers. The code is as follows:

algorithm    error:= command.signal[1]-  feedback.signal[1];    I_error:= i_error+ error;    D_error:= error- pre (error);    Pout:= Kp * error + Ki * i_error + Kd * D_ERROR;

The parameter values are adjusted in the order of proportional link, differential resolution and integral link. The final selection parameters are as follows:

    Parameter Real kp=6;    Parameter Real Ki=0.1;    Parameter Real Kd=+;

The results obtained (0-5S) are as follows:

  

Calculate the dynamic parameters of the response (0-1.1s results are easier to observe):

The calculated MP is about 22%, the response time is about 0.12s, and the response performance is better.

DC Motor Speed Regulation-14th week

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.