spring_mass(F,m,k,w,t,y)
Version 1.0.0.0 (280 Bytes) von
N Narayan rao
Response of un-damped spring mass system at natural frequency
Mechanical resonance is the tendency of a mechanical system to respond at greater amplitude when the frequency of its oscillations matches the system's natural frequency of vibration .
clear all
clc
y0=[0;0];
tspan=[0 5];
k=2e3;
m=2;
F=1;
w=sqrt(k/m);
[T,Y]=ode45(@(t,y) spring_mass(F,m,k,w,t,y),tspan,y0);
plot(T,Y(:,1));
Zitieren als
N Narayan rao (2026). spring_mass(F,m,k,w,t,y) (https://de.mathworks.com/matlabcentral/fileexchange/58811-spring_mass-f-m-k-w-t-y), MATLAB Central File Exchange. Abgerufen.
Kompatibilität der MATLAB-Version
Erstellt mit
R2013a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS LinuxKategorien
Mehr zu Assembly finden Sie in Help Center und MATLAB Answers
Tags
Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
| Version | Veröffentlicht | Versionshinweise | |
|---|---|---|---|
| 1.0.0.0 |
