Azzera filtri
Azzera filtri

ground motion velocity in matlab

2 visualizzazioni (ultimi 30 giorni)
arash
arash il 13 Dic 2013
Commentato: Image Analyst il 13 Dic 2013
I have ground acceleration and i want to calculate the velocity of the accelerogram, how can i do that in matlab?

Risposta accettata

Youssef  Khmou
Youssef Khmou il 13 Dic 2013
if you have the acceleration vector , you can integrate it to get the velocity, here is a simple example :
t=0:0.1:2; % time
a=2*t; % linear acceleration
v=integral(a,0.2); % velocity
plot(a), hold on, plot(v,'r')

Più risposte (0)

Categorie

Scopri di più su Physics in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by