MSE 561, Atomic Modeling in Material Science Assignment 1

Size: px
Start display at page:

Download "MSE 561, Atomic Modeling in Material Science Assignment 1"

Transcription

1 Depatment of Mateial Science and Engineeing, Univesity of Pennsylvania MSE 561, Atomic Modeling in Mateial Science Assignment 1 Yang Lu 1. Analytical Solution The close-packed two-dimensional stuctue is shown below, whee neighbos ae coloed based on distances to the cental atom (the blue one). 1, 2 and 3 ae fist, second and thid neaest neighbo spacing espectively Let 1 =, it s easy to find out that 2 = 3, 3 = 2. We only conside the inteactions between the cental atom (epesented by i=1) and its neighbos, because all the atoms ae equivalent. And the total enegy can be witten as, Ep = N Φ(1i ) 2 i 1 Eq.(1) whee N is the total numbe of atoms and Φ(1i) is detemined by Lennad-Jones potential. Now let s conside the following cases, i) only the fist neaest neighbos (ed ones) ae included in Eq.(1) In this case: < cut = 7.50Å, 3 > cut = 7.50Å; 4.33Å< <7.50Å must be satisfied. Fistly, if < 0 = 7.0Å, Eq.(1) can be witten as, Ep = 1 N 6 4 ε [( )12 ( )6 ] = 12N ε [( )12 ( )6 ] 2 Eq.(2)

