empirical expressions. The most commonly used expression is F

Size: px
Start display at page:

Download "empirical expressions. The most commonly used expression is F"

Transcription

1 Air resistance or drag is a very common type of friction experienced in many situations, a leaf falling from a tree, riding your bicycle or a jet flying through the air. It is often impossible to ignore the effects of air drag, even though many introductory physics courses do. In this lesson you will learn that friction due to air (or other mediums) can be modeled reasonably easily and is simply another force that can be included in your numerical simulations. (As an aside, the analytic solution is very complicated or impossible to write in closed form.) We do not derive an expression for the air drag, but instead we rely on experiment to give approximate or 1 2 empirical expressions. The most commonly used expression is F ˆ air CA v v where 2 is the density of the medium (air in this case), v is the velocity, vˆ is the unit vector in the direction of motion, Ais the frontal cross sectional area, and C is the coefficient of drag. The negative sign makes the resistive force oppose the motion. This expression is only approximately correct, and not even for all speeds, but it is a good approximation over a large enough range of speeds to be extremely useful. The coefficient C hides a lot of the details in the problem. For instance it contains the shape of the object and perhaps if it is near a surface or out in as open space. Take a car as an example, a sleek racing car will have a smaller coefficient of drag than a boxy jeep. Often on semi-trucks you will see a curved piece of plastic above the cab, right in front of the flat part of the trailer. This significantly reduces air drag, i.e. C, and increases the fuel economy of the truck. In any case, C must be determined empirically, by experiment. For many common shapes the coefficient of friction is tabulated and can be looked up. Let s examine a very common example where air resistance plays a major role. A skydiver jumps out of an airplane and starts to accelerate towards the earth. As his velocity increases the air begins to put an opposing force that reduces his downward acceleration. Eventually, the upward force of the air equals the downward force of gravity and the skydiver ceases accelerating and falls with a constant speed. This is called the terminal velocity. It is interesting to note that terminal velocity for a skydiver depends on his position. If falling headfirst in a streamlined fashion his cross sectional frontal area is just the head and shoulders, however is he is falling spread-eagle then the frontal area is his entire body. These areas have a ratio of ~20 and significantly reduce the terminal velocity for skydivers falling chest first. Now we will make some estimates and do a simulation. The coefficient of drag is ~1.1, the frontal area (spread-eagle) 0.75 m 2, the density of air is ~1.2 kg/m 3, the mass of a sky diver might be around 80 kg. This allows us to determine the terminal speed by equating the gravitational force and the air drag: 1 or 2 2 mg CA v terminal v terminal 2mg Substituting in the CA values from above give a terminal velocity (spread-eagle) of ~40 m/s or ~90 mi/h. If you go headfirst the terminal velocity is closer to 180 mi/h. (This is why I don t skydive! I know too much physics.) A more difficult question to answer is how far, or long, do you fall to achieve

2 90% of terminal velocity? This cannot be solved easily analytically, but numerical computation 1 2 will work very well. The forces on the object are: F ˆ net F mg CA v v. How do we 2 code this? Here is the pseudocode for the main loop: Main Loop F_grav = m* g F_air = -0.5*A*C*density*(momentum/mass) 2 *(momentum unit vector) momentum = momentum +( F_grav + F_air)*dt position = position + (Momentum/mass)*dt time = time + dt This looks exactly like the racquetball problem, but we have included F_air in the total force. Before we include air drag let s review the results from our high school physics class for free fall with no drag. In this case the x and y motion are completely decoupled, the velocity in y changes by -9.8 m/s/s, and the velocity in x is constant. Below is a graph of such a trajectory, note that the axis are y position vs x position, NOT time. The sky diver jumps out of a plane flying at an altitude of 3000 m while traveling at 50 m/s in the x direction. Not including air

3 resistance the trajectory is shown below: The dots are equally spaced in time and you can see a nice parabola where the even spacing in the x-direction shows a constant speed in that direction, while the increasing vertical spacing between points shows the acceleration due to gravity in the y direction. No doubt you spent a considerable amount of time studying this in high school. While this is an excellent limiting case, in actuality rarely can air resistance be ignored. Let s consider the same problem but include air drag. The trajectory looks like this:

4 Comparing the two trajectories you can see quite a difference! The most obvious thing is that in the second situation the skydiver comes down essentially vertically and the velocity in the x- direction has gone to zero. This is due to the drag of the air gradually eliminating the forward motion of the skydiver. Compare the x range for the two scenarios: without air drag the skydiver lands ~1200 m down range (directly under the plane, assuming it continuums its original course), whereas when air drag is included the range is reduced to ~185 m. This is a very significant difference (reduction by 1/6 th ). Anyone who has played golf is aware that the golf ball comes down from a long drive almost vertically. Or simply throw a crumpled piece of paper horizontally and watch how it falls. Doesn t look like a parabola, does it? Ignoring air resistance is a very large approximation. Is it reasonable? Where do you want your helpers waiting for you after you land? A second important point to notice is a bit more subtle. Look at the spacing of the dots as the skydiver is in the final vertical descent. Are they increasing in spacing as they would be for uniform acceleration due to gravity? No, they are not. In fact, they look evenly spaced. To examine this more closely, we should plot the y-position, y-velocity and y-acceleration vs. time. These three graphs are shown below:

5 The y-position vs time plot shows a small amount of downward curvature, and the velocity vs. time plot similarly starts off with a slop of -9.8 m/s 2, but after about 5 sec, when the speed is ~30 m/s, the velocity curve starts to bend over and level off. This is reflected in the y-position curve becoming a linear relationship. The terminal velocity is ~40 m/s, just as we determined above from equating the air drag and gravitational forces. It is interesting to see how rapidly the

