Theory. Single Soil Layer. ProShake User s Manual

Size: px
Start display at page:

Download "Theory. Single Soil Layer. ProShake User s Manual"

Transcription

1 PoShake Ue Manual Theoy PoShake ue a fequency domain appoach to olve the gound epone poblem. In imple tem, the input motion i epeented a the um of a eie of ine wave of diffeent amplitude, fequencie, and phae angle. A elatively imple olution fo the epone of the oil pofile to ine wave of diffeent fequencie (in the fom of a tanfe function) i ued to obtain the epone of the oil depoit to each of the input ine wave. The oveall epone i obtained by umming the individual epone to each of the input ine wave. Thi ection decibe the baic mathematic of the poce fo a poblem involving a ingle oil laye, illutate how that poblem can be olved uing a widely available mathematical pogamming language, and ext the appoach to layeed ytem. Single Soil Laye The following paagaph decibe the bai of the analyi ued in PoShake and follow the geneal appoach of Kame (996). That efeence povide ubtantial backgound mateial and a moe detailed deciption of gound epone analye than i peented in thi Ue Manual. A B H To illutate the baic appoach ued in PoShake, conide a unifom oil laye lying on an elatic laye of ock that ext to infinite depth, a illutated to the ight. If the ubcipt and A B efe to oil and ock, epectively, the hoiontal diplacement due to vetically popagating hamonic -wave in each mateial can be witten a u ( t) Ae i ( t k ) B e i ( t k ), ω + + ω () u ( t) A e i ( t k ) B e i ( t k ), ω + + ω () whee ω i the cicula fequency of the hamonic wave and k i the complex wave numbe. No hea te can exit at the gound uface ( ), o τ(, ) (, ) γ (, ) t G t G u t (3) whee G G( + iξ ) i the complex hea modulu of the oil. Subtituting Equation () into Equation (3) and diffeentiating give ( i k ) i t ( ) G i k Ae i k ( ) B e ( ) e ω G i k A B e i ω t (4) which i atified when A B. Compatibility of diplacement and continuity of tee at the oil/ock bounday equie 35

2 PoShake Ue' Manual u( H) u ( ) (5) τ ( H) τ ( ) (6) Subtituting Equation () and () into Equation (5) ik ( H ik H) A e + e A + B (7) Fom Equation (6) and the definition of hea te (τ G u ) o The atio ik ( H ik H) ( ) A i G k e e i G k A B ik H ik H ( ) G k G k A e e A B (8) G k α G k whee α i known a the complex impedance atio. Solving Equation (7) and (8) imultaneouly give [( ) ik H ( ) ik H] A A + α e + α e (9a) [( ) ik H ( ) ik H] B A α e + + α e (9b) If a vetically popagating hea wave of amplitude, A, taveled upwad though the ock and the oil wa not peent, the fee uface effect at the ock outcop would poduce a bedock outcopping motion of amplitude A. If the oil wa peent, the fee uface motion amplitude would be A 4A ( α ) eik H ( α ) + ik H + e 36

3 PoShake Ue Manual The tanfe function, F(ω), defined a the atio of the oil uface amplitude to the ock outcop amplitude, i given by F( ω) ( α ) eik H ( α ) + + e ik H Obviouly, the tanfe function i a complex function. It can be ewitten uing Eule' Law a F( ω) cok H + iα in k () H Solution of Single Laye Poblem Becaue the tanfe function i defined a the atio of the oil uface amplitude to the ock outcop amplitude, the oil uface amplitude can be obtained a the poduct of the ock outcop amplitude and the tanfe function. Theefoe, the epone of the oil laye to a peiodic input motion can be obtained by the following tep:. Expe the input (ock outcop) motion in the fequency domain a a Fouie eie (a the um of a eie of ine wave of diffeent amplitude, fequencie, and phae angle). Fo an eathquake motion, thi Fouie eie will have both eal and imaginay pat.. Define the tanfe function (Equation ). The tanfe function will have both eal and imaginay pat. 3. Compute the Fouie eie of the output (gound uface) motion a the poduct of the Fouie eie of the input (bedock) motion and the tanfe function. Thi Fouie eie will alo have both eal and imaginay pat. 4. Expe the output motion in the time domain by mean of an invee Fouie tanfom. Thee tep ae coded into a pogam uing the mathematical poceing pogam MATLAB in the box located below. The yntax of a MATLAB pogam i imila to common language uch a FORTRAN and BASIC, but MATLAB contain high-level function that allow many complicated calculation and gaphic command to be poceed in a ingle line of text. The MATLAB pogam i well-commented, and hould be elatively eay to follow. 37

4 PoShake Ue' Manual % EX73.M - A MATLAB cipt fo computing the eimic epone of a unifom % damped oil laye on elatic bedock. Input data coepond to % Example 7.3 in Kame, S.L. (996), Geotechnical Eathquake % Engineeing, Pentice Hall, 653 pp. % height54; % oil laye thickne v5; % oil hea wave velocity v5; % ock hea wave velocity ho_5; % oil unit weight ho_6; % ock unit weight x.5; % oil damping atio x.; % ock damping atio load ge.dat % load input motion nlength(ge); fo j:n+ a(j)ge(j-)/98; a().; dt.; df./(ndt); t.:dt:ndt; f.:df:ndf; afftfft(a)/n; abfftab(afft); fo j:n/+ b(j).abfft(j); ff(j)f(j); % hift and convet input motion to g % time tep % fequency incement % et up time vecto % et up fequency vecto % et up ingle-ided FAS alpha_(ho_v(+ix))/(ho_v(+ix)); % complex impedance atio h().; fo j:n/+ kh(j)pif(j)height/(v+xiv); h(j)./(co(kh(j))+ialpha_in(kh(j))); h(n+3-j)conj(h(j)); fo j:n/+ hab(j)ab(h(j)); ubplot(5,,) plot(t,a) ubplot(5,,) plot(ff,b) ubplot(5,,3) plot(ff,hab) fo j:n+ acc(j)afft(j)h(j); fo j:n/+ acc(j).ab(acc(j)); ubplot(5,,4) plot(ff,acc) atimeneal(ifft(acc)); ubplot(5,,5) plot(t,atime) % wave numbe x thickne % left half of tanfe function % ight half of tanfe function % modulu of tanfe function (fo plotting) % plot input motion (time domain) % plot FAS of input motion (fequency domain) % plot modulu of tanfe function (feq. domain) % compute output motion in fequency domain % compute FAS of output motion % plot FAS of output motion (fequency domain) % plot output motion (time domain) The vaiable defined in the fit pat of the MATLAB pogam coepond to Example 7.3 in Kame (996). Thi example conide the epone of a 54 ft thick oil laye of oil (v 5 ft/ec, γ5 pcf, and ξ5%) ovelying bedock (v 5 ft/ec, γ6 pcf, and ξ%). The MATLAB pogam geneate the plot hown below. 38

