Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Size: px
Start display at page:

Download "Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon"

Transcription

1 ME 2016 A Spring Semester 2010 Computing Techniques Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In this assignment, you will use a root-finding algorithm in Matlab to solve an engineering problem. The engineering problem is to find the maximum velocity that a Ford Taurus will reach in each of its gears while driving at full throttle up roads with slopes varying between -5% and +20%. The learning objectives of this assignment are: to increase your understanding of root finding methods to learn how to implement root finding methods in Matlab to learn how to solve engineering problems using root finding methods to continue developing as an independent learner of Matlab features to improve your debugging skills Background The overall goal of this assignment is to find the top speed of a car under different combinations of slope and gear. The top speed is reached when the forward force produced by the car engine is equal but opposite to the resistance force due to wind resistance, rolling resistance, and gravity. According to Newton s law, we can then conclude that the acceleration, which is equal to the sum of the forces, is zero. Solving this problem therefore requires that we use a root finding method to determine the point where the engine force is equal to the resistance force. As is shown in the figure below, both of these forces depend on the velocity of the car. In this case, the maximum steady-state velocity in 4 th gear is approximately 63 m/s (227 km/h or 141mph) not bad for a Ford Taurus Engine Force and Resistance Force for a slope of 0 degrees resistance force engine force (1st) engine force (2nd) engine force (3rd) engine force (4th) Force in [N] Velocity in [m/s] Page 1

2 You may recognize the shape of the engine torque-rpm characteristic that we have used previously. Since the drivetrain is converting the engine torque into a forward force, and the drivetrain has a different reduction ratio depending on the gear we are in, you see that the maximum force generated by the engine becomes smaller in higher gears. You have probably experienced this while driving: when the required force is large (e.g., when you are pulling a heavy trailer or when you are going uphill, you need to downshift to allow your car to generate a larger force). The load force looks like a parabola. It is a combination of three forces: a gravitational force component, rolling resistance, and wind resistance. The gravitational force component results from the projection of the gravitational force onto the forward direction of the car. It depends thus on the slope of the road, but is independent of the velocity of the car. F = mg sin( α) with grav slope in % tan( α ) = 100 where m is the mass of the car and g is the gravity constant. The rolling resistance is due to the deformation of the tire some of the energy is converted into heat inside the rubber of the tires (have you ever noticed how your tires get hot after driving on the highway?). The rolling resistance is typically modeled as a constant force proportional to the weight of the car: F rolling = µ mg cos( α) r where µ r is the rolling coefficient. Finally, the wind resistance is the only component of our load model that depends on the velocity of the car. It is given by the formula: 1 F = C ρ Av 2 2 drag D car where C D is the drag coefficient, ρ is the density of air, A is the frontal area of the car, and v is the velocity of the car. The parabolic shape of the load curve in the figure on the previous page is due to quadratic dependence of the drag force on the car velocity. As in assignment HW2, The model for the transmission and differential is an ideal (i.e., no friction losses) gear reduction: ω τ out out = ω / n in = nτ in where the subscript in refers to the torques and velocities closest to the engine, and n is the gear ratio. The wheels are modeled in a similar fashion, as a rigid cylinder rolling without slip over a flat road surface: v F car car = Rω = τ wheel wheel / R where R is the radius of the wheel. A final note: all equations above assume SI units. Program Structure To solve the problem of finding the maximum velocity of the car for each gear, we suggest breaking the problem down into the following Matlab script and functions: Page 2

3 1) The main script, called plot_max_velocities_xyz should adopt the same structure that we have used for all previous assignments: set up the problem, solve the problem, and present the result in a format that is easy to interpret. In the solution portion, the script should iterate through each of combination of gear selection and slope, each time solving the root finding problem and storing the result in a matrix. In the interpretation portion, the script should plot the maximum velocity for each of the gears as a function of slope, as shown below Maximum Steady-State Speed as a Function of Road Surface Slope (ME Chris Paredis) 1st gear 2nd gear 3rd gear 4th gear Maximum Speed [km/h] Slope [%] We recommend that you use the built-in Matlab function for root finding: fzero. It is faster and more robust than any of the methods we have studied in class. Make sure to check the appropriate syntax for the fzero function in the help pages: X = FZERO(FUN,X0). where FUN is the function handle to the function we want to solver and X0 is an initial guess or initial bracket. 2) The model for the engine, called engine_force_xyz: This function should compute the forward force provided by the engine, given the velocity of the car. For a given car velocity, you should use the models provided above to compute the engine RPMs (similar to what you did in HW2). Once you have determined the engine RPMs, you can use the Matlab function that you created for HW2 to compute the corresponding torques and power (NOTE: this Matlab function is available on the course web-site in the solution section of HW2 feel free to use it as is). Once you have computed the engine torque, you again use the appropriate conversions to compute how the engine torque is converted into a forward force acting on the car. This forward force is the output of the function. Since this force depends on both the car velocity and the gear number, these two should be inputs to the function. 3) The load model, called resistance_force_xyz: This function should compute the forces due to wind resistance, rolling resistance, and gravitation, based on the equations provided on page 2. Page 3

