Starting from:

$30

Impulse Momentum Lab 4

Impulse Momentum
Figure 1: Overview of the setup for the Impulse Momentum Lab, make sure the range switch is in the 10N
position and you have zeroed the sensor at rest.
Lab Objectives
• Data collection
• Data Analysis
• Integration
• Propagation of Error
Lab Equipment
• Vernier Motion Detector
• Vernier Dynamics Cart
• Vernier Dual Range Force Sensor
1
• Vernier Hoop Bumper
• Flat Cart Track
• Mass Balance
Overview
Impulse (J~ ) is a quantity that is closely related to momentum, today we will be looking only in one dimension
and so Impulse is defined as the integral of the force applied to an object over time,
J~ =
Z t2
t1
F~ (t)dt (1)
Impulse is related to momentum (~p ) by,
J~ = ~p2 − ~p1 = 4~p (2)
In our lab we can collect force data over time with our force sensor, this allows us to plot the function of Force
vs time and we can combine these equations into,
~p2 − ~p1 =
Z t2
t1
F~ (t)dt (3)
We can also measure position over time to calculate velocity with the motion sensors, and we can measure
mass using the mass balances. With this in mind, we can rearrange the above equation to,
mv2 − mv1 =
Z t2
t1
F~ (t)dt (4)
which we will use to test if the change in momentum is equal to the force applied.
Procedure
Data Collection
You will be performing three variations of the same experiment and employing the same analysis techniques on
all of them. The variations will be in how fast the cart is going when it encounters the hoop bumper on the force
sensor. The three speeds will be: slow, slower and slowest. The hoop bumper should never fully compress, if it
does then you will have to take another round of data.
• Make sure that the force sensor is zeroed and that the range selector switch is in the 10N position.
• Adjust the motion sensor so that it picks up the cart motion well for the whole range of motion on the track.
• Take your data. Your data should be of sufficient quality to perform the analysis on in the next section, if it
is not, you should repeat that trial.
Analysis
Integral Fit
Logger Pro offers an integral fit tool that will measure the area under a curve numerically. Much like the
other fits and statistic functions, you will need to specify the range of the graph that you want the function to
operate on.
2
Figure 2: A view inside of the force sensor, the horizontal fiberglass piece is the strain gauge that will change
resistance when it is flexed. Be sure to be careful when not to apply too much force on the hook as this could
break the fiberglass strain mechanism.
Velocity
Use the statistics function to find the velocity before and after the collision, while the velocity may not be exactly
constant, avoid areas of large change. Make sure your group agrees on how to get the uncertainty in the mass of
your cart.
Propagation of Uncertainties
Propagate your uncertainties for the difference in momentums, you should have uncertainties for your velocities
and mass. There is a quick review of the propagation of uncertainty equations at the bottom of this lab.
Include your working and commented python code for the propagation of uncertainty. You should copy and
paste the code into the answer sheet.
Writing
Based on the data that you took today, write and answer the questions in the following sections. Remember
that even though you will have the same data as your partner, the writing in these sections should be done
individually.
3
Experimental Method
• In complete sentences, communicate the steps that you took when collecting and analyzing your data.
Pretend you are writing this so a fellow student that missed this lab could take and analyze the data
using only this section. For example, you do not need to tell them to press start in Logger Pro or open
the program, but you would want to tell them what sensors you used to collect data and setting to use
on the force sensor.
Results
• Report the results of your experiment in complete sentences using your calculated numbers, you should
also include you numbers in table. You should place your graphs with captions in this section as well.
At minimum, your table should have the following columns: Trial Number, Type of motion, Impulse
and Change in momentum. Don’t forget to include units and significant figures.
Conclusion Write a sentence or two for each question asked below. Back up your conclusions with evidence.
For example, use equations, measurements, references to figures, etc when appropriate.
• Based on your results listed above, does the change in momentum equal the impulse within your measured and calculated uncertainty (Include your numbers)?
• Does your conclusion hold true for the different speed collisions?
• If so, what might be an interesting extension to this experiment?
• If not, what change to your experiment might help you get better results.
Graph and Data Checklist You should have six graphs with complete captions and answered all of the questions highlighted by the gray boxes.
4
Review
The Figures and Captions
There are a few very important aspects to creating a proper figure and caption. If you follow these rules, not only
will you get points on your physics lab grades, you will impress your instructors and peers in the future.
The Caption
• The caption should start with a label so you can reference the figure from other places in your paper/report.
For this course you should use “Figure 1”, “Figure 2”, etc.
• The caption should allow the figure to be standalone, that is to say, by reading the caption and looking at
the figure, it should be clear what the figure is about and why it was included without reading the whole
paper.
• The caption should contain complete sentences and be as brief as possible while still conveying your information clearly (this is not always easy).
The Figure
• Make sure that the resolution is high enough to not be pixelated at its final size.
• Check that any text is readable at the final size (Using a smaller graph in Logger Pro will cause the text to
be larger in relation to the graph when inserted into another program).
• For graphs, ensure that the axes are labeled (including units) and that there is a legend if you have multiple
data sets on the same graphs.
Propagation of Uncertainties
Addition and Subtraction
In the case of addition and subtraction, the equation for combining uncertainties is
δx = δx1 + δx2 + δx3 , (5)
where δx is the total uncertainty of your calculation and δx1, δx2, and δx3 are the uncertainties of your individual measurements.
Multiplication and Division
This method is valid for both multiplication and division of measurements with uncertainties.
δA
|A|
=
δx
|x|
+
δy
|y|
, (6)
where A is the area, x is the length, y is the width, δx and δy are the uncertainties associated with these
measurements, and δA is the propagated uncertainty of the product or quotient.
5
Figure 3: Navigate to jupyterhub.wpi.edu and sign in with your WPI email address and password, choose
an instance to spawn (either is fine) and create a new Python 3 file as shown here
Python
Python is a high level programming language that is regularly used by the scientific community for general and
research computation. We will be introducing it and using it in a very limited way in this lab course although we
encourage you to explore it more on your own. We will primarily make use of the Python to calculate statistical
values and propagate uncertainties. We will be using an interface for Python called Jupyter and WPI has set up
a JupyterHub server that you can access from any browser (Figure 3). The files you create on the server will stay
for at least the term, probably much longer.
Jupyter uses a cell based system and evaluated variables carry over to the next cell. There are a few different
types of cells, Figure 5 shows 2 kinds, the code cell, which we will be using most of the time, and the markdown
cell, which you can use to add nicely formatted notes to you file.
6
Figure 4: Above is the code that you could use use to propagate uncertainty for values that are added or subtracted. Always remember to comment every line of your code in this class.
Figure 5: Above is the code that you could use use to calculate the mean and standard deviation. Always remember to comment every line of your code in this class.
7

More products