2 It s easy to find out min = case. 6 2 = 3.82Å (<4.33Å). So when = 4.33Å, Emin = Nε in this Secondly, if > 0 = 7.0Å, Eq.(1) can be witten as, = 3N[A( cut ) 3 + B( cut Eq.(3) Then = 7.0Å, Emin = Nε in this case. ii) the fist and second neaest neighbos ae both included in Eq.(1) In this case: 3 < cut = 7.50Å, 2 > cut = 7.50Å; 3.75Å< <4.33Å must be satisfied. Let s fistly conside 3 < 0 = 7.00Å, < 4.04Å. Then Eq.(1) can be witten as, = 12Nε[( )12 + ( 3 )12 ( )6 ( 3 )6 ] Eq.(4) Take deivative of Ep and it s easy to get min = = 3.80Å (consistent with ou assumption) and coesponding Emin = Nε. Secondly, if 3 > 0 = 7.00Å, > 4.04Å. Then Eq.(1) can be witten as, = 12Nε[( )12 ( )6 ]+ 3N[A( 3 cut ) 3 + B( 3 cut Eq.(5) Let dep/d = 0, It tuns out that it s not min but max that obtained fom Eq.(6). So when = 4.04Å, Emin = Nε in this case. 24ε [ 2( )12 + ( )6 ]+ 3 3A( 3 cut ) B( 3 cut ) = 0 iii) The fist, second and thid neaest neighbos ae all included in Eq.(1) This means 2 < cut = 7.50Å, < 3.75Å. Fistly of all, if 2 < 0 = 7.00Å, < 3.50Å, Eq.(1) can be witten as, Eq.(6) = 12Nε[( )12 + ( 3 )12 + ( 2 )12 ( )6 ( 3 )6 ( 2 )6 ] Eq.(7) Let dep/d = 0, then min = = 3.79Å (>3.50Å). So when = 3.50Å, Emin = Nε in this case. Secondly, if 2 > 0 = 7.00Å, 3.50Å < < 3.75Å ( 3 > 0 is impossible hee), Eq.(1) will become, = 12Nε[( )12 + ( 3 )12 ( )6 ( 3 )6 ]+ 3N[A(2 cut ) 3 + B(2 cut Eq.(8) Let dep/d = 0, 2 12ε [ 2( )12 + ( )6 2 3( 3 )12 + 3( 3 )6 ]+ 3A(2 cut ) 2 + 2B(2 cut ) = 0 Eq.(9)

3 It tuns out that min = 3.39Å (<3.50Å). So when = 3.50Å, Emin = Nε in this case. In all of the thee cases, total enegy becomes lage when moe atoms lie in the "tail" egion. In ode to make all the neighbos befoe the "tail" egion, will become smalle and smalle as moe and moe neighbos ae included. This means min will always lie out of equied ange (min > ), afte case iii). Theefoe, thee s no need to poceed this pocess futhe to include the foth and othe neaest neighbos. In conclusion, total enegy is minimized as Nε (-3.203kJ/mol) when the fist and second neaest neighbos ae included and neaest neighbo spacing equal to 3.80Å. 2. Numeical Solution Besides the analytical solution in the fist section, we could use a pogam to decide the fom of Eq.(1) with a given and then output the total enegy Ep. Afte calculating total enegies using all the possible neaest neighbo spacings, we shall diectly find out Emin and the coesponding min. Fist of all, let s decide the ange of in the pogam. Accoding to case i), has to be smalle than 7.5Å to include at least the fist neighbos. Due to eason descibed in the conclusion of section 1, we don t need to conside neighbos fathe than the thid neaest ones. 4 = 7, so has to be lage than 2.835Å. An aay R(4666) will be ceated to accommodate all the spacings fom 2.835Å to 7.5Å (each step is 0.001Å). So the main pogam can be coded as, PROGRAM MAIN IMPLICIT NONE INTEGER I REAL*8 R(4666), EP OPEN(1, FILE='OUT') DO I=1, 4666 FORTRAN CODES ARE DELETED IN THIS COPY R(I)= *(I-1) CONTACT ME IF YOU NEED MORE INFO. CALL F(R(I), EP) WRITE (1, *) R(I), EP ENDDO CLOSE(1) 3

4 END The suboutine F is used to detemine the analytical fom of Eq.(1) based on the discussion in section 1: if 7.000Å < 7.500Å, Eq.(3) will be used; if 4.330Å < 7.000Å, Eq.(2) will be used; if 4.042Å < 4.330Å, Eq.(5) will be used; if 3.750Å < 4.042Å, Eq.(4) will be used; if 3.500Å < 3.750Å, Eq.(8) will be used; if 2.835Å < 3.500Å, Eq.(7) will be used. So F can be coded as, SUBROUTINE F(R, EP) IMPLICIT NONE REAL*8 R, EP REAL*8 NA, e, A, B NA = 6.02D23 e = *1.6D-19 A = D-3*1.6D-19 B = D-3*1.6D-19 IF (R.LT ) THEN EP=12.0*NA*e*((3.405/R)**12.0+(3.405/R/2.0)**12.0+(3.405/R/ FORTRAN CODES ARE DELETED IN THIS COPY +SQRT(3.0))**12.0-(3.405/R)**6.0-(3.405/R/2.0)**6.0-(3.405/R/ CONTACT ME IF YOU NEED MORE INFO. +SQRT(3.0))**6.0) ELSEIF (R.LT ) THEN EP=12.0*NA*e*((3.405/R)**12.0+(3.405/R/SQRT(3.0))** (3.405/R)**6.0-(3.405/R/SQRT(3.0))**6.0)+3.0*NA*(A*(2.0*R )**3.0+B*(2.0*R-7.500)**2.0) ELSEIF (R.LT ) THEN EP=12.0*NA*e*((3.405/R)**12.0+(3.405/R/SQRT(3.0))** (3.405/R)**6.0-(3.405/R/SQRT(3.0))**6.0) ELSEIF (R.LT ) THEN EP=12.0*NA*e*((3.405/R)**12.0-(3.405/R)**6.0)+3.0*NA*(A* 4

5 +(SQRT(3.0)*R-7.500)**3.0+B*(SQRT(3.0)*R-7.500)**2.0) ELSEIF (R.LT ) THEN EP=12.0*NA*e*((3.405/R)**12.0-(3.405/R)**6.0) ELSE FORTRAN CODES ARE DELETED IN THIS COPY CONTACT ME IF YOU NEED MORE INFO. EP=3.0*NA*(A*(R-7.500)**3.0+B*(R-7.500)**2.0) ENDIF END Finally, the enegy dependence on neaest neighbo spacing is shown below, the value of minimum enegy (-3.203kJ/mol) and its position (=3.80Å) ae exactly the same as what we get in analytical solution. 5

Solving Problems of Advance of Mercury s Perihelion and Deflection of. Photon Around the Sun with New Newton s Formula of Gravity

Solving Problems of Advance of Mercury s Perihelion and Deflection of. Photon Around the Sun with New Newton s Formula of Gravity Solving Poblems of Advance of Mecuy s Peihelion and Deflection of Photon Aound the Sun with New Newton s Fomula of Gavity Fu Yuhua (CNOOC Reseach Institute, E-mail:fuyh945@sina.com) Abstact: Accoding to

More information

Internet Appendix for A Bayesian Approach to Real Options: The Case of Distinguishing Between Temporary and Permanent Shocks

Internet Appendix for A Bayesian Approach to Real Options: The Case of Distinguishing Between Temporary and Permanent Shocks Intenet Appendix fo A Bayesian Appoach to Real Options: The Case of Distinguishing Between Tempoay and Pemanent Shocks Steven R. Genadie Gaduate School of Business, Stanfod Univesity Andey Malenko Gaduate

More information

-Δ u = λ u. u(x,y) = u 1. (x) u 2. (y) u(r,θ) = R(r) Θ(θ) Δu = 2 u + 2 u. r = x 2 + y 2. tan(θ) = y/x. r cos(θ) = cos(θ) r.

-Δ u = λ u. u(x,y) = u 1. (x) u 2. (y) u(r,θ) = R(r) Θ(θ) Δu = 2 u + 2 u. r = x 2 + y 2. tan(θ) = y/x. r cos(θ) = cos(θ) r. The Laplace opeato in pola coodinates We now conside the Laplace opeato with Diichlet bounday conditions on a cicula egion Ω {(x,y) x + y A }. Ou goal is to compute eigenvalues and eigenfunctions of the

More information

Physics 2A Chapter 10 - Moment of Inertia Fall 2018

Physics 2A Chapter 10 - Moment of Inertia Fall 2018 Physics Chapte 0 - oment of netia Fall 08 The moment of inetia of a otating object is a measue of its otational inetia in the same way that the mass of an object is a measue of its inetia fo linea motion.

More information

Computational Methods of Solid Mechanics. Project report

Computational Methods of Solid Mechanics. Project report Computational Methods of Solid Mechanics Poject epot Due on Dec. 6, 25 Pof. Allan F. Bowe Weilin Deng Simulation of adhesive contact with molecula potential Poject desciption In the poject, we will investigate

More information

The Substring Search Problem

The Substring Search Problem The Substing Seach Poblem One algoithm which is used in a vaiety of applications is the family of substing seach algoithms. These algoithms allow a use to detemine if, given two chaacte stings, one is

More information

Nuclear and Particle Physics - Lecture 20 The shell model

Nuclear and Particle Physics - Lecture 20 The shell model 1 Intoduction Nuclea and Paticle Physics - Lectue 0 The shell model It is appaent that the semi-empiical mass fomula does a good job of descibing tends but not the non-smooth behaviou of the binding enegy.

More information

Lecture 3.7 ELECTRICITY. Electric charge Coulomb s law Electric field

Lecture 3.7 ELECTRICITY. Electric charge Coulomb s law Electric field Lectue 3.7 ELECTRICITY Electic chage Coulomb s law Electic field ELECTRICITY Inteaction between electically chages objects Many impotant uses Light Heat Rail tavel Computes Cental nevous system Human body

More information

ASTR415: Problem Set #6

ASTR415: Problem Set #6 ASTR45: Poblem Set #6 Cuan D. Muhlbege Univesity of Mayland (Dated: May 7, 27) Using existing implementations of the leapfog and Runge-Kutta methods fo solving coupled odinay diffeential equations, seveal

More information

Calculation of Quark-antiquark Potential Coefficient and Charge Radius of Light Mesons

Calculation of Quark-antiquark Potential Coefficient and Charge Radius of Light Mesons Applied Physics Reseach ISSN: 96-9639 Vol., No., May E-ISSN: 96-9647 Calculation of Quak-antiquak Potential Coefficient and Chage Radius of Light Mesons M.R. Shojaei (Coesponding autho ) Depatment of Physics

More information

A Bijective Approach to the Permutational Power of a Priority Queue

A Bijective Approach to the Permutational Power of a Priority Queue A Bijective Appoach to the Pemutational Powe of a Pioity Queue Ia M. Gessel Kuang-Yeh Wang Depatment of Mathematics Bandeis Univesity Waltham, MA 02254-9110 Abstact A pioity queue tansfoms an input pemutation

More information

Green s Identities and Green s Functions

Green s Identities and Green s Functions LECTURE 7 Geen s Identities and Geen s Functions Let us ecall The ivegence Theoem in n-dimensions Theoem 7 Let F : R n R n be a vecto field ove R n that is of class C on some closed, connected, simply

More information

Physics 107 TUTORIAL ASSIGNMENT #8

Physics 107 TUTORIAL ASSIGNMENT #8 Physics 07 TUTORIAL ASSIGNMENT #8 Cutnell & Johnson, 7 th edition Chapte 8: Poblems 5,, 3, 39, 76 Chapte 9: Poblems 9, 0, 4, 5, 6 Chapte 8 5 Inteactive Solution 8.5 povides a model fo solving this type

More information

Method for Approximating Irrational Numbers

Method for Approximating Irrational Numbers Method fo Appoximating Iational Numbes Eic Reichwein Depatment of Physics Univesity of Califonia, Santa Cuz June 6, 0 Abstact I will put foth an algoithm fo poducing inceasingly accuate ational appoximations

More information

Rydberg-Rydberg Interactions

Rydberg-Rydberg Interactions Rydbeg-Rydbeg Inteactions F. Robicheaux Aubun Univesity Rydbeg gas goes to plasma Dipole blockade Coheent pocesses in fozen Rydbeg gases (expts) Theoetical investigation of an excitation hopping though

More information

APPENDIX. For the 2 lectures of Claude Cohen-Tannoudji on Atom-Atom Interactions in Ultracold Quantum Gases

APPENDIX. For the 2 lectures of Claude Cohen-Tannoudji on Atom-Atom Interactions in Ultracold Quantum Gases APPENDIX Fo the lectues of Claude Cohen-Tannoudji on Atom-Atom Inteactions in Ultacold Quantum Gases Pupose of this Appendix Demonstate the othonomalization elation(ϕ ϕ = δ k k δ δ )k - The wave function

More information

Inseting this into the left hand side of the equation of motion above gives the most commonly used algoithm in classical molecula dynamics simulations

Inseting this into the left hand side of the equation of motion above gives the most commonly used algoithm in classical molecula dynamics simulations Chem465 in 2000 Univesity of Washington Lectue notes Hannes Jonsson Classical dynamics When we ae dealing with heavy atoms and high enough enegy o tempeatue, it is often suciently accuate to neglect quantum

More information

Chem 453/544 Fall /08/03. Exam #1 Solutions

Chem 453/544 Fall /08/03. Exam #1 Solutions Chem 453/544 Fall 3 /8/3 Exam # Solutions. ( points) Use the genealized compessibility diagam povided on the last page to estimate ove what ange of pessues A at oom tempeatue confoms to the ideal gas law

More information

STUDY ON 2-D SHOCK WAVE PRESSURE MODEL IN MICRO SCALE LASER SHOCK PEENING

STUDY ON 2-D SHOCK WAVE PRESSURE MODEL IN MICRO SCALE LASER SHOCK PEENING Study Rev. Adv. on -D Mate. shock Sci. wave 33 (13) pessue 111-118 model in mico scale lase shock peening 111 STUDY ON -D SHOCK WAVE PRESSURE MODEL IN MICRO SCALE LASER SHOCK PEENING Y.J. Fan 1, J.Z. Zhou,

More information

Reading Assignment. Problem Description for Homework #9. Read Chapters 29 and 30.

Reading Assignment. Problem Description for Homework #9. Read Chapters 29 and 30. Reading Assignment Read Chaptes 29 and 30. Poblem Desciption fo Homewok #9 In this homewok, you will solve the inhomogeneous Laplace s equation to calculate the electic scala potential that exists between

More information

Quantum Fourier Transform

Quantum Fourier Transform Chapte 5 Quantum Fouie Tansfom Many poblems in physics and mathematics ae solved by tansfoming a poblem into some othe poblem with a known solution. Some notable examples ae Laplace tansfom, Legende tansfom,

More information

Exploration of the three-person duel

Exploration of the three-person duel Exploation of the thee-peson duel Andy Paish 15 August 2006 1 The duel Pictue a duel: two shootes facing one anothe, taking tuns fiing at one anothe, each with a fixed pobability of hitting his opponent.

More information

Practice Integration Math 120 Calculus I Fall 2015

Practice Integration Math 120 Calculus I Fall 2015 Pactice Integation Math 0 Calculus I Fall 05 Hee s a list of pactice eecises. Thee s a hint fo each one as well as an answe with intemediate steps... ( + d. Hint. Answe. ( 8 t + t + This fist set of indefinite

More information

A NEW VARIABLE STIFFNESS SPRING USING A PRESTRESSED MECHANISM

A NEW VARIABLE STIFFNESS SPRING USING A PRESTRESSED MECHANISM Poceedings of the ASME 2010 Intenational Design Engineeing Technical Confeences & Computes and Infomation in Engineeing Confeence IDETC/CIE 2010 August 15-18, 2010, Monteal, Quebec, Canada DETC2010-28496

More information

Nuclear size corrections to the energy levels of single-electron atoms

Nuclear size corrections to the energy levels of single-electron atoms Nuclea size coections to the enegy levels of single-electon atoms Babak Nadii Nii a eseach Institute fo Astonomy and Astophysics of Maagha (IAAM IAN P. O. Box: 554-44. Abstact A study is made of nuclea

More information

Part V: Closed-form solutions to Loop Closure Equations

Part V: Closed-form solutions to Loop Closure Equations Pat V: Closed-fom solutions to Loop Closue Equations This section will eview the closed-fom solutions techniques fo loop closue equations. The following thee cases will be consideed. ) Two unknown angles

More information

1D2G - Numerical solution of the neutron diffusion equation

1D2G - Numerical solution of the neutron diffusion equation DG - Numeical solution of the neuton diffusion equation Y. Danon Daft: /6/09 Oveview A simple numeical solution of the neuton diffusion equation in one dimension and two enegy goups was implemented. Both

More information

DOING PHYSICS WITH MATLAB COMPUTATIONAL OPTICS

DOING PHYSICS WITH MATLAB COMPUTATIONAL OPTICS DOING PHYIC WITH MTLB COMPUTTIONL OPTIC FOUNDTION OF CLR DIFFRCTION THEORY Ian Coope chool of Physics, Univesity of ydney ian.coope@sydney.edu.au DOWNLOD DIRECTORY FOR MTLB CRIPT View document: Numeical

More information

Auchmuty High School Mathematics Department Advanced Higher Notes Teacher Version

Auchmuty High School Mathematics Department Advanced Higher Notes Teacher Version The Binomial Theoem Factoials Auchmuty High School Mathematics Depatment The calculations,, 6 etc. often appea in mathematics. They ae called factoials and have been given the notation n!. e.g. 6! 6!!!!!

More information

Practice Integration Math 120 Calculus I D Joyce, Fall 2013

Practice Integration Math 120 Calculus I D Joyce, Fall 2013 Pactice Integation Math 0 Calculus I D Joyce, Fall 0 This fist set of indefinite integals, that is, antideivatives, only depends on a few pinciples of integation, the fist being that integation is invese

More information

Explosive Contagion in Networks (Supplementary Information)

Explosive Contagion in Networks (Supplementary Information) Eplosive Contagion in Netwoks (Supplementay Infomation) Jesús Gómez-Gadeñes,, Laua Loteo, Segei N. Taaskin, and Fancisco J. Péez-Reche Institute fo Biocomputation and Physics of Comple Systems (BIFI),

More information

Right-handed screw dislocation in an isotropic solid

Right-handed screw dislocation in an isotropic solid Dislocation Mechanics Elastic Popeties of Isolated Dislocations Ou study of dislocations to this point has focused on thei geomety and thei ole in accommodating plastic defomation though thei motion. We

More information

A DETAILED STUDY OF THE HIGH ORDER SERIAL RESONANT INVERTER FOR INDUCTION HEATING

A DETAILED STUDY OF THE HIGH ORDER SERIAL RESONANT INVERTER FOR INDUCTION HEATING ELECTRONICS 005 1 3 Septembe, Sozopol, BULGARIA A DETAILED STUDY OF THE HIGH ORDER SERIAL RESONANT INVERTER FOR INDUCTION HEATING Evgeniy Ivanov Popov, Liliya Ivanova Pindeva, Elisaveta Histova Mileva,

More information

PROBLEM SET #1 SOLUTIONS by Robert A. DiStasio Jr.

PROBLEM SET #1 SOLUTIONS by Robert A. DiStasio Jr. POBLM S # SOLUIONS by obet A. DiStasio J. Q. he Bon-Oppenheime appoximation is the standad way of appoximating the gound state of a molecula system. Wite down the conditions that detemine the tonic and

More information

Supplementary information Efficient Enumeration of Monocyclic Chemical Graphs with Given Path Frequencies

Supplementary information Efficient Enumeration of Monocyclic Chemical Graphs with Given Path Frequencies Supplementay infomation Efficient Enumeation of Monocyclic Chemical Gaphs with Given Path Fequencies Masaki Suzuki, Hioshi Nagamochi Gaduate School of Infomatics, Kyoto Univesity {m suzuki,nag}@amp.i.kyoto-u.ac.jp

More information

A Relativistic Electron in a Coulomb Potential

A Relativistic Electron in a Coulomb Potential A Relativistic Electon in a Coulomb Potential Alfed Whitehead Physics 518, Fall 009 The Poblem Solve the Diac Equation fo an electon in a Coulomb potential. Identify the conseved quantum numbes. Specify

More information

New problems in universal algebraic geometry illustrated by boolean equations

New problems in universal algebraic geometry illustrated by boolean equations New poblems in univesal algebaic geomety illustated by boolean equations axiv:1611.00152v2 [math.ra] 25 Nov 2016 Atem N. Shevlyakov Novembe 28, 2016 Abstact We discuss new poblems in univesal algebaic

More information

Electric Field. y s +q. Point charge: Uniformly charged sphere: Dipole: for r>>s :! ! E = 1. q 1 r 2 ˆr. E sphere. at <0,r,0> at <0,0,r>

Electric Field. y s +q. Point charge: Uniformly charged sphere: Dipole: for r>>s :! ! E = 1. q 1 r 2 ˆr. E sphere. at <0,r,0> at <0,0,r> Electic Field Point chage: E " ˆ Unifomly chaged sphee: E sphee E sphee " Q ˆ fo >R (outside) fo >s : E " s 3,, at z y s + x Dipole moment: p s E E s "#,, 3 s "#,, 3 at

More information

The tunneling spectrum of Einsein Born-Infeld Black Hole. W. Ren2

The tunneling spectrum of Einsein Born-Infeld Black Hole. W. Ren2 Intenational Confeence on Engineeing Management Engineeing Education and Infomation Technology (EMEEIT 015) The tunneling spectum of Einsein Bon-Infeld Black Hole J Tang1 W Ren Y Han3 1 Aba teaches college

More information

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007

School of Electrical and Computer Engineering, Cornell University. ECE 303: Electromagnetic Fields and Waves. Fall 2007 School of Electical and Compute Engineeing, Conell Univesity ECE 303: Electomagnetic Fields and Waves Fall 007 Homewok 8 Due on Oct. 19, 007 by 5:00 PM Reading Assignments: i) Review the lectue notes.

More information

Supplementary material for the paper Platonic Scattering Cancellation for Bending Waves on a Thin Plate. Abstract

Supplementary material for the paper Platonic Scattering Cancellation for Bending Waves on a Thin Plate. Abstract Supplementay mateial fo the pape Platonic Scatteing Cancellation fo Bending Waves on a Thin Plate M. Fahat, 1 P.-Y. Chen, 2 H. Bağcı, 1 S. Enoch, 3 S. Guenneau, 3 and A. Alù 2 1 Division of Compute, Electical,

More information

B. Spherical Wave Propagation

B. Spherical Wave Propagation 11/8/007 Spheical Wave Popagation notes 1/1 B. Spheical Wave Popagation Evey antenna launches a spheical wave, thus its powe density educes as a function of 1, whee is the distance fom the antenna. We

More information

9.1 The multiplicative group of a finite field. Theorem 9.1. The multiplicative group F of a finite field is cyclic.

9.1 The multiplicative group of a finite field. Theorem 9.1. The multiplicative group F of a finite field is cyclic. Chapte 9 Pimitive Roots 9.1 The multiplicative goup of a finite fld Theoem 9.1. The multiplicative goup F of a finite fld is cyclic. Remak: In paticula, if p is a pime then (Z/p) is cyclic. In fact, this

More information

Chapter 2: Basic Physics and Math Supplements

Chapter 2: Basic Physics and Math Supplements Chapte 2: Basic Physics and Math Supplements Decembe 1, 215 1 Supplement 2.1: Centipetal Acceleation This supplement expands on a topic addessed on page 19 of the textbook. Ou task hee is to calculate

More information

Determining solar characteristics using planetary data

Determining solar characteristics using planetary data Detemining sola chaacteistics using planetay data Intoduction The Sun is a G-type main sequence sta at the cente of the Sola System aound which the planets, including ou Eath, obit. In this investigation

More information

Mobility of atoms and diffusion. Einstein relation.

Mobility of atoms and diffusion. Einstein relation. Mobility of atoms and diffusion. Einstein elation. In M simulation we can descibe the mobility of atoms though the mean squae displacement that can be calculated as N 1 MS ( t ( i ( t i ( 0 N The MS contains

More information

FZX: Personal Lecture Notes from Daniel W. Koon St. Lawrence University Physics Department CHAPTER 7

FZX: Personal Lecture Notes from Daniel W. Koon St. Lawrence University Physics Department CHAPTER 7 FZX: Pesonal Lectue Notes fom Daniel W. Koon St. Lawence Univesity Physics Depatment CHAPTER 7 Please epot any glitches, bugs o eos to the autho: dkoon at stlawu.edu. 7. Momentum and Impulse Impulse page

More information

Numerical Integration

Numerical Integration MCEN 473/573 Chapte 0 Numeical Integation Fall, 2006 Textbook, 0.4 and 0.5 Isopaametic Fomula Numeical Integation [] e [ ] T k = h B [ D][ B] e B Jdsdt In pactice, the element stiffness is calculated numeically.

More information

Section 11. Timescales Radiation transport in stars

Section 11. Timescales Radiation transport in stars Section 11 Timescales 11.1 Radiation tanspot in stas Deep inside stas the adiation eld is vey close to black body. Fo a black-body distibution the photon numbe density at tempeatue T is given by n = 2

More information

arxiv: v1 [physics.gen-ph] 18 Aug 2018

arxiv: v1 [physics.gen-ph] 18 Aug 2018 Path integal and Sommefeld quantization axiv:1809.04416v1 [physics.gen-ph] 18 Aug 018 Mikoto Matsuda 1, and Takehisa Fujita, 1 Japan Health and Medical technological college, Tokyo, Japan College of Science

More information

d 2 x 0a d d =0. Relative to an arbitrary (accelerating frame) specified by x a = x a (x 0b ), the latter becomes: d 2 x a d 2 + a dx b dx c

d 2 x 0a d d =0. Relative to an arbitrary (accelerating frame) specified by x a = x a (x 0b ), the latter becomes: d 2 x a d 2 + a dx b dx c Chapte 6 Geneal Relativity 6.1 Towads the Einstein equations Thee ae seveal ways of motivating the Einstein equations. The most natual is pehaps though consideations involving the Equivalence Pinciple.

More information

5.61 Physical Chemistry Lecture #23 page 1 MANY ELECTRON ATOMS

5.61 Physical Chemistry Lecture #23 page 1 MANY ELECTRON ATOMS 5.6 Physical Chemisty Lectue #3 page MAY ELECTRO ATOMS At this point, we see that quantum mechanics allows us to undestand the helium atom, at least qualitatively. What about atoms with moe than two electons,

More information

Between any two masses, there exists a mutual attractive force.

Between any two masses, there exists a mutual attractive force. YEAR 12 PHYSICS: GRAVITATION PAST EXAM QUESTIONS Name: QUESTION 1 (1995 EXAM) (a) State Newton s Univesal Law of Gavitation in wods Between any two masses, thee exists a mutual attactive foce. This foce

More information

I. CONSTRUCTION OF THE GREEN S FUNCTION

I. CONSTRUCTION OF THE GREEN S FUNCTION I. CONSTRUCTION OF THE GREEN S FUNCTION The Helmohltz equation in 4 dimensions is 4 + k G 4 x, x = δ 4 x x. In this equation, G is the Geen s function and 4 efes to the dimensionality. In the vey end,

More information

Hydroelastic Analysis of a 1900 TEU Container Ship Using Finite Element and Boundary Element Methods

Hydroelastic Analysis of a 1900 TEU Container Ship Using Finite Element and Boundary Element Methods TEAM 2007, Sept. 10-13, 2007,Yokohama, Japan Hydoelastic Analysis of a 1900 TEU Containe Ship Using Finite Element and Bounday Element Methods Ahmet Egin 1)*, Levent Kaydıhan 2) and Bahadı Uğulu 3) 1)

More information

Stress Intensity Factor

Stress Intensity Factor S 47 Factue Mechanics http://imechanicaog/node/7448 Zhigang Suo Stess Intensity Facto We have modeled a body by using the linea elastic theoy We have modeled a cack in the body by a flat plane, and the

More information

ITI Introduction to Computing II

ITI Introduction to Computing II ITI 1121. Intoduction to Computing II Macel Tucotte School of Electical Engineeing and Compute Science Abstact data type: Stack Stack-based algoithms Vesion of Febuay 2, 2013 Abstact These lectue notes

More information

3.6 Applied Optimization

3.6 Applied Optimization .6 Applied Optimization Section.6 Notes Page In this section we will be looking at wod poblems whee it asks us to maimize o minimize something. Fo all the poblems in this section you will be taking the

More information

The geometric construction of Ewald sphere and Bragg condition:

The geometric construction of Ewald sphere and Bragg condition: The geometic constuction of Ewald sphee and Bagg condition: The constuction of Ewald sphee must be done such that the Bagg condition is satisfied. This can be done as follows: i) Daw a wave vecto k in

More information

Errors in Nobel Prize for Physics (3) Conservation of Energy Leads to Probability Conservation of Parity, Momentum and so on

Errors in Nobel Prize for Physics (3) Conservation of Energy Leads to Probability Conservation of Parity, Momentum and so on Eos in Nobel ize fo hysics (3) Conseation of Enegy Leads to obability Conseation of aity, Momentum and so on Fu Yuhua (CNOOC Reseach Institute, E-mail:fuyh945@sina.com) Abstact: One of the easons fo 957

More information

MONTE CARLO SIMULATION OF FLUID FLOW

MONTE CARLO SIMULATION OF FLUID FLOW MONTE CARLO SIMULATION OF FLUID FLOW M. Ragheb 3/7/3 INTRODUCTION We conside the situation of Fee Molecula Collisionless and Reflective Flow. Collisionless flows occu in the field of aefied gas dynamics.

More information

This brief note explains why the Michel-Levy colour chart for birefringence looks like this...

This brief note explains why the Michel-Levy colour chart for birefringence looks like this... This bief note explains why the Michel-Levy colou chat fo biefingence looks like this... Theoy of Levy Colou Chat fo Biefingent Mateials Between Cossed Polas Biefingence = n n, the diffeence of the efactive

More information

MEASURING CHINESE RISK AVERSION

MEASURING CHINESE RISK AVERSION MEASURING CHINESE RISK AVERSION --Based on Insuance Data Li Diao (Cental Univesity of Finance and Economics) Hua Chen (Cental Univesity of Finance and Economics) Jingzhen Liu (Cental Univesity of Finance

More information

Math 301: The Erdős-Stone-Simonovitz Theorem and Extremal Numbers for Bipartite Graphs

Math 301: The Erdős-Stone-Simonovitz Theorem and Extremal Numbers for Bipartite Graphs Math 30: The Edős-Stone-Simonovitz Theoem and Extemal Numbes fo Bipatite Gaphs May Radcliffe The Edős-Stone-Simonovitz Theoem Recall, in class we poved Tuán s Gaph Theoem, namely Theoem Tuán s Theoem Let

More information

Tutorial Exercises: Central Forces

Tutorial Exercises: Central Forces Tutoial Execises: Cental Foces. Tuning Points fo the Keple potential (a) Wite down the two fist integals fo cental motion in the Keple potential V () = µm/ using J fo the angula momentum and E fo the total

More information

Fractional Zero Forcing via Three-color Forcing Games

Fractional Zero Forcing via Three-color Forcing Games Factional Zeo Focing via Thee-colo Focing Games Leslie Hogben Kevin F. Palmowski David E. Robeson Michael Young May 13, 2015 Abstact An -fold analogue of the positive semidefinite zeo focing pocess that

More information

( ) [ ] [ ] [ ] δf φ = F φ+δφ F. xdx.

( ) [ ] [ ] [ ] δf φ = F φ+δφ F. xdx. 9. LAGRANGIAN OF THE ELECTROMAGNETIC FIELD In the pevious section the Lagangian and Hamiltonian of an ensemble of point paticles was developed. This appoach is based on a qt. This discete fomulation can

More information

A Lattice Energy Calculation for LiH

A Lattice Energy Calculation for LiH A Lattice Enegy Calculation fo LiH Fank Riou Lithium hyie is a white cystalline soli with the face-centee cubic cystal stuctue (see lattice shown below). The moel fo LiH(s) popose in this stuy constists

More information

A Hartree-Fock Example Using Helium

A Hartree-Fock Example Using Helium Univesity of Connecticut DigitalCommons@UConn Chemisty Education Mateials Depatment of Chemisty June 6 A Hatee-Fock Example Using Helium Cal W. David Univesity of Connecticut, Cal.David@uconn.edu Follow

More information

Many Electron Atoms. Electrons can be put into approximate orbitals and the properties of the many electron systems can be catalogued

Many Electron Atoms. Electrons can be put into approximate orbitals and the properties of the many electron systems can be catalogued Many Electon Atoms The many body poblem cannot be solved analytically. We content ouselves with developing appoximate methods that can yield quite accuate esults (but usually equie a compute). The electons

More information

The Strain Compatibility Equations in Polar Coordinates RAWB, Last Update 27/12/07

The Strain Compatibility Equations in Polar Coordinates RAWB, Last Update 27/12/07 The Stain Compatibility Equations in Pola Coodinates RAWB Last Update 7//7 In D thee is just one compatibility equation. In D polas it is (Equ.) whee denotes the enineein shea (twice the tensoial shea)

More information

COMPUTATIONS OF ELECTROMAGNETIC FIELDS RADIATED FROM COMPLEX LIGHTNING CHANNELS

COMPUTATIONS OF ELECTROMAGNETIC FIELDS RADIATED FROM COMPLEX LIGHTNING CHANNELS Pogess In Electomagnetics Reseach, PIER 73, 93 105, 2007 COMPUTATIONS OF ELECTROMAGNETIC FIELDS RADIATED FROM COMPLEX LIGHTNING CHANNELS T.-X. Song, Y.-H. Liu, and J.-M. Xiong School of Mechanical Engineeing

More information

7.2. Coulomb s Law. The Electric Force

7.2. Coulomb s Law. The Electric Force Coulomb s aw Recall that chaged objects attact some objects and epel othes at a distance, without making any contact with those objects Electic foce,, o the foce acting between two chaged objects, is somewhat

More information

Steady State and Transient Performance Analysis of Three Phase Induction Machine using MATLAB Simulations

Steady State and Transient Performance Analysis of Three Phase Induction Machine using MATLAB Simulations Intenational Jounal of Recent Tends in Engineeing, Vol, No., May 9 Steady State and Tansient Pefomance Analysis of Thee Phase Induction Machine using MATAB Simulations Pof. Himanshu K. Patel Assistant

More information

15.081J/6.251J Introduction to Mathematical Programming. Lecture 6: The Simplex Method II

15.081J/6.251J Introduction to Mathematical Programming. Lecture 6: The Simplex Method II 15081J/6251J Intoduction to Mathematical Pogamming ectue 6: The Simplex Method II 1 Outline Revised Simplex method Slide 1 The full tableau implementation Anticycling 2 Revised Simplex Initial data: A,

More information

A New Approach to General Relativity

A New Approach to General Relativity Apeion, Vol. 14, No. 3, July 7 7 A New Appoach to Geneal Relativity Ali Rıza Şahin Gaziosmanpaşa, Istanbul Tukey E-mail: aizasahin@gmail.com Hee we pesent a new point of view fo geneal elativity and/o

More information

Circular Orbits. and g =

Circular Orbits. and g = using analyse planetay and satellite motion modelled as unifom cicula motion in a univesal gavitation field, a = v = 4π and g = T GM1 GM and F = 1M SATELLITES IN OBIT A satellite is any object that is

More information

The evolution of the phase space density of particle beams in external fields

The evolution of the phase space density of particle beams in external fields The evolution of the phase space density of paticle beams in extenal fields E.G.Bessonov Lebedev Phys. Inst. RAS, Moscow, Russia, COOL 09 Wokshop on Beam Cooling and Related Topics August 31 Septembe 4,

More information

EM Boundary Value Problems

EM Boundary Value Problems EM Bounday Value Poblems 10/ 9 11/ By Ilekta chistidi & Lee, Seung-Hyun A. Geneal Desciption : Maxwell Equations & Loentz Foce We want to find the equations of motion of chaged paticles. The way to do

More information

2.25 Advanced Fluid Mechanics

2.25 Advanced Fluid Mechanics MIT Depatment of Mechanical Engineeing 2.25 Advanced Fluid Mechanics Poblem 4.27 This poblem is fom Advanced Fluid Mechanics Poblems by A.H. Shapio and A.A. Sonin u(,t) pg Gas Liquid, density Conside a

More information

MODULE 5 ADVANCED MECHANICS GRAVITATIONAL FIELD: MOTION OF PLANETS AND SATELLITES VISUAL PHYSICS ONLINE

MODULE 5 ADVANCED MECHANICS GRAVITATIONAL FIELD: MOTION OF PLANETS AND SATELLITES VISUAL PHYSICS ONLINE VISUAL PHYSICS ONLIN MODUL 5 ADVANCD MCHANICS GRAVITATIONAL FILD: MOTION OF PLANTS AND SATLLITS SATLLITS: Obital motion of object of mass m about a massive object of mass M (m

More information

Modeling Fermi Level Effects in Atomistic Simulations

Modeling Fermi Level Effects in Atomistic Simulations Mat. Res. Soc. Symp. Poc. Vol. 717 Mateials Reseach Society Modeling Femi Level Effects in Atomistic Simulations Zudian Qin and Scott T. Dunham Depatment of Electical Engineeing, Univesity of Washington,

More information

Computation of the Locations of the Libration Points in the Relativistic Restricted Three-Body Problem

Computation of the Locations of the Libration Points in the Relativistic Restricted Three-Body Problem Ameican Jounal of Applied Sciences 9 (5): 659-665, 0 ISSN 546-99 0 Science Publications Computation of the Locations of the Libation Points in the Relativistic Resticted Thee-Body Poblem, Abd El-Ba, S.E.

More information

Analysis and Optimization of a Special Type of Dielectric Loaded Resonant Cavity for Mobile Communication Filters

Analysis and Optimization of a Special Type of Dielectric Loaded Resonant Cavity for Mobile Communication Filters 328 Analysis and Optimization of a Special Type of Dielectic Loaded Resonant Cavity fo Mobile Communication Filtes Haold S. Showes, Banmali S. Rawat *, Syam S. Challa Depatment of Electical and Biomedical

More information

Chapter 5 Force and Motion

Chapter 5 Force and Motion Chapte 5 Foce and Motion In Chaptes 2 and 4 we have studied kinematics, i.e., we descibed the motion of objects using paametes such as the position vecto, velocity, and acceleation without any insights

More information

DonnishJournals

DonnishJournals DonnishJounals 041-1189 Donnish Jounal of Educational Reseach and Reviews. Vol 1(1) pp. 01-017 Novembe, 014. http:///dje Copyight 014 Donnish Jounals Oiginal Reseach Pape Vecto Analysis Using MAXIMA Savaş

More information

Homework 7 Solutions

Homework 7 Solutions Homewok 7 olutions Phys 4 Octobe 3, 208. Let s talk about a space monkey. As the space monkey is oiginally obiting in a cicula obit and is massive, its tajectoy satisfies m mon 2 G m mon + L 2 2m mon 2

More information

Chapter 5 Force and Motion

Chapter 5 Force and Motion Chapte 5 Foce and Motion In chaptes 2 and 4 we have studied kinematics i.e. descibed the motion of objects using paametes such as the position vecto, velocity and acceleation without any insights as to

More information

FW Laboratory Exercise. Survival Estimation from Banded/Tagged Animals. Year No. i Tagged

FW Laboratory Exercise. Survival Estimation from Banded/Tagged Animals. Year No. i Tagged FW66 -- Laboatoy Execise uvival Estimation fom Banded/Tagged Animals Conside a geogaphically closed population of tout (Youngs and Robson 97). The adults ae tagged duing fall spawning, and subsequently

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science Time: Apil, 006, -3:30pm MASSACHUSETTS INSTITUTE OF TECHNOLOGY Depatment of Electical Engineeing and Compute Science 6.097 UG Fundamentals of Photonics 6.974 G Quantum Electonics Sping 006 Qui II Poblems

More information

Motion along curved path *

Motion along curved path * OpenStax-CNX module: m14091 1 Motion along cuved path * Sunil Kuma Singh This wok is poduced by OpenStax-CNX and licensed unde the Ceative Commons Attibution License 2.0 We all expeience motion along a

More information

Section 8.2 Polar Coordinates

Section 8.2 Polar Coordinates Section 8. Pola Coodinates 467 Section 8. Pola Coodinates The coodinate system we ae most familia with is called the Catesian coodinate system, a ectangula plane divided into fou quadants by the hoizontal

More information

Physics 2B Chapter 22 Notes - Magnetic Field Spring 2018

Physics 2B Chapter 22 Notes - Magnetic Field Spring 2018 Physics B Chapte Notes - Magnetic Field Sping 018 Magnetic Field fom a Long Staight Cuent-Caying Wie In Chapte 11 we looked at Isaac Newton s Law of Gavitation, which established that a gavitational field

More information

Graphs of Sine and Cosine Functions

Graphs of Sine and Cosine Functions Gaphs of Sine and Cosine Functions In pevious sections, we defined the tigonometic o cicula functions in tems of the movement of a point aound the cicumfeence of a unit cicle, o the angle fomed by the

More information

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1 Please ead this fist... AST S: The oigin and evolution of the Univese Intoduction to Mathematical Handout This is an unusually long hand-out and one which uses in places mathematics that you may not be

More information

1) (A B) = A B ( ) 2) A B = A. i) A A = φ i j. ii) Additional Important Properties of Sets. De Morgan s Theorems :