5 PoShake Ue Manual The fit of thee plot how a time hitoy of acceleation of the 4-ec input motion in the time domain. Immediately below thi i the Fouie amplitude pectum of the input motion - the Fouie amplitude pectum how the vaiation of amplitude with fequency fo each of the fequencie in the Fouie eie. The abcia of the econd, thid, and fouth plot ae fequency in H. The thid plot how the modulu (the quae oot of the um of the quae of the eal and imaginay pat) of the tanfe function. The tanfe function i clealy een to have a eie of local peak that illutate the natue of amplification that will take place at the natual fequencie of the oil laye; note that the geatet amplification will take place at the lowet natual fequency (whee the tanfe function eache it global maximum). The fouth plot how the Fouie amplitude pectum of the output (gound uface) motion which i numeically equal to the poduct of the input motion (econd plot) and the tanfe function (thid plot). The oigin of thi pectum i clealy een by compaing the econd, thid, and fouth plot - the peak in the fouth plot (the output motion) ae elated to the peak in the econd plot (the input motion) and the thid plot (the tanfe function). Finally, the lat plot how the output (gound uface) motion in the time domain a obtained by taking the invee Fouie tanfom of the output motion in the fequency domain. Multiple Soil Laye The baic appoach decibed in the peceding ection i alo ued to analye layeed oil depoit in PoShake - the only diffeence i that the tanfe function i diffeent fo a layeed oil depoit. The tanfe function fo a layeed oil depoit mut account fo the tanmiion and eflection of wave at boundaie between adjacent laye, much a thoe facto wee accounted fo at the oil/ock bounday in the peviou ection. 39

6 PoShake Ue' Manual Conide the oil depoit hown to the ight. Within a given laye, ay laye j, the hoiontal diplacement will be given by h h G G x x ik ik (, ) ( j j j j j ) u j i t j t A j e + B e e ω () At the bounday between laye j and laye j+, compatibility of diplacement equie that ϕ ϕ+ N N+ h ϕ hϕ+ h Ν Gϕ x j j Gϕ+ x j+ j+ GN x N N G x N+ N+ N+ j j j j A ik h ik h j+ + B j+ A j e + B j e () Continuity of hea tee equie that G j k j ik h A j B j A je j B ik h j e j + + G j+ k j+ (3) Note that Equation () and (3) ae analogou to Equation (7) and (8), epectively. Defining α j a the complex impedance atio at the bounday between laye j and j+, the wave amplitude fo laye j+ can be obtained fom the amplitude of laye j by olving Equation () and (3) ( ik h ) j( j) ( ik h ) j( j) A ik h j A j j e j j B e j j + + α + α (4a) B ik h j A j j e j j B e j j + α + + α (4b) At the gound uface ( ), the equiement that the hea te mut be eo mean that A B. Applying Equation (4) ecuively fo j,, 3,, N, the coefficient A j + and B j + can be elated to A j and B j by A j+ a j+ ( ω ) A (5a) B j+ b j+ ( ω ) B (5b) whee the function a j+ ( ω ) and b j+ ( ω ) epeent the effect of the wave inteaction that take place at all of the laye inteface above laye j+. Then, a tanfe function elating the motion at the top of any two laye, ay laye i and j, can be expeed a 4

7 PoShake Ue Manual Fij ( ω) ai ( ω) + bi( ω) a j ( ω) + b j ( ω) (6) Thi tanfe function can become quite complicated, but it i ued in exactly the ame way a the much imple tanfe function developed fo the ingle laye cae. In fact, the MATLAB pogam that illutated the ingle laye cae could be ued to compute the epone fo a multilayeed poblem by changing only one line - the line whee the tanfe function i defined (with the comment % left half of tanfe function). Equivalent Linea Analyi The nonlinea and inelatic behavio of oil i well etablihed in geotechnical engineeing. The nonlineaity of oil te-tain behavio mean that the hea modulu of the oil i contantly changing. The inelaticity mean that the oil unload along a diffeent path than it loading path, theeby diipating enegy at the point of contact between paticle. Rigoou analyi of the mechanical epone of oil to any type of loading, dynamic o othewie, would equie that the te-tain behavio of each element of oil be tacked diectly in the time domain. The method of analyi ued in SHAKE (and PoShake) cannot allow fo nonlinea te-tain behavio becaue it epeentation of the input motion by a Fouie eie and ue of tanfe function fo olution of the wave equation ely on the pinciple of upepoition - which i only valid fo linea ytem. To appoximate the actual nonlinea, inelatic epone of oil, τ an equivalent linea appoach can be utilied. In the equivalent G ec linea appoach, linea analye ae pefomed with oil popetie that ae iteatively adjuted to be conitent with an effective level of hea tain induced in the oil. In the equivalent linea appoach, the hea modulu i taken a the γ ecant hea modulu which, a hown to the ight, appoximate an aveage hea modulu ove an entie cycle of loading. A the level of hea tain inceae, the ecant hea modulu deceae. The elationhip between ecant hea modulu and hea tain amplitude can be chaacteied by mean of a modulu eduction cuve. The natue of thi cuve, which ha an odinate of modulu atio ( G/G max ) and an abcia of log (hea tain), ha been well etablihed fo many oil. PoShake ha a libay of modulu eduction elationhip that can be elected in the Input Manage. The olution algoithm ued in SHAKE (and PoShake) aume vicou oil damping which it epeent uing a complex hea modulu. Vicou damping implie behavio that would be chaacteied by elliptical te-tain loop. Becaue actual te-tain loop ae eldom elliptical, an equivalent damping atio i ued - the equivalent damping atio i equal to the damping atio that would be computed baed on the aea within the hyteei loop, the ecant hea modulu, and the maximum hea tain. The elationhip between thi equivalent damping atio and hea tain i chaacteied by mean of a damping cuve. The natue of thi cuve, which ha an odinate of damping atio and an abcia of log (hea tain), ha been well etablihed fo many oil. PoShake ha a libay of damping 4

