Mensaje de error

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls en book_prev() (línea 775 de /home1/montes/public_html/drupal/modules/book/book.module).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters en drupal_get_feeds() (línea 394 de /home1/montes/public_html/drupal/includes/common.inc).

Programa 5.18 pag 274 con Scilab

Solapas principales

Vamos a hacer la representacion grafica de la solucion del Ejemplo resuelto de la pagina 271 mediante Scilab:

 

Programa en Scilab:

num=poly([100 10 0],'s','coeff');

den=poly([100 10 1],'s','coeff');

t1=0:0.001:0.537;

t2=0.538:0.001:1.5;

x1=2.452*(t1^2);

x2=0.707*ones(t2);

y=syslin('c',num/den);

x=[x1 x2];

t=[t1 t2];

g=csim(x,t,y);

plot2d(t,-x,2);

plot2d(t,-g,5);

xgrid;

xtitle('Respuesta del sistema de resorte-masa-amortiguador colgado'
,'t(seg)','Entrada X negativa y salida Y negativa');

legends(['X','Y'],[2,5],opt=4);
Respuesta del sistema de resorte-masa-amortiguador colgado con Scilab

 

 

Español

Añadir nuevo comentario

Plain text

  • No se permiten etiquetas HTML.
  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • Saltos automáticos de líneas y de párrafos.
Pin It