1) (A B) = A B ( ) 2) A B = A. i) A A = φ i j. ii) Additional Important Properties of Sets. De Morgan s Theorems : Additional Impotant Popeties of Sets De Mogan s Theoems : A A S S Φ, Φ S _ ( A ) A ) (A B) A B ( ) 2) A B A B Cadinality of A, A, is defined as the numbe of elements in the set A. {a,b,c} 3, { }, while

More information

ON INDEPENDENT SETS IN PURELY ATOMIC PROBABILITY SPACES WITH GEOMETRIC DISTRIBUTION. 1. Introduction. 1 r r. r k for every set E A, E \ {0},

ON INDEPENDENT SETS IN PURELY ATOMIC PROBABILITY SPACES WITH GEOMETRIC DISTRIBUTION. 1. Introduction. 1 r r. r k for every set E A, E \ {0}, ON INDEPENDENT SETS IN PURELY ATOMIC PROBABILITY SPACES WITH GEOMETRIC DISTRIBUTION E. J. IONASCU and A. A. STANCU Abstact. We ae inteested in constucting concete independent events in puely atomic pobability

More information

Diffusion and Transport. 10. Friction and the Langevin Equation. Langevin Equation. f d. f ext. f () t f () t. Then Newton s second law is ma f f f t.

Diffusion and Transport. 10. Friction and the Langevin Equation. Langevin Equation. f d. f ext. f () t f () t. Then Newton s second law is ma f f f t. Diffusion and Tanspot 10. Fiction and the Langevin Equation Now let s elate the phenomena of ownian motion and diffusion to the concept of fiction, i.e., the esistance to movement that the paticle in the

More information

Engineering Physics-I Crystal Physics- Atomic rad., Coord. No.,APF for SC and BCC

Engineering Physics-I Crystal Physics- Atomic rad., Coord. No.,APF for SC and BCC Intoduction Most of the mateials in solid state ae cystalline. Among these many ae in the polycystalline state. To obtain single cystal one has to employ a suitable cystal gowth method. This may vay fom

More information

As is natural, our Aerospace Structures will be described in a Euclidean three-dimensional space R 3.

As is natural, our Aerospace Structures will be described in a Euclidean three-dimensional space R 3. Appendix A Vecto Algeba As is natual, ou Aeospace Stuctues will be descibed in a Euclidean thee-dimensional space R 3. A.1 Vectos A vecto is used to epesent quantities that have both magnitude and diection.

More information