8 PoShake Ue' Manual cuve that can be elected in the Input Manage. In an equivalent linea analyi, the fit iteation i pefomed uing hea modulu and damping atio that coepond to ome initially etimated level of hea tain. In PoShake, the fit iteation i baed on an aumed hea tain of.%. Following the fit iteation, the effective hea tain, defined a γ eff Rγ γ max whee R γ i a tain eduction facto often taken a R γ M i computed. The hea modulu and damping atio coeponding to γ eff i then ued fo the next iteation. Thi poce i epeated until the computed effective tain doe not change much fom one iteation to the next. At thi point, the equivalent linea poce i aid to have conveged. While the equivalent linea appoach allow the mot impotant effect of nonlinea, inelatic oil behavio to be appoximated, it mut be emphaied that it emain a linea method of analyi. The tain-compatible hea modulu and damping atio emain contant thoughout the duation of an eathquake - when the tain induced in the oil ae mall and when they ae lage. Pemanent tain cannot be computed and poewate peue cannot be computed. Howeve, the equivalent linea appoach ha been hown to povide eaonable etimate of oil epone unde many condition of pactical impotance. 4

Chapter 19 Webassign Help Problems

Chapter 19 Webassign Help Problems Chapte 9 Webaign Help Poblem 4 5 6 7 8 9 0 Poblem 4: The pictue fo thi poblem i a bit mileading. They eally jut give you the pictue fo Pat b. So let fix that. Hee i the pictue fo Pat (a): Pat (a) imply

More information

Simulation of Spatially Correlated Large-Scale Parameters and Obtaining Model Parameters from Measurements

Simulation of Spatially Correlated Large-Scale Parameters and Obtaining Model Parameters from Measurements Simulation of Spatially Coelated Lage-Scale Paamete and Obtaining Model Paamete fom PER ZETTERBERG Stockholm Septembe 8 TRITA EE 8:49 Simulation of Spatially Coelated Lage-Scale Paamete and Obtaining Model

More information

Inference for A One Way Factorial Experiment. By Ed Stanek and Elaine Puleo

Inference for A One Way Factorial Experiment. By Ed Stanek and Elaine Puleo Infeence fo A One Way Factoial Expeiment By Ed Stanek and Elaine Puleo. Intoduction We develop etimating equation fo Facto Level mean in a completely andomized one way factoial expeiment. Thi development

More information

Solutions Practice Test PHYS 211 Exam 2

Solutions Practice Test PHYS 211 Exam 2 Solution Pactice Tet PHYS 11 Exam 1A We can plit thi poblem up into two pat, each one dealing with a epaate axi. Fo both the x- and y- axe, we have two foce (one given, one unknown) and we get the following

More information

Gravity. David Barwacz 7778 Thornapple Bayou SE, Grand Rapids, MI David Barwacz 12/03/2003

Gravity. David Barwacz 7778 Thornapple Bayou SE, Grand Rapids, MI David Barwacz 12/03/2003 avity David Bawacz 7778 Thonapple Bayou, and Rapid, MI 495 David Bawacz /3/3 http://membe.titon.net/daveb Uing the concept dicued in the peceding pape ( http://membe.titon.net/daveb ), I will now deive

More information

one primary direction in which heat transfers (generally the smallest dimension) simple model good representation for solving engineering problems

one primary direction in which heat transfers (generally the smallest dimension) simple model good representation for solving engineering problems CHAPTER 3: One-Dimenional Steady-State Conduction one pimay diection in which heat tanfe (geneally the mallet dimenion) imple model good epeentation fo olving engineeing poblem 3. Plane Wall 3.. hot fluid

More information

Precision Spectrophotometry

Precision Spectrophotometry Peciion Spectophotomety Pupoe The pinciple of peciion pectophotomety ae illutated in thi expeiment by the detemination of chomium (III). ppaatu Spectophotomete (B&L Spec 20 D) Cuvette (minimum 2) Pipet:

More information

TRAVELING WAVES. Chapter Simple Wave Motion. Waves in which the disturbance is parallel to the direction of propagation are called the

TRAVELING WAVES. Chapter Simple Wave Motion. Waves in which the disturbance is parallel to the direction of propagation are called the Chapte 15 RAVELING WAVES 15.1 Simple Wave Motion Wave in which the ditubance i pependicula to the diection of popagation ae called the tanvee wave. Wave in which the ditubance i paallel to the diection

More information

Histogram Processing

Histogram Processing Hitogam Poceing Lectue 4 (Chapte 3) Hitogam Poceing The hitogam of a digital image with gay level fom to L- i a dicete function h( )=n, whee: i the th gay level n i the numbe of pixel in the image with

More information

The Analysis of the Influence of the Independent Suspension on the Comfort for a Mine Truck

