Está en la página 1de 9

UNIVERSIDAD PRIVADA DEL NORTE

FACULTAD DE INGENIERÍA

ACTIVIDAD 03
ANÁLISIS DINÁMICO DE SISTEMAS DE 1GDL

 CURSO: INGENIERÍA SISMO RESISTENTE

 DOCENTE:

 ING. OMAR EDUARDO OLIVOS LARA.

 ESTUDIANTES:

 CORTEZ HERNÁNDEZ MARLON N00070706


 GOMEZ ARROYO CRISTHIAN N00086632
 HURTADO VASQUEZ, ANGELLA N00094759
 PELÁEZ LÓPEZ ÓSCAR ANTONIO N00122459
 TAKAMURA INOMATA BRANDOM N00149025

CICLO: 2020-II
PROGRAMAR UN EJERCICIO PARA OBTENER LA RESPUESTA DE UNA VIBRACIÓN
LIBRE AMORTIGUADA, CON AMORTIGUAMIENTO DE Ζ=0.05;  0.20; 0.50 Y 1.0

clear;clc;clear all;
t=0:0.01:10; %periodo de tiempo
m=203; %masa del sistema
k= 400; %rigidez lateral (N/M)
W= (k/m) ^ (1/2); %frecuencia natural (rad/s)
condiciones iniciales (para t=0)
uo=0.02; %desplazamiento inicial (m)
vo=3; %velocidad inicial (m/s)

%respuesta del sistema 1GDL


%u=A*cos (wt) +B*sen (wt)
A=uo;
B=vo/w;
u=A*cos (w*t) +B*sin (w*t);

%ploteo de la respuesta del sistema 1GDL


plot (t,u);
xlabel ('tiempo (s) ')
ylabel ('Desplazamiento u (m) ');
title ('Vibración Libre de un Sistema de 1GDL");
grid on;
clear;clc;clear all;
t=0:0.01:10; %periodo de tiempo
m=30; %masa del sistema
k= 500; %rigidez lateral (N/M)
W= (k/m) ^ (1/2); %frecuencia natural (rad/s)
condiciones iniciales (para t=0)
uo=0.03; %desplazamiento inicial (m)
vo=4; %velocidad inicial (m/s)

%respuesta del sistema 1GDL


%u=A*cos (wt) +B*sen (wt)
A=uo;
B=vo/w;
u=A*cos (w*t) +B*sin (w*t);

%ploteo de la respuesta del sistema 1GDL


plot (t,u);
xlabel ('tiempo (s) ')
ylabel ('Desplazamiento u (m) ');
title ('Vibración Libre de un Sistema de 1GDL");
grid on;
clear;clc;clear all;
t=0:0.01:10; %periodo de tiempo
m=50; %masa del sistema
k= 400; %rigidez lateral (N/M)
W= (k/m) ^ (1/2); %frecuencia natural (rad/s)
condiciones iniciales (para t=0)
uo=0.04; %desplazamiento inicial (m)
vo=2; %velocidad inicial (m/s)

%respuesta del sistema 1GDL


%u=A*cos (wt) +B*sen (wt)
A=uo;
B=vo/w;
u=A*cos (w*t) +B*sin (w*t);

%ploteo de la respuesta del sistema 1GDL


plot (t,u);
xlabel ('tiempo (s) ')
ylabel ('Desplazamiento u (m) ');
title ('Vibración Libre de un Sistema de 1GDL");
grid on;
clear;clc;clear all;
t=0:0.01:10; %periodo de tiempo
m=100; %masa del sistema
k= 500; %rigidez lateral (N/M)
W= (k/m) ^ (1/2); %frecuencia natural (rad/s)
condiciones iniciales (para t=0)
uo=0.05; %desplazamiento inicial (m)
vo=5; %velocidad inicial (m/s)

%respuesta del sistema 1GDL


%u=A*cos (wt) +B*sen (wt)
A=uo;
B=vo/w;
u=A*cos (w*t) +B*sin (w*t);

%ploteo de la respuesta del sistema 1GDL


plot (t,u);
xlabel ('tiempo (s) ')
ylabel ('Desplazamiento u (m) ');
title ('Vibración Libre de un Sistema de 1GDL");
grid on;

También podría gustarte