spring_mass(F,m,k,w​,t,y)

Response of un-damped spring mass system at natural frequency
179 Downloads
Updated 22 Aug 2016

View License

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));

Cite As

N Narayan rao (2024). spring_mass(F,m,k,w,t,y) (https://www.mathworks.com/matlabcentral/fileexchange/58811-spring_mass-f-m-k-w-t-y), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2013a
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0