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

Size: px
Start display at page:

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

Transcription

1 ME 2016 Sections A-B-C-D Fall Semester 2005 Computing Techniques Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 Description and Outcomes In this assignment, you will create a first model for a complete drivetrain. The model combines the engine model from last week with an automatic transmission, a differential and the wheels. In addition, we will model the load experienced by the car due to air and tire resistance. We will use these models to determine the gear in which the car runs most efficiently. In addition to learning about drive train models, you will refresh your Matlab knowledge about functions and control structures. The learning objectives of this assignment are: to learn how to formulate, solve, and interpret an engineering problem using models to learn about the impact of model accuracy on solution results to learn how to use Matlab to solve engineering problems to continue developing as an independent learner of Matlab features to learn the basics of Matlab functions to learn typical control statements in Matlab: conditions, loops, etc. to learn how to use structures in Matlab Background In this homework assignment, we focus on the drivetrain of a car, specifically the drivetrain of a Ford Taurus V6 3L sedan. The drivetrain consists of the engine, torque converter, transmission, differential, and wheels. Several of these components are pretty complex devices and modeling them accurately is a challenging problem. However, a simple model will be sufficient for the approximate simulations we perform in this class. Next, we discuss each drivetrain component in more detail. Engine Transmission Tires Car Body Torque Converter Differential Engine: The engine is modeled in the same fashion as in assignment 1, namely, a map of specific fuel consumption values as a function of engine speed and torque and bounded by the maximum torque curve. Given an engine speed and torque, the engine map provides us with the Page 1

2 specific fuel consumption. For instance, we determined that at 3000 rpm and 100 Nm the engine consumes 290g/kWh. In this assignment, we are interested in the actual fuel consumption (in g/km), which can be computed using the following equation: bsfc P fc = 3600 v where fc is the fuel consumption (in g/km), bsfc is the brake specific fuel consumption (in g/kwh), P is the power provided by the engine (in W; remember P = τω ), and v is the forward velocity of the car (in m/s). Torque Converter: In this assignment, we assume that the car is cruising at constant velocity it is in steady-state. That means that the torque converter really serves no purpose and can be omitted from the drivetrain model. Transmission: The model of the transmission is a lossless speed reduction with a ratio of n:1. The gear ratio, n, can take on 4 different values corresponding to 1 st through 4 th gear. (We are not modeling the reverse.) An ideal gear reduction is modeled by the following two equations for the rotation speed and torque: ω τout out = ω / n in = nτ in where the subscript in refers to the torques and velocities for the shaft closest to the engine, and n is the gear ratio. For a Ford Taurus, the gear ratios are: gear ratio 1 st gear: 2.77 gear ratio 2 nd gear: 1.54 gear ratio 3 rd gear: 1.00 gear ratio 4 th gear: 0.69 Differential: Since we assume that the car is driving in a straight line, we can model the differential using the exact same equations it simply serves as another gear reduction with a gear ratio of to 1. Wheels: The wheels are modeled as a rigid cylinder rolling without slip over a flat road surface (notice the similarity with the equations for the transmission above): v F car car = Rω = τ wheel wheel / R where R is the radius of the wheel. The wheels of a Ford Taurus have a standard diameter of 16 inches or m. Air and Tire Resistance: To complete the model of the motion of the car, we also need to model the external forces that are acting on the car the forces the engine needs to overcome to keep the car moving. The tire or 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µ r where m is the mass of the car (1650kg), g is the gravity constant (9.81m/s 2 ), and friction coefficient (0.009). Finally, the air or drag resistance is given by the equation: 1 Fdrag = CDρ Av 2 2 Page 2 µ r is the rolling

