Labo 4 Respuesta en El Tiempo
Labo 4 Respuesta en El Tiempo
Labo 4 Respuesta en El Tiempo
LABORATORIO 4
ANLISIS EN EL DOMINIO DEL TIEMPO
4.1.
OBJETIVOS.-
4.2.
TRABAJO PREPARATORIO.4.2.1.
Vi ( S )
R1
(1 RCS ) R
RCS 1
LABORATORIO DE CONTROL I
V0 ( S )
1
Vi ( S )
0.001 S 1
1
1
S 0.001 S 1
v(t ) 1 e 1000t
1
1 K p
Ep 1
LABORATORIO DE CONTROL I
4.2.2.
dw
dt
dw
TJ
bw
dt
T J
T ( S ) JsW ( s ) bW ( s)
W (S )
1
T ( S ) 3S 7
W (S )
0.33
T ( S ) S 2.33
Respuesta en el Dominio del Tiempo
LABORATORIO DE CONTROL I
4
T ( S ) S S 2.33
4.2.3.
2s+2
s+1
Y (S )
2
X ( S ) (2s 2)(s 1) 2
Y (S ) 1
2
2
X (S ) 2 S 2S 2
n
2
2
2
S 2S 2 S 2 n n 2
2
LABORATORIO DE CONTROL I
De done tenemos la frecuencia de amortiguamiento y el
factor de amortiguamiento
2 2
n
n 1.4142
2 n 2
0 .7
El mximo sobrepico, el tiempo de subida y el tiempo de
asentamiento son:
MP e
1 2
M P 4,21 10 2
cos
0.78rad
ts
t est
4.3.
3.15s
n 1 2
3.13s
n
TRABAJO PRACTICO.-
4.3.1.
num=[-1];
den=[0.001 1];
opam1=tf(num,den)
step(opam1);
t=0:0.001:1;
Respuesta en el Dominio del Tiempo
LABORATORIO DE CONTROL I
lsim(opam1,rampa(t),t);
subplot(2,1,1)
step(opam1)
subplot(2,1,2)
lsim(opam1,rampa(t),t)
4.3.2.
LABORATORIO DE CONTROL I
num1=[-1];
den1=[0.01 1];
sys1=tf(num1,den1);
num2=[-2];
den2=[0.01 1];
sys2=tf(num2,den2);
num3=[-1];
den3=[0.02 2];
sys3=tf(num3,den3);
num4=[-2];
den4=[0.1 1];
sys4=tf(num4,den4);
step(sys1,sys2,sys3,sys4)
LABORATORIO DE CONTROL I
4.3.3.
LABORATORIO DE CONTROL I
Ingrese el coeficiente de A= 2
A=
2
Ingrese el coeficiente de B= 4
B=
4
Ingrese el coeficiente de C= 4
C=
4
Ingrese en forma matricial el numerador de su funcion de
transferencia= [2]
num =
2
Transfer function:
1
------------s^2 + 2 s + 2
Maximo sobrepico (en tanto por ciento)
ans =
4.3214
Tiempo de Retardo
ans =
1.0607
Tiempo de levantamiento crecimiento
ans =
2.3562
Tiempo Pico
ans =
3.1416
Tiempo de Establecimiento
ans =
3.1416
4.3.4.
LABORATORIO DE CONTROL I
a) Tiempo de retardo, td
b) Tiempo de levantamiento crecimiento, tr
c) Tiempo pico, tp
d) Sobrepaso mximo, Mp
e) Tiempo de asentamiento, ts
f) Error en estado estable.
num=[1];
den=[1 2 2];
sysmecanico=tf(num,den);
ltiview(sysmecanico)
4.3.5.
10
LABORATORIO DE CONTROL I
Ingrese el coeficiente de B=
B =
2
Ingrese el coeficiente de C=
C =
3
11
de
num =
1
Transfer function:
1
------------s^2 + 2 s + 3
Maximo sobrepico (en tanto por ciento)
ans =
10.8453
Tiempo de Retardo
ans =
0.8131
Tiempo de levantamiento crecimiento
ans =
1.5459
Tiempo Pico
ans =
2.2214
Tiempo de Establecimiento
ans =
3.1416
4.4.
4.4.1.
INFORME.-
LABORATORIO DE CONTROL I
12
LABORATORIO DE CONTROL I
13
4.4.2.
LABORATORIO DE CONTROL I
transferencia en lazo abierto de segundo orden se pueda obtener
los siguientes parmetros:
a) Tiempo de retardo, td
b) Tiempo de levantamiento crecimiento, tr
c) Tiempo pico, tp
d) Sobrepaso mximo, Mp
e) Tiempo de asentamiento, ts
f) Error en estado estable.
4.4.3.
num=[0 0 25];
den=[1 6 25];
t=0:0.005:5;
[y,x,t]=step(num,den,t);
r=1;while y(r)<1.0001;r=r+1;end;
tiempo_subida=(r-1).*0.005
[ymax,tp]=max(y);
tiempo_pico=(tp-1).*0.005
sobreelongacion_max=ymax-1
s=1001;while y(s)>0.98 & y(s)<1.02; s=s-1;end;
tiempo_asentamiento=(s-1).*0.005
tiempo_subida =
tiempo_pico =
0.5550
0.7850
sobreelongacion_max =
0.0948
14
LABORATORIO DE CONTROL I
tiempo_asentamiento =
4.4.4.
4.5.
1.1850
15
BIBLIOGRAFA.-
Manual de Matlab.