Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

1. Physical Setup A common actuator in control systems is the DC motor. It directly provides rotary motion and. coupled with wheels or drums and cables, can provide transitional motion The electric...

1 answer below »
1. Physical Setup
A common actuator in control systems is the DC motor. It directly provides rotary motion and. coupled with wheels or drums and cables, can provide transitional motion The electric circuit of the armature and the free body diagram of the rotor are shown in the following figure:
For this project, we will assume the following values for the physical parameters. • moment of inertia of the rotor (1) = 3.2284E-6 kgent21s"2 • damping ratio of the mechanic, l system (b)= 3.5077E-6 Nms • electromotive force constant (K=KeKt) = XXXXXXXXXXNm/Amp • electric resistance (R)= 4 ohm • electric inductance (L) = 2.75E-6 H • input (V): Source Voltage • output (theta): position of shaft • The rotor and shaft are assumed to be rigid
2. System Equations
The motor torque, T, is related to the armature current, i, by a constant factor K,. The back tint e. is related to the rotational velocity by the following equations:
I-
e —
State Space Model These equations can also be represented in state-space form. If we choose motor position. motor speed. and armature current as our state variables. we can write the equations as follows-d = 00 K0IJ XXXXXXXXXXV 1 tit t 0 -KIL -JUL i 1IL 8 .1.=11 0 0] 8
3. Design specifications
R
Controller
AB. Plant
We will want to be able to position the motor very precisely. thus the steady-state error of the motor position should be zero. We will also want the steady-state error due to a step disturbance input D. to be zero as well The other performance requirement is that the motor reaches its final position very quickly In this case we want it to have a settling time of 4Onts We also want to have an overshoot smaller than 16% Thus if we simulate the reference input (R) by a unit step input. then the motor position output should satisfy • Settling unit less than 0 04 second • Overshoot less than 16°0 • Zero steady-state atm to a step input • Zeto steady-state coot due to a step disturbance
4. Project objectives Design a controller using the state-space method to meet the above specifications Your project report should contain the detailed justification of the type 'structure of controller. all the design steps. plots. the results, conclusions. and references No hand-written reports will be accepted
Answered Same Day Dec 22, 2021

Solution

David answered on Dec 22 2021
126 Votes
Design of Control System for DC MOTOR
A common actuator in control systems is the DC motor. It directly provides rotary motion
and, coupled with wheels or drums and cables, can provide translational motion. The electric
equivalent circuit of the armature and the free-body diagram of the rotor are shown in the
following figure.
The following values for the physical parameters are given.
Moment of inertia of the rotor (J) = 3.2284E-6 kg.m^2
Damping ratio of the mechanical system (b) = 3.5077E-6 N.m.s
Electromotive force constant (K=Ke=Kt) = 0.0274 V
ad/sec
Electric resistance (R) = 4 Ohm
Electric inductance (L) = 2.75E-6H
The input of the system is the voltage source (V) applied to the motor's armature, while the
output is the position of the shaft (theta). The rotor and shaft are assumed to be rigid. The
torque generated by a DC motor is proportional to the armature cu
ent ‘i’ and a constant
factor Kt as shown in the equation below. This is refe
ed to as an armature-controlled motor.
T=Kti
The back emf, e, is proportional to the angular velocity of the shaft by a constant factor Ke
e = keθ
In SI units, the motor torque and back emf constants are equal, that is, Kt = Ke; therefore, we
will use K to represent both the motor torque constant and the back emf constant.
The following governing equations are derived based on Newton's 2nd law and Kirchhoff's
voltage law.
̈ ̇



̇
The differential equations are expressed in state-space form by choosing the motor position,
motor speed and armature cu
ent as the state variables by treating the armature voltage is
treated as the input and the rotational position is chosen as the output.

[

̇

]
[







]




[

̇

] [


]
[ ] [

̇

]
It is required to be able to position the motor very precisely, thus the steady-state e
or of the
motor position should be zero when given a commanded position. It is also required that the
steady-state e
or due to a constant distu
ance to be zero. The other performance
equirement is that the motor reaches its final position very quickly without excessive
overshoot.
If we simulate the reference input by a unit step input, then the motor position output should
satisfy
ï‚§ Settling time less than 0.04 seconds
ï‚§ Overshoot less than 16%
ï‚§ Zero steady-state e
or to a step input
ï‚§ Zero steady-state e
or to a step distu
ance input
The matlab code to create a State Space Model is shown below.
J = 3.2284E-6;
= 3.5077E-6;
K = 0.0274;
R = 4;
L = 2.75E-6;
A = [0 1 0
0 -
J K/J
0 -K/L -R/L];
B = [0 ; 0 ; 1/L];
C = [1 0 0];
D = 0;
motor_ss = ss(A,B,C,D);
Output:
motor_ss =
a =
x1 x2 x3
x1 0 1 0
x2 0 -1.087 8487
x3 0 -9964 -1.455e+06
b =
u1
x1 0
x2 0
x3 3.636e+05
c =
x1 x2 x3
y1 1 0 0
d =
u1
y1 0
Since...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here