The Analysis of the Influence of the Independent Suspension on the Comfort for a Mine Truck 16 3 d Intenational Confeence on Vehicle, Mechanical and Electical Engineeing (ICVMEE 16 ISBN: 978-1-6595-37- The Analyi of the Influence of the Independent Supenion on the Comfot fo a Mine Tuck JINGMING

More information

Transverse Wakefield in a Dielectric Tube with Frequency Dependent Dielectric Constant

Transverse Wakefield in a Dielectric Tube with Frequency Dependent Dielectric Constant ARDB-378 Bob Siemann & Alex Chao /4/5 Page of 8 Tansvese Wakefield in a Dielectic Tube with Fequency Dependent Dielectic Constant This note is a continuation of ARDB-368 that is now extended to the tansvese

More information

MATERIAL SPREADING AND COMPACTION IN POWDER-BASED SOLID FREEFORM FABRICATION METHODS: MATHEMATICAL MODELING

MATERIAL SPREADING AND COMPACTION IN POWDER-BASED SOLID FREEFORM FABRICATION METHODS: MATHEMATICAL MODELING MATERIAL SPREADING AND COMPACTION IN POWDER-BASED SOLID FREEFORM FABRICATION METHODS: MATHEMATICAL MODELING Yae Shanjani and Ehan Toyekani Depatment of Mechanical and Mechatonic Engineeing, Univeity of

More information

Fall 2004/05 Solutions to Assignment 5: The Stationary Phase Method Provided by Mustafa Sabri Kilic. I(x) = e ixt e it5 /5 dt (1) Z J(λ) =

Fall 2004/05 Solutions to Assignment 5: The Stationary Phase Method Provided by Mustafa Sabri Kilic. I(x) = e ixt e it5 /5 dt (1) Z J(λ) = 8.35 Fall 24/5 Solution to Aignment 5: The Stationay Phae Method Povided by Mutafa Sabi Kilic. Find the leading tem fo each of the integal below fo λ >>. (a) R eiλt3 dt (b) R e iλt2 dt (c) R eiλ co t dt

More information

ASTR 3740 Relativity & Cosmology Spring Answers to Problem Set 4.

ASTR 3740 Relativity & Cosmology Spring Answers to Problem Set 4. ASTR 3740 Relativity & Comology Sping 019. Anwe to Poblem Set 4. 1. Tajectoie of paticle in the Schwazchild geomety The equation of motion fo a maive paticle feely falling in the Schwazchild geomety ae

More information

COMPLEX MODE SUPERPOSITION METHOD CONSIDERING THE EFFECT OF MULTIPLE FOLD EIGENVALUE IN SEISMIC DESIGN

COMPLEX MODE SUPERPOSITION METHOD CONSIDERING THE EFFECT OF MULTIPLE FOLD EIGENVALUE IN SEISMIC DESIGN The 4 th Wold Confeence on Eathquae Engineeing Octobe -7, 008, Being, China COMPLEX MODE SUPERPOSITION METHOD CONSIDERING THE EFFECT OF MULTIPLE FOLD EIGENVALUE IN SEISMIC DESIGN Ruifang Yu,, Xiyuan Zhou

More information

New Analysis for The FGM Thick Cylinders Under Combined Pressure and Temperature Loading

New Analysis for The FGM Thick Cylinders Under Combined Pressure and Temperature Loading Ameican Jounal of Applied Science 5 (7): 85-859, 008 ISSN 546-939 008 Science Publication New Analyi fo The FGM Thick Cylinde Unde Combined Peue and Tempeatue Loading K. Abinia, H. Naee, F. Sadeghi and

More information

Thin-Walled Tube Extension by Rigid Curved Punch

Thin-Walled Tube Extension by Rigid Curved Punch Engineeing,, 3, 45-46 doi:.436/eng..355 Publihed Online May (http://www.scirp.og/jounal/eng) Thin-Walled Tube Extenion by Rigid Cuved Punch Abtact Rotilav I. Nepehin Platic Defomation Sytem Depatment,

More information

Rotational Kinetic Energy

Rotational Kinetic Energy Add Impotant Rotational Kinetic Enegy Page: 353 NGSS Standad: N/A Rotational Kinetic Enegy MA Cuiculum Famewok (006):.1,.,.3 AP Phyic 1 Leaning Objective: N/A, but olling poblem have appeaed on peviou

More information

Boise State University Department of Electrical and Computer Engineering ECE470 Electric Machines

Boise State University Department of Electrical and Computer Engineering ECE470 Electric Machines Boie State Univeity Depatment of Electical and Compute Engineeing ECE470 Electic Machine Deivation of the Pe-Phae Steady-State Equivalent Cicuit of a hee-phae Induction Machine Nomenclatue θ: oto haft

More information

Test 2 phy a) How is the velocity of a particle defined? b) What is an inertial reference frame? c) Describe friction.

Test 2 phy a) How is the velocity of a particle defined? b) What is an inertial reference frame? c) Describe friction. Tet phy 40 1. a) How i the velocity of a paticle defined? b) What i an inetial efeence fae? c) Decibe fiction. phyic dealt otly with falling bodie. d) Copae the acceleation of a paticle in efeence fae

More information

Section 25 Describing Rotational Motion

Section 25 Describing Rotational Motion Section 25 Decibing Rotational Motion What do object do and wh do the do it? We have a ve thoough eplanation in tem of kinematic, foce, eneg and momentum. Thi include Newton thee law of motion and two

More information

Passive Pressure on Retaining Wall supporting c-φ Backfill using Horizontal Slices Method

Passive Pressure on Retaining Wall supporting c-φ Backfill using Horizontal Slices Method Cloud Publication Intenational Jounal of Advanced Civil Engineeing and Achitectue Reeach 2013, Volume 2, Iue 1, pp. 42-52, Aticle ID Tech-106 Reeach Aticle Open Acce Paive Peue on Retaining Wall uppoting

More information

Then the number of elements of S of weight n is exactly the number of compositions of n into k parts.

Then the number of elements of S of weight n is exactly the number of compositions of n into k parts. Geneating Function In a geneal combinatoial poblem, we have a univee S of object, and we want to count the numbe of object with a cetain popety. Fo example, if S i the et of all gaph, we might want to

More information

AE 423 Space Technology I Chapter 2 Satellite Dynamics

AE 423 Space Technology I Chapter 2 Satellite Dynamics AE 43 Space Technology I Chapte Satellite Dynamic.1 Intoduction In thi chapte we eview ome dynamic elevant to atellite dynamic and we etablih ome of the baic popetie of atellite dynamic.. Dynamic of a

More information

Development of Model Reduction using Stability Equation and Cauer Continued Fraction Method

Development of Model Reduction using Stability Equation and Cauer Continued Fraction Method Intenational Jounal of Electical and Compute Engineeing. ISSN 0974-90 Volume 5, Numbe (03), pp. -7 Intenational Reeach Publication Houe http://www.iphoue.com Development of Model Reduction uing Stability

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

Chapter 8 Sampling. Contents. Dr. Norrarat Wattanamongkhol. Lecturer. Department of Electrical Engineering, Engineering Faculty, sampling

Chapter 8 Sampling. Contents. Dr. Norrarat Wattanamongkhol. Lecturer. Department of Electrical Engineering, Engineering Faculty, sampling Content Chate 8 Samling Lectue D Noaat Wattanamongkhol Samling Theoem Samling of Continuou-Time Signal 3 Poceing Continuou-Time Signal 4 Samling of Dicete-Time Signal 5 Multi-ate Samling Deatment of Electical

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

Mathematical Modeling of Metabolic Processes in a Living Organism in Relation to Nutrition

Mathematical Modeling of Metabolic Processes in a Living Organism in Relation to Nutrition Mathematical Modeling of Metabolic Pocee in a Living Oganim in Relation to Nutition Dimitova N., Makov S. Depatment Biomathematic Intitute of Mathematic and Infomatic Bulgaian Academy of Science 8 Acad.

More information

True Amplitude Reverse Time Migration: from Reflectivity to Velocity and Impedance Perturbations

True Amplitude Reverse Time Migration: from Reflectivity to Velocity and Impedance Perturbations Tue Amplitude Revee Time Migation: fom Reflectivity to Velocity and Impedance Petubation Yu Zhang, Lian Duan* and Gaham Robet, CGGVeita, Cawle UK SUMMARY Conventional petack depth imaging method aim at

