Está en la página 1de 6

ESCUELA POLITÉCNICA NACIONAL

INGENIERÍA CIVIL
INGENIERÍA SÍSMICA
Enrique Tovar Mayo 22, 2018

TAREA 3
VIBRACIÓN FORZADA NO AMORTIGUADA (ARMÓNICA) Y RESONANCIA
Graficar la solución de un sistema forzado no amortiguado para:

β=0.05

% DATOS
% Con Beta=0.05
B=0.05;
m=43200; %kg
k=41.71e6; %N/m
Po=5000; %N
w=(k/m)^0.5; %Hz
s=B*w;
t=0:0.01:2;
uo=0; %m
vo=0; %m/s
% Solución Complementaria
uc=uo*cos(w*t)+(((vo/w)-(Po/k)*(B/(1-B^2)))*sin(w*t));
% Solución Particular
up=(Po/k)*(1/(1-B^2))*sin(s*t);
%solución Total
ut=uc+up;
subplot(2,1,1), plot(t, uc, 'm');
hold on
grid on
xlabel('Tiempo(s)'), ylabel('Desplazamiento (m)'), title ('Sol.
Complementaria y Particular ')
subplot(2,1,1), plot(t, up, 'c');
legend ( 'uc', 'up');
subplot(2,1,2), plot(t, ut, '-.');
legend ( 'ut');
xlabel('Tiempo(s)'), ylabel('Desplazamiento (m)'), title ('Sol. Total ')
grid on

Para los siguientes valores de beta se utiliza el mismo código.


β=0.5
β=0.8
% Con Beta=1 Resonancia
% DATOS
close all
%a) Beta=1
B=1;
m=43200; %kg
k=41.71e6; %N/m
Po=5000; %N
w=(k/m)^0.5; %Hz
s=B*w;
t=0:0.01:2;
uo=0; %m
vo=0; %m/s
% Solución Complementaria
uc=uo*cos(w*t)+(((vo/w)+(Po/2*k))*sin(w*t));
% Solución Particular
up=(-Po/2*k)*w*t.*cos(w*t);
%solución Total
ut=uc+up;
subplot(2,1,1), plot(t, uc, 'm');
hold on
grid on
xlabel('Tiempo(s)'), ylabel('Desplazamiento (m)'), title ('Sol.
Complementaria y Particular ')
subplot(2,1,1), plot(t, up, 'c');
legend ( 'uc', 'up');
subplot(2,1,2), plot(t, ut, '-.');
legend ( 'ut');
xlabel('Tiempo(s)'), ylabel('Desplazamiento (m)'), title ('Sol. Total ')
grid on
β=1

También podría gustarte