4 4) Finally, you need to combine engine_force_xyz and resistance_force_xyz into a function for which the root occurs at the maximum velocity of the car. Since the maximum velocity of the car depends on the slope and gear_number, you should include these in the definition of you function. I suggest using the anonymous functions we discussed in class: This program structure is only a suggestion. Other solution approaches are possible. If you decide to deviate from the structure above, make sure to justify in your report why the structure that you have chosen makes sense. In general, you should try to leverage as much as possible the code that you have developed in the past. Additional Hints: - Avoid copying and pasting lines of codes when you can easily accomplish the same functionality using a for-loop - warning off can get rid of annoying warnings that are generated by the engine_model function. Read the help file for the warning command for more information. - Leverage your previous efforts. Portions of this assignment are similar to portions of assignment HW2. Feel free to build on your past efforts or even the HW2 solutions posted on the course web-site. Parameter Values The same engine and drivetrain parameters as in HW2. In addition, use the following values: gravity constant: 9.81 m/s 2 air density: 1.29 kg/m 3 car mass: 1650 kg (includes occupants and cargo) drag coefficient 0.32 frontal area of the car: 2.2 m 2 rolling coefficient Tasks Task 1: Create the function engine_force_xyz (where XYZ are your initials) The function engine_force_xyz should compute the forward force provided by the engine. Its inputs should be the velocity of the car in [m/s] and the current gear_number (e.g., 1 for first gear, 2 for second gear, etc.). It may be useful to test quickly whether you obtain the same results as are shown in the figure on page 1 of this handout (but this is not a requirement for this HW). Task 2: Create the function resistance_force_xyz (where XYZ are your initials) The function resistance_force_xyz should compute the resistance force experienced by the car due to wind resistance, rolling resistance, and gravity. Its inputs should be the velocity of the car in [m/s] and the slope of the road surface in percent. Again, it may be useful to test quickly whether you obtain the same results as are shown in the figure on page 1 of this handout, but be careful, that curve is for a slope of zero percent. Task 3: Create the script plot_max_velocities_xyz (where XYZ are your initials) The scrip plot_max_velocities_xyz should result in a plot of the maximum velocity that a Ford Taurus will reach in each of its gears while driving up roads with slopes between negative 5% (downhill) and positive 20% (uphill) in 0.5% increments. To implement this functionality, you will need to define an additional function for which the root occurs at the maximum velocity of the car. (see comments on the previous page). Include the resulting graph in your report it should look like the graph on the previous page. Page 4

5 Task 4: Interpretation In your report, provide a short interpretation of your results. Question 1: How does the maximum velocity change as the slope increases? Question 2: At which slope should you down-shift from 4 th to 3 rd gear to maintain the maximum speed? At which slope should you down-shift even further from 3 rd to 2 nd gear? Explain why. Question 3: What happens when you drive up a 15% hill in 4 th gear? How does this manifest itself mathematically in the root finding problem? Report Turn in a brief report in MS Word containing the following: 1. A copy of all your Matlab code. 2. A copy of all your figures you generated. 3. Your answers to all the questions in task A statement of collaboration (see below) include this even if you did not collaborate with anybody Evaluation Criteria A detailed grade sheet for this assignment is provided as a separate file on the course web-site. Print out this sheet, fill in your name, and staple it to the front of your submission. Submission 1. Hardcopy in class: At the beginning of class, hand in a hardcopy that includes the grade sheet and your report. Make sure you staple everything together so that we don t lose anything. (no staple = incorrect submission) 2. T-square: save all your files in a zip-file called HW4.FamilyName.FirstName.zip (replace FamilyName and FirstName with YOUR names) and submit this file in the Assignments section of T-square. The zip-file should contain: your Matlab function and script, and your report. The deadline for electronic submission is at 12noon. Late Submission Remember that the deadline for this assignment will be strictly enforced. After the deadline has passed you will receive a late-penalty. Don t wait until the last minute to get started! We repeat here the policy that is included in the syllabus: Late Submission T-square is set up such that late submissions are accepted until 48 hours after the due date. We will accept late homework but with the following penalties. Submit before 24 hours late and receive 20% off of your grade. Submit before 48 hours late and receive 40% off. For submission more than 48 hours late, no more partial credit will be awarded. If you are submitting late, bring a hardcopy to the office of your instructor. If you plan on submitting late, a quick by the deadline would be appreciated so that we can make appropriate plans for grading your assignment. Collaboration We would like to re-emphasize the policy on collaboration. Collaboration is encouraged. Discussing the assignments with your peers will help you to develop a deeper understanding of the material. However, discussing the assignment does not mean solving it together; it does not mean asking your friend to debug your code for you. I encourage you to discuss how to approach the problem, which Matlab functions to use, or how to interpret the results, but I do expect each student to turn in a report and Matlab functions that reflect the student s individual work. Do not copy code from another student. Do not copy parts of other electronic documents. In general, an activity is acceptable if it promotes learning by you and your peers. For example, Page 5