More information

User s Guide NBC 2005, Structural Commentaries (Part 4 of Division B)

User s Guide NBC 2005, Structural Commentaries (Part 4 of Division B) Ue Guide NBC 2005, Stutual Commentaie (Pat 4 of Diviion B) Eata Iued by the Canadian Commiion on Building and Fie Code The table that follow lit eata that apply to the Ue Guide NBC 2005, Stutual Commentaie

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

you of a spring. The potential energy for a spring is given by the parabola U( x)

you of a spring. The potential energy for a spring is given by the parabola U( x) Small oscillations The theoy of small oscillations is an extemely impotant topic in mechanics. Conside a system that has a potential enegy diagam as below: U B C A x Thee ae thee points of stable equilibium,

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

AE 245 homework #9 solutions

AE 245 homework #9 solutions AE 245 homewok #9 olution Tim Smith 13 Apil 2000 1 Poblem1 In the Apollo miion fom the Eath to the Moon, the Satun thid tage povided the tan-luna inetion bun that tanfeed the Apollo pacecaft fom a low

More information

Tutorial 5 Drive dynamics & control

Tutorial 5 Drive dynamics & control UNIVERSITY OF NEW SOUTH WALES Electic Dive Sytem School o Electical Engineeing & Telecommunication ELEC463 Electic Dive Sytem Tutoial 5 Dive dynamic & contol. The ollowing paamete ae known o two high peomance

More information

Eddy Currents in Permanent Magnets of a Multi-pole Direct Drive Motor

Eddy Currents in Permanent Magnets of a Multi-pole Direct Drive Motor Acta Technica Jauineni Vol. 6. No. 1. 2013 Eddy Cuent in Pemanent Magnet of a Multi-pole Diect Dive Moto G. Gotovac 1, G. Lampic 1, D. Miljavec 2 Elaphe Ltd. 1, Univeity of Ljubljana, Faculty of Electical

More information

Lecture Principles of scattering and main concepts.

Lecture Principles of scattering and main concepts. Lectue 15. Light catteing and aboption by atmopheic paticuate. Pat 1: Pincipe of catteing. Main concept: eementay wave, poaization, Stoke matix, and catteing phae function. Rayeigh catteing. Objective:

More information

2.5 The Quarter-Wave Transformer

2.5 The Quarter-Wave Transformer /3/5 _5 The Quate Wave Tansfome /.5 The Quate-Wave Tansfome Reading Assignment: pp. 73-76 By now you ve noticed that a quate-wave length of tansmission line ( λ 4, β π ) appeas often in micowave engineeing

More information

Determining the Best Linear Unbiased Predictor of PSU Means with the Data. included with the Random Variables. Ed Stanek

Determining the Best Linear Unbiased Predictor of PSU Means with the Data. included with the Random Variables. Ed Stanek Detemining te Bet Linea Unbiaed Pedicto of PSU ean wit te Data included wit te andom Vaiable Ed Stanek Intoduction We develop te equation fo te bet linea unbiaed pedicto of PSU mean in a two tage andom

More information

Σr2=0. Σ Br. Σ br. Σ r=0. br = Σ. Σa r-s b s (1.2) s=0. Σa r-s b s-t c t (1.3) t=0. cr = Σ. dr = Σ. Σa r-s b s-t c t-u d u (1.4) u =0.

Σr2=0. Σ Br. Σ br. Σ r=0. br = Σ. Σa r-s b s (1.2) s=0. Σa r-s b s-t c t (1.3) t=0. cr = Σ. dr = Σ. Σa r-s b s-t c t-u d u (1.4) u =0. 0 Powe of Infinite Seie. Multiple Cauchy Poduct The multinomial theoem i uele fo the powe calculation of infinite eie. Thi i becaue the polynomial theoem depend on the numbe of tem, o it can not be applied

More information

Compensating for source and receiver ghost effects in reverse time migration

Compensating for source and receiver ghost effects in reverse time migration Compenating fo ouce and eceive ghot effect in evee time migation Yu Zhang, Gaham Robet and Adel Khalil, CGGVeita Summay o maine eimic data, the ouce and eceive ghot geneated by the fee uface caue angle

More information

Shot-geophone migration for seismic data

Shot-geophone migration for seismic data Shot-geophone migation fo eimic data Chi Stolk Depatment of Applied Mathematic, Univeity of Twente, The Netheland ouce x Seimic data poceing eceive x h time... ubuface Contempoay pimaie only poceing: Body

More information

Considerations Regarding the Flux Estimation in Induction Generator with Application at the Control of Unconventional Energetic Conversion Systems

Considerations Regarding the Flux Estimation in Induction Generator with Application at the Control of Unconventional Energetic Conversion Systems Conideation Regading the Flux Etimation in Induction Geneato with Application at the Contol of Unconventional Enegetic Conveion Sytem Ioif Szeidet, Octavian Potean, Ioan Filip, Vaa Citian Depatment of

More information

The Normal Stress Dıstribution in an Infinite. Elastic Body with a Locally Curved and Hollow. Fiber under Geometrical Nonlinear Statement

The Normal Stress Dıstribution in an Infinite. Elastic Body with a Locally Curved and Hollow. Fiber under Geometrical Nonlinear Statement Nonlinea Analyi and Diffeential quation Vol. 4 06 no. 6 95-04 HIKARI td www.m-hikai.com htt://dx.doi.og/0.988/nade.06.656 The Nomal Ste Dıtibution in an Infinite latic Body with a ocally Cuved and Hollow

More information

Lecture 5 Solving Problems using Green s Theorem. 1. Show how Green s theorem can be used to solve general electrostatic problems 2.

Lecture 5 Solving Problems using Green s Theorem. 1. Show how Green s theorem can be used to solve general electrostatic problems 2. Lectue 5 Solving Poblems using Geen s Theoem Today s topics. Show how Geen s theoem can be used to solve geneal electostatic poblems. Dielectics A well known application of Geen s theoem. Last time we

More information

Impulse and Momentum

Impulse and Momentum Impule and Momentum 1. A ca poee 20,000 unit of momentum. What would be the ca' new momentum if... A. it elocity wee doubled. B. it elocity wee tipled. C. it ma wee doubled (by adding moe paenge and a

More information

Suppression of multiples from complex sea-floor by a waveequation

