Measuring the acceleration of a fan cart

 Let's look at some more complex motion with our motion sensor. We will measure the motion of a cart driven by a fan. The arrangement is shown below.

Fan Cart Setup
We are going to add one more level of complexity to our measurement. We want to get an accurate time measurement instead of assuming the time increases by the delay time. To do this we will use a function called "millis" on the Arduino. We can keep track of time and position by reporting both to the serial port using something like the following lines of code.
Serial.print(millis()*1000);
Serial.print(",");
Serial.println(distance);

In this example, the first line of code prints the time in milliseconds multiplied by 1000 to convert to seconds. This line will not put a carriage return since it has

print
rather than
println
The second line prints a comma, and the third line prints the distance with a carriage return. The distance should be your calibrated distance from previous lab work. The third line will insert a carriage return so that the next values that go to the serial port are on a new line.

Now we are ready to measure the motion. Place the cart on the track so that it moves away from the motion sensor.  Using the switch on the Arduino, start the cart moving by turning on the fan and measure the motion of the cart while it is moving freely between the track ends. Be sure the Serial Monitor is open so you can copy the time and position data after the measurement ends.

Copy and paste the data into Microsoft Excel. Make a graph of the data (be sure to label the graph axes). Add a polynomial trendline to the graph, and use it to determine the initial position, initial velocity, and acceleration. Recall \( x_f = x_i +v_i t + \frac{1}{2}at^2 \)is related to the trendline \( y=c+bx+ax^2 \)

Fan Cart Data


Have the cart move toward the motion sensor to determine whether the acceleration is the same magnitude but opposite direction. If you feel like the measurement of acceleration is reproducible, try adding mass to the cart and measuring the acceleration again. Repeat this for one more addition of mass.  Be sure to keep the mass in the middle of the cart so that it doesn't have more mass on one side of it.

When you have three masses measured, make a graph in Excel of acceleration (y-axis) vs. mass (x-axis). How do the two values appear to be related (linear, quadratic, hyperbolic)? Try adding a "power law" trendline to determine the dependence. Sir Isaac Newton said that force is mass times acceleration. \( F=ma \). Assuming the fan exerts a constant force because it always blows air in the same way, we can assume the force is some constant number. Rearranging the equation \( a=F/m \). Does this agree with your graph trendline? Explain. What is the force the fan exerts?

No comments:

Post a Comment