6 skydiver obtains terminal velocity, the last plot of the acceleration vs. time shows that after just ~10 sec, downward acceleration is essentially zero and from then on his speed remains constant. That is, of course, until he hits the Earth. We have omitted one very important aspect of a sky jumper s flight, the parachute. A parachute dramatically increases the frontal cross sectional area that is being resisted by the air. A typical parachute might have an effective area of 40 m 2, ~50 times larger than just the spread-eagle jumper. Most jumpers want to have their chute deployed by ~300 m above the Earth. We can add a couple lines of code to the simulation to allow a large increase in the area A and a smaller increase in the drag coefficient C, from 1.1 to 1.5, when the skydiver is below 300 m in altitude. Below is a plot of the trajectory. This trajectory looks very similar to the one above, except the dots get much more closely spaced starting at 300 m. The y-position and y-velocity vs. time plots are more revealing.

7 After falling for about 70 seconds, the skydiver is at a height of 300 m and the chute deploys. Very rapidly the downward velocity is decreased from 40 m/s to a new terminal velocity of 4.6 m/s (~10 mi/hr). This is the impact speed for the skydiver unless some more fancy things are done. Hitting the ground at 10 mi/hr is still pretty fast and broken bones are not uncommon. It is interesting to note how large the positive acceleration is when the chute opens

8 At the start of the dive the y-acceleration is -9.8 m/s 2 and after about 10 seconds it is reduced to zero. At 70 sec the y-acceleration jumps up momentarily to over 700 m/s 2 or ~70 g s. The duration of this extremely high force is quite small, each point on this part of the curve is 0.01 sec, so after ~ 0.1 sec the acceleration is at a relatively more manageable 100 m/s 2 or ~10g s and da still rapidly falling. There must be one heck of a jerk, when that chute opens. dt Of course, we do not have a properly detailed model for the chute to open and this is an artificially high value. Our chute opens in 0.01 sec, whereas a real chute would take much longer. This would reduce the extremely high initial values of the acceleration. From a video we could try to determine the area of the chute as a function of time and this would allow a better model for the acceleration during chute deployment. This last argument is an important one to understand from a big picture point of view. We have introduced a very simple approximation for the chute opening, one time step it is not there and in the next it is fully deployed. This is not good enough to answer detailed questions like, what is the maximum acceleration that the skydiver experiences? However the model is just fine for determining the speed at which the skydiver hits the ground. This is a good example of knowing where you have a reasonable model, when it is accurate, and where it falls short. Pun intended.

9 from future import division from visual import * from visual.graph import * # import graphing features #Simulation of a skydiver jumping from a plane and popping a parachute at 300m #above the ground time = 0 dt =.5 count = 0 # start the system clock at zero # time increment (sec) # count number of cycles through main loop mass = 80 # mass of skydiver g = vector(0,-9.8,0) # acceleration near Earth rho = 1.22 # density of air kg/m**3 A = 0.75 # frontal area of skydiver, 0.75 m**2 spread eagle, 0.1 m**2 headfirst C = 1.1 # Coefficient of drag Force_grav = mass*g # constant force applied by gravity field parachute = 1 # turns the opening of the parachute on (1) or off (0) #graphics position = gdisplay(title = ' Y Position vs time', xtitle = 'time (s)', ytitle ='y position (m)', x=0, y=0, width=1000, height=400, foreground=color.black, background= color.white) # window for position vs. time velocity = gdisplay(title = ' Y Velocity vs time', xtitle = 'time (s)', ytitle ='velocity (m/s)', x=0, y=450, width=1000, height=400, foreground=color.black, background= color.white) # window for velocity vs. time trajectory = gdisplay(title = 'height vs x position', xtitle = 'x position (m)', ytitle ='height (m)', x=0, y=0, width=1000, height=800, foreground=color.black, background= color.white) # window for velocity vs. time acceleration = gdisplay(title = 'Y acceleration vs time', xtitle = 'time (s)', ytitle ='Y acceleraton (m/s**2)', x=0, y=0, width=1000, height=400, foreground=color.black, background= color.white) # window for velocity vs. time pos_vs_time = gdots(gdisplay=position, color=color.black) # a graphics curve for position vs. time vel_vs_time = gdots(gdisplay=velocity, color=color.black) # a graphics curve for velocity vs. time y_vs_x = gdots(gdisplay=trajectory, color=color.black) # a graphics curve for trajectory acc_vs_time = gdots(gdisplay=acceleration, color=color.black) # a graphics curve for trajectory

10 #initialize all loop variables initial_vel = vector(50,0,0) # 50 m/s in x is 120 mi/hi for a slow plane initial_mom = mass*initial_vel initial_pos = vector(0,3000,0) position = initial_pos momentum = initial_mom #main loop while (position.y > 0): # simulate while skydiver is above ground if parachute and position.y < 300: #if have parachute, open at 300 meters high A = 41 # parachute cross sectional area (m**2), 24' diameter C = 1.5 # Coefficient of drag of chute dt =.01 # need small dt to better handle the large force at chute opening if mag(momentum) == 0: #if no velocity, air drag is 0 Force_air = vector(0,0,0) else: Force_air = -0.5*C*A*rho*mag2(momentum/mass)*norm(momentum) #air drag momentum = momentum + (Force_grav + Force_air)*dt # update momentum position = position + (momentum/mass)*dt # update position accel = (Force_grav + Force_air)/mass # only used for plotting if count % 1 == 0: # only plot every n'th point pos_vs_time.plot(pos=(time, position.y )) # plot y position vs time vel_vs_time.plot(pos=(time, momentum.y/mass )) # plot y velocity vs time y_vs_x.plot(pos=(position.x, position.y)) # plot trajectory y vs. x acc_vs_time.plot(pos=(time,accel.y)) # plot acceleration y vs. time time = time + dt count = count + 1 print momentum.y/mass # increment system time # count number of cycles through main loop