Suppression of multiples from complex sea-floor by a waveequation fom complex ea-floo by a waveequation appoach Dmiti Lokhtanov* *On abbatical fom Nok Hydo Reeach Cente, Been, Noway ABSTRACT We peent a new efficient wave-equation cheme fo pediction and ubtaction of wate-laye

More information

In the previous section we considered problems where the

In the previous section we considered problems where the 5.4 Hydodynamically Fully Developed and Themally Developing Lamina Flow In the pevious section we consideed poblems whee the velocity and tempeatue pofile wee fully developed, so that the heat tansfe coefficient

More information

TheWaveandHelmholtzEquations

TheWaveandHelmholtzEquations TheWaveandHelmholtzEquations Ramani Duaiswami The Univesity of Mayland, College Pak Febuay 3, 2006 Abstact CMSC828D notes (adapted fom mateial witten with Nail Gumeov). Wok in pogess 1 Acoustic Waves 1.1

More information

Theorem 2: Proof: Note 1: Proof: Note 2:

Theorem 2: Proof: Note 1: Proof: Note 2: A New 3-Dimenional Polynomial Intepolation Method: An Algoithmic Appoach Amitava Chattejee* and Rupak Bhattachayya** A new 3-dimenional intepolation method i intoduced in thi pape. Coeponding to the method

More information

LECTURE 14. m 1 m 2 b) Based on the second law of Newton Figure 1 similarly F21 m2 c) Based on the third law of Newton F 12

LECTURE 14. m 1 m 2 b) Based on the second law of Newton Figure 1 similarly F21 m2 c) Based on the third law of Newton F 12 CTU 4 ] NWTON W O GVITY -The gavity law i foulated fo two point paticle with ae and at a ditance between the. Hee ae the fou tep that bing to univeal law of gavitation dicoveed by NWTON. a Baed on expeiental

More information

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion AH Mechanics Checklist (Unit ) AH Mechanics Checklist (Unit ) Cicula Motion No. kill Done 1 Know that cicula motion efes to motion in a cicle of constant adius Know that cicula motion is conveniently descibed

More information

FE FORMULATIONS FOR PLASTICITY

FE FORMULATIONS FOR PLASTICITY G These slides ae designed based on the book: Finite Elements in Plasticity Theoy and Pactice, D.R.J. Owen and E. Hinton, 970, Pineidge Pess Ltd., Swansea, UK. Couse Content: A INTRODUCTION AND OVERVIEW

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 41 Digital Signal Pocessing Pof. Mak Fowle Note Set #31 Linea Phase FIR Design Optimum Equiipple (Paks-McClellan) Reading: Sect. 1.2.4 1.2.6 of Poakis & Manolakis 1/2 Motivation The window method and

More information

Chapter 3 Optical Systems with Annular Pupils

Chapter 3 Optical Systems with Annular Pupils Chapte 3 Optical Systems with Annula Pupils 3 INTRODUCTION In this chapte, we discuss the imaging popeties of a system with an annula pupil in a manne simila to those fo a system with a cicula pupil The

More information

Dymore User s Manual Two- and three dimensional dynamic inflow models

Dymore User s Manual Two- and three dimensional dynamic inflow models Dymoe Use s Manual Two- and thee dimensional dynamic inflow models Contents 1 Two-dimensional finite-state genealized dynamic wake theoy 1 Thee-dimensional finite-state genealized dynamic wake theoy 1

More information

rad rev 60sec p sec 2 rad min 2 2

rad rev 60sec p sec 2 rad min 2 2 NAME: EE 459/559, Exa 1, Fall 2016, D. McCalley, 75 inute allowed (unle othewie diected) Cloed Book, Cloed Note, Calculato Peitted, No Counication Device. The following infoation ay o ay not be ueful fo

More information

How can you find the dimensions of a square or a circle when you are given its area? When you multiply a number by itself, you square the number.

How can you find the dimensions of a square or a circle when you are given its area? When you multiply a number by itself, you square the number. 7. Finding Squae Root How can you find the dimenion of a quae o a cicle when you ae given it aea? When you multiply a numbe by itelf, you quae the numbe. Symbol fo quaing i the exponent. = = 6 quaed i

More information

Perhaps the greatest success of his theory of gravity was to successfully explain the motion of the heavens planets, moons, &tc.

Perhaps the greatest success of his theory of gravity was to successfully explain the motion of the heavens planets, moons, &tc. AP Phyic Gavity Si Iaac Newton i cedited with the dicovey of gavity. Now, of coue we know that he didn t eally dicove the thing let face it, people knew about gavity fo a long a thee have been people.

More information

General Solution of EM Wave Propagation in Anisotropic Media

General Solution of EM Wave Propagation in Anisotropic Media Jounal of the Koean Physical Society, Vol. 57, No. 1, July 2010, pp. 55 60 Geneal Solution of EM Wave Popagation in Anisotopic Media Jinyoung Lee Electical and Electonic Engineeing Depatment, Koea Advanced

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

STRENGTH AND DEFORMATION CHARACTERISTICS OF SRC FRAMES HAVING WEAK AXIS BENDING COLUMNS

STRENGTH AND DEFORMATION CHARACTERISTICS OF SRC FRAMES HAVING WEAK AXIS BENDING COLUMNS 13 th Wold Confeence on Eathquake Engineeing Vancouve, B.C., Canada Augut 1-6, 24 Pape o. 1214 STREGTH AD DEFORATIO CHARACTERISTICS OF SRC FRAES HAVIG WEAK AXIS BEDIG COLS.Haegawa 1 T.Fujinaga 2, I.itani

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

A Generalized Two Axes Model of a Squirrel-Cage Induction Motor for Rotor Fault Diagnosis

A Generalized Two Axes Model of a Squirrel-Cage Induction Motor for Rotor Fault Diagnosis SEBIAN JOUNAL OF ELECTICAL ENGINEEING Vol. 5, No. 1, ay 2008, 155-170 A Genealized Two Axe odel of a Squiel-Cage Induction oto fo oto Fault Diagnoi Sami Hamdani 1, Oma Touhami 2, achid Ibtiouen 2 Abtact:

More information

Derivations in Classical Electrodynamics

Derivations in Classical Electrodynamics Deivation in Claical Electodynamic Andew Foete Januay 8, 009 Content Explanation Idea 3 Integation 3. A Special Integation by Pat.................................. 3 3. Anothe Special Integation by Pat...............................

More information

An Exact Solution of Navier Stokes Equation