3 where C D is the drag coefficient (0.32), ρ is the density of air (1.29 kg/m3 ), A is the frontal area of the car (2.2 m 2 ), and v is the velocity of the car (in m/s). Important: Verify that the units of both sides of the equation match. Putting it all together: The Entire Car Model. In this assignment, the goal is to determine how much gas the car uses in a specific gear and at a specific speed. How do we combine all the models discussed above to solve that problem? Well, we know that for a given engine speed and torque, we can determine the fuel consumption from the engine model. The question then remains: what is the torque that the engine needs to provide to run the car at a constant speed corresponding to a given engine speed. The way to compute this is to move through all the drivetrain models from the engine through the transmission, differential and wheels, and back. Additional details are provided in the description of Task 3. One last twist to the story: The models are inaccurate. Remember what we discussed in class: All models are wrong, some are useful. Here too we have made quite a few assumptions and idealizations so that we can be pretty sure that the models are not 100% accurate. If we want to draw conclusions from these models we should take the inaccuracy into account. Assume that both the engine model (bsfc as a function of speed and torque) and the resistance model have an error of at most ±5%. For instance, at 3000 rpm and 100 Nm the specific fuel consumption is not exactly 290g/kWh, but somewhere in the range [275.5, 304.5] g/kwh. Similarly, the total force determined by the resistance model, Ftotal = Frolling + Fdrag, is really within the range [0.95 F,1.05 F ]. This inaccuracy must be taken into account in Task 3 below. total total NOTES: Make sure to use compatible units throughout your computations. It is good practice to use SI units throughout. Since this is only the second homework assignment, we will still provide you with significant scaffolding. That is, we will lead you through the problem step by step. Each assignment, some of the scaffolding will be removed until you can solve the entire assignment by yourself. For instance, in this assignment we will no longer specify that you need to include a header in each of your m-files; you learned that in the previous assignment and are expected to carry that over in all future assignments (and beyond even when you write programs for your coop or full-time job later, you should always include a header). Tasks The main task of this assignment is to create a program that generates the following graph: Fuel Consumption as a Function of Car Velocity for Different Gears (Chris Paredis) 110 fuel consumption in [g/km] gear 1 gear 2 50 gear 3 gear car speed in [km/h] Page 3

4 Task 1: Create the function get_engine_data_xyz (where XYZ are your initials) The function get_engine_data_xyz re-uses some of your program from HW1 to extract an engine model from an Excel file. The function should have as an input the name of the Excel file and as an output a structure containing the following 5 fields: o speed_max_torque: vector of engine speeds in [rpm] (index for max_torque data) o max_torque: corresponding vector of maximum torque values in [Nm] o speed_bsfc: vector of engine speeds in [rpm] (row index for bsfc data) o torque_bsfc: vector of torques in [Nm] (column index for bsfc data) o bsfc: matrix of brake specific fuel consumptions in [g/kwh] These are the same variables as appear in the solution to HW1, but now they appear as fields of a structure (e.g., bsfc becomes engine_map.bsfc). Using a structure allow us to pass a lot of information to a function with only one variable. Yet, all the information is still easily accessible and is stored in an easily comprehensible format. If you are not familiar with Matlab structures, learn more about them at: Task 2: Create the function resistance_model_xyz (where XYZ are your initials) The function resistance_model_xyz implements the model that computes the total resistance force, F total = F rolling + F drag, as a function of the car velocity, v. The input should thus be the car velocity (in m/s) and the output should be the total resistance force (in Nm). Make sure to vectorize your function so that it can accept a vector of velocities as an input and produce a corresponding vector of resistance forces. Task 3: Create the script compute_fuel_efficiency_xyz (where XYZ are your initials) This is the main script. It should create the plot above. For each of the 4 gears, the plot shows a nominal fuel consumption in a solid line and the accuracy bounds in dotted lines. Let s first discuss how the nominal fuel consumption can be plotted. To start, we recognize that the independent variable (along the x-axis) is the car velocity. However, the valid range of velocity values is different for every gear because the valid velocities correspond to the range of valid engine speeds (from 500 to 6000 rpm). Therefore, it is easiest to consider the engine speed as the independent variable and compute both the car velocity and the fuel consumption as a function of engine speed, as is shown in the figure on the right. For a given engine speed, use the transmission model to determine the speed of the shaft between the transmission and differential, then use the differential model to determine the rotational speed of the wheels, and finally the wheel model to determine the forward velocity of the car. From the car velocity, we can compute the total resistance force (load force) resulting from tire and air resistance. This load force can then be translated back to a corresponding engine torque by using the wheel model, the differential model, and the transmission model (traversing the models in the opposite order as for the speeds). Once we have the engine speed and torque, then the engine model provides us with the fuel consumption. Finally, the specific fuel consumption (bsfc) can be converted into the fuel consumption (fc in g/km), which can be plotted as a function of the car velocity (an intermediate result of the computations outlined above). Task 4: Including Uncertainty Bounds Page 4 ωengine Engine bsfc = get_bsfc( ω, τ ) engine τ engine Transmission engine ωdiff = ω / n and τ = τ / n engine trans engine wheel trans ω diff Differential Wheel τ diff ω = ω / n and τ = τ / n wheel diff diff diff wheel diff v = ω R and τ = F R car wheel wheel wheel load wheel Air and Rolling Resistance F ω wheel load v car τ wheel F load = resistance_model( v ) car

5 The computations in Task 3 result in the nominal results the solid lines in the graph. To add the uncertainty bounds (the dotted lines), we repeat the same computations but considering the uncertainty bounds for both the resistance_model() and the get_bsfc() model. We need to consider the worst and best case combination of errors in these two models. When is the fuel consumption the largest? Clearly, the error will be large when the error is at the upper accuracy bound of the bsfc model (i.e, nominal bsfc + maximum error). But for which resistance force is the fuel consumption the largest for the nominal force plus or minus the maximum error? Think about it and verify your answer by testing it in Matlab. Remember that we assume a maximum error of ±5%. Once you have determined the maximum and minimum error on the fuel consumption, add the upper and lower bounds to your plot. Task 5: Interpretation of the Plot Answer each of the following 4 questions, and make sure to justify your answer. Question 1: Assuming that the nominal models are accurate, rank the gears from most to least efficient for a car velocity of 20km/h. Question 2: Does your answer to question 1 change when considering the accuracy bounds? Question 3: If one wants to drive as efficiently as possible, which gear should one use, and at which velocity should one drive? Answer the question twice: 1) considering the nominal model only; 2) considering the error bounds. Question 4: Some politicians have suggested lowering the speed limit again from 70mph (112km/h) to 55mph (88km/h) with the claim that this will save energy. Is this claim justified? Report Turn in a brief report in MS Word containing the following: 1. All your Matlab scripts and functions (Cut and Paste them into MS Word) 2. A copy of the figures (use the Edit / Copy Figure in the figure window, and paste into your Word document). 3. The answers to the questions in Task 5 4. A statement of collaboration (see below) 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 to the front of your submission. Submission Double Submission: 1. Hardcopy in class: At the beginning of class, hand in a hardcopy that includes the grade sheet and your report. 2. WebCT: zip all your files in a folder called HW2.FamilyName.FirstName.zip (replace FamilyName and FirstName with YOUR names) and submit this file in the Homework section of WebCT. The zip-file should contain: your Matlab script and your report. The deadline for electronic submission is 12 noon. Late Submission Remember that the deadline on this assignment will be strictly enforced. After 12 noon on Friday September 16, you will no longer be able to upload your work to WebCT, and you will receive a penalty. Don t wait until the last minute to get started! We repeat here the policy that is included in the syllabus: Late Submission WebCT will be set up such that late submissions are not accepted. We strongly encourage you to submit homework on time. We will accept late homework, but with the following penalties. Submit by noon Saturday and receive 20% off of your grade. Submit by noon Sunday and receive Page 5

6 40% off. Submissions after noon on Sunday receive a zero. If you are submitting late, and are in section A or C, bring a hardcopy to Dr. Paredis office (MARC 256), and your zip file to chris.paredis@me.gatech.edu. If you are in section B, bring your hardcopy to Dr. Rosen s office (MARC 252) and your zip file to david.rosen@me.gatech.edu. If you are in section D, bring your hardcopy to Dr. Hahn s office (Love 123) and your zip file to steven.hahn@me.gatech.edu. The time-stamp on your message will be considered as your submission time. 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, and it definitely does not include solving it together and then copying the solution from each other. 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. To avoid any confusion, please, add to your report a short section identifying with whom you collaborated and what the extent of the collaboration was. Any copying on homework 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 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon ME 2016 A Spring Semester 2010 Computing Techniques 3-0-3 Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In

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

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

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

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

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

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

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

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

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 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

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

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

Most people said that they understand force and acceleration. GOOD!

Most people said that they understand force and acceleration. GOOD! Questions and Answers on Dynamics 3/17/98 Thanks to the students who submitted questions and comments! I have grouped them by topic and shortened some of the long questions/comments. Please feel free to

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

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

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

Thermodynamics I Spring 1432/1433H (2011/2012H) Saturday, Wednesday 8:00am - 10:00am & Monday 8:00am - 9:00am MEP 261 Class ZA

Thermodynamics I Spring 1432/1433H (2011/2012H) Saturday, Wednesday 8:00am - 10:00am & Monday 8:00am - 9:00am MEP 261 Class ZA Thermodynamics I Spring 1432/1433H (2011/2012H) Saturday, Wednesday 8:00am - 10:00am & Monday 8:00am - 9:00am MEP 261 Class ZA Dr. Walid A. Aissa Associate Professor, Mech. Engg. Dept. Faculty of Engineering

More information

Moment of Inertia: Rotational Energy

Moment of Inertia: Rotational Energy Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Moment of Inertia: Rotational Energy Name Partners Pre-Lab You are required to finish this section before coming to the lab; it will

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

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

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

Sampling Distributions of the Sample Mean Pocket Pennies

Sampling Distributions of the Sample Mean Pocket Pennies You will need 25 pennies collected from recent day-today change Some of the distributions of data that you have studied have had a roughly normal shape, but many others were not normal at all. What kind

More information

Drag Forces on Cars. Figure 1: Cars of different shapes

Drag Forces on Cars. Figure 1: Cars of different shapes Drag Forces on Cars Figure 1: Cars of different shapes Purpose: To measure the drag force and the drag coefficient on different car models using a wind tunnel and assess the effects of speed and shape

More information

Required Textbook. Grade Determined by

Required Textbook. Grade Determined by Physics 273 Honors (Spring 2015) (4 Credit Hours) Fundamentals of Physics II Syllabus available on BlackBoard http://webcourses.niu.edu/ under Course information Name: Prof. Omar Chmaissem (sha-my-sim)

More information

Electric Vehicle Performance Power and Efficiency

Electric Vehicle Performance Power and Efficiency Electric Vehicle Performance Power and Efficiency 1 Assignment a) Examine measurement guide and electric vehicle (EV) arrangement. b) Drive the route according to teacher s instruction and download measured

More information

June If you want, you may scan your assignment and convert it to a.pdf file and it to me.

June If you want, you may scan your assignment and convert it to a.pdf file and  it to me. Summer Assignment Pre-Calculus Honors June 2016 Dear Student: This assignment is a mandatory part of the Pre-Calculus Honors course. Students who do not complete the assignment will be placed in the regular

More information

Physics 8 Monday, September 26, 2011

Physics 8 Monday, September 26, 2011 Physics 8 Monday, September 26, 2011 Midterm is canceled. There will be a Homework #3.5 instead. Homework #3 stops after problem 18. Problems 19 28 will move to Homework #3 1 2. Gradebook data (only your

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

Recitation Questions 1D Motion (part 1)

Recitation Questions 1D Motion (part 1) Recitation Questions 1D Motion (part 1) 18 January Question 1: Two runners (This problem is simple, but it has the same template as most of the problems that you ll be doing for this unit. Take note of

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

MAHAPATRA218FALL12 ( MPMAHAPATRA218FALL12 )

MAHAPATRA218FALL12 ( MPMAHAPATRA218FALL12 ) Logged in as Rupak Mahapatra, Instructor Help Log Out MAHAPATRA218FALL12 ( MPMAHAPATRA218FALL12 ) My Courses Course Settings Course Home Assignments Roster Gradebook Item Library University Physics with

More information

Possible Prelab Questions.

Possible Prelab Questions. Possible Prelab Questions. Read Lab 2. Study the Analysis section to make sure you have a firm grasp of what is required for this lab. 1) A car is travelling with constant acceleration along a straight

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

MATH 341, Section 001 FALL 2014 Introduction to the Language and Practice of Mathematics

MATH 341, Section 001 FALL 2014 Introduction to the Language and Practice of Mathematics MATH 341, Section 001 FALL 2014 Introduction to the Language and Practice of Mathematics Class Meetings: MW 9:30-10:45 am in EMS E424A, September 3 to December 10 [Thanksgiving break November 26 30; final

More information

Physics 273 (Fall 2013) (4 Credit Hours) Fundamentals of Physics II

Physics 273 (Fall 2013) (4 Credit Hours) Fundamentals of Physics II Physics 273 (Fall 2013) (4 Credit Hours) Fundamentals of Physics II Syllabus available on BlackBoard http://webcourses.niu.edu/ under Course information Name: Prof. Omar Chmaissem (sha- my- sim) Email:

More information

Welcome to Physics 161 Elements of Physics Fall 2018, Sept 4. Wim Kloet

Welcome to Physics 161 Elements of Physics Fall 2018, Sept 4. Wim Kloet Welcome to Physics 161 Elements of Physics Fall 2018, Sept 4 Wim Kloet 1 Lecture 1 TOPICS Administration - course web page - contact details Course materials - text book - iclicker - syllabus Course Components

More information

Determination of Density 1

Determination of Density 1 Introduction Determination of Density 1 Authors: B. D. Lamp, D. L. McCurdy, V. M. Pultz and J. M. McCormick* Last Update: February 1, 2013 Not so long ago a statistical data analysis of any data set larger

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

University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline

University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline University of Macau Department of Electromechanical Engineering MECH316 Heat Transfer Syllabus 2 nd Semester 2011/2012 Part A Course Outline Compulsory course in Electromechanical Engineering Course description:

More information

HOW TO GET A GOOD GRADE ON THE MME 2273B FLUID MECHANICS 1 EXAM. Common mistakes made on the final exam and how to avoid them

HOW TO GET A GOOD GRADE ON THE MME 2273B FLUID MECHANICS 1 EXAM. Common mistakes made on the final exam and how to avoid them HOW TO GET A GOOD GRADE ON THE MME 2273B FLUID MECHANICS 1 EXAM Common mistakes made on the final exam and how to avoid them HOW TO GET A GOOD GRADE ON THE MME 2273B EXAM Introduction You now have a lot

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

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections. Fall '17.

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections. Fall '17. Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections Fall 2017 All course materials are available on the RPI Learning Management System (LMS) website.

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

Astronomy 001 Online SP16 Syllabus (Section 8187)

Astronomy 001 Online SP16 Syllabus (Section 8187) Astronomy 001 Online SP16 Syllabus (Section 8187) Instructor: Elizabeth Bell Email (best way to contact me): bellea@wlac.edu Classroom: online Office Hours: online by appointment Prerequisite: None REQUIRED:

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

Fall 2014: PHYSICS 170 GENERAL PHYSICS I

Fall 2014: PHYSICS 170 GENERAL PHYSICS I Fall 2014: PHYSICS 170 GENERAL PHYSICS I MTWF 9:30-10:20 am (Section 1) WAT 420 Instructor: Milincic Radovan (milincic@hawaii.edu) Office hours (tentative): MW 10:25 11:30 PSB 204 Course description: This

More information

first name (print) last name (print) brock id (ab17cd) (lab date)

first name (print) last name (print) brock id (ab17cd) (lab date) (ta initials) first name (print) last name (print) brock id (ab17cd) (lab date) Experiment 2 Harmonic motion Prelab preparation Print a copy of this experiment to bring to your scheduled lab session. The

More information

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections. Fall '10.

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections. Fall '10. Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Monday / Thursday Sections Fall 2010 All course materials are available on the RPI Learning Management System (LMS) website.

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

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

Introduction to Uncertainty and Treatment of Data

Introduction to Uncertainty and Treatment of Data Introduction to Uncertainty and Treatment of Data Introduction The purpose of this experiment is to familiarize the student with some of the instruments used in making measurements in the physics laboratory,

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

Physics 8 Monday, September 16, 2013

Physics 8 Monday, September 16, 2013 Physics 8 Monday, September 16, 2013 Today: ch5 (energy). Read ch6 (relative motion) for Weds. Handing out printed HW3 now due Friday. (I put the PDF up online over the weekend.) Learning physics is both

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

E Mathematics Operations & Applications: D. Data Analysis Activity: Data Analysis Rocket Launch

E Mathematics Operations & Applications: D. Data Analysis Activity: Data Analysis Rocket Launch Science as Inquiry: As a result of activities in grades 5-8, all students should develop Understanding about scientific inquiry. Abilities necessary to do scientific inquiry: identify questions, design

More information

CSE 241 Class 1. Jeremy Buhler. August 24,

CSE 241 Class 1. Jeremy Buhler. August 24, CSE 41 Class 1 Jeremy Buhler August 4, 015 Before class, write URL on board: http://classes.engineering.wustl.edu/cse41/. Also: Jeremy Buhler, Office: Jolley 506, 314-935-6180 1 Welcome and Introduction

More information

AP Physics 2 Summer Assignment

AP Physics 2 Summer Assignment AP Physics 2 Summer Assignment Welcome to AP Physics 2! It is a college level physics course that is fun, interesting and challenging on a level you ve not yet experienced. This summer assignment will

More information

Big Idea 4: Interactions between systems can result in changes in those systems. Essential Knowledge 4.D.1: Torque, angular velocity, angular

Big Idea 4: Interactions between systems can result in changes in those systems. Essential Knowledge 4.D.1: Torque, angular velocity, angular Unit 7: Rotational Motion (angular kinematics, dynamics, momentum & energy) Name: Big Idea 3: The interactions of an object with other objects can be described by forces. Essential Knowledge 3.F.1: Only

More information

11.3 Solving Radical Equations

11.3 Solving Radical Equations Locker LESSON 11. Solving Radical Equations Common Core Math Standards The student is expected to: A-REI. Solve simple rational and radical equations in one variable, and give examples showing how extraneous

More information

Elastic and Inelastic Collisions

Elastic and Inelastic Collisions Elastic and Inelastic Collisions - TA Version Physics Topics If necessary, review the following topics and relevant textbook sections from Serway / Jewett Physics for Scientists and Engineers, 9th Ed.

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

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

Welcome to Physics 211! General Physics I

Welcome to Physics 211! General Physics I Welcome to Physics 211! General Physics I Physics 211 Fall 2015 Lecture 01-1 1 Physics 215 Honors & Majors Are you interested in becoming a physics major? Do you have a strong background in physics and

More information

MATH 251 Ordinary and Partial Differential Equations Summer Semester 2017 Syllabus

MATH 251 Ordinary and Partial Differential Equations Summer Semester 2017 Syllabus MATH 251 Ordinary and Partial Differential Equations Summer Semester 2017 Syllabus Course Description: Ordinary and Partial Differential Equations. First and second order equations; series solutions; Laplace

More information

UNIVERSITY OF MANITOBA. All questions are of equal value. No marks are subtracted for wrong answers.

UNIVERSITY OF MANITOBA. All questions are of equal value. No marks are subtracted for wrong answers. (3:30 pm 6:30 pm) PAGE NO.: 1 of 7 All questions are of equal value. No marks are subtracted for wrong answers. Record all answers on the computer score sheet provided. USE PENCIL ONLY! Black pen will

More information

41. Sim Reactions Example

41. Sim Reactions Example HSC Chemistry 7.0 41-1(6) 41. Sim Reactions Example Figure 1: Sim Reactions Example, Run mode view after calculations. General This example contains instruction how to create a simple model. The example

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

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

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

Algorithm evaluation: Figure 1:

Algorithm evaluation: Figure 1: Final Exam The water bottle rocket competition. Due date for electronic submission is Tuesday December 13th of 2011 at 12pm. This is the time by which the electronic report submission must be done. We

More information

Drive-train Basics. Team 1640 Clem McKown - mentor October 2009 (r3)

Drive-train Basics. Team 1640 Clem McKown - mentor October 2009 (r3) Drive-train Basics Team 1640 Clem McKown - mentor October 2009 (r3) Topics What s a Drive-train? Basics Components Propulsion Drivetrain Model Center of Mass Considerations Automobile versus robot tank

More information

Design a SSV. Small solar vehicle. Case SSV part 1

Design a SSV. Small solar vehicle. Case SSV part 1 1 Design a SSV Small solar vehicle Case SSV part 1 2 Contents 1. The characteristics of the solar panel... 4 2. Optimal gear ratio... 10 3. Bisection method... 14 4. Sankey diagrams... 18 A) Sankey diagram

More information

AMME3500: System Dynamics & Control

AMME3500: System Dynamics & Control Stefan B. Williams May, 211 AMME35: System Dynamics & Control Assignment 4 Note: This assignment contributes 15% towards your final mark. This assignment is due at 4pm on Monday, May 3 th during Week 13

More information

LAB 05B: Friction 2 times PURPOSE BACKGROUND MATERIALS PRELIMINARY QUESTIONS: (TO DO BEFORE THE LAB!!) Lab 05B: Friction 1/5 Mr.

LAB 05B: Friction 2 times PURPOSE BACKGROUND MATERIALS PRELIMINARY QUESTIONS: (TO DO BEFORE THE LAB!!) Lab 05B: Friction 1/5 Mr. LAB 05B: Friction 2 times PURPOSE To investigate how friction is related to other variable such as the normal force, weight, and surface coefficients. In this experiment we will determine the static and

More information

As we begin to work on research-based assignments and to deal with nature s complexity, it is

As we begin to work on research-based assignments and to deal with nature s complexity, it is As we begin to work on research-based assignments and to deal with nature s complexity, it is worthwhile to reflect on a quote from Melville s Moby Dick: As for me, I am tormented with an everlasting itch

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 SPRING 2014

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

More information

Displacement, Velocity, and Acceleration

Displacement, Velocity, and Acceleration Displacement, Velocity, and Acceleration (WHERE and WHEN?) I m not going to teach you anything today that you don t already know! (basically) Practice: 7.1, 7.5, 7.7, 7.9, 7.11, 7.13 Do you guys remember

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

HIRES 2017 Syllabus. Instructors:

HIRES 2017 Syllabus. Instructors: HIRES 2017 Syllabus Instructors: Dr. Brian Vant-Hull: Steinman 185, 212-650-8514, brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650-6295, haizenman@ccny.cuny.edu Dr. Tarendra Lakhankar:

More information

Unit 7 Trigonometry Project Name Key Project Information

Unit 7 Trigonometry Project Name Key Project Information Unit 7 Trigonometry Project Name Key Project Information What is it? This project will be a series of tasks that you must complete on your own. Specific instructions are given for each task, but all must

More information

Assignment 4.2 Frictional Forces CONCEPTUAL QUESTIONS: 1. What is the SI unit of the coefficient of friction (μ s or μ k )?

Assignment 4.2 Frictional Forces CONCEPTUAL QUESTIONS: 1. What is the SI unit of the coefficient of friction (μ s or μ k )? CONCEPTUAL QUESTIONS: 1. What is the SI unit of the coefficient of friction (μ s or μ k )? 2. Tennis is played on clay, grass, and hard surfaces. Please explain why you think tennis players have or don

More information

Physics 141. Lecture 8.

Physics 141. Lecture 8. Physics 141. Lecture 8. Conservation of energy! Changing kinetic energy into thermal energy. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 08, Page 1 Outline.

More information

ORF 363/COS 323 Final Exam, Fall 2016

ORF 363/COS 323 Final Exam, Fall 2016 Name: Princeton University Instructor: A.A. Ahmadi ORF 363/COS 323 Final Exam, Fall 2016 January 18, 2017 AIs: B. El Khadir, G. Hall, Z. Li, K. Wang, J. Ye, J. Zhang 1. Please write out and sign the following

More information

Assignment 9. to roll without slipping, how large must F be? Ans: F = R d mgsinθ.

Assignment 9. to roll without slipping, how large must F be? Ans: F = R d mgsinθ. Assignment 9 1. A heavy cylindrical container is being rolled up an incline as shown, by applying a force parallel to the incline. The static friction coefficient is µ s. The cylinder has radius R, mass

More information

Exercise Torque Magnitude Ranking Task. Part A

Exercise Torque Magnitude Ranking Task. Part A Exercise 10.2 Calculate the net torque about point O for the two forces applied as in the figure. The rod and both forces are in the plane of the page. Take positive torques to be counterclockwise. τ 28.0

More information

Lesson 14: Friction. a) Fill in the table that follows by constructing a force diagram for the block (the system) for these five situations.

Lesson 14: Friction. a) Fill in the table that follows by constructing a force diagram for the block (the system) for these five situations. Lesson 14: Friction 14.1 Observe and Find a Pattern Perform the following experiment: Rest a wooden block (or some other object, like your shoe) on a table. Attach a large spring scale to a string attached

More information

Planar Rigid Body Kinematics Homework

Planar Rigid Body Kinematics Homework Chapter 2 Planar Rigid ody Kinematics Homework Freeform c 2016 2-1 2-2 Freeform c 2016 Homework 2. Given: The pulley shown below freely rotates about point C and interacts with two rubber belts (one horizontal,

More information

Physics 141 Course Information

Physics 141 Course Information Physics 141 Course Information General Physics I - Mechanics Spring 2009 Instructors: Office Hours: Textbook: Online Homework: Disclaimer: Nikos Varelas 2134 SES (312) 996-3415 varelas@uic.edu Adrian Barkan

More information

Dynamics of Rotational Motion

Dynamics of Rotational Motion Chapter 10 Dynamics of Rotational Motion PowerPoint Lectures for University Physics, 14th Edition Hugh D. Young and Roger A. Freedman Lectures by Jason Harlow Learning Goals for Chapter 10 Looking forward

More information

Lab Partner(s) TA Initials (on completion) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE

Lab Partner(s) TA Initials (on completion) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE 117 Textbook Reference: Walker, Chapter 10-1,2, Chapter 11-1,3 SYNOPSIS

More information

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

M1-Lesson 8: Bell Curves and Standard Deviation

M1-Lesson 8: Bell Curves and Standard Deviation M1-Lesson 8: Bell Curves and Standard Deviation 1. Read over the description of a bell curve and then mark the picture with the characteristics of the curve. Which characteristic was confusing for you?

More information

https://njctl.org/courses/science/ap-physics-c-mechanics/attachments/summerassignment-3/

https://njctl.org/courses/science/ap-physics-c-mechanics/attachments/summerassignment-3/ AP Physics C Summer Assignment 2017 1. Complete the problem set that is online, entitled, AP C Physics C Summer Assignment 2017. I also gave you a copy of the problem set. You may work in groups as a matter

More information

Solar Open House Toolkit

Solar Open House Toolkit A Solar Open House is an informal meet and greet at a solar homeowner s home. It is an opportunity for homeowners who are considering going solar to see solar energy at work, ask questions about the process

More information

Physics 2048 Test 3 Dr. Jeff Saul Spring 2001

Physics 2048 Test 3 Dr. Jeff Saul Spring 2001 Physics 248 Test 3 Dr. Jeff Saul Spring 21 Name: Table: Date: READ THESE INSTRUCTIONS BEFORE YOU BEGIN Before you start the test, WRITE YOUR NAME ON EVERY PAGE OF THE EXAM. Calculators are permitted, but

More information

Physics 2A (Fall 2012) Chapter 2: Motion in One Dimension

Physics 2A (Fall 2012) Chapter 2: Motion in One Dimension Physics 2A (Fall 2012) Chapter 2: Motion in One Dimension Whether you think you can or think you can t, you re usually right. Henry Ford It is our attitude at the beginning of a difficult task which, more

More information

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement Experiment 0 ~ Introduction to Statistics and Excel Tutorial Many of you already went through the introduction to laboratory practice and excel tutorial in Physics 1011. For that reason, we aren t going

More information

Physics 141. Lecture 8. Outline. Course Information. Conservation of energy! Changing kinetic energy into thermal energy.

Physics 141. Lecture 8. Outline. Course Information. Conservation of energy! Changing kinetic energy into thermal energy. Physics 141. Lecture 8. Conservation of energy! Changing kinetic energy into thermal energy. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 08, Page 1 Outline.

More information