6 you learn from discussing alternate solution approaches with your friend, but you don't learn from blindly copying your friend's code. To avoid any confusion, each homework solution should explicitly identify the students with whom you collaborated and what the extent of the collaboration was. Any copying on homework and/or exams will be dealt with severely and reported to the Dean of Students No exceptions. If you have questions about this collaboration policy, do not hesitate to ask your instructor. Page 6

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 ME 2016 Sections A-B-C-D Fall Semester 2005 Computing Techniques 3-0-3 Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 Description and Outcomes In this assignment,

More information

PHY131H1F - Class 9. Today, finishing Chapter 5: Kinetic Friction Static Friction Rolling without slipping (intro) Drag

PHY131H1F - Class 9. Today, finishing Chapter 5: Kinetic Friction Static Friction Rolling without slipping (intro) Drag PHY131H1F - Class 9 Today, finishing Chapter 5: Kinetic Friction Static Friction Rolling without slipping (intro) Drag Microscopic bumps and holes crash into each other, causing a frictional force. Kinetic

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

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER Objectives Explain the relationship between power and work. Explain the relationship between power, force, and speed for an object in translational motion. Calculate a device s efficiency in terms of the

More information

First Name: Last Name: Section: 1. March 26, 2008 Physics 207 EXAM 2

First Name: Last Name: Section: 1. March 26, 2008 Physics 207 EXAM 2 First Name: Last Name: Section: 1 March 26, 2008 Physics 207 EXAM 2 Please print your name and section number (or TA s name) clearly on all pages. Show all your work in the space immediately below each

More information

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012 CSCE 155N Fall 2012 Homework Assignment 2: Stress-Strain Curve Assigned: September 11, 2012 Due: October 02, 2012 Note: This assignment is to be completed individually - collaboration is strictly prohibited.

More information

Quiz Number 4 PHYSICS April 17, 2009

Quiz Number 4 PHYSICS April 17, 2009 Instructions Write your name, student ID and name of your TA instructor clearly on all sheets and fill your name and student ID on the bubble sheet. Solve all multiple choice questions. No penalty is given

More information

2.1 Introduction to Simple Machines

2.1 Introduction to Simple Machines 2.1 Introduction to Simple Machines 2.1 Introduction to Simple Machines Simple Machines Unit DO NOT WRITE ANYWHERE IN THIS PACKAGE One of the few properties that separate us from animals is our ability

More information

Simple Car Dynamics. Outline. Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, May 18, 2005

Simple Car Dynamics. Outline. Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, May 18, 2005 Simple Car Dynamics Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, and CMLabs Simulations, Montréal, Canada May 18, 2005 Typeset by FoilTEX May 16th 2005 Outline basics of vehicle dynamics different

More information

Exam 2 Phys Fall 2002 Version A. Name ID Section

Exam 2 Phys Fall 2002 Version A. Name ID Section Closed book exam - Calculators are allowed. Only the official formula sheet downloaded from the course web page can be used. You are allowed to write notes on the back of the formula sheet. Use the scantron

More information

PHYS 111 HOMEWORK #11

PHYS 111 HOMEWORK #11 PHYS 111 HOMEWORK #11 Due date: You have a choice here. You can submit this assignment on Tuesday, December and receive a 0 % bonus, or you can submit this for normal credit on Thursday, 4 December. If

More information

Quiz Number 3 PHYSICS March 11, 2009

Quiz Number 3 PHYSICS March 11, 2009 Instructions Write your name, student ID and name of your TA instructor clearly on all sheets and fill your name and student ID on the bubble sheet. Solve all multiple choice questions. No penalty is given

More information

2. Kinetic friction - The force that acts against an object s motion. - Occurs once static friction has been overcome and object is moving

2. Kinetic friction - The force that acts against an object s motion. - Occurs once static friction has been overcome and object is moving Section 2.14: Friction Friction is needed to move. Without friction, a car would sit in one spot spinning its tires, and a person would not be able to step forward. However, the motion of an object along

More information

Physics 8 Monday, October 12, 2015

Physics 8 Monday, October 12, 2015 Physics 8 Monday, October 12, 2015 HW5 will be due Friday. (HW5 is just Ch9 and Ch10 problems.) You re reading Chapter 12 ( torque ) this week, even though in class we re just finishing Ch10 / starting

More information

EDUCATION DAY WORKBOOK

EDUCATION DAY WORKBOOK Grades 9 12 EDUCATION DAY WORKBOOK It is with great thanks for their knowledge and expertise that the individuals who devised this book are recognized. MAKING MEASUREMENTS Time: Solve problems using a

More information

MECH 3140 Final Project

MECH 3140 Final Project MECH 3140 Final Project Final presentation will be held December 7-8. The presentation will be the only deliverable for the final project and should be approximately 20-25 minutes with an additional 10

More information

Physics 101. Hour Exam I Spring Last Name: First Name Network-ID Discussion Section: Discussion TA Name:

Physics 101. Hour Exam I Spring Last Name: First Name Network-ID Discussion Section: Discussion TA Name: Last Name: First Name Network-ID Discussion Section: Discussion TA Name: Instructions Turn off your cell phone and put it away. Calculators may not be shared. Please keep your calculator on your own desk.