An Exact Solution of Navier Stokes Equation An Exact Solution of Navie Stokes Equation A. Salih Depatment of Aeospace Engineeing Indian Institute of Space Science and Technology, Thiuvananthapuam, Keala, India. July 20 The pincipal difficulty in

More information

FI 2201 Electromagnetism

FI 2201 Electromagnetism FI Electomagnetim Aleande A. Ikanda, Ph.D. Phyic of Magnetim and Photonic Reeach Goup ecto Analyi CURILINEAR COORDINAES, DIRAC DELA FUNCION AND HEORY OF ECOR FIELDS Cuvilinea Coodinate Sytem Cateian coodinate:

More information

Honors Classical Physics I

Honors Classical Physics I Hono Claical Phyic I PHY141 Lectue 9 Newton Law of Gavity Pleae et you Clicke Channel to 1 9/15/014 Lectue 9 1 Newton Law of Gavity Gavitational attaction i the foce that act between object that have a

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

Above Flux Estimation Issues in Induction Generators with Application at Energy Conversion Systems

Above Flux Estimation Issues in Induction Generators with Application at Energy Conversion Systems Acta Polytechnica Hungaica Vol. 3, No. 3, 2006 Above Flux Etimation Iue in Induction Geneato with Application at Enegy Conveion Sytem Ioif Szeidet, Octavian Potean, Ioan Filip, Vaa Citian Depatment of

More information

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum 2. Electostatics D. Rakhesh Singh Kshetimayum 1 2.1 Intoduction In this chapte, we will study how to find the electostatic fields fo vaious cases? fo symmetic known chage distibution fo un-symmetic known

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

Absolute Specifications: A typical absolute specification of a lowpass filter is shown in figure 1 where:

Absolute Specifications: A typical absolute specification of a lowpass filter is shown in figure 1 where: FIR FILTER DESIGN The design of an digital filte is caied out in thee steps: ) Specification: Befoe we can design a filte we must have some specifications. These ae detemined by the application. ) Appoximations

More information

Lecture 17 - Eulerian-Granular Model. Applied Computational Fluid Dynamics

Lecture 17 - Eulerian-Granular Model. Applied Computational Fluid Dynamics Lectue 7 - Euleian-Ganula Model Applied Computational Fluid Dynamic Intucto: Andé Bakke http://www.bakke.og Andé Bakke (00-006) Fluent Inc. (00) Content Oveview. Deciption of ganula flow. Momentum equation

More information

11) A thin, uniform rod of mass M is supported by two vertical strings, as shown below.

11) A thin, uniform rod of mass M is supported by two vertical strings, as shown below. Fall 2007 Qualifie Pat II 12 minute questions 11) A thin, unifom od of mass M is suppoted by two vetical stings, as shown below. Find the tension in the emaining sting immediately afte one of the stings

More information

SIMPLE LOW-ORDER AND INTEGRAL-ACTION CONTROLLER SYNTHESIS FOR MIMO SYSTEMS WITH TIME DELAYS

SIMPLE LOW-ORDER AND INTEGRAL-ACTION CONTROLLER SYNTHESIS FOR MIMO SYSTEMS WITH TIME DELAYS Appl. Comput. Math., V.10, N.2, 2011, pp.242-249 SIMPLE LOW-ORDER AND INTEGRAL-ACTION CONTROLLER SYNTHESIS FOR MIMO SYSTEMS WITH TIME DELAYS A.N. GÜNDEŞ1, A.N. METE 2 Abtact. A imple finite-dimenional

More information

Lecture 8 - Gauss s Law

Lecture 8 - Gauss s Law Lectue 8 - Gauss s Law A Puzzle... Example Calculate the potential enegy, pe ion, fo an infinite 1D ionic cystal with sepaation a; that is, a ow of equally spaced chages of magnitude e and altenating sign.

More information

Electromagnetic scattering. Graduate Course Electrical Engineering (Communications) 1 st Semester, Sharif University of Technology

Electromagnetic scattering. Graduate Course Electrical Engineering (Communications) 1 st Semester, Sharif University of Technology Electomagnetic scatteing Gaduate Couse Electical Engineeing (Communications) 1 st Semeste, 1390-1391 Shaif Univesity of Technology Geneal infomation Infomation about the instucto: Instucto: Behzad Rejaei

More information

Chapter Sixteen: Electric Charge and Electric Fields

Chapter Sixteen: Electric Charge and Electric Fields Chapte Sixteen: Electic Chage and Electic Fields Key Tems Chage Conducto The fundamental electical popety to which the mutual attactions o epulsions between electons and potons ae attibuted. Any mateial

More information

Modeling of the Fluid Solid Interaction during Seismic Event

Modeling of the Fluid Solid Interaction during Seismic Event Jounal o Mateial cience and Enineein A 5 (3-4) (015) 166-170 doi: 10.1765/161-613/015.3-4.009 D DAVID PIHING Modelin o the luid olid Inteaction duin eimic Event Jan Vachulka * tevenon and Aociate, Vejpnicka

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

CHAPTER 3 CLASSICAL CONTROL TECHNIQUES FOR AC DRIVES

CHAPTER 3 CLASSICAL CONTROL TECHNIQUES FOR AC DRIVES 44 CHAPTER 3 CLASSICAL CONTROL TECHNIQUES FOR AC DRIVES 3.1 INTRODUCTION The contolle equied fo AC dive can be divided into two majo type: cala contol and vecto contol (Boe 1976). In cala contol, which

More information

Scattering in Three Dimensions

Scattering in Three Dimensions Scatteing in Thee Dimensions Scatteing expeiments ae an impotant souce of infomation about quantum systems, anging in enegy fom vey low enegy chemical eactions to the highest possible enegies at the LHC.

More information

Kinematics in 2-D (II)

Kinematics in 2-D (II) Kinematics in 2-D (II) Unifom cicula motion Tangential and adial components of Relative velocity and acceleation a Seway and Jewett 4.4 to 4.6 Pactice Poblems: Chapte 4, Objective Questions 5, 11 Chapte

More information

Asymmetric Thermal Stresses of Hollow FGM Cylinders with Piezoelectric Internal and External Layers

Asymmetric Thermal Stresses of Hollow FGM Cylinders with Piezoelectric Internal and External Layers Jounal of Solid Mechanic Vol. 7, No. 3 (05) pp. 37-343 Aymmetic Themal Stee of Hollow GM Cylinde with Piezoelectic Intenal and Extenal Laye M. Jabbai *, M.B. Aghdam Potgaduate School, Ilamic Azad Univeity,

More information

