Está en la página 1de 20

 

CURSO: SISTEMAS DE CONTROL I


DOCENTE: ÁNGELES MENACHO, JAIME ÁNGEL
ALUMNO: QUINTE SALCEDO LUIS HERNÁN
CÓDIGO: 13190204
 

 
PROBLEMA 1
 

 
 

Esta función de transferencia no tiene la forma clásica de K. F(s) entonces


mediante operaciones algebraicas la transformamos a la forma clásica 
 

  PROBLEMA 2

>> conv([1 0],[1 1])


ans =
1 1 0
>> conv(ans,[1 5])
ans =
1 6 5 0

>> N=[1 4 4]
N=
1 4 4
>> D=[1 6 5 0]
D=
1 6 5 0
 

>> G=tf(N,D)
Transfer function 'G' from input 'u1' to output ...

s^2 + 4 s + 4

 y1: -----------------
s^3 + 6 s^2 + 5 s

Continuous-time model.
>> rlocus(G)
 

  SE CORROBARA LA PARTE TEÓRICA CON LA DEL SOFTWARE


OCTAVE MEDIANTE LA GRÁFICAS.


 

 
 

PROBLEMA 3
>> conv([1 0],[1 1])

ans =

1 1 0

>> conv(ans,[1 4 4])

ans =

1 5 8 4 0

>> N=1

N=1

>> D=[1 5 8 4 0]

D=

1 5 8 4 0

>> G=tf(N,D)

Transfer function 'G' from input 'u1' to output ...

y1: -------------------------

s^4 + 5 s^3 + 8 s^2 + 4 s

Continuous-time model.

>> rlocus(G)
 

 
 

 
  SE CORROBARA LA PARTE TEÓRICA CON LA DEL SOFTWARE

OCTAVE MEDIANTE LAS GRÁFICAS.

 
 

PROBLEMA 4

Esta función de transferencia no tiene la forma clásica de K. F(s) entonces


mediante operaciones algebraicas la transformamos a la forma clásica.
 

 
 

>> conv([1 0],[1 2])

ans =

1 2 0

>> N=[1 2 0]

N=

1 2 0

>> D=[1 2 1 1]

D=

1 2 1 1

>> G=tf(N,D)

Transfer function 'G' from input 'u1' to output ...

s^2 + 2 s

y1: -------------------
s^3 + 2 s^2 + s + 1

Continuous-time model.

>> rlocus(G)

   SE CORROBARA LA PARTE TEÓRICA CON LA DEL SOFTWARE


OCTAVE MEDIANTE LA GRÁFICAS.
 

 
 

 
 

 
 

También podría gustarte