matlab中的dc motor的介绍,DC Motor Control

Problem Statement

In armature-controlled DC motors, the applied voltage Va controls the angular velocity w of the shaft.

7e7ad641a4eb567e8990a42dba712ea0.png

This example shows two DC motor control techniques for reducing the sensitivity of w to load variations (changes in the torque opposed by the motor load).

5df54c0b1007f5b9376c1d9be9ca8898.png

A simplified model of the DC motor is shown above. The torque Td models load disturbances. You must minimize the speed variations induced by such disturbances.

For this example, the physical constants are:

R = 2.0; % Ohms

L = 0.5; % Henrys

Km = 0.1; % torque constant

Kb = 0.1; % back emf constant

Kf = 0.2; % Nms

J = 0.02; % kg.m^2/s^2

First construct a state-space model of the DC motor with two inputs (Va,Td) and one output (w):

h1 = tf(Km,[L R]); % armature

h2 = tf(1,[J Kf]); % eqn of motion

dcm = ss(h2) * [h1 , 1]; % w = h2 * (h1*Va + Td)

dcm = feedback(dcm,Kb,1,1); % close back emf loop

Note: Compute with the state-space form to minimize the model order.

Now plot the angular velocity response to a step change in voltage Va:

stepplot(dcm(1));

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值