Phys101 Lectures 30, 31. Wave Motion

Phys101 Lectures 30, 31. Wave Motion Phys0 Lectues 30, 3 Wave Motion Key points: Types of Waves: Tansvese and Longitudinal Mathematical Repesentation of a Taveling Wave The Pinciple of Supeposition Standing Waves; Resonance Ref: -7,8,9,0,,6,,3,6.

More information

THE NUMERICAL SOLUTION OF THE TWO-DIMENSIONAL RADIATIVE TRANSFER EQUATION FOR A MEDIUM WITH PROPERTIES OF ABSORPTION AND ISOTROPIC SCATTERING

THE NUMERICAL SOLUTION OF THE TWO-DIMENSIONAL RADIATIVE TRANSFER EQUATION FOR A MEDIUM WITH PROPERTIES OF ABSORPTION AND ISOTROPIC SCATTERING 7 Intenational Nuclea Atlantic Confeence - INAC 7 Santo, SP, Bazil, Septembe 3 to Octobe 5, 7 ASSOCIAÇÃO BRASILEIRA DE ENERGIA NUCLEAR - ABEN ISBN: 978-85-99141--1 THE NUMERICAL SOLUTION OF THE TWO-DIMENSIONAL

More information

Mathematical Model of Magnetometric Resistivity. Sounding for a Conductive Host. with a Bulge Overburden

Mathematical Model of Magnetometric Resistivity. Sounding for a Conductive Host. with a Bulge Overburden Applied Mathematical Sciences, Vol. 7, 13, no. 7, 335-348 Mathematical Model of Magnetometic Resistivity Sounding fo a Conductive Host with a Bulge Ovebuden Teeasak Chaladgan Depatment of Mathematics Faculty

More information

On a proper definition of spin current

On a proper definition of spin current On a pope definition of pin cuent Qian Niu Univeity of Texa at Autin P. Zhang, Shi, Xiao, and Niu (cond-mat 0503505) P. Zhang and Niu (cond-mat/0406436) Culce, Sinova, Sintyn, Jungwith, MacDonald, and

More information

Quantum Mechanics II

Quantum Mechanics II Quantum Mechanics II Pof. Bois Altshule Apil 25, 2 Lectue 25 We have been dicussing the analytic popeties of the S-matix element. Remembe the adial wave function was u kl () = R kl () e ik iπl/2 S l (k)e

More information

Simulink Model of Direct Torque Control of Induction Machine

Simulink Model of Direct Torque Control of Induction Machine Ameican Jounal of Applied Science 5 (8): 1083-1090, 2008 ISSN 1546-9239 2008 Science Publication Simulink Model of Diect Toque Contol of Induction Machine H.F. Abdul Wahab and H. Sanui Faculty of Engineeing,

More information

ELASTIC ANALYSIS OF CIRCULAR SANDWICH PLATES WITH FGM FACE-SHEETS

ELASTIC ANALYSIS OF CIRCULAR SANDWICH PLATES WITH FGM FACE-SHEETS THE 9 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS ELASTIC ANALYSIS OF CIRCULAR SANDWICH PLATES WITH FGM FACE-SHEETS R. Sbulati *, S. R. Atashipou Depatment of Civil, Chemical and Envionmental Engineeing,

More information

Supplementary Figure 1. Circular parallel lamellae grain size as a function of annealing time at 250 C. Error bars represent the 2σ uncertainty in

Supplementary Figure 1. Circular parallel lamellae grain size as a function of annealing time at 250 C. Error bars represent the 2σ uncertainty in Supplementay Figue 1. Cicula paallel lamellae gain size as a function of annealing time at 50 C. Eo bas epesent the σ uncetainty in the measued adii based on image pixilation and analysis uncetainty contibutions

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

A FORMULATION AND PRELIMINARY RESULTS FOR SIMULATION OF SHIP MOTIONS COUPLED HEAVE, PITCH AND ROLL

A FORMULATION AND PRELIMINARY RESULTS FOR SIMULATION OF SHIP MOTIONS COUPLED HEAVE, PITCH AND ROLL 8 th Intenational Confeence on the Stability of Ship and Ocean Vehicle Ecuela Técnica Supeio de Ingenieo Navale A FORMUATION AND PREIMINARY RESUTS FOR SIMUATION OF SHIP MOTIONS COUPED HEAVE, PITCH AND

More information

P194 Gradient Calculations for 3D Inversion of CSEM Data Using a Fast Finite-difference Time-domain Modelling Code

P194 Gradient Calculations for 3D Inversion of CSEM Data Using a Fast Finite-difference Time-domain Modelling Code P194 Gadient Calculation fo 3D Inveion of CSEM Data Uing a Fat Finite-diffeence Time-domain Modelling Code T. Støen* (EMGS), J.J. Zach (EMGS) & F.A. Maaø (EMGS) SUMMARY Gadient-baed 3D inveion of contolled-ouce

More information

AC DRIVES. There are two type of AC motor Drives : 1. Induction Motor Drives 2. Synchronous Motor Drives

AC DRIVES. There are two type of AC motor Drives : 1. Induction Motor Drives 2. Synchronous Motor Drives AC DRIVES AC moto Dive ae ued in many indutial and dometic application, uch a in conveye, lift, mixe, ecalato etc. The AC moto have a numbe of advantage : Lightweight (0% to 40% lighte than equivalent

More information

LC transfer of energy between the driving source and the circuit will be a maximum.

LC transfer of energy between the driving source and the circuit will be a maximum. The Q of oscillatos efeences: L.. Fotney Pinciples of Electonics: Analog and Digital, Hacout Bace Jovanovich 987, Chapte (AC Cicuits) H. J. Pain The Physics of Vibations and Waves, 5 th edition, Wiley

More information

RIGID-ROTOR VLASOV EQUILIBRIUM FOR AN INTENSE CHARGED-PARTICLE BEAM PROPAGATING THROUGH A PERIODIC SOLENOIDAL MAGNETIC FIELD

RIGID-ROTOR VLASOV EQUILIBRIUM FOR AN INTENSE CHARGED-PARTICLE BEAM PROPAGATING THROUGH A PERIODIC SOLENOIDAL MAGNETIC FIELD RIGID-ROTOR VLASOV EQUILIBRIUM FOR AN INTENSE CHARGED-PARTICLE BEAM PROPAGATING THROUGH A PERIODIC SOLENOIDAL MAGNETIC FIELD Chiping Chen and Renato Pakte Plama Science and Fuion Cente Maachuett Intitute

More information