Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Oscillations Goal: The goal of this mini-project is to design a suspension system for a car. There are two essential components for such a system:

Oscillations Goal: The goal of this mini-project is to design a suspension system for a car. There are two essential components for such a system: springs and shock absorbers. Youre going to write a design specification for each of them. Essentially, this means choosing a spring constant and a damping constant. Strategy: We obviously are not going to build a car. So first, well write, one piece at a time, a VPython simulation that we can use to test design ideas. It will model one wheel, one spring and one shock. Well start with the spring and wheel and add the shock later. Then well add a model to jolt the spring and shock system with an impulsive force, similar to running across a speed bump. Finally, well use this program to test design ideas and find a solution to the design goal.

What your program must do: Springs can take a variety of forms (coils, leaf springs, torsion rods, etc.) but they all behave the same way so well take coils as our model.Before you can complete this assignment, you need to have a complete VPython simulation for a simple harmonic oscillator. Your simulation should be able to:

Animate the oscillator itself (point mass is OK)

Create one graph window that shows position, velocity and acceleration graphs vs. time

Create a second graph window that shows Kinetic, Potential and Total Energy vs. time

Your graphs should be color coded so you can tell which curve is which quantity, with an identifying legend. It is handy, where possible, to color code the various forms of energy the same as the kinematic quantity they depend on.

In principle, you could hang your car from springs but that would be weird. The mass of a car sits on top of the spring and the bottom is a fixed position as long as the car is rolling smoothly. Your simulation should behave the same way.

Numerical simulations of oscillatory motion can be unstable unless you update velocity first and then update position.

Note that the force will change directions and magnitude during the oscillation. Depending how you have set up your simulation, you may find it useful to express the net force using a stretch unit vector. It is also possible to set up the animation so that you dont have to do this but you really have to think about the coordinate system youre using..

What your program should accept as inputs: Your program should take as inputs

spring constant

spring equilibrium length

car mass

starting position

starting velocity.

____________________

For right now, you dont have to make it match a car, just get some combination of values that works. Later on, you can tune these values to match those of a car.

How to prepare your program: Start with a picture of your oscillator situation and coordinate system used by VPython. Use that and a free body diagram to get the net force in this coordinate system before trying to code it.

Build your program a bit at a time so youre not doing too much at once. Just get the animation working before adding graphs, for example.

A. Simple Harmonic Oscillations

The first thing to do once you have written a numerical simulation is test it by verifying that it does what it is supposed to do in the areas where you have knowledge of how it should behave. The solution in the textbook for the simple harmonic oscillator is fully worked out, and leads a specific equation for x(t). This solution has specific relationships that must be satisfied by frequency, phase constant and amplitude.

xt=A cos?(?t+ ?0)

?= km and does not depend on A

E=12kA2 and does not depend on ?

1. By systematically varying each of your input parameters in turn, determine qualitatively which properties of the motion (frequency, amplitude, phase constant) they have an effect on, and quantitatively whether those effects match the relationships in the text. How does each of your input parameters affect, or not affect, amplitude, frequency, and phase constant? 2. Does your simulation agree with the relationship for ?? 3. Does your simulation agree with the relationship for total energy? 4. For some set of values of the input parameters that you did not us in parts 1 through 3, predict quantitatively what each of the graphs should look like. Explain your predictions, in particular stating what you think the frequency, phase angle and amplitude for each graph should be. Then test your prediction. If you missed something, figure out why and try a different combination.

B. Damped Oscillations

Now add a damping force to your VPython simulation. This will require you to introduce another input, the damping constant.

1. Your textbook also has a solution for this problem. Check your simulation to make sure it agrees with the theoretical predictions.

xt=Ae-b2mcos?(?t+ ?0)

?= km-b24m2

E= 12kA2e-t? for b small but not for b large

2. Explore the behavior of the damped oscillator for various values of the damping constant, from small to large. Be sure to especially note what happens at values less than, greater than, and equal to 2m? where ? is the simple oscillation frequency.

3. We categorize damped oscillations into underdamped, overdamped and critically damped based on the value of b. Based on what youve seen in part 2, explain what you think the meaning of these terms should be and what range of damping constants does each correspond to?

4. For the following real oscillators, should they be under-, over-, or critically damped? Obviously, any of them can be any of the three possibilities, so the best choice is dictated by design goals rather than physics. For each, state what your design goal is as well as how that leads you to the type of damping desired. You can watch them onYoutube if you want.

Door closers (subtype: door closers for hillbilly screen doors)

Bungee cords

Automobile suspensions

Audio speaker supports

The magnetic thing that makes the triple beam balance stop oscillating

Tuned mass dampers.

C. Forced Damped Oscillations

Your book discusses a periodic driving force, but for a car suspension, were really more interested in something like a speed bump or a pothole. That is, a sudden, impulsive force that doesnt last for very long.

Introduce a constant force into your program that plays the role of a bump. Let that force only be active for a short, half second, time interval some time after the start of the simulation, and zero otherwise. It needs to hit the tire, not the car.

Explore the effect of the force on your oscillator, both with and without damping.

D. Design a car suspension

Now you need to adapt your program to simulate an actual car. This means youll need to estimate plausible values for things like mass, spring constant, damping constant, etc. You know enough about Newtonian analysis and Energy analysis to be able to do this.

Estimate (do not look up as you have to justify your estimates) a plausible spring constant for a typical car. This you should be able to do analytically.

Estimate a damping constant for your shock absorbers. This is where the VPython will come in handy.

Create a driving force to model a plausible real world situation of your choice. You can use any of the techniques weve learned this semester Newtons Laws, Impulse-momentum, Work-energy to estimate (a) the size of the force from a bump and (b) the time interval over which it acts, based on the dimensions of the bump.

Use the VPython program to handle testing the impulsive force. Does your car model behave appropriately?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Next Generation Databases NoSQLand Big Data

Authors: Guy Harrison

1st Edition

1484213300, 978-1484213308

More Books

Students also viewed these Databases questions