More information

Physics 106 Common Exam 2: March 5, 2004

Physics 106 Common Exam 2: March 5, 2004 Physics 106 Common Exam 2: March 5, 2004 Signature Name (Print): 4 Digit ID: Section: Instructions: nswer all questions. Questions 1 through 10 are multiple choice questions worth 5 points each. You may

More information

Calculus Honors and Introduction to Calculus

Calculus Honors and Introduction to Calculus Calculus Honors and Introduction to Calculus Name: This summer packet is for students entering Calculus Honors or Introduction to Calculus in the Fall of 015. The material represents concepts and skills

More information

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3)

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) 121 Textbook Reference: Knight, Chapter 13.1-3, 6. SYNOPSIS In

More information

Lecture PowerPoints. Chapter 4 Physics: for Scientists & Engineers, with Modern Physics, 4th edition Giancoli

Lecture PowerPoints. Chapter 4 Physics: for Scientists & Engineers, with Modern Physics, 4th edition Giancoli Lecture PowerPoints Chapter 4 Physics: for Scientists & Engineers, with Modern Physics, 4th edition Giancoli 2009 Pearson Education, Inc. This work is protected by United States copyright laws and is provided

More information

AAPT UNITED STATES PHYSICS TEAM AIP F = ma Contest 25 QUESTIONS - 75 MINUTES INSTRUCTIONS

AAPT UNITED STATES PHYSICS TEAM AIP F = ma Contest 25 QUESTIONS - 75 MINUTES INSTRUCTIONS 2014 F = ma Exam 1 AAPT UNITED STATES PHYSICS TEAM AIP 2014 2014 F = ma Contest 25 QUESTIONS - 75 MINUTES INSTRUCTIONS DO NOT OPEN THIS TEST UNTIL YOU ARE TOLD TO BEGIN Use g = 10 N/kg throughout this

More information

Rotational Motion Test

Rotational Motion Test Rotational Motion Test Multiple Choice: Write the letter that best answers the question. Each question is worth 2pts. 1. Angular momentum is: A.) The sum of moment of inertia and angular velocity B.) The

More information

PHY2053 General Physics I

PHY2053 General Physics I PHY2053 General Physics I Section 584771 Prof. Douglas H. Laurence Final Exam May 3, 2018 Name: 1 Instructions: This final exam is a take home exam. It will be posted online sometime around noon of the

More information

Forces and Newton s Laws

Forces and Newton s Laws chapter 3 section 1 Forces Forces and Newton s Laws What You ll Learn how force and motion are related what friction is between objects the difference between mass and weight Before You Read When you hit

More information

Principles of Technology

Principles of Technology Principles of Technology Prime Movers in Mechanical Systems Introduction Force and torque are the two prime movers in any mechanical system. Force is the name given to a push or pull on an object that

More information

FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym

FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym NAME: STUDENT ID: INSTRUCTION 1. This exam booklet has 13 pages. Make sure none are missing 2.

More information

Lab #8: The Unbalanced Wheel

Lab #8: The Unbalanced Wheel Lab #8: The Unbalanced Wheel OBJECTIVE Use observations to calculate the radius of gyration of a wheel. Apply energy models to the dynamics of an unbalanced rotating wheel. Learn new computing skills.

More information

Potential energy. Web page:

Potential energy. Web page: Potential energy Announcements: CAPA homework due at 10pm today New CAPA assignment available at 5pm. Grading questions on Midterm connected with how scantron sheets filled out will need to see Professor

More information

Physics 8 Monday, October 9, 2017

Physics 8 Monday, October 9, 2017 Physics 8 Monday, October 9, 2017 Pick up a HW #5 handout if you didn t already get one on Wednesday. It s due this Friday, 10/13. It contains some Ch9 (work) problems, some Ch10 (motion in a plane) problems,

More information

Chapter 8: Newton s Laws Applied to Circular Motion

Chapter 8: Newton s Laws Applied to Circular Motion Chapter 8: Newton s Laws Applied to Circular Motion Centrifugal Force is Fictitious? F actual = Centripetal Force F fictitious = Centrifugal Force Center FLEEing Centrifugal Force is Fictitious? Center

More information

PHY131H1F - Class 7. Clicker Question

PHY131H1F - Class 7. Clicker Question PHY131H1F - Class 7 Today, Chapter 4, sections 4.1-4.4: Kinematics in One Dimension Kinematics in Two Dimensions Projectile Motion Relative Motion Test Tomorrow night at 6pm [Image from http://www.nap.edu/jhp/oneuniverse/motion_22-23.html

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

Review for 3 rd Midterm

Review for 3 rd Midterm Review for 3 rd Midterm Midterm is on 4/19 at 7:30pm in the same rooms as before You are allowed one double sided sheet of paper with any handwritten notes you like. The moment-of-inertia about the center-of-mass

More information

PHYSICS 221 Fall 2016 EXAM 2: November 02, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #:

PHYSICS 221 Fall 2016 EXAM 2: November 02, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #: PHYSICS 221 Fall 2016 EXAM 2: November 02, 2016 8:15pm 10:15pm Name (printed): Recitation Instructor: Section #: INSTRUCTIONS: This exam contains 25 multiple-choice questions, plus 2 extra-credit questions,

More information

Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1

Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1 Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1 Physics 141. Lecture 18. Course Information. Topics to be discussed today: A

More information

Lab 3: Model based Position Control of a Cart

Lab 3: Model based Position Control of a Cart I. Objective Lab 3: Model based Position Control of a Cart The goal of this lab is to help understand the methodology to design a controller using the given plant dynamics. Specifically, we would do position

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

Family Name (Please print Given Name(s) Student Number Tutorial Group in BLOCK LETTERS) as on student card Code (eg. R3C,etc)

Family Name (Please print Given Name(s) Student Number Tutorial Group in BLOCK LETTERS) as on student card Code (eg. R3C,etc) Family Name (Please print Given Name(s) Student Number Tutorial Group in BLOCK LETTERS) as on student card Code (eg. R3C,etc) PHY131H1S Mid-Term Test version 1 Tuesday, February 24, 2009 Duration: 80 minutes

More information

8.012 Physics I: Classical Mechanics Fall 2008

8.012 Physics I: Classical Mechanics Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 8.012 Physics I: Classical Mechanics Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. MASSACHUSETTS INSTITUTE

More information

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections. Spring '13.

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections. Spring '13. Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections Spring 2013 Back exams, HW solutions, and other useful links can be found at the following website:

More information

PH 2213 : Chapter 05 Homework Solutions

PH 2213 : Chapter 05 Homework Solutions PH 2213 : Chapter 05 Homework Solutions Problem 5.4 : The coefficient of static friction between hard rubber and normal street pavement is about 0.90. On how steep a hill (maximum angle) can you leave

More information

Exam 1 Stats: Average: 60% Approximate letter grade? Add 10%-12% (This is not a curve) This takes into account the HW, Lab, and Grade Replacement.

Exam 1 Stats: Average: 60% Approximate letter grade? Add 10%-12% (This is not a curve) This takes into account the HW, Lab, and Grade Replacement. Lec 11 Return Exam1 Intro Forces Tuesday, February 19, 2019 1:52 PM Exam 1 Stats: Average: 60% Approximate letter grade? Add 10%-12% (This is not a curve) This takes into account the HW, Lab, and Grade

More information

Physics Motion Math. (Read objectives on screen.)

Physics Motion Math. (Read objectives on screen.) Physics 302 - Motion Math (Read objectives on screen.) Welcome back. When we ended the last program, your teacher gave you some motion graphs to interpret. For each section, you were to describe the motion

More information

message seeking volunteers:

message seeking volunteers: E-mail message seeking volunteers: Greetings! I am seeking graduate student volunteers to participate in a pilot study for my thesis work in physics education research. I estimate that the total time involved

More information

Physics 8 Wednesday, October 11, 2017

Physics 8 Wednesday, October 11, 2017 Physics 8 Wednesday, October 11, 2017 HW5 due Friday. It s really Friday this week! Homework study/help sessions (optional): Bill will be in DRL 2C6 Wednesdays from 4 6pm (today). Grace will be in DRL

More information

Vehicle Dynamics CEE 320. Winter 2006 CEE 320 Steve Muench

Vehicle Dynamics CEE 320. Winter 2006 CEE 320 Steve Muench Vehicle Dynamics Steve Muench Outline 1. Resistance a. Aerodynamic b. Rolling c. Grade. Tractive Effort 3. Acceleration 4. Braking Force 5. Stopping Sight Distance (SSD) Main Concepts Resistance Tractive

More information

Physics 8 Friday, November 4, 2011

Physics 8 Friday, November 4, 2011 Physics 8 Friday, November 4, 2011 Please turn in Homework 7. I will hand out solutions once everyone is here. The handout also includes HW8 and a page or two of updates to the equation sheet needed to

More information

Physics 8 Wednesday, October 14, 2015

Physics 8 Wednesday, October 14, 2015 Physics 8 Wednesday, October 14, 2015 HW5 due Friday (problems from Ch9 and Ch10.) Bill/Camilla switch HW sessions this week only (same rooms, same times what changes is which one of us is there): Weds

More information

2.4 Slope and Rate of Change

2.4 Slope and Rate of Change 2.4 Slope and Rate of Change Learning Objectives Find positive and negative slopes. Recognize and find slopes for horizontal and vertical lines. Understand rates of change. Interpret graphs and compare

More information

4.1 - Acceleration. What is acceleration?

4.1 - Acceleration. What is acceleration? 4.1 - Acceleration How do we describe speeding up or slowing down? What is the difference between slowing down gradually and hitting a brick wall? Both these questions have answers that involve acceleration.

More information

Physics 106 Sample Common Exam 2, number 2 (Answers on page 6)

Physics 106 Sample Common Exam 2, number 2 (Answers on page 6) Physics 106 Sample Common Exam 2, number 2 (Answers on page 6) Signature Name (Print): 4 Digit ID: Section: Instructions: Answer all questions. Questions 1 through 12 are multiple choice questions worth

More information

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc.

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc. PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 8 Lecture RANDALL D. KNIGHT Chapter 8. Dynamics II: Motion in a Plane IN THIS CHAPTER, you will learn to solve problems about motion

More information

Physics Circular Motion Problems. Science and Mathematics Education Research Group

Physics Circular Motion Problems. Science and Mathematics Education Research Group F FA ACULTY C U L T Y OF O F EDUCATION E D U C A T I O N Department of Curriculum and Pedagogy Physics Circular Motion Problems Science and Mathematics Education Research Group Supported by UBC Teaching

More information

Chapter 4 Dynamics: Newton s Laws of Motion

Chapter 4 Dynamics: Newton s Laws of Motion Chapter 4 Dynamics: Newton s Laws of Motion Force Newton s First Law of Motion Mass Newton s Second Law of Motion Newton s Third Law of Motion Weight the Force of Gravity; and the Normal Force Applications

More information

Cite power of ten and abbreviation associated with metric prefixes: nano-, micro-, milli-, centi-, kilo-, mega-, and giga-.

Cite power of ten and abbreviation associated with metric prefixes: nano-, micro-, milli-, centi-, kilo-, mega-, and giga-. Reading: Chapter 1 Objectives/HW: The student will be able to: HW: 1 Define and identify significant digits. 1, 2 2 Use the rules of significant digits to determine the correct number of 3 6 significant

More information

Beauchamp College Year 11/12 - A- Level Transition Work. Physics.

Beauchamp College Year 11/12 - A- Level Transition Work. Physics. Beauchamp College Year 11/1 - A- Level Transition Work Physics Gareth.butcher@beauchamp.org.uk Using S.I. units Specification references.1. a) b) c) d) M0.1 Recognise and make use of appropriate units

More information

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING TW32 UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) AUTOMOTIVE PERFORMANCE ENGINEERING and BSC (HONS) MOTORSPORT TECHNOLOGY EXAMINATION SEMESTER 2-2015/2016 VEHICLE DYNAMICS AND ADVANCED ELECTRONICS

More information

ifly Post Field Trip Activity Teacher Instructions Grades 6-8

ifly Post Field Trip Activity Teacher Instructions Grades 6-8 ifly Post Field Trip Activity Teacher Instructions Grades 6-8 Learning Outcomes: Use measured data to predict results Understand the variables that affect terminal velocity Use algebraic reasoning to solve

More information

8.012 Physics I: Classical Mechanics Fall 2008

8.012 Physics I: Classical Mechanics Fall 2008 IT OpenCourseWare http://ocw.mit.edu 8.012 Physics I: Classical echanics Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. ASSACHUSETTS INSTITUTE

More information

Physics 8 Wednesday, October 19, Troublesome questions for HW4 (5 or more people got 0 or 1 points on them): 1, 14, 15, 16, 17, 18, 19. Yikes!

Physics 8 Wednesday, October 19, Troublesome questions for HW4 (5 or more people got 0 or 1 points on them): 1, 14, 15, 16, 17, 18, 19. Yikes! Physics 8 Wednesday, October 19, 2011 Troublesome questions for HW4 (5 or more people got 0 or 1 points on them): 1, 14, 15, 16, 17, 18, 19. Yikes! Troublesome HW4 questions 1. Two objects of inertias

More information

Extra Credit 1: Problems

Extra Credit 1: Problems Extra Credit 1: Problems Due Friday, May 5, to your TA s mailbox Note: You may do either this assignment or Extra Credit 2, but not both. Note 2: In order to get credit for these problems, you must include

More information

Force, Energy Transfer and Machines Hot Wheels Energy Transfer

Force, Energy Transfer and Machines Hot Wheels Energy Transfer Science Unit: Lesson #1: Force, Energy Transfer and Machines Hot Wheels Energy Transfer Lesson Summary Students conduct an experiment to test two research questions related to energy transfer. Using Hot

More information

Name: School: Class: Teacher: Date:

Name: School: Class: Teacher: Date: ame: School: Class: Teacher: Date: Materials needed: Pencil, stopwatch, and scientific calculator d v λ f λ λ Wave Pool Side View During wave cycles, waves crash along the shore every few seconds. The

More information

On my honor, I have neither given nor received unauthorized aid on this examination.

On my honor, I have neither given nor received unauthorized aid on this examination. Instructor(s): Field/inzler PHYSICS DEPATMENT PHY 2053 Final Exam April 27, 2013 Name (print, last first): Signature: On my honor, I have neither given nor received unauthorized aid on this examination.

More information

Welcome back to Physics 211

Welcome back to Physics 211 Welcome back to Physics 211 Today s agenda: Circular Motion 04-2 1 Exam 1: Next Tuesday (9/23/14) In Stolkin (here!) at the usual lecture time Material covered: Textbook chapters 1 4.3 s up through 9/16

More information

Chapter 6, Problem 18. Agenda. Rotational Inertia. Rotational Inertia. Calculating Moment of Inertia. Example: Hoop vs.

Chapter 6, Problem 18. Agenda. Rotational Inertia. Rotational Inertia. Calculating Moment of Inertia. Example: Hoop vs. Agenda Today: Homework quiz, moment of inertia and torque Thursday: Statics problems revisited, rolling motion Reading: Start Chapter 8 in the reading Have to cancel office hours today: will have extra

More information

Announcements. Principle of Work and Energy - Sections Engr222 Spring 2004 Chapter Test Wednesday

Announcements. Principle of Work and Energy - Sections Engr222 Spring 2004 Chapter Test Wednesday Announcements Test Wednesday Closed book 3 page sheet sheet (on web) Calculator Chap 12.6-10, 13.1-6 Principle of Work and Energy - Sections 14.1-3 Today s Objectives: Students will be able to: a) Calculate

More information

Circular Motion. A car is traveling around a curve at a steady 45 mph. Is the car accelerating? A. Yes B. No

Circular Motion. A car is traveling around a curve at a steady 45 mph. Is the car accelerating? A. Yes B. No Circular Motion A car is traveling around a curve at a steady 45 mph. Is the car accelerating? A. Yes B. No Circular Motion A car is traveling around a curve at a steady 45 mph. Which vector shows the

More information

2009 Assessment Report Physics GA 1: Written examination 1

2009 Assessment Report Physics GA 1: Written examination 1 2009 Physics GA 1: Written examination 1 GENERAL COMMENTS The number of students who sat for the 2009 Physics examination 1 was 6868. With a mean score of 68 per cent, students generally found the paper

More information

1 of 5 10/4/2009 8:45 PM

1 of 5 10/4/2009 8:45 PM http://sessionmasteringphysicscom/myct/assignmentprint?assignmentid= 1 of 5 10/4/2009 8:45 PM Chapter 8 Homework Due: 9:00am on Wednesday October 7 2009 Note: To understand how points are awarded read

More information

Chapter Six News! DO NOT FORGET We ARE doing Chapter 4 Sections 4 & 5

Chapter Six News! DO NOT FORGET We ARE doing Chapter 4 Sections 4 & 5 Chapter Six News! DO NOT FORGET We ARE doing Chapter 4 Sections 4 & 5 CH 4: Uniform Circular Motion The velocity vector is tangent to the path The change in velocity vector is due to the change in direction.

More information

AP Unit 8: Uniform Circular Motion and Gravity HW

AP Unit 8: Uniform Circular Motion and Gravity HW Basics 1D Mot. 2D Mot. Forces Energy Moment. Rotation Circ/Grav SHM Waves Circuits AP Unit 8: Uniform Circular Motion and Gravity HW AP Exam Knowledge & Skills (What skills are needed to achieve the desired

More information

Exam 1 is Two Weeks away.here are some tips:

Exam 1 is Two Weeks away.here are some tips: Assignment 4 due Friday like almost every Friday Pre-class due 15min before class like every class Help Room: Here, 6-9pm Wed/Thurs SI: Morton 326, M&W 7:15-8:45pm Office Hours: 204 EAL, 10-11am Wed or

More information

Chapter 9- Static Equilibrium

Chapter 9- Static Equilibrium Chapter 9- Static Equilibrium Changes in Office-hours The following changes will take place until the end of the semester Office-hours: - Monday, 12:00-13:00h - Wednesday, 14:00-15:00h - Friday, 13:00-14:00h

More information

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D)

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D) Physics 23 Spring 212 Answer Sheet Print LAST Name: Rec Sec Letter EM Mini-Test First Name: Recitation Instructor & Final Exam Student ID: Gently remove this page from your exam when you begin. Write clearly

More information

AB Calculus Diagnostic Test

AB Calculus Diagnostic Test AB Calculus Diagnostic Test The Exam AP Calculus AB Exam SECTION I: Multiple-Choice Questions DO NOT OPEN THIS BOOKLET UNTIL YOU ARE TOLD TO DO SO. At a Glance Total Time hour and 5 minutes Number of Questions

More information

w = mg Use: g = 10 m/s 2 1 hour = 60 min = 3600 sec

w = mg Use: g = 10 m/s 2 1 hour = 60 min = 3600 sec The exam is closed book and closed notes. Part I: There are 1 multiple choice questions, 1 point each. The answers for the multiple choice questions are to be placed on the SCANTRON form provided. Make

More information

HSC PHYSICS ONLINE B F BA. repulsion between two negatively charged objects. attraction between a negative charge and a positive charge

HSC PHYSICS ONLINE B F BA. repulsion between two negatively charged objects. attraction between a negative charge and a positive charge HSC PHYSICS ONLINE DYNAMICS TYPES O ORCES Electrostatic force (force mediated by a field - long range: action at a distance) the attractive or repulsion between two stationary charged objects. AB A B BA

More information

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Chapter 9b: Numerical Methods for Calculus and Differential Equations Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Acceleration Initial-Value Problems Consider a skydiver

More information

PHYSICS 111 SPRING EXAM 2: March 6, 2018; 8:15-9:45 pm

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

More information

Newton s Laws of Motion

Newton s Laws of Motion 3 Newton s Laws of Motion Key Concept Newton s laws of motion describe the relationship between forces and the motion of an object. What You Will Learn Newton s first law of motion states that the motion

More information

AP PHYSICS 1. Energy 2016 EDITION

AP PHYSICS 1. Energy 2016 EDITION AP PHYSICS 1 Energy 2016 EDITION Copyright 2016 National Math + Initiative, Dallas, Texas. All rights reserved. Visit us online at www.nms.org. 1 Pre-Assessment Questions Consider a system which could

More information

Exam 3 Practice Solutions

Exam 3 Practice Solutions Exam 3 Practice Solutions Multiple Choice 1. A thin hoop, a solid disk, and a solid sphere, each with the same mass and radius, are at rest at the top of an inclined plane. If all three are released at

More information

Work and Energy. Objectives. Equipment. Theory. In this lab you will

Work and Energy. Objectives. Equipment. Theory. In this lab you will Objectives Work and Energy In this lab you will Equipment explore the relationship between the work done by an applied force and the area under the Force-Position graph. confirm that work is equivalent

More information

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm PHYSICS 221 SPRING 2014 EXAM 1: February 20, 2014; 8:15pm 10:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

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

Dynamics. Newton s First Two Laws of Motion. A Core Learning Goals Activity for Science and Mathematics

Dynamics. Newton s First Two Laws of Motion. A Core Learning Goals Activity for Science and Mathematics CoreModels Dynamics Newton s First Two Laws of Motion A Core Learning Goals Activity for Science and Mathematics Summary: Students will investigate the first and second laws of motion in laboratory activities.

More information

Team-Exercises for DGC 100 Modelica Course

Team-Exercises for DGC 100 Modelica Course Team-Exercises for DGC 100 Modelica Course Hubertus Tummescheit United Technologies Research Center, East Hartford, CT 06108. November 4, 2003 Abstract This document is a preliminary version and is going

More information

Momentum. Physics 211 Syracuse University, Physics 211 Spring 2017 Walter Freeman. February 28, W. Freeman Momentum February 28, / 15

Momentum. Physics 211 Syracuse University, Physics 211 Spring 2017 Walter Freeman. February 28, W. Freeman Momentum February 28, / 15 Momentum Physics 211 Syracuse University, Physics 211 Spring 2017 Walter Freeman February 28, 2017 W. Freeman Momentum February 28, 2017 1 / 15 Announcements Extra homework help hours today: 5:10-6:50

More information

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2 PHY 30 K. Solutions for mid-term test #. Problem 1: The forces acting on the car comprise its weight mg, the normal force N from the road that cancels it, and the static friction force f that provides

More information

Isaac Newton ( )

Isaac Newton ( ) Isaac Newton (1642-1727) In the beginning of 1665 I found the rule for reducing any degree of binomial to a series. The same year in May I found the method of tangents and in November the method of fluxions

More information

SCI 531: AP Physics 1

SCI 531: AP Physics 1 2017 Summer Assignment SCI 531: AP Physics 1 King School SCI 531: AP Physics 1 Summer Assignment Welcome to AP Physics at King! Both AP Physics 1 and C (mechanics) are college level courses that are sure

More information

Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017

Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017 Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page at

More information

Lesson: Energetically Challenged

Lesson: Energetically Challenged Drexel-SDP GK-12 LESSON Lesson: Energetically Challenged Subject Area(s) Data Analysis & Probability, Measurement, Number & Operations, Physical Science, Problem Solving, Science and Technology Associated

More information

SEE the list given for chapter 04 where Newton s laws were introduced.

SEE the list given for chapter 04 where Newton s laws were introduced. PH2213 : Examples from Chapter 5 : Applying Newton s Laws Key Concepts Newton s Laws (basically Σ F = m a ) allow us to relate the forces acting on an object (left-hand side) to the motion of the object,

More information

TO GET CREDIT IN PROBLEMS 2 5 YOU MUST SHOW GOOD WORK.

TO GET CREDIT IN PROBLEMS 2 5 YOU MUST SHOW GOOD WORK. Signature: I.D. number: Name: 1 You must do the first problem which consists of five multiple choice questions. Then you must do three of the four long problems numbered 2-5. Clearly cross out the page

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

Chapter 5 Circular Motion; Gravitation

Chapter 5 Circular Motion; Gravitation Chapter 5 Circular Motion; Gravitation Kinematics of Uniform Circular Motion Dynamics of Uniform Circular Motion Highway Curves, Banked and Unbanked Non-uniform Circular Motion Centrifugation Will be covered

More information

PES Physics 1 Practice Questions Exam 2. Name: Score: /...

PES Physics 1 Practice Questions Exam 2. Name: Score: /... Practice Questions Exam /page PES 0 003 - Physics Practice Questions Exam Name: Score: /... Instructions Time allowed for this is exam is hour 5 minutes... multiple choice (... points)... written problems

More information