, gives a coupled set of first order dt m differential equations.

, gives a coupled set of first order dt m differential equations. Force and dynamics with a spring, numerical approach It may strike you as strange that one of the first forces we will discuss will be that of a spring. It is not one of the four Universal forces and we

More information

Physics 100 Reminder: for on-line lectures

Physics 100 Reminder:  for on-line lectures Physics 100 Reminder: http://www.hunter.cuny.edu/physics/courses/physics100/fall-2016 for on-line lectures Today: Finish Chapter 3 Chap 4 - Newton s Second Law In Chapter 4, we establish a relationship

More information

Forces and Newton s Laws

Forces and Newton s Laws chapter 3 Forces and Newton s Laws section 3 Using Newton s Laws Before You Read Imagine riding on a sled, or in a wagon, or perhaps a school bus that stops quickly or suddenly. What happens to your body

More information

3 Using Newton s Laws

3 Using Newton s Laws 3 Using Newton s Laws What You ll Learn how Newton's first law explains what happens in a car crash how Newton's second law explains the effects of air resistance 4(A), 4(C), 4(D), 4(E) Before You Read

More information

High-Power Rocketry. Calculating the motion of a rocket for purely vertical flight.

High-Power Rocketry. Calculating the motion of a rocket for purely vertical flight. High-Power Rocketry Calculating the motion of a rocket for purely vertical flight. Phase I Boost phase: motor firing (rocket losing mass), going upwards faster and faster (accelerating upwards) Phase II

More information

Force Test Review. 1. Give two ways to increase acceleration. You can increase acceleration by decreasing mass or increasing force.

Force Test Review. 1. Give two ways to increase acceleration. You can increase acceleration by decreasing mass or increasing force. Force Test Review 1. Give two ways to increase acceleration. You can increase acceleration by decreasing mass or increasing force. 2. Define weight. The force of gravity on an object at the surface of

More information

Forces and Movement. Book pg 23 25, /09/2016 Syllabus , 1.24

Forces and Movement. Book pg 23 25, /09/2016 Syllabus , 1.24 Forces and Movement Book pg 23 25, 39-40 Syllabus 1.15-1.18, 1.24 Reflect What is the relationship between mass, force and acceleration? Learning Outcomes 1. Demonstrate an understanding of the effects

More information

The Laws of Motion. Before You Read. Science Journal

The Laws of Motion. Before You Read. Science Journal The Laws of Motion Before You Read Before you read the chapter, use the What I know column to list three things you know about motion. Then list three questions you have about motion in the What I want

More information

PHYSICS 211 LAB #3: Frictional Forces

PHYSICS 211 LAB #3: Frictional Forces PHYSICS 211 LAB #3: Frictional Forces A Lab Consisting of 4 Activities Name: Section: TA: Date: Lab Partners: Circle the name of the person to whose report your group printouts will be attached. Individual

More information

Chapter 6 Study Questions Name: Class:

Chapter 6 Study Questions Name: Class: Chapter 6 Study Questions Name: Class: Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. 1. A feather and a rock dropped at the same time from

More information

Forces and Motion in One Dimension

Forces and Motion in One Dimension Nicholas J. Giordano www.cengage.com/physics/giordano Forces and Motion in One Dimension Applications of Newton s Laws We will learn how Newton s Laws apply in various situations We will begin with motion

More information

The University of Texas at Austin. Air Resistance

The University of Texas at Austin. Air Resistance UTeach Outreach The University of Texas at Austin Air Resistance Time of Lesson: 50-60 minutes Content Standards Addressed in Lesson: 8.6A demonstrate and calculate how unbalanced forces change the speed

More information

BEFORE YOU READ. Forces and Motion Gravity and Motion STUDY TIP. After you read this section, you should be able to answer these questions:

BEFORE YOU READ. Forces and Motion Gravity and Motion STUDY TIP. After you read this section, you should be able to answer these questions: CHAPTER 2 1 SECTION Forces and Motion Gravity and Motion BEFORE YOU READ After you read this section, you should be able to answer these questions: How does gravity affect objects? How does air resistance

More information

Provincial Exam Review: Motion

Provincial Exam Review: Motion Section 8.1 Provincial Exam Review: Motion 1. Identify each of the following quantities as either vector or scalar. (a) 10 kg (b) 20 m [S] (c) 5 hours driving in a car (d) swimming for 100 m [N] (e) 15

More information

Kinematics 2. What equation relates the known quantities to what is being asked?

Kinematics 2. What equation relates the known quantities to what is being asked? Physics R Date: 1. A cheetah goes from rest to 60 miles per hour (26.8 m/s) in 3 seconds. Calculate the acceleration of the cheetah. Kinematics Equations Kinematics 2 How to solve a Physics problem: List

More information

Chapter: Newton s Laws of Motion

Chapter: Newton s Laws of Motion Table of Contents Chapter: Newton s Laws of Motion Section 1: Motion Section 2: Newton s First Law Section 3: Newton s Second Law Section 4: Newton s Third Law 1 Motion What is motion? Distance and Displacement

More information

Experiment 1 Look Out Below!!

Experiment 1 Look Out Below!! Velocity Velocity Velocity is how fast something is going and in what direction it is going. Direction is what separates the term velocity from speed. If we were talking about a car, we could say that

More information

Announcement. Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday

Announcement. Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday Going over HW3.05 Announcement Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday As the red ball rolls off the edge, a green ball is dropped from rest from the same height at the same

More information

Kinematics 2. Kinematics Equations. How to solve a Physics problem:

Kinematics 2. Kinematics Equations. How to solve a Physics problem: Kinematics Equations Kinematics 2 How to solve a Physics problem: What is the question asking for? List the given quantities with units Equation Substitution with units Solution with units Does the answer

More information

Friction. Friction is a force that resists the motion of objects or surfaces. Many kinds of friction exist.

Friction. Friction is a force that resists the motion of objects or surfaces. Many kinds of friction exist. Friction Friction is a force that resists the motion of objects or surfaces. Many kinds of friction exist. Friction Friction depends on both of the surfaces in contact. When the hockey puck slides on

More information

Semester 1 Final Exam Review Answers

Semester 1 Final Exam Review Answers Position (m) Mass (g) Semester 1 Final Exam Review Answers A physics student was interested in finding the mass of a penny. To do so she grabbed a bunch of pennies and placed them on a scale. She gathered

More information

Directed Reading B. Section: Newton s Laws of Motion NEWTON S FIRST LAW OF MOTION

Directed Reading B. Section: Newton s Laws of Motion NEWTON S FIRST LAW OF MOTION Skills Worksheet Directed Reading B Section: Newton s Laws of Motion NEWTON S FIRST LAW OF MOTION Part 1: Objects at Rest 1. Which is NOT an example of an object at rest? a. a golf ball on a tee b. a jet

More information

Newton s Second Law of Motion Force and Acceleration

Newton s Second Law of Motion Force and Acceleration Chapter 3 Reading Guide: Newton s Second Law of Motion Force and Acceleration Complete the Explore! Activity (p.37) 1. Compare the rate at which the book and paper fell when they were side-by-side: Name:

More information

This chapter covers all kinds of problems having to do with work in physics terms. Work

This chapter covers all kinds of problems having to do with work in physics terms. Work Chapter 7 Working the Physics Way In This Chapter Understanding work Working with net force Calculating kinetic energy Handling potential energy Relating kinetic energy to work This chapter covers all

More information

Introductory Physics, High School Learning Standards for a Full First-Year Course

Introductory Physics, High School Learning Standards for a Full First-Year Course Introductory Physics, High School Learning Standards for a Full First-Year Course I. C O N T E N T S T A N D A R D S Central Concept: Newton s laws of motion and gravitation describe and predict the motion

More information

Semester 1 Final Exam Review Answers

Semester 1 Final Exam Review Answers Position (m) Mass (g) Semester 1 Final Exam Review Answers A physics student was interested in finding the mass of a penny. To do so she grabbed a bunch of pennies and placed them on a scale. She gathered

More information

acceleration versus time. LO Determine a particle s change in position by graphical integration on a graph of velocity versus time.

acceleration versus time. LO Determine a particle s change in position by graphical integration on a graph of velocity versus time. Chapter: Chapter 2 Learning Objectives LO 2.1.0 Solve problems related to position, displacement, and average velocity to solve problems. LO 2.1.1 Identify that if all parts of an object move in the same

More information

Introductory Physics, High School Learning Standards for a Full First-Year Course

Introductory Physics, High School Learning Standards for a Full First-Year Course Introductory Physics, High School Learning Standards for a Full First-Year Course I. C ONTENT S TANDARDS Central Concept: Newton s laws of motion and gravitation describe and predict the motion of 1.1

More information

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc.

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc. Chapter 2 One-Dimensional Kinematics Units of Chapter 2 Position, Distance, and Displacement Average Speed and Velocity Instantaneous Velocity Acceleration Motion with Constant Acceleration Applications

More information

6.1 Force Causes Acceleration. Unbalanced forces acting on an object cause the object to accelerate. Recall the definition of acceleration:

6.1 Force Causes Acceleration. Unbalanced forces acting on an object cause the object to accelerate. Recall the definition of acceleration: Recall the definition of acceleration: An object accelerates when a net force acts on it. The cause of acceleration is force. 6.1 Force Causes Acceleration Unbalanced forces acting on an object cause the

More information

A scalar quantity has just magnitude A vector quantity has both magnitude and direction

A scalar quantity has just magnitude A vector quantity has both magnitude and direction Name Date Mods REVIEW FOR MIDYEAR ASSESSMENT 1. Physics is the most basic science because Physics supports chemistry, chemistry supports biology. The ideas of physics are fundamental to these more complicated

More information

Kinematics A train accelerates from rest at a rate of 2 m/(s*s), for a time of 20 seconds. How much distance does the train cover?

Kinematics A train accelerates from rest at a rate of 2 m/(s*s), for a time of 20 seconds. How much distance does the train cover? Physics R Date: 1. A cheetah goes from rest to 60 miles per hour (26.8 m/s) in 3 seconds. Calculate the acceleration of the cheetah. Kinematics Equations Kinematics 2 How to solve a Physics problem: 1.

More information

Newton s Laws of Motion. Chapter 4

Newton s Laws of Motion. Chapter 4 Newton s Laws of Motion Chapter 4 Newton s First Law of Motion Force A force is a push or pull. An object at rest needs a force to get it moving; a moving object needs a force to change its velocity. Force

More information

Spring 2010 Physics 141 Practice Exam II Phy141_mt1b.pdf

Spring 2010 Physics 141 Practice Exam II Phy141_mt1b.pdf 1. (15 points) You are given two vectors: A has length 10. and an angle of 60. o (with respect to the +x axis). B has length 10. and an angle of 200. o (with respect to the +x axis). a) Calculate the components

More information

General strategy for using Newton's second law to solve problems:

General strategy for using Newton's second law to solve problems: Chapter 4B: Applications of Newton's Laws Tuesday, September 17, 2013 10:00 PM General strategy for using Newton's second law to solve problems: 1. Draw a diagram; select a coördinate system 2. Identify

More information

Chapter 5: Applications of Newton's laws Tuesday, September 17, :00 PM. General strategy for using Newton's second law to solve problems:

Chapter 5: Applications of Newton's laws Tuesday, September 17, :00 PM. General strategy for using Newton's second law to solve problems: Ch5 Page 1 Chapter 5: Applications of Newton's laws Tuesday, September 17, 2013 10:00 PM General strategy for using Newton's second law to solve problems: 1. Draw a diagram; select a coördinate system

More information

(numerical value) In calculating, you will find the total distance traveled. Displacement problems will find the distance from the starting point to the ending point. *Calculate the total amount traveled

More information

KEY NNHS Introductory Physics: MCAS Review Packet #1 Introductory Physics, High School Learning Standards for a Full First-Year Course

KEY NNHS Introductory Physics: MCAS Review Packet #1 Introductory Physics, High School Learning Standards for a Full First-Year Course Introductory Physics, High School Learning Standards for a Full First-Year Course I. C ONTENT S TANDARDS Central Concept: Newton s laws of motion and gravitation describe and predict the motion of 1.1

More information

8. The graph below shows a beetle s movement along a plant stem.

8. The graph below shows a beetle s movement along a plant stem. Name: Block: Date: Introductory Physics: Midyear Review 1. Motion and Forces Central Concept: Newton s laws of motion and gravitation describe and predict the motion of most objects. 1.1 Compare and contrast

More information

Physics 101. Chap 4 - Newton s Second Law. Will establish a relationship between force (chap 2) and acceleration (chap. 3).

Physics 101. Chap 4 - Newton s Second Law. Will establish a relationship between force (chap 2) and acceleration (chap. 3). Physics 101 Chap 4 - Newton s Second Law Will establish a relationship between force (chap 2) and acceleration (chap. 3). Rember one of the condition we defined: SF=0 Equilibrium Condition This time, we

More information

Q1. The density of aluminum is 2700 kg/m 3. Find the mass of a uniform solid aluminum cylinder of radius cm and height cm.

Q1. The density of aluminum is 2700 kg/m 3. Find the mass of a uniform solid aluminum cylinder of radius cm and height cm. Coordinator: W. Al-Basheer Sunday, June 28, 2015 Page: 1 Q1. The density of aluminum is 2700 kg/m 3. Find the mass of a uniform solid aluminum cylinder of radius 10.00 cm and height 30.48 cm. A) 25.85

More information

Circular Orbits. Slide Pearson Education, Inc.

Circular Orbits. Slide Pearson Education, Inc. Circular Orbits The figure shows a perfectly smooth, spherical, airless planet with one tower of height h. A projectile is launched parallel to the ground with speed v 0. If v 0 is very small, as in trajectory

More information

Do Now: Why are we required to obey the Seat- Belt law?

Do Now: Why are we required to obey the Seat- Belt law? Do Now: Why are we required to obey the Seat- Belt law? Newton s Laws of Motion Newton s First Law An object at rest remains at rest and an object in motion remains in motion with the same speed and direction.

More information

Chapter 3, Section 3

Chapter 3, Section 3 Chapter 3, Section 3 3 What is force? Motion and Forces A force is a push or pull. Sometimes it is obvious that a force has been applied. But other forces aren t as noticeable. What Is a Force? A force......

More information

Driveway Races Acceleration

Driveway Races Acceleration Driveway Races Acceleration You may notice that when things move they rarely move at the same speed all the time. Especially when you drive, you can see right away that your speed is constantly changing.

More information

What is force? A force is a push or pull. Sometimes it is obvious that a force has been applied. But other forces aren t as noticeable.

What is force? A force is a push or pull. Sometimes it is obvious that a force has been applied. But other forces aren t as noticeable. Chapter 3, Sec-on 3 3 What is force? Motion and Forces A force is a push or pull. Sometimes it is obvious that a force has been applied. But other forces aren t as noticeable. What Is a Force? A force......

More information

ConcepTest PowerPoints

ConcepTest PowerPoints ConcepTest PowerPoints Chapter 4 Physics: Principles with Applications, 6 th edition Giancoli 2005 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for

More information

3.3 Acceleration An example of acceleration Definition of acceleration Acceleration Figure 3.16: Steeper hills

3.3 Acceleration An example of acceleration Definition of acceleration Acceleration Figure 3.16: Steeper hills 3.3 Acceleration Constant speed is easy to understand. However, almost nothing moves with constant speed for long. When the driver steps on the gas pedal, the speed of the car increases. When the driver

More information

PYP 001 FIRST MAJOR EXAM CODE: TERM: 151 SATURDAY, OCTOBER 17, 2015 PAGE: 1

PYP 001 FIRST MAJOR EXAM CODE: TERM: 151 SATURDAY, OCTOBER 17, 2015 PAGE: 1 TERM: 151 SATURDAY, OCTOBER 17, 2015 PAGE: 1 *Read the following (20) questions and choose the right answer: 1 The figure below represents the speed-time graph for the motion of a vehicle during a 7.0-minute

More information

Unit 6: Linear Momentum

Unit 6: Linear Momentum Unit 6: Linear Momentum The concept of linear momentum is closely tied to the concept of force in fact, Newton first defined his Second Law not in terms of mass and acceleration, but in terms of momentum.

More information

Motion and Forces study Guide

Motion and Forces study Guide Motion and Forces study Guide Completion Complete each statement. 1. The motion of an object looks different to observers in different. 2. The SI unit for measuring is the meter. 3. The direction and length

More information

Unit 8B: Forces Newton s Laws of Motion

Unit 8B: Forces Newton s Laws of Motion Unit 8B: Forces Newton s Laws of Motion Indicator PS-5.7: Explain the motion of objects on the basis of Newton s three laws of motion. Objectives 1. State the meaning of Newton s laws of motion in your

More information

Physics 380 Physics and Society. Lecture 2: Newton s Laws, Mass, Force and Motion

Physics 380 Physics and Society. Lecture 2: Newton s Laws, Mass, Force and Motion Physics 380 Physics and Society Lecture 2: Newton s Laws, Mass, Force and Motion 1 Topics for This Lecture Mass Force Motion: acceleration, speed and displacement Newton s three Laws Equations of motion

More information

Chapter: The Laws of Motion

Chapter: The Laws of Motion Table of Contents Chapter: The Laws of Motion Section 1: Newton s Second Law Section 2: Gravity Section 3: The Third Law of Motion 1 Newton s Second Law Force, Mass, and Acceleration Newton s first law

More information

Chapter 4 Newton s Laws

Chapter 4 Newton s Laws Chapter 4 Newton s Laws Isaac Newton 1642-1727 Some inventions and discoveries: 3 laws of motion Universal law of gravity Calculus Ideas on: Sound Light Thermodynamics Reflecting telescope In this chapter,

More information

1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to

1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to 1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to A) 9.2 10 12 s B) 8.3 10 14 s C) 1.6 10 16 s D) 4.4 10 17 s E) 2.7

More information

AP Physics 1 Summer Assignment

AP Physics 1 Summer Assignment Name: Email address (write legibly): AP Physics 1 Summer Assignment Packet 3 The assignments included here are to be brought to the first day of class to be submitted. They are: Problems from Conceptual

More information

This module is designed to help you explore how projectiles and space affect your life each day.

This module is designed to help you explore how projectiles and space affect your life each day. Shoot! This module is designed to help you explore how projectiles and space affect your life each day. 1. Choose A or B or C and complete ALL the requirements. A. Watch about three hours total of science-related

More information

Foundations of Physical Science. Unit One: Forces and Motion

Foundations of Physical Science. Unit One: Forces and Motion Foundations of Physical Science Unit One: Forces and Motion Chapter 3: Forces and Motion 3.1 Force, Mass and Acceleration 3.2 Weight, Gravity and Friction 3.3 Equilibrium, Action and Reaction Learning

More information

Acceleration is the rate of change of velocity in a specific direction. It is a VECTOR quantity has magnitude & direction. Any change in the velocity

Acceleration is the rate of change of velocity in a specific direction. It is a VECTOR quantity has magnitude & direction. Any change in the velocity Physics Ch. 4 Acceleration is the rate of change of velocity in a specific direction. It is a VECTOR quantity has magnitude & direction. Any change in the velocity (either in magnitude or direction) is

More information

Launch! This module is designed to help you explore how science affects your life each day.

Launch! This module is designed to help you explore how science affects your life each day. Launch! This module is designed to help you explore how science affects your life each day. 1. Choose A or B or C and complete ALL the requirements. A. Watch about three hours total of science-related

More information

Is there a net force?

Is there a net force? Is there a net force? A net force (i.e., an unbalanced force) causes acceleration. In the motion unit, several means of representing accelerated motion were discussed. Combine your prior understanding

More information

Extra Credit Final Practice

Extra Credit Final Practice Velocity (m/s) Elements of Physics I Spring 218 Extra Credit Final Practice 1. Use the figure to answer the following questions. Which of the lines indicate a) Constant velocity b) Constant acceleration

More information

Unit 2: Newton s Laws Note 1 : Forces

Unit 2: Newton s Laws Note 1 : Forces Unit 2: Newton s Laws Note 1 : Forces Force: The units of force are: There are four fundamental forces that make up all of the forces in the universe: 1) 2) 3) 4) Force of Gravity Force of Gravity: The

More information

2. KINEMATICS. By Liew Sau Poh

2. KINEMATICS. By Liew Sau Poh 2. KINEMATICS By Liew Sau Poh 1 OBJECTIVES 2.1 Linear motion 2.2 Projectiles 2.3 Free falls and air resistance 2 OUTCOMES Derive and use equations of motion with constant acceleration Sketch and use the

More information

2. SKIP THIS YEAR What event will produce the greatest increase in the gravitational force between the two masses?

2. SKIP THIS YEAR What event will produce the greatest increase in the gravitational force between the two masses? Forces Review: look over all labs and worksheets. Your answers should be in another color pen. This is not all inclusive of items on the test but a very close representation. 1. The table shows the results

More information

y(t) = y 0 t! 1 2 gt 2. With y(t final ) = 0, we can solve this for v 0 : v 0 A ĵ. With A! ĵ =!2 and A! = (2) 2 + (!

y(t) = y 0 t! 1 2 gt 2. With y(t final ) = 0, we can solve this for v 0 : v 0 A ĵ. With A! ĵ =!2 and A! = (2) 2 + (! 1. The angle between the vector! A = 3î! 2 ĵ! 5 ˆk and the positive y axis, in degrees, is closest to: A) 19 B) 71 C) 90 D) 109 E) 161 The dot product between the vector! A = 3î! 2 ĵ! 5 ˆk and the unit

More information

Chapter 4. The Laws of Motion

Chapter 4. The Laws of Motion Chapter 4 The Laws of Motion Classical Mechanics Describes the relationship between the motion of objects in our everyday world and the forces acting on them Conditions when Classical Mechanics does not

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 Chapter 3: Acceleration Chapter Goal: To extend the description of motion in one dimension to include changes in velocity. This type of motion is called acceleration. Slide

More information

Name Class Date. height. Which ball would land first according to Aristotle? Explain.

Name Class Date. height. Which ball would land first according to Aristotle? Explain. Skills Worksheet Directed Reading A Section: Gravity and Motion 1. Suppose a baseball and a marble are dropped at the same time from the same height. Which ball would land first according to Aristotle?

More information

Chapter 6 Dynamics I: Motion Along a Line

Chapter 6 Dynamics I: Motion Along a Line Chapter 6 Dynamics I: Motion Along a Line Chapter Goal: To learn how to solve linear force-and-motion problems. Slide 6-2 Chapter 6 Preview Slide 6-3 Chapter 6 Preview Slide 6-4 Chapter 6 Preview Slide

More information

5 In a factory, regular stacks, each containing 150 pieces of paper, are measured using a pair of vernier calipers. The reading of one stack is shown.

5 In a factory, regular stacks, each containing 150 pieces of paper, are measured using a pair of vernier calipers. The reading of one stack is shown. PURE PHYSICS MECHANICS (PART I) 1 State the symbol of the SI unit for the following physical quantities. (a) Temperature (b) Density (c) Weight (d) Acceleration 2 For each of the following formula, derive

More information

Do Now 10 Minutes Topic Free Fall

Do Now 10 Minutes Topic Free Fall Do Now 10 Minutes Topic Free Fall I will be passing out a pop quiz right now. You have ten minutes to complete the pop quiz. Homework Complete the Motion Graph Lab Turn in the Kinematic Equations Worksheet

More information

Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4

Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4 Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4 Based on part of Chapter 4 This material will be useful for understanding Chapters 8 and 11

More information

Isaac Newton was a British scientist whose accomplishments

Isaac Newton was a British scientist whose accomplishments E8 Newton s Laws of Motion R EA D I N G Isaac Newton was a British scientist whose accomplishments included important discoveries about light, motion, and gravity. You may have heard the legend about how

More information

MITOCW free_body_diagrams

MITOCW free_body_diagrams MITOCW free_body_diagrams This is a bungee jumper at the bottom of his trajectory. This is a pack of dogs pulling a sled. And this is a golf ball about to be struck. All of these scenarios can be represented

More information

CHAPTER 2 TEST REVIEW

CHAPTER 2 TEST REVIEW IB PHYSICS Name: Period: Date: # Marks: 69 Raw Score: IB Curve: DEVIL PHYSICS BADDEST CLASS ON CAMPUS CHAPTER 2 TEST REVIEW 1. Samantha walks along a horizontal path in the direction shown. The curved

More information

Downhill Races Acceleration

Downhill Races Acceleration Downhill Races Acceleration You may notice that when things move they rarely move at the same speed all the time. Especially when you drive, you can see right away that your speed is constantly changing.

More information

Chapter 6. Circular Motion and Other Applications of Newton s Laws

Chapter 6. Circular Motion and Other Applications of Newton s Laws Chapter 6 Circular Motion and Other Applications of Newton s Laws Circular Motion Two analysis models using Newton s Laws of Motion have been developed. The models have been applied to linear motion. Newton

More information

Lecture Presentation. Chapter 4 Forces and Newton s Laws of Motion. Chapter 4 Forces and Newton s Laws of Motion. Reading Question 4.

Lecture Presentation. Chapter 4 Forces and Newton s Laws of Motion. Chapter 4 Forces and Newton s Laws of Motion. Reading Question 4. Chapter 4 Forces and Newton s Laws of Motion Lecture Presentation Chapter 4 Forces and Newton s Laws of Motion Chapter Goal: To establish a connection between force and motion. Slide 4-2 Chapter 4 Preview

More information

The drag lift pulls the skier from the bottom to the top of a ski slope.

The drag lift pulls the skier from the bottom to the top of a ski slope. Q1.Figure 1 shows a skier using a drag lift. The drag lift pulls the skier from the bottom to the top of a ski slope. The arrows, A, B, C and D represent the forces acting on the skier and her skis. Figure

More information

MOTION (Chapter 2) Student Learning Objectives 2/11/2016. Compare and contrast terms used to describe motion Analyze circular and parabolic motion

MOTION (Chapter 2) Student Learning Objectives 2/11/2016. Compare and contrast terms used to describe motion Analyze circular and parabolic motion MOTION (Chapter 2) https://www.youtube.com/watch?v=oxc-hhqldbe Student Learning Objectives Compare and contrast terms used to describe motion Analyze circular and parabolic motion PHYSICS:THE MOST FUNDAMENTAL

More information

A N D. c h a p t e r 1 2 M O T I O N F O R C E S

A N D. c h a p t e r 1 2 M O T I O N F O R C E S F O R C E S A N D c h a p t e r 1 2 M O T I O N What is a FORCE? A FORCE is a push or pull that acts on an object. A force can cause a resting object to move OR Accelerate a moving object by: changing

More information

PHYSICS 111 SPRING EXAM 1: February 6, 2017; 8:15pm - 9:45pm

PHYSICS 111 SPRING EXAM 1: February 6, 2017; 8:15pm - 9:45pm PHYSICS 111 SPRING 2018 EXAM 1: February 6, 2017; 8:15pm - 9:45pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 20 multiple-choice questions plus 1 extra credit question,

More information

Honors Physics Acceleration and Projectile Review Guide

Honors Physics Acceleration and Projectile Review Guide Honors Physics Acceleration and Projectile Review Guide Major Concepts 1 D Motion on the horizontal 1 D motion on the vertical Relationship between velocity and acceleration Difference between constant

More information

For each of the following questions, give clear and complete evidence for your choice in the space provided.

For each of the following questions, give clear and complete evidence for your choice in the space provided. Name (printed) First Day Stamp For each of the following questions, give clear and complete evidence for your choice in the space provided. 1. An astronomer observes that a certain heavenly body is moving

More information

Name: Class: Date: d. none of the above

Name: Class: Date: d. none of the above Name: Class: Date: H Phys quiz Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following is the cause of an acceleration? a. speed b. inertia

More information

Newton. Galileo THE LAW OF INERTIA REVIEW

Newton. Galileo THE LAW OF INERTIA REVIEW Galileo Newton THE LAW OF INERTIA REVIEW 1 MOTION IS RELATIVE We are moving 0 m/s and 30km/s Find the resultant velocities MOTION IS RELATIVE Position versus Time Graph. Explain how the car is moving.

More information

CHAPTER 2: Describing Motion: Kinematics in One Dimension

CHAPTER 2: Describing Motion: Kinematics in One Dimension CHAPTER : Describing Motion: Kinematics in One Dimension Answers to Questions 1. A car speedometer measures only speed. It does not give any information about the direction, and so does not measure velocity..

More information

F 2 = 26 N.What third force will cause the object to be in equilibrium (acceleration equals zero)?

F 2 = 26 N.What third force will cause the object to be in equilibrium (acceleration equals zero)? FLEX Physical Science AP Physics C Mechanics - Midterm 1) If you set the cruise control of your car to a certain speed and take a turn, the speed of the car will remain the same. Is the car accelerating?

More information

Yanbu University College. General Studies Department. Phsc001 Course (111) Chapter2 (forces) Worksheet Solutions

Yanbu University College. General Studies Department. Phsc001 Course (111) Chapter2 (forces) Worksheet Solutions 1 Yanbu University College General Studies Department Phsc001 Course (111) Chapter2 (forces) Worksheet Solutions 2 Chapter 2 Worksheet Part 1 Matching: Match the definitions with the given concepts. 1.

More information

Rutgers University Department of Physics & Astronomy. 01:750:271 Honors Physics I Fall Lecture 7 JJ II. Home Page. Title Page.

Rutgers University Department of Physics & Astronomy. 01:750:271 Honors Physics I Fall Lecture 7 JJ II. Home Page. Title Page. Rutgers University Department of Physics & Astronomy 01:750:271 Honors Physics Fall 2015 Lecture 7 Page 1 of 31 Midterm 1: Monday October 10th Motion in one, two and three dimensions Forces and Motion

More information

Discussion Question. The Clickers Power Light. Sliding Friction. Normal Force a.k.a. Support Force

Discussion Question. The Clickers Power Light. Sliding Friction. Normal Force a.k.a. Support Force PHY205H1F Summer Physics of Everyday Life Class 2 Force Causes Acceleration Friction Mass and Weight Mass Resists Acceleration Newton s Second Law of Motion Newton s 3 rd how-fraud-drives-up-rates.html

More information

Note on Posted Slides. Net Force. Normal Force a.k.a. Support Force. PHY205H1S Physics of Everyday Life Class 3. Review from Class 1: What is a force?

Note on Posted Slides. Net Force. Normal Force a.k.a. Support Force. PHY205H1S Physics of Everyday Life Class 3. Review from Class 1: What is a force? Note on Posted Slides These are the slides that I intended to show in class on Tue. Jan. 14, 014. They contain important ideas and questions from your reading. Due to time constraints, I was probably not

More information

NEWTON S LAWS OF MOTION

NEWTON S LAWS OF MOTION NAME SCHOOL INDEX NUMBER DATE NEWTON S LAWS OF MOTION 1. 1995 Q21 P1 State Newton s first law of motion (1 mark) 2. 1998 Q22 P1 A body of mass M is allowed to slide down an inclined plane. State two factors

More information

Chapter 2 Review Answer Key

Chapter 2 Review Answer Key Chapter Review Answer Key Select the correct term to complete the sentences. Section.. force. Newton s first law. inertia. net force. newton Section. 6. acceleration 7. Newton s second law Section. 8.

More information

Physics Revision Guide Volume 1

Physics Revision Guide Volume 1 Physics Revision Guide Volume 1 "Many people do not plan to fail, they just fail to plan!" Develop a customized success plan Create necessity in you to take action now Boost your confidence in your revision

More information

Report Team /09/2012

Report Team /09/2012 Report 3082 Next month Felix Baumgartner plans on breaking the world record for high altitude skydiving. He will make his jump from a capsule suspended beneath a balloon, at the edge of space. After Felix

More information

Forces are impossible to see! We can only see the effects! Essentially forces are pushes or pulls.

Forces are impossible to see! We can only see the effects! Essentially forces are pushes or pulls. Forces Workshop In this workshop we will cover the following: a. Names of Forces b. Water and Air resistance c. Upthrust d. Force arrows e. Balanced and unbalanced forces f. Effects of unbalanced forces

More information

Chapter 3: LINEAR MOTION

Chapter 3: LINEAR MOTION Chapter 3: LINEAR MOTION Here we'll consider only the simplest form of motion that along a straight-line path linear motion. Linear Motion (Motion in a straight line, such as falling straight downward)

More information