Question

1.2096 Trial and error: by printing out (using any software) the damped free vibration solution under different damping coefficients, please choose the damping coefficient of a spring-mass- damper system with mass of 150 kg and stiffness of 20o0 N/m such that its response will die out after about 2 s, given a zero initial position and an initial velocity of 10 mm/s.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Let the damping coefficient be c.

Then the equation of motion is:

m\ddot{x} + c*\dot{x} + kx = 0

Applying lapalce transform:

m(s^2*X(s)-sx(0)-\dot{x}(0)) + c*(s*X(s)-x(0)) + k*X(s) = 0

x(0) = 0

=>ms^2*X(s)+ c*s*X(s) + k*X(s) = m*\dot{x}(0))

=>X(s) = \frac{m\dot{x}(0)) }{ms^2+ cs + k} = \frac{1.5 }{150s^2+ cs + 2000}

The matlab code to plot the response for first 3 seconds for various values of damping coefficient is given below:

% Start of the code
close all
t = 0:0.01:3; % Time vector
syms s;
i = 1; % Iteration counter
for c=0:100:1000 %Define various values of damping coefficient
F = 1.5/(150*s^2+c*s+2000); % Laplace fucntion of x
x_il = ilaplace(F); %Inverse laplace of transfer fucntion
x = eval(x_il); % calculate values of x at various time values
plot(t,x); % Plot x as a function of t
hold on
l{i} = strcat('c=',num2str(c),'Ns/m');
i = i+1;
end
legend(l)
xlabel('Time (s)')
ylabel('x(t)')
grid on
% End of code

It can be seen that for a damping coefficient of 800 Ns/m, the response dies out after about 2s.

Add a comment
Know the answer?
Add Answer to:
1.2096 Trial and error: by printing out (using any software) the damped free vibration solution under...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Answer last four questions 1. A spring-mass-damper system has mass of 150 kg, stiffness of 1500...

    Answer last four questions 1. A spring-mass-damper system has mass of 150 kg, stiffness of 1500 N/m and damping coefficient of 200 kg/s. i) Calculate the undamped natural frequency ii) Calculate the damping ratio iii) Calculate the damped natural frequency iv) Is the system overdamped, underdamped or critically damped? v) Does the solution oscillate? The system above is given an initial velocity of 10 mm/s and an initial displacement of -5 mm. vi) Calculate the form of the response and...

  • 2 with spring stiffness k 1000 N/m, Consider a mass-spring-damper system shown in Figure mass m...

    2 with spring stiffness k 1000 N/m, Consider a mass-spring-damper system shown in Figure mass m = 10 kg, and damping constant c-150 N-s/m. If the initial displacement is xo-o and the initial velocity is 10 m/s (1) Find the damping ratio. (2) Is the system underdamped or overdamped? Why? (3) Calculate the damped natural frequency (4) Determine the free vibration response of the system.

  • PROBLEM 2 Write a Matlab code* (script) or use Excel to determine the damping coefficient of...

    PROBLEM 2 Write a Matlab code* (script) or use Excel to determine the damping coefficient of a spring - mass - damper system with a mass of 165 kg and stiffness of 2400 N/m such that its response will die out (decay) after about 1.5 s, given a zero initial position and an initial velocity of 8 mm/s. 1. Display the numerical value of the damping coefficient. 2. Plot the response of the system. *Turn in your Matlab code with...

  • Single Degree of Freedom -Free Damped Vibration of Machines and Vibrations problem shows a lever ...

    Single Degree of Freedom -Free Damped Vibration of Machines and Vibrations problem shows a lever with spring, mass and damper system. The lever has a moment p9 shows a lever with Agure so kgm2 pivoted at point O with a pulley of mass 4 kg with a radius r-0.5 m Vibration and and load mp4 kg. The load stioping between the puiley and cable supporting the load m. The stiffiess coefficient sippie spring isk=2x105 N/m. Calculate the following when the...

  • Solve it with matlab 25.16 The motion of a damped spring-mass system (Fig. P25.16) is described...

    Solve it with matlab 25.16 The motion of a damped spring-mass system (Fig. P25.16) is described by the following ordinary differential equation: d’x dx ++ kx = 0 m dr dt where x = displacement from equilibrium position (m), t = time (s), m 20-kg mass, and c = the damping coefficient (N · s/m). The damping coefficient c takes on three values of 5 (under- damped), 40 (critically damped), and 200 (overdamped). The spring constant k = 20 N/m....

  • Using a mathematical software (MATLAB, MAPLE, and etc) plot the free and forced vibration response of...

    Using a mathematical software (MATLAB, MAPLE, and etc) plot the free and forced vibration response of a viscously damped system (x(t), dx(t)/dt, d2x(t)/dt2) with m=4kg, k=2500 N/m, x0=100 mm, v0=-10 m/s, Δt=[0,0.01], [0,1], and [0,10] for the following values. Also determine the nature of the system (un-damped, under damped, critically damped, and over damped). (5 marks) a. c=0, F=100 sinωt (ω=20,25,30)

  • A second order mechanical system of a mass connected to a spring and a damper is subjected to a s...

    A second order mechanical system of a mass connected to a spring and a damper is subjected to a sinusoidal input force mx+cx + kx = A sin(at) The mass is m-5 kg, the damping constant is c = 1 N-sec/m, the spring stiffness is 2 N/m, and the amplitude of the input force is A- 3 N. For this system give explicit numerical values for the damping factor 5 and the un-damped natural frequency Using the given formulas for...

  • 7. Figure 4 shows a cannon. When the gun is fired, high pressure gasses accelerate the...

    7. Figure 4 shows a cannon. When the gun is fired, high pressure gasses accelerate the projectile. The reaction force pushes the gun barrel in the opposite direction to the projectile. The gun barrel is made to translate backwards against a critically damped spring-damper system called the recoil mechanism. The mass of the gun barrel the recoi mechanism is 500 kg and the recoil spring stiffness is 10 kN/m. Upon firing, the gun recoils 0.4 m. Find (a) the damping...

  • فب this is an intro to mechanical ViBRATION Problem, I know the solution to this problem...

    فب this is an intro to mechanical ViBRATION Problem, I know the solution to this problem using matrixes, but this problems weights 6 pts out of the 100 overall course grade I want a 100% full correction to this problem, I saw a solution on this problem on previous post but its not full and contain errors Consider a mass m linked to a support P by a spring of stiffness k and a viscous friction damper with coefficient a.....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT