Old Dominion University Physics 420 Spring 2010

Size: px
Start display at page:

Download "Old Dominion University Physics 420 Spring 2010"

Transcription

1 Projects Structure o Project Reports: 1 Introducton. Brely summarze the nature o the physcal system. Theory. Descrbe equatons selected or the project. Dscuss relevance and lmtatons o the equatons. 3 Method. Descrbe brely the algorthm and how t s mplemented n the program. 4 Vercaton o a program. Conrm that your program s not ncorrect by consderng specal cases and by gvng at least one comparson to a hand calculaton or known result. 5 Results. Show the results n graphcal or tabular orm. Addtonal runs can be ncluded n an appendx. Dscuss results. 6 Analyss. Summarze your results and explan them n smple physcal terms whenever possble. 7 Crtque. Summarze the mportant concepts or whch you ganed a better understandng and dscuss the numercal or computer technques you learned. Make specc comments on the assgnment and your suggestons or mprovements or alternatves. 8 Appendx. Gve a typcal lstng o your program. The program should nclude your name and date, and be sel-explanatory (comments, structure) as possble. The report should be as concse as possble. 1

2 Project 1: A smple projectle moton (no ar resstance) (Due on Frday, February 1, 1 by 13:3) A Brtsh navy shp s about 1 nautcal mle rom a ort deendng Tortuga. (In 17th century Tortuga was one o the largest prate strongholds). The ortress s located 5. meters above the sea level, wth the walls as hgh as 6. meters. There s an armory house located 1. meters beyond the ort walls. The captan o the navy shp knows that a drect ht o the armory house (stued wth barrels o rum) may orce prates to surrender. The shp can re cannons at the muzzle speed o v= m/s. Let's suppose that the captan can dsregard ar resstance n the problem (We wll consder the eect o the ar resstance later). 1 At what angle rom the horzontal must the cannons be red to ht the armory? (Use one o methods or solvng non-lnear equatons) Is t mportant to take nto account that the shp s actually movng toward the ort wth the speed about knots? (1 knot = 1 nautcal mle/hour = 1.85 km/h). The armory s dmensons are 8.m*8.m*3.m. 3 What would you do you were the captan o the navy shp? 4 Bonus: Evaluate the mportance o the eect o ar resstance (Back o the Envelope Physcs). Equatons: In the smplest case (wth no ar resstance) the D moton o a projectle s descrbe by a system o equatons x = x + ( v cos + v ) t θ shp gt y = y + ( v snθ ) t Elmnatng the tme rom the equatons gves x x g x x y sn y + v θ = v cosθ + v cos shp v θ + vshp Solvng ths non-lnear equaton or the angle θ would gve the rght shootng angle to ht a target. In the case y = y and v = a very smple analytc soluton can be ound n most textbook θ shp 1 g( x x ) arcsn v = Ths smple case can be used to test numercal solutons when y = y and v =. shp

3 Project : Projectle moton wth ar resstance (Due on Wednesday, March 5, 1 by 1:) Wrte a program that smulates the projectle moton n the (x,y) plane wth allowng or ar resstance, varyng ar densty and wnd. The ampltude o ar resstance orce on an object movng wth speed v can be approxmated by F drag =-.5Cρ Av, where ρ stands or ar densty (ρ =1.5 kg/m 3 at sea level), and A s the cross secton. The drag coecent C depends on an object shape and or many objects t can be approxmated by a value wthn Use Runge-Kutta method as a prmary method or solvng a system o derental equatons. Applcaton: Study the trajectory o shells o one o the largest cannons "Parskanone" used durng the Frst World War. 1 Determne the angle (between and 9 degrees) that gves the maxmum range or "Parskanone". For ths angle calculate tme o lght and max alttude o the shells. For the angle calculated n the rst part, study the eect o ar densty, and varable ar densty on the trajectory (thus you run three calculatons: no ar resstance, ar resstance wth constant ar densty, varable ar densty). 3 Dscuss the accuracy o "Parskanone,.e. how much the ollowng eects would aect the accuracy: varatons n the ar densty (day/nght temperature, ran), wnd, and ntal speed. 4 Extra credt. Utlze an adaptve step-sze control. Use ether the doublng technque wth 4 th order Runge-Kutta, or Fehlberg s 5 th order Runge-Kutta wth error estmaton. Reerence normaton: The shell mass - 94 kg., ntal speed - 16m/s, calber - 1 mm, and the C coecent s about.1. Approxmate the densty o the atmosphere as ρ = ρ *exp(-y/y ), where y s the current alttude, y = 1.*1 4 m, and ρ s ar densty at sea level (y=). 3

4 Project 3: Random walks n two dmensons (Due on Monday, Aprl 5, 1 by 13:3) Part 1: Duson (smple random walk). Wrte a program that smulates a random D walk wth the same step sze. Four drectons are possble (N, E, S, W). Your program wll nvolve two ntegers, K s the number o random walks to be taken and N s the maxmum number o steps n a sngle walk. Run your program wth at least K >= 1. Fnd the average dstance R to be rom the orgn pont ater N steps. Plot the mean dstance travelled R versus the number o taken steps. Assume that R has the asymptotc dependence as R~N α, and estmate the exponent α. Extra credt (1 pont): consder a smple random walk n 1D (two drectons o moton) and 3D (three dmensons, sx drectons o moton). What wll be the exponent α or 1D and 3D. Compare your results wth the D case. Part : Random walk on a D crystal. Consder a two dmenson lattce o sze L*L. Randomly place a "random walker" on the lattce and start walkng (only our drectons are possble: let, rght, up, down). As soon as the random walker reaches a ste outsde the L*L area the random walk stops. Fnd the average number o steps S to get out o the crystal. Is there a connecton between S and L? Part 3: Random walk on a D lattce wth traps. Consder the same two dmenson lattce o sze L*L. Now the lattce contans a trap. (An analogy would be a cty wth (L-1)*(L-1) blocks and a polce patrol). Randomly place a "random walker" on the lattce. When the walker arrves to the trap ste, t can no longer move. So, the random walk stops when the walker ether trapped or out o the L*L area. Fnd probabltes to get the walker trapped and to go ree. Fnd also the mean number o steps ( survval tme ) beore a trap ste s reached, or the walker s out o the area, as a uncton o L. Explore ollowng scenaros: 1 A statonary trap located at the center o the area,.e. wth the coordnates (L/,L/) A randomly placed statonary trap 3 A randomly movng trap the trap walks randomly wth the same speed (one block n a tme). Snce the trap can not leave the L*L area, when needed, use ether the restrctve random walk or the patrol, or the perodc boundary condtons. 4 Extra credt ( ponts). There are two randomly movng traps. How wll t aect the probablty to capture the random walker. 5 Extra credt ( ponts). A persstent sngle trap the trap moves along a closed path (a box around the center wth a sde S<L lke a movng polce patrol). Does the outcome depend on the S/L rato? 4

5 Project 4: Sheldng a nuclear reactor (Due on Wednesday, Aprl 14, 1 by 13:3) Durng the World War II scentsts n Los Alamos (Manhattan project) had to nd how ar neutrons would travel n derent materals. Results were mportant or the calculaton o crtcal masses as well as sheldng. The physcsts knew most o the basc data and ther dependences on the neutron energy, namely, the average dstances between collsons o a neutron wth an atomc nucleus, the probabltes o neutron elastc or nelastc scatterng, probablty o capture by an atomc nucleus, the energy loss o the neutrons ater each collson. However, t was not clear how to use all ths normaton to nd a soluton. Ulam and von Neumann solved the problem by a novel numercal approach.e. smulatng a path o a neutron usng random numbers. Ths project below s a very smpled verson o the orgnal problem solved by Ulam and von Neumann. A beam o neutrons bombards a reactor's wall. Consderng moton o neutrons as a random walk on (x,y) plane nd probabltes or neutrons (as a uncton o the sheld sze) a) to be back n the reactor, b) to be captured n the sheld, c) to get through the sheld. Condtons: 1 only our drectons o moton are possble (let, rght, up or down) on the next step the neutron can not step back, but only orward, let or rght, and 3 the probablty to go orward s two tmes more than changng a drecton 4 on each step the neutron looses one unt o energy 5 ntal neutron energy s enough or 1 steps 6 ntal neutron velocty s perpendcular to the sheld 7 a capture probablty on every step s.1 Assume that the probablty P to get through the sheld has the asymptotc exponental dependence as P~e -ax wth x s the sze o the sheld. Estmate the exponent a. Optonal (bonus ponts): Consder the ntal neutron energy as a normal dstrbuton wth a mean value o 1 steps, and a standard devaton o steps Note: the sheld's sze s measured n "steps", where one step corresponds to an average dstance that neutrons move between collsons. 5

Physics for Scientists and Engineers. Chapter 9 Impulse and Momentum

Physics for Scientists and Engineers. Chapter 9 Impulse and Momentum Physcs or Scentsts and Engneers Chapter 9 Impulse and Momentum Sprng, 008 Ho Jung Pak Lnear Momentum Lnear momentum o an object o mass m movng wth a velocty v s dened to be p mv Momentum and lnear momentum

More information

PHYS 1441 Section 002 Lecture #15

PHYS 1441 Section 002 Lecture #15 PHYS 1441 Secton 00 Lecture #15 Monday, March 18, 013 Work wth rcton Potental Energy Gravtatonal Potental Energy Elastc Potental Energy Mechancal Energy Conservaton Announcements Mdterm comprehensve exam

More information

Week3, Chapter 4. Position and Displacement. Motion in Two Dimensions. Instantaneous Velocity. Average Velocity

Week3, Chapter 4. Position and Displacement. Motion in Two Dimensions. Instantaneous Velocity. Average Velocity Week3, Chapter 4 Moton n Two Dmensons Lecture Quz A partcle confned to moton along the x axs moves wth constant acceleraton from x =.0 m to x = 8.0 m durng a 1-s tme nterval. The velocty of the partcle

More information

Chapter 3. r r. Position, Velocity, and Acceleration Revisited

Chapter 3. r r. Position, Velocity, and Acceleration Revisited Chapter 3 Poston, Velocty, and Acceleraton Revsted The poston vector of a partcle s a vector drawn from the orgn to the locaton of the partcle. In two dmensons: r = x ˆ+ yj ˆ (1) The dsplacement vector

More information

Physics 2A Chapter 3 HW Solutions

Physics 2A Chapter 3 HW Solutions Phscs A Chapter 3 HW Solutons Chapter 3 Conceptual Queston: 4, 6, 8, Problems: 5,, 8, 7, 3, 44, 46, 69, 70, 73 Q3.4. Reason: (a) C = A+ B onl A and B are n the same drecton. Sze does not matter. (b) C

More information

Section 8.3 Polar Form of Complex Numbers

Section 8.3 Polar Form of Complex Numbers 80 Chapter 8 Secton 8 Polar Form of Complex Numbers From prevous classes, you may have encountered magnary numbers the square roots of negatve numbers and, more generally, complex numbers whch are the

More information

Physics 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn in the following problems from Chapter 4 Knight

Physics 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn in the following problems from Chapter 4 Knight Physcs 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn n the ollowng problems rom Chapter 4 Knght Conceptual Questons: 8, 0, ; 4.8. Anta s approachng ball and movng away rom where ball was

More information

Linear Momentum. Center of Mass.

Linear Momentum. Center of Mass. Lecture 6 Chapter 9 Physcs I 03.3.04 Lnear omentum. Center of ass. Course webste: http://faculty.uml.edu/ndry_danylov/teachng/physcsi Lecture Capture: http://echo360.uml.edu/danylov03/physcssprng.html

More information

Chapter 3 and Chapter 4

Chapter 3 and Chapter 4 Chapter 3 and Chapter 4 Chapter 3 Energy 3. Introducton:Work Work W s energy transerred to or rom an object by means o a orce actng on the object. Energy transerred to the object s postve work, and energy

More information

CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE

CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE CHAPTER 5 NUMERICAL EVALUATION OF DYNAMIC RESPONSE Analytcal soluton s usually not possble when exctaton vares arbtrarly wth tme or f the system s nonlnear. Such problems can be solved by numercal tmesteppng

More information

Spring Force and Power

Spring Force and Power Lecture 13 Chapter 9 Sprng Force and Power Yeah, energy s better than orces. What s net? Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi IN THIS CHAPTER, you wll learn how to solve problems

More information

PHYS 1443 Section 004 Lecture #12 Thursday, Oct. 2, 2014

PHYS 1443 Section 004 Lecture #12 Thursday, Oct. 2, 2014 PHYS 1443 Secton 004 Lecture #1 Thursday, Oct., 014 Work-Knetc Energy Theorem Work under rcton Potental Energy and the Conservatve Force Gravtatonal Potental Energy Elastc Potental Energy Conservaton o

More information

Momentum. Momentum. Impulse. Momentum and Collisions

Momentum. Momentum. Impulse. Momentum and Collisions Momentum Momentum and Collsons From Newton s laws: orce must be present to change an object s elocty (speed and/or drecton) Wsh to consder eects o collsons and correspondng change n elocty Gol ball ntally

More information

PHYS 1441 Section 002 Lecture #16

PHYS 1441 Section 002 Lecture #16 PHYS 1441 Secton 00 Lecture #16 Monday, Mar. 4, 008 Potental Energy Conservatve and Non-conservatve Forces Conservaton o Mechancal Energy Power Today s homework s homework #8, due 9pm, Monday, Mar. 31!!

More information

Lecture 16. Chapter 11. Energy Dissipation Linear Momentum. Physics I. Department of Physics and Applied Physics

Lecture 16. Chapter 11. Energy Dissipation Linear Momentum. Physics I. Department of Physics and Applied Physics Lecture 16 Chapter 11 Physcs I Energy Dsspaton Lnear Momentum Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi Department o Physcs and Appled Physcs IN IN THIS CHAPTER, you wll learn

More information

PHYS 1443 Section 002

PHYS 1443 Section 002 PHYS 443 Secton 00 Lecture #6 Wednesday, Nov. 5, 008 Dr. Jae Yu Collsons Elastc and Inelastc Collsons Two Dmensonal Collsons Center o ass Fundamentals o Rotatonal otons Wednesday, Nov. 5, 008 PHYS PHYS

More information

EN40: Dynamics and Vibrations. Homework 4: Work, Energy and Linear Momentum Due Friday March 1 st

EN40: Dynamics and Vibrations. Homework 4: Work, Energy and Linear Momentum Due Friday March 1 st EN40: Dynamcs and bratons Homework 4: Work, Energy and Lnear Momentum Due Frday March 1 st School of Engneerng Brown Unversty 1. The fgure (from ths publcaton) shows the energy per unt area requred to

More information

10/24/2013. PHY 113 C General Physics I 11 AM 12:15 PM TR Olin 101. Plan for Lecture 17: Review of Chapters 9-13, 15-16

10/24/2013. PHY 113 C General Physics I 11 AM 12:15 PM TR Olin 101. Plan for Lecture 17: Review of Chapters 9-13, 15-16 0/4/03 PHY 3 C General Physcs I AM :5 PM T Oln 0 Plan or Lecture 7: evew o Chapters 9-3, 5-6. Comment on exam and advce or preparaton. evew 3. Example problems 0/4/03 PHY 3 C Fall 03 -- Lecture 7 0/4/03

More information

TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES. PHYS 2211, Exam 2 Section 1 Version 1 October 18, 2013 Total Weight: 100 points

TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES. PHYS 2211, Exam 2 Section 1 Version 1 October 18, 2013 Total Weight: 100 points TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES PHYS, Exam Secton Verson October 8, 03 Total Weght: 00 ponts. Check your examnaton or completeness pror to startng. There are a total o nne

More information

OPTIMISATION. Introduction Single Variable Unconstrained Optimisation Multivariable Unconstrained Optimisation Linear Programming

OPTIMISATION. Introduction Single Variable Unconstrained Optimisation Multivariable Unconstrained Optimisation Linear Programming OPTIMIATION Introducton ngle Varable Unconstraned Optmsaton Multvarable Unconstraned Optmsaton Lnear Programmng Chapter Optmsaton /. Introducton In an engneerng analss, sometmes etremtes, ether mnmum or

More information

Work is the change in energy of a system (neglecting heat transfer). To examine what could

Work is the change in energy of a system (neglecting heat transfer). To examine what could Work Work s the change n energy o a system (neglectng heat transer). To eamne what could cause work, let s look at the dmensons o energy: L ML E M L F L so T T dmensonally energy s equal to a orce tmes

More information

Conservation of Energy

Conservation of Energy Lecture 3 Chapter 8 Physcs I 0.3.03 Conservaton o Energy Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi Lecture Capture: http://echo360.uml.edu/danylov03/physcsall.html 95.4, Fall 03,

More information

General Tips on How to Do Well in Physics Exams. 1. Establish a good habit in keeping track of your steps. For example, when you use the equation

General Tips on How to Do Well in Physics Exams. 1. Establish a good habit in keeping track of your steps. For example, when you use the equation General Tps on How to Do Well n Physcs Exams 1. Establsh a good habt n keepng track o your steps. For example when you use the equaton 1 1 1 + = d d to solve or d o you should rst rewrte t as 1 1 1 = d

More information

Kinematics in 2-Dimensions. Projectile Motion

Kinematics in 2-Dimensions. Projectile Motion Knematcs n -Dmensons Projectle Moton A medeval trebuchet b Kolderer, c1507 http://members.net.net.au/~rmne/ht/ht0.html#5 Readng Assgnment: Chapter 4, Sectons -6 Introducton: In medeval das, people had

More information

Chapter 8: Potential Energy and The Conservation of Total Energy

Chapter 8: Potential Energy and The Conservation of Total Energy Chapter 8: Potental Energy and The Conservaton o Total Energy Work and knetc energy are energes o moton. K K K mv r v v F dr Potental energy s an energy that depends on locaton. -Dmenson F x d U( x) dx

More information

Physics 2A Chapter 9 HW Solutions

Physics 2A Chapter 9 HW Solutions Phscs A Chapter 9 HW Solutons Chapter 9 Conceptual Queston:, 4, 8, 13 Problems: 3, 8, 1, 15, 3, 40, 51, 6 Q9.. Reason: We can nd the change n momentum o the objects b computng the mpulse on them and usng

More information

Physics 106 Lecture 6 Conservation of Angular Momentum SJ 7 th Ed.: Chap 11.4

Physics 106 Lecture 6 Conservation of Angular Momentum SJ 7 th Ed.: Chap 11.4 Physcs 6 ecture 6 Conservaton o Angular Momentum SJ 7 th Ed.: Chap.4 Comparson: dentons o sngle partcle torque and angular momentum Angular momentum o a system o partcles o a rgd body rotatng about a xed

More information

PHYSICS 203-NYA-05 MECHANICS

PHYSICS 203-NYA-05 MECHANICS PHYSICS 03-NYA-05 MECHANICS PROF. S.D. MANOLI PHYSICS & CHEMISTRY CHAMPLAIN - ST. LAWRENCE 790 NÉRÉE-TREMBLAY QUÉBEC, QC GV 4K TELEPHONE: 48.656.69 EXT. 449 EMAIL: smanol@slc.qc.ca WEBPAGE: http:/web.slc.qc.ca/smanol/

More information

Turbulence classification of load data by the frequency and severity of wind gusts. Oscar Moñux, DEWI GmbH Kevin Bleibler, DEWI GmbH

Turbulence classification of load data by the frequency and severity of wind gusts. Oscar Moñux, DEWI GmbH Kevin Bleibler, DEWI GmbH Turbulence classfcaton of load data by the frequency and severty of wnd gusts Introducton Oscar Moñux, DEWI GmbH Kevn Blebler, DEWI GmbH Durng the wnd turbne developng process, one of the most mportant

More information

Name: PHYS 110 Dr. McGovern Spring 2018 Exam 1. Multiple Choice: Circle the answer that best evaluates the statement or completes the statement.

Name: PHYS 110 Dr. McGovern Spring 2018 Exam 1. Multiple Choice: Circle the answer that best evaluates the statement or completes the statement. Name: PHYS 110 Dr. McGoern Sprng 018 Exam 1 Multple Choce: Crcle the answer that best ealuates the statement or completes the statement. #1 - I the acceleraton o an object s negate, the object must be

More information

Linear Momentum. Equation 1

Linear Momentum. Equation 1 Lnear Momentum OBJECTIVE Obsere collsons between two carts, testng or the conseraton o momentum. Measure energy changes durng derent types o collsons. Classy collsons as elastc, nelastc, or completely

More information

Kernel Methods and SVMs Extension

Kernel Methods and SVMs Extension Kernel Methods and SVMs Extenson The purpose of ths document s to revew materal covered n Machne Learnng 1 Supervsed Learnng regardng support vector machnes (SVMs). Ths document also provdes a general

More information

Linear Momentum. Center of Mass.

Linear Momentum. Center of Mass. Lecture 16 Chapter 9 Physcs I 11.06.2013 Lnear oentu. Center of ass. Course webste: http://faculty.ul.edu/ndry_danylov/teachng/physcsi Lecture Capture: http://echo360.ul.edu/danylov2013/physcs1fall.htl

More information

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to ChE Lecture Notes - D. Keer, 5/9/98 Lecture 6,7,8 - Rootndng n systems o equatons (A) Theory (B) Problems (C) MATLAB Applcatons Tet: Supplementary notes rom Instructor 6. Why s t mportant to be able to

More information

: Numerical Analysis Topic 2: Solution of Nonlinear Equations Lectures 5-11:

: Numerical Analysis Topic 2: Solution of Nonlinear Equations Lectures 5-11: 764: Numercal Analyss Topc : Soluton o Nonlnear Equatons Lectures 5-: UIN Malang Read Chapters 5 and 6 o the tetbook 764_Topc Lecture 5 Soluton o Nonlnear Equatons Root Fndng Problems Dentons Classcaton

More information

ONE-DIMENSIONAL COLLISIONS

ONE-DIMENSIONAL COLLISIONS Purpose Theory ONE-DIMENSIONAL COLLISIONS a. To very the law o conservaton o lnear momentum n one-dmensonal collsons. b. To study conservaton o energy and lnear momentum n both elastc and nelastc onedmensonal

More information

Amplification and Relaxation of Electron Spin Polarization in Semiconductor Devices

Amplification and Relaxation of Electron Spin Polarization in Semiconductor Devices Amplfcaton and Relaxaton of Electron Spn Polarzaton n Semconductor Devces Yury V. Pershn and Vladmr Prvman Center for Quantum Devce Technology, Clarkson Unversty, Potsdam, New York 13699-570, USA Spn Relaxaton

More information

2 Finite difference basics

2 Finite difference basics Numersche Methoden 1, WS 11/12 B.J.P. Kaus 2 Fnte dfference bascs Consder the one- The bascs of the fnte dfference method are best understood wth an example. dmensonal transent heat conducton equaton T

More information

Physics 2A Chapters 6 - Work & Energy Fall 2017

Physics 2A Chapters 6 - Work & Energy Fall 2017 Physcs A Chapters 6 - Work & Energy Fall 017 These notes are eght pages. A quck summary: The work-energy theorem s a combnaton o Chap and Chap 4 equatons. Work s dened as the product o the orce actng on

More information

Gravitational Acceleration: A case of constant acceleration (approx. 2 hr.) (6/7/11)

Gravitational Acceleration: A case of constant acceleration (approx. 2 hr.) (6/7/11) Gravtatonal Acceleraton: A case of constant acceleraton (approx. hr.) (6/7/11) Introducton The gravtatonal force s one of the fundamental forces of nature. Under the nfluence of ths force all objects havng

More information

Period & Frequency. Work and Energy. Methods of Energy Transfer: Energy. Work-KE Theorem 3/4/16. Ranking: Which has the greatest kinetic energy?

Period & Frequency. Work and Energy. Methods of Energy Transfer: Energy. Work-KE Theorem 3/4/16. Ranking: Which has the greatest kinetic energy? Perod & Frequency Perod (T): Tme to complete one ull rotaton Frequency (): Number o rotatons completed per second. = 1/T, T = 1/ v = πr/t Work and Energy Work: W = F!d (pcks out parallel components) F

More information

A Tale of Friction Basic Rollercoaster Physics. Fahrenheit Rollercoaster, Hershey, PA max height = 121 ft max speed = 58 mph

A Tale of Friction Basic Rollercoaster Physics. Fahrenheit Rollercoaster, Hershey, PA max height = 121 ft max speed = 58 mph A Tale o Frcton Basc Rollercoaster Physcs Fahrenhet Rollercoaster, Hershey, PA max heght = 11 t max speed = 58 mph PLAY PLAY PLAY PLAY Rotatonal Movement Knematcs Smlar to how lnear velocty s dened, angular

More information

Week 8: Chapter 9. Linear Momentum. Newton Law and Momentum. Linear Momentum, cont. Conservation of Linear Momentum. Conservation of Momentum, 2

Week 8: Chapter 9. Linear Momentum. Newton Law and Momentum. Linear Momentum, cont. Conservation of Linear Momentum. Conservation of Momentum, 2 Lnear omentum Week 8: Chapter 9 Lnear omentum and Collsons The lnear momentum of a partcle, or an object that can be modeled as a partcle, of mass m movng wth a velocty v s defned to be the product of

More information

Georgia Tech PHYS 6124 Mathematical Methods of Physics I

Georgia Tech PHYS 6124 Mathematical Methods of Physics I Georga Tech PHYS 624 Mathematcal Methods of Physcs I Instructor: Predrag Cvtanovć Fall semester 202 Homework Set #7 due October 30 202 == show all your work for maxmum credt == put labels ttle legends

More information

Linear Regression Analysis: Terminology and Notation

Linear Regression Analysis: Terminology and Notation ECON 35* -- Secton : Basc Concepts of Regresson Analyss (Page ) Lnear Regresson Analyss: Termnology and Notaton Consder the generc verson of the smple (two-varable) lnear regresson model. It s represented

More information

PHYSICS - CLUTCH CH 28: INDUCTION AND INDUCTANCE.

PHYSICS - CLUTCH CH 28: INDUCTION AND INDUCTANCE. !! www.clutchprep.com CONCEPT: ELECTROMAGNETIC INDUCTION A col of wre wth a VOLTAGE across each end wll have a current n t - Wre doesn t HAVE to have voltage source, voltage can be INDUCED V Common ways

More information

Chapter 7. Potential Energy and Conservation of Energy

Chapter 7. Potential Energy and Conservation of Energy Chapter 7 Potental Energy and Conservaton o Energy 1 Forms o Energy There are many orms o energy, but they can all be put nto two categores Knetc Knetc energy s energy o moton Potental Potental energy

More information

A Hybrid Variational Iteration Method for Blasius Equation

A Hybrid Variational Iteration Method for Blasius Equation Avalable at http://pvamu.edu/aam Appl. Appl. Math. ISSN: 1932-9466 Vol. 10, Issue 1 (June 2015), pp. 223-229 Applcatons and Appled Mathematcs: An Internatonal Journal (AAM) A Hybrd Varatonal Iteraton Method

More information

Transfer Functions. Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: ( ) system

Transfer Functions. Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: ( ) system Transfer Functons Convenent representaton of a lnear, dynamc model. A transfer functon (TF) relates one nput and one output: x t X s y t system Y s The followng termnology s used: x y nput output forcng

More information

Module 11 Design of Joints for Special Loading. Version 2 ME, IIT Kharagpur

Module 11 Design of Joints for Special Loading. Version 2 ME, IIT Kharagpur Module 11 Desgn o Jonts or Specal Loadng Verson ME, IIT Kharagpur Lesson 1 Desgn o Eccentrcally Loaded Bolted/Rveted Jonts Verson ME, IIT Kharagpur Instructonal Objectves: At the end o ths lesson, the

More information

CISE301: Numerical Methods Topic 2: Solution of Nonlinear Equations

CISE301: Numerical Methods Topic 2: Solution of Nonlinear Equations CISE3: Numercal Methods Topc : Soluton o Nonlnear Equatons Dr. Amar Khoukh Term Read Chapters 5 and 6 o the tetbook CISE3_Topc c Khoukh_ Lecture 5 Soluton o Nonlnear Equatons Root ndng Problems Dentons

More information

Lecture 2 Solution of Nonlinear Equations ( Root Finding Problems )

Lecture 2 Solution of Nonlinear Equations ( Root Finding Problems ) Lecture Soluton o Nonlnear Equatons Root Fndng Problems Dentons Classcaton o Methods Analytcal Solutons Graphcal Methods Numercal Methods Bracketng Methods Open Methods Convergence Notatons Root Fndng

More information

Chapter 07: Kinetic Energy and Work

Chapter 07: Kinetic Energy and Work Chapter 07: Knetc Energy and Work Conservaton o Energy s one o Nature s undamental laws that s not volated. Energy can take on derent orms n a gven system. Ths chapter we wll dscuss work and knetc energy.

More information

DUE: WEDS FEB 21ST 2018

DUE: WEDS FEB 21ST 2018 HOMEWORK # 1: FINITE DIFFERENCES IN ONE DIMENSION DUE: WEDS FEB 21ST 2018 1. Theory Beam bendng s a classcal engneerng analyss. The tradtonal soluton technque makes smplfyng assumptons such as a constant

More information

Four Bar Linkages in Two Dimensions. A link has fixed length and is joined to other links and also possibly to a fixed point.

Four Bar Linkages in Two Dimensions. A link has fixed length and is joined to other links and also possibly to a fixed point. Four bar lnkages 1 Four Bar Lnkages n Two Dmensons lnk has fed length and s oned to other lnks and also possbly to a fed pont. The relatve velocty of end B wth regard to s gven by V B = ω r y v B B = +y

More information

11. Dynamics in Rotating Frames of Reference

11. Dynamics in Rotating Frames of Reference Unversty of Rhode Island DgtalCommons@URI Classcal Dynamcs Physcs Course Materals 2015 11. Dynamcs n Rotatng Frames of Reference Gerhard Müller Unversty of Rhode Island, gmuller@ur.edu Creatve Commons

More information

Department of Quantitative Methods & Information Systems. Time Series and Their Components QMIS 320. Chapter 6

Department of Quantitative Methods & Information Systems. Time Series and Their Components QMIS 320. Chapter 6 Department of Quanttatve Methods & Informaton Systems Tme Seres and Ther Components QMIS 30 Chapter 6 Fall 00 Dr. Mohammad Zanal These sldes were modfed from ther orgnal source for educatonal purpose only.

More information

Conservation of Angular Momentum = "Spin"

Conservation of Angular Momentum = Spin Page 1 of 6 Conservaton of Angular Momentum = "Spn" We can assgn a drecton to the angular velocty: drecton of = drecton of axs + rght hand rule (wth rght hand, curl fngers n drecton of rotaton, thumb ponts

More information

Physics 101 Lecture 9 Linear Momentum and Collisions

Physics 101 Lecture 9 Linear Momentum and Collisions Physcs 0 Lecture 9 Lnear Momentum and Collsons Dr. Al ÖVGÜN EMU Physcs Department www.aogun.com Lnear Momentum and Collsons q q q q q q q Conseraton o Energy Momentum Impulse Conseraton o Momentum -D Collsons

More information

Thermal-Fluids I. Chapter 18 Transient heat conduction. Dr. Primal Fernando Ph: (850)

Thermal-Fluids I. Chapter 18 Transient heat conduction. Dr. Primal Fernando Ph: (850) hermal-fluds I Chapter 18 ransent heat conducton Dr. Prmal Fernando prmal@eng.fsu.edu Ph: (850) 410-6323 1 ransent heat conducton In general, he temperature of a body vares wth tme as well as poston. In

More information

Finite Difference Method

Finite Difference Method 7/0/07 Instructor r. Ramond Rump (9) 747 698 rcrump@utep.edu EE 337 Computatonal Electromagnetcs (CEM) Lecture #0 Fnte erence Method Lecture 0 These notes ma contan coprghted materal obtaned under ar use

More information

Note 10. Modeling and Simulation of Dynamic Systems

Note 10. Modeling and Simulation of Dynamic Systems Lecture Notes of ME 475: Introducton to Mechatroncs Note 0 Modelng and Smulaton of Dynamc Systems Department of Mechancal Engneerng, Unversty Of Saskatchewan, 57 Campus Drve, Saskatoon, SK S7N 5A9, Canada

More information

Probability, Statistics, and Reliability for Engineers and Scientists SIMULATION

Probability, Statistics, and Reliability for Engineers and Scientists SIMULATION CHATER robablty, Statstcs, and Relablty or Engneers and Scentsts Second Edton SIULATIO A. J. Clark School o Engneerng Department o Cvl and Envronmental Engneerng 7b robablty and Statstcs or Cvl Engneers

More information

Physics 105: Mechanics Lecture 13

Physics 105: Mechanics Lecture 13 Physcs 05: Mechancs Lecture 3 Wenda Cao NJIT Physcs Department Momentum and Momentum Conseraton Momentum Impulse Conseraton o Momentum Collsons Lnear Momentum A new undamental quantty, lke orce, energy

More information

NON-CENTRAL 7-POINT FORMULA IN THE METHOD OF LINES FOR PARABOLIC AND BURGERS' EQUATIONS

NON-CENTRAL 7-POINT FORMULA IN THE METHOD OF LINES FOR PARABOLIC AND BURGERS' EQUATIONS IJRRAS 8 (3 September 011 www.arpapress.com/volumes/vol8issue3/ijrras_8_3_08.pdf NON-CENTRAL 7-POINT FORMULA IN THE METHOD OF LINES FOR PARABOLIC AND BURGERS' EQUATIONS H.O. Bakodah Dept. of Mathematc

More information

total If no external forces act, the total linear momentum of the system is conserved. This occurs in collisions and explosions.

total If no external forces act, the total linear momentum of the system is conserved. This occurs in collisions and explosions. Lesson 0: Collsons, Rotatonal netc Energy, Torque, Center o Graty (Sectons 7.8 Last te we used ewton s second law to deelop the pulse-oentu theore. In words, the theore states that the change n lnear oentu

More information

Unit 5: Quadratic Equations & Functions

Unit 5: Quadratic Equations & Functions Date Perod Unt 5: Quadratc Equatons & Functons DAY TOPIC 1 Modelng Data wth Quadratc Functons Factorng Quadratc Epressons 3 Solvng Quadratc Equatons 4 Comple Numbers Smplfcaton, Addton/Subtracton & Multplcaton

More information

Case A. P k = Ni ( 2L i k 1 ) + (# big cells) 10d 2 P k.

Case A. P k = Ni ( 2L i k 1 ) + (# big cells) 10d 2 P k. THE CELLULAR METHOD In ths lecture, we ntroduce the cellular method as an approach to ncdence geometry theorems lke the Szemeréd-Trotter theorem. The method was ntroduced n the paper Combnatoral complexty

More information

1 Matrix representations of canonical matrices

1 Matrix representations of canonical matrices 1 Matrx representatons of canoncal matrces 2-d rotaton around the orgn: ( ) cos θ sn θ R 0 = sn θ cos θ 3-d rotaton around the x-axs: R x = 1 0 0 0 cos θ sn θ 0 sn θ cos θ 3-d rotaton around the y-axs:

More information

The Geometry of Logit and Probit

The Geometry of Logit and Probit The Geometry of Logt and Probt Ths short note s meant as a supplement to Chapters and 3 of Spatal Models of Parlamentary Votng and the notaton and reference to fgures n the text below s to those two chapters.

More information

Conservation Laws (Collisions) Phys101 Lab - 04

Conservation Laws (Collisions) Phys101 Lab - 04 Conservaton Laws (Collsons) Phys101 Lab - 04 1.Objectves The objectves o ths experment are to expermentally test the valdty o the laws o conservaton o momentum and knetc energy n elastc collsons. 2. Theory

More information

Chapter 3 Differentiation and Integration

Chapter 3 Differentiation and Integration MEE07 Computer Modelng Technques n Engneerng Chapter Derentaton and Integraton Reerence: An Introducton to Numercal Computatons, nd edton, S. yakowtz and F. zdarovsky, Mawell/Macmllan, 990. Derentaton

More information

where v means the change in velocity, and t is the

where v means the change in velocity, and t is the 1 PHYS:100 LECTURE 4 MECHANICS (3) Ths lecture covers the eneral case of moton wth constant acceleraton and free fall (whch s one of the more mportant examples of moton wth constant acceleraton) n a more

More information

10/9/2003 PHY Lecture 11 1

10/9/2003 PHY Lecture 11 1 Announcements 1. Physc Colloquum today --The Physcs and Analyss of Non-nvasve Optcal Imagng. Today s lecture Bref revew of momentum & collsons Example HW problems Introducton to rotatons Defnton of angular

More information

TREATMENT OF THE TURNING POINT IN ADK-THEORY INCLUDING NON-ZERO INITIAL MOMENTA

TREATMENT OF THE TURNING POINT IN ADK-THEORY INCLUDING NON-ZERO INITIAL MOMENTA 41 Kragujevac J. Sc. 5 (00) 41-46. TREATMENT OF THE TURNING POINT IN ADK-THEORY INCLUDING NON-ZERO INITIAL MOMENTA Vladmr M. Rstć a and Tjana Premovć b a Faculty o Scence, Department o Physcs, Kragujevac

More information

(Online First)A Lattice Boltzmann Scheme for Diffusion Equation in Spherical Coordinate

(Online First)A Lattice Boltzmann Scheme for Diffusion Equation in Spherical Coordinate Internatonal Journal of Mathematcs and Systems Scence (018) Volume 1 do:10.494/jmss.v1.815 (Onlne Frst)A Lattce Boltzmann Scheme for Dffuson Equaton n Sphercal Coordnate Debabrata Datta 1 *, T K Pal 1

More information

Comparison of Regression Lines

Comparison of Regression Lines STATGRAPHICS Rev. 9/13/2013 Comparson of Regresson Lnes Summary... 1 Data Input... 3 Analyss Summary... 4 Plot of Ftted Model... 6 Condtonal Sums of Squares... 6 Analyss Optons... 7 Forecasts... 8 Confdence

More information

University of Washington Department of Chemistry Chemistry 452/456 Summer Quarter 2014

University of Washington Department of Chemistry Chemistry 452/456 Summer Quarter 2014 Lecture 16 8/4/14 Unversty o Washngton Department o Chemstry Chemstry 452/456 Summer Quarter 214. Real Vapors and Fugacty Henry s Law accounts or the propertes o extremely dlute soluton. s shown n Fgure

More information

Physics 53. Rotational Motion 3. Sir, I have found you an argument, but I am not obliged to find you an understanding.

Physics 53. Rotational Motion 3. Sir, I have found you an argument, but I am not obliged to find you an understanding. Physcs 53 Rotatonal Moton 3 Sr, I have found you an argument, but I am not oblged to fnd you an understandng. Samuel Johnson Angular momentum Wth respect to rotatonal moton of a body, moment of nerta plays

More information

Chapter 9 Linear Momentum and Collisions

Chapter 9 Linear Momentum and Collisions Chapter 9 Lnear Momentum and Collsons m = 3. kg r = ( ˆ ˆ j ) P9., r r (a) p m ( ˆ ˆj ) 3. 4. m s = = 9.. kg m s Thus, p x = 9. kg m s and p y =. kg m s (b) p px p y p y θ = tan = tan (.33) = 37 px = +

More information

Modeling motion with VPython Every program that models the motion of physical objects has two main parts:

Modeling motion with VPython Every program that models the motion of physical objects has two main parts: 1 Modelng moton wth VPython Eery program that models the moton o physcal objects has two man parts: 1. Beore the loop: The rst part o the program tells the computer to: a. Create numercal alues or constants

More information

Supplemental Instruction sessions next week

Supplemental Instruction sessions next week Homework #4 Wrtten homework due now Onlne homework due on Tue Mar 3 by 8 am Exam 1 Answer keys and scores wll be posted by end of the week Supplemental Instructon sessons next week Wednesday 8:45 10:00

More information

Temperature. Chapter Heat Engine

Temperature. Chapter Heat Engine Chapter 3 Temperature In prevous chapters of these notes we ntroduced the Prncple of Maxmum ntropy as a technque for estmatng probablty dstrbutons consstent wth constrants. In Chapter 9 we dscussed the

More information

Linear Approximation with Regularization and Moving Least Squares

Linear Approximation with Regularization and Moving Least Squares Lnear Approxmaton wth Regularzaton and Movng Least Squares Igor Grešovn May 007 Revson 4.6 (Revson : March 004). 5 4 3 0.5 3 3.5 4 Contents: Lnear Fttng...4. Weghted Least Squares n Functon Approxmaton...

More information

χ x B E (c) Figure 2.1.1: (a) a material particle in a body, (b) a place in space, (c) a configuration of the body

χ x B E (c) Figure 2.1.1: (a) a material particle in a body, (b) a place in space, (c) a configuration of the body Secton.. Moton.. The Materal Body and Moton hyscal materals n the real world are modeled usng an abstract mathematcal entty called a body. Ths body conssts of an nfnte number of materal partcles. Shown

More information

Endogenous timing in a mixed oligopoly consisting of a single public firm and foreign competitors. Abstract

Endogenous timing in a mixed oligopoly consisting of a single public firm and foreign competitors. Abstract Endogenous tmng n a mxed olgopoly consstng o a sngle publc rm and oregn compettors Yuanzhu Lu Chna Economcs and Management Academy, Central Unversty o Fnance and Economcs Abstract We nvestgate endogenous

More information

Statistical Energy Analysis for High Frequency Acoustic Analysis with LS-DYNA

Statistical Energy Analysis for High Frequency Acoustic Analysis with LS-DYNA 14 th Internatonal Users Conference Sesson: ALE-FSI Statstcal Energy Analyss for Hgh Frequency Acoustc Analyss wth Zhe Cu 1, Yun Huang 1, Mhamed Soul 2, Tayeb Zeguar 3 1 Lvermore Software Technology Corporaton

More information

MAGNETISM MAGNETIC DIPOLES

MAGNETISM MAGNETIC DIPOLES MAGNETISM We now turn to magnetsm. Ths has actually been used for longer than electrcty. People were usng compasses to sal around the Medterranean Sea several hundred years BC. However t was not understood

More information

Physics 5153 Classical Mechanics. Principle of Virtual Work-1

Physics 5153 Classical Mechanics. Principle of Virtual Work-1 P. Guterrez 1 Introducton Physcs 5153 Classcal Mechancs Prncple of Vrtual Work The frst varatonal prncple we encounter n mechancs s the prncple of vrtual work. It establshes the equlbrum condton of a mechancal

More information

Energy and Energy Transfer

Energy and Energy Transfer Energy and Energy Transer Chapter 7 Scalar Product (Dot) Work Done by a Constant Force F s constant over the dsplacement r 1 Denton o the scalar (dot) product o vectors Scalar product o unt vectors = 1

More information

The Feynman path integral

The Feynman path integral The Feynman path ntegral Aprl 3, 205 Hesenberg and Schrödnger pctures The Schrödnger wave functon places the tme dependence of a physcal system n the state, ψ, t, where the state s a vector n Hlbert space

More information

Moderator & Moderator System

Moderator & Moderator System NPTL Chemcal ngneerng Nuclear Reactor Technology Moderator & Moderator System K.S. Rajan Professor, School of Chemcal & Botechnology SASTRA Unversty Jont Intatve of IITs and IISc Funded by MHRD Page of

More information

RELIABILITY ASSESSMENT

RELIABILITY ASSESSMENT CHAPTER Rsk Analyss n Engneerng and Economcs RELIABILITY ASSESSMENT A. J. Clark School of Engneerng Department of Cvl and Envronmental Engneerng 4a CHAPMAN HALL/CRC Rsk Analyss for Engneerng Department

More information

Physics 1202: Lecture 11 Today s Agenda

Physics 1202: Lecture 11 Today s Agenda Physcs 122: Lecture 11 Today s Agenda Announcements: Team problems start ths Thursday Team 1: Hend Ouda, Mke Glnsk, Stephane Auger Team 2: Analese Bruder, Krsten Dean, Alson Smth Offce hours: Monday 2:3-3:3

More information

Chapter Seven - Potential Energy and Conservation of Energy

Chapter Seven - Potential Energy and Conservation of Energy Chapter Seven - Potental Energy and Conservaton o Energy 7 1 Potental Energy Potental energy. e wll nd that the potental energy o a system can only be assocated wth specc types o orces actng between members

More information

See Book Chapter 11 2 nd Edition (Chapter 10 1 st Edition)

See Book Chapter 11 2 nd Edition (Chapter 10 1 st Edition) Count Data Models See Book Chapter 11 2 nd Edton (Chapter 10 1 st Edton) Count data consst of non-negatve nteger values Examples: number of drver route changes per week, the number of trp departure changes

More information

5.04, Principles of Inorganic Chemistry II MIT Department of Chemistry Lecture 32: Vibrational Spectroscopy and the IR

5.04, Principles of Inorganic Chemistry II MIT Department of Chemistry Lecture 32: Vibrational Spectroscopy and the IR 5.0, Prncples of Inorganc Chemstry II MIT Department of Chemstry Lecture 3: Vbratonal Spectroscopy and the IR Vbratonal spectroscopy s confned to the 00-5000 cm - spectral regon. The absorpton of a photon

More information

You will analyze the motion of the block at different moments using the law of conservation of energy.

You will analyze the motion of the block at different moments using the law of conservation of energy. Physcs 00A Homework 7 Chapter 8 Where s the Energy? In ths problem, we wll consder the ollowng stuaton as depcted n the dagram: A block o mass m sldes at a speed v along a horzontal smooth table. It next

More information

Linear Momentum and Collisions

Linear Momentum and Collisions Lnear Momentum and Collsons Chater 9 Lnear Momentum [kg m/s] x y mv x mv y Newton s nd Law n terms o momentum: Imulse I - [kg m/s] I t t Fdt I = area under curve bounded by t axs Imulse-Momentum Theorem

More information

Numerical Solution of Ordinary Differential Equations

Numerical Solution of Ordinary Differential Equations Numercal Methods (CENG 00) CHAPTER-VI Numercal Soluton of Ordnar Dfferental Equatons 6 Introducton Dfferental equatons are equatons composed of an unknown functon and ts dervatves The followng are examples

More information