Interactive Distributed Fluid Simulation on the GPU

Size: px
Start display at page:

Download "Interactive Distributed Fluid Simulation on the GPU"

Transcription

1 Inteactive Distibuted Fluid Simulation on the GPU Tamás Umenhoffe and László Szimay-Kalos Depatment of Contol Engineeing and Infomation Budapest Univesity of Technology and Economics, Budapest, Hungay Abstact - Fluid dynamics is descibed by the Navie- Stokes diffeential equations, which need to be solved by fluid simulatos. The numeical solution of these equations in D has high computational and data stoing costs. In this pape we pesent a eal-time fluid simulation and visualization method that exploits the computational powe of a GPU cluste to solve this task inteactively. We use object space decomposition of the D volume. A single CPU/GPU node solves the Navie-Stokes equations only fo its subvolume, taking into account the data fom neighboing nodes as bounday conditions. Mathematically, the numeical simulation is executed on a egula gid, i.e. an Euleian appoach is taken. Fluid data at the gid points, including the velocity field and a custom display vaiable ae stoed in specially oganized D textues. In ode to guaantee the stability of the solution we have adopted the Stable Fluid appoach in ou distibuted solution, which have been extended by voticity confinement and level of detail contol using the ealy z-culling featue of the gaphics hadwae. The GPU of a node executes both the simulation and the endeing of the subvolume. We used a textue slicing endeing method with alpha blending to display a custom scala field that is caied aound by the simulated flow in the subvolume. The images of diffeent nodes ae composited togethe by the paallel pipeline algoithm of HP's PaaComp libay. Ou implementation has good scalability and makes the simulation of lage data sets possible at acceptable fame ates. I. INTRODUCTION One inteesting, and ecently widely eseached aea of compute gaphics is the simulation of fluid motion. Many phenomena that can be seen in natue like smoke, cloud fomation, fie and explosion show fluid-like behavio. Undestandably thee is a high need fo good and fast fluid solves both in special effects and game industy, and even in scientific aeas. While engineeing tasks equie physically accuate simulation, in compute gaphics the main inteest is on pefomance and visual appeaance. As the motion of fluids is vey complex, high quality simulation in eal-time is still a challenging poblem. With the evolution of gaphics hadwae in ecent yeas new algoithms have been developed that take advantage of the high paallelization of GPUs, making it possible to see fluid dynamic simulation even in compute games. Howeve thei quality is still limited by the available computational powe and memoy of cuent GPUs. In this pape we pesent a distibuted implementation of fluid simulation. Ou algoithm is based on the Euleian solution of the Navie-Stokes equations, and uns the simulation on a GPU cluste. The distibuted implementation makes it possible to solve the equations on highe esolution data sets than in case of a single compute application while still peseving inteactive fame ates. II. PREVIOUS WORK Up to now numeous aticles and books about fluid dynamics and thei solutions have been published in vaious aeas. Ealy appoaches to visualize these phenomena used paticle systems [8], whee the motion of the paticles is diven by use defined foces like wind field o gavity. Additional detail can be added with inceasing the paticle count - which geatly deceases pefomance - o using semi-tanspaent animated textues. The complexity of motion was geatly impoved with the intoduction of andom tubulent fields. Paticle systems wee used to model smoke, fie explosions, watefall, snow falls and blizzads successfully, and they ae still widely used in special effects industy and in compute games. The geatest disadvantage of this model is that it is only patially physically based, thus achieving a ealistic esult equies huge modeling labo. Solving the equations of fluid dynamics automatically povides a natual esult. A widely used model fo fluid motion is the pai of Navie-Stokes equations. Numeous methods have been used to solve these equations but basically thee ae two main classes, the Euleian and the Lagangian appoaches. Euleian appoaches discetize a well defined pat of the space and use vecto and scala fields, which define the media at fix points of a gid. Lagangian appoaches solve the equations fo tajectoies of a set of paticles descibing the flow. Intuitively, the Euleian viewpoint takes discete samples fom a egula gid, while the sample points of the Lagangian viewpoint move with the flow. The Lattice Boltzmann Model combines the two appoaches, while maintaining a gid, it woks with paticles. In ou implementation we used the Euleian appoach like in [4] [5] [9], and simulated the flow on a thee dimensional gid. Foste and Metaxas used the full thee dimensional Navie- Stokes equations to simulate smoke motion on a coase gid []. Thei algoithm used finite diffeencing of the Navie-Stokes equations and an explicit time solve. Because of the explicit integation scheme, thei algoithm was only stable fo time steps o velocities small enough compaed to the voxel size used in the simulation. This poblem was solved by Stam [9], who intoduced a semi-lagangian advection method and implicit solves in his stable fluid simulation. Stable solves made fluid dynamics simulation applicable both in offline special effect endeing and in eal-time compute gaphics.

2 Fedkiw et. al intoduced voticity confinement as an addition to this model, which is used to estoe fine detail tubulent motion dissipated by the discetized algoithm []. Hais built his simulation algoithm on Stam's stable fluid method [5]. He edesigned the algoithm to un entiely on the pocessing units of moden gaphics cads. He tested seveal solves that can be implemented on gaphics hadwae and finally ecommended a GPU optimized Jacobi iteation. He successfully used these methods to simulate cloud dynamics at inteactive fame ates. He also gave an excellent suvey on fluid simulation on gaphics hadwae [4]. In ecent yeas seveal papes wee published that pesented algoithms based on fluid dynamics on gaphics hadwae. Some of them focused on content ceation (like in [6]), othes pesented speed up possibilities of the simulation pocess [7]. Due to the geat eseach and publications in this topic, it is possible nowadays to see effects simulated with fluid dynamics even in compute games. The exploitation of GPU clustes to attack simulation and endeing poblems is a elatively new field. We follow the line of [], but instead of the Lattice Boltzman method, an extended stable fluid algoithm is poted to a GPU cluste. III. FLUID DYNAMICS The following subsections intoduce the Navie--Stokes equations and thei solution. The solution can be divided into seveal steps accoding to the subpoblems of advection, diffusion, pojection and voticity confinement. The stuctue of these subsections eflect this division. A. Equations of Fluid Motion A fluid with constant density and tempeatue can be descibed by its velocity u and pessue p fields. These values both vay in space and in time: u = u( x,t), p = p( x,t). The motion of a fluid is descibed by the Navie-Stokes equations: u = ( u ) u p + v u + F () t ρ u = 0 () whee ρ is the density, ν is the viscosity of the fluid, and in a Catesian coodinate system = ( / x, / y, / z). Equation () descibes the consevation of momentum while equation () states the consevation of mass (i.e. that the velocity field is divegence fee). These equations should also be associated with the definition of the bounday conditions. The fist tem on the ight side of equation () expesses the advection of the velocity field itself. This tem makes the Navie-Stokes equation nonlinea. The second tem shows the acceleation caused by the pessue gadient. The thid tem descibes diffusion that is scaled by the viscosity, which a measue of how esistive the fluid is to flow. Finally F denotes the influence of extenal foces. In the Navie-Stokes equations we have fou scala equations (the consevation of momentum is a vecto equation) with fou unknowns ( u, p). The pessue and the velocity fields ae elated accoding to these equations thus we can eliminate the pessue fom them educing the numbe of equations to thee. The elimination is based on a mathematical technique, called Helmholtz-Hodge decomposition. Accoding to the equation of pesevation of mass, the velocity field must be divegence fee. The Helmholtz-Hodge theoem states that any vecto field w can be decomposed into the sum of a divegence fee vecto field u and the gadient of a scala field s that is zeo at the bounday: w = u + s. () So if we ignoe the equiement of mass pesevation duing the computation, this equiement can be met late by pojection step P accoding to equation (). Rewiting this equation in anothe fom gives us the fomulae to make ou field mass conseving: u = P w = w s ( ). Using equation () and applying the divegence opeato on both sides, we get: s = w. (4) If we know w, then scala field s is computed by solving this equation, then pojection opeato P( w ) = w s can be evaluated to obtain u. Assuming a egula gid whee vecto field w is available, equation (4) becomes a linea systems of equations in the fom of A x = b, whee A is a matix, x is the vecto of unknown samples of s and b is a vecto of known samples descibing the divegence of w. Just like in [4] we used Jacobi iteation to solve these equations. Let us apply pojection opeato P to the momentum pesevation equation: u = P( ( u ) u + v u F ) + t since P( u ) = u and P ( p ) = 0. Note that this way we could enfoce the pesevation of mass by eliminating the pessue fom the unknowns. The time function of velocity field u (t) is obtained by stepping time t by δ t. The solution of the pojected momentum pesevation equation consists of seveal steps. Taking u (t), the velocity field at t, the tems of the ight side ae evaluated and added one by one, i.e. self-advected obtaining w, modified accoding to the diffusion getting w, acceleated accoding to extenal foces and voticity confinement esulting in velocity field w, and finally pojection opeato P is applied to guaantee the consevation of the mass: diffuse poject advect acceleate u(t) a w a w a w a u(t + δt) Let us conside these steps sepaately. B. Advection Advection descibes how the fluid caies itself aound:

3 w - u = ( u ) u. (5) δt One possibility is to expess w fom this equation w = u u uδ ( ) t and eplace diffeentials by finite diffeences. Howeve, this type of fowad Eule appoach is numeically unstable. Instead a backwad method is applied as poposed by Stam [9], that guaantees stability. A moving fluid tanspots objects with itself accoding to the diection of its velocity. The advection (o convection) of custom quantity Q in the fluid can be witten in the following implicit fom: Q ( x, t + δt) = Q( x u( x, t) δt, t). This equation means that we tace a paticle backwad along the path it tavels, and use the quantities of its fome position. This semi-lagangian method is called the method of chaacteistics. Selecting velocity u ( x, t) to be custom quantity Q we obtain the following equation fo the advected velocity field: u ( x, t + δt) = u( x u( x, t) δt, t). C. Diffusion The diffusion tem descibes how the fluid motion is damped. This damping is contolled by the viscosity of the fluid. Highly viscous fluids like syup stick togethe, while low-viscosity fluids like gases flow feely. The diffusion tem u = v u t can be ewitten in the following implicit fom: ( υδt ) w ( x) = w ( x) (6) whee w is the advected velocity field and w is the velocity field that also takes into account diffusion. The solution of such an equation is simila to that of equation (4) and is descibed in subsection E. As diffusion has noticeable effect on the simulation only in case of highly viscous fluids, this tem can be omitted fo low-viscosity fluids. D. Voticity confinement Many phenomena like smoke o ai mixtue have high detail tubulent stuctues in thei motion. These fine chaacteistics will be damped out by the numeical dissipation of the simulation. One way to estoe these featues is to add a pseudo-andom petubation to the velocity field. Fedkiw et al. poposed anothe method which added these details back only whee they should appea []. We also used thei solutions. The fist step is to compute the voticity of the velocity field (i.e. the cul o ot of the vecto field, which expesses the ate of otation o the ciculation density, that is the diection of the axis of otation and the magnitude of the otation): ψ = u. Then nomalized voticity location vectos ae computed, which point fom lowe voticity to highe voticity aeas: N η =, η = ψ. η Finally the diection and scale of the voticity foce is computed: = ε N ψ F vc ( ) whee ε contols the amount of the detail to be estoed to the flow field. The computed voticity foce should simply be added to the velocity just like any othe extenal foces. This tem can be omitted if small scale tubulent featues ae not needed. D. Adding the extenal and voticity foces Due to the extenal and voticity foces the flow will acceleate, i.e. the velocity field will change popotionally to the foces: w = w + ( F + Fvc ) δt. In ou application the use can inset mateial inside the fluid, and also can add foces with custom diection to make the fluid flow. E. Pojection The last step of the simulation is the pojection by P : u t + δt = P ( ) ( ). IV. SOLUTION OF LINEAR EQUATIONS The pojection and the diffusion steps equie the solution of a linea systems of equations in the fom of A x = b. We can use Jacobi iteation to solve these equations, which has quadatic complexity, but is still the most time consuming opeation of the simulation. A single iteation step equies the endeing of a full sceen quadilateal, and letting the pixel shade gathe the values of x fom neighboing pixels accoding to spase matix A. Howeve, whee the neighboing elements ae small, we can skip the gathe opeation, taking advantage of the ealy z-culling featue of the GPU [7]. The depth value is set popotionally to the maximum element in the neighbohood and to the iteation count. This way, as the iteation poceeds the GPU pocesses less and less numbe of fagments, and can concentate on impotant egions. Accoding to ou measuements, this optimization educes the total endeing by 40%. w V. VISUALIZING THE FLOW FIELD The discussed method computes the velocity field of the flow. If needed, the pessue can also be expessed fom the Navie-Stokes equations. When we wish to visualize the flow, one option is to map these paametes to some colo and opacity function, which in tun can be endeed by volume visualization algoithms. Instead of using the

4 velocity and the pessue, we can also assume that the flow caies a scala display vaiable with itself. The display vaiable is the analogy of some paint poued into the fluid. Using the advection fomula fo display vaiable d, the scala field can also be updated in paallel with the simulation: d ( x, t + δt) = d( x u( x, t) δt, t). At a time, the colo and opacity of a point can be obtained fom the display vaiable using a use contolled tansfe function. VI. SIMULATION ON THE GPU We used a collocated gid discetization to stoe ou velocity, pessue and density data. These vaiables ae defined at the cente of the voxels of a gid. At each time step the content of these data sets should be efeshed. As we do all the simulation on the GPU, we should stoe this data on the gaphics cad's memoy in a way that it can be efficiently ead and witten by the gaphics pocesso. In GPU pogamming we usually stoe ou data in textues. The poblem with thee dimensional data is that although the gaphics cads suppot D data sets as D textues, no endeing is allowed to them. One can solve this poblem with updating each slice of the volume into a sepaate textue and copy this data to the volume afte efesh. This copy opeation can take too much time making inteactive endeing impossible fo lage data (this poblem is solved by Shade Model 4 GPUs). laye pixels Slice bounday pixels bounday laye bounday laye D textue Fig.. Volume slices and Flat D textue. 5 Flat D textue Fo efficiency easons we used flat D textues as descibed by Hais [5]. A flat D textue tiles the slices of a D volume into a D textue (see Fig..). The esult of the simulation is not only contolled by the extenal foces but also by the bounday conditions. These conditions descibe what happens with the fluid at its bounday, i.e. on the faces of the cube encapsulating the gid volume. To stoe these conditions, we should extend each slice of the volume with one pixel bode and we should also add two exta layes at the top and at the bottom of the volume. Once the textues ae eady, one simulation step of a laye of the volume can be done by the endeing of a quadilateal, while bounday pixels ae efeshed with endeing line pimitives. As indexing a flat D textue needs exta wok compaed to usual D textues, we pepae a lookup textue which helps to index the oigin of any laye in the flat D textue. The endeed quadilateals also stoe infomation about the location of the layes ight above and below in the flat D textue. Unlike in tue D textues intepolating between two volume slices cannot be done by the textue units, thus intepolation is computed by custom shades. The simulation steps equie to ead and to wite into a D data at the same time. Calculation one simulation step means endeing to a textue, but accessing a textue which is cuently bound as a ende taget is not allowed. To ovecome this limitation we should make a copy of ou flat D textues - one will be sampled and one will be bound as a ende taget - and swap them afte ende (pingponging). We used a D textue slicing endeing method to display the esulting display vaiable field, which means that we place semi-tanspaent polygons pependicula to the view plane and blend them togethe in back to font ode. The colo and the opacity of the D textue is the function of the D display vaiable field. Hee we also had good use of the lookup textue to index ou flat D textues to find the location of an abitay point in space in the tiled stuctue. Fig.4. shows one state of the flat D textues descibing the velocity (ight column) and display vaiable (left column) fields in a simulation. The top ow shows these values with voticity confinement tuned off, and the bottom ow shows the effect of voticity confinement. VII. SOLID OBSTACLES If solid objects ae pesent inside the fluid, the simulation should be modified. The density inside the voxels occupied by these objects should be zeo, and the velocity should be set to the velocity of thee object []. Futhemoe, the bounday conditions should be popely set at the solid-fluid bounday. The appopiate bounday condition is a fee-slip condition, which states that fluid velocity equals to the object velocity in the diection of the bounday nomal. This pevents the fluid fom enteing the solid object, but can feely flow along its suface. The fee slip condition can be enfoced afte pessue pojection. We should coect the esult of the pojection step in the following way: if the bounday voxel along a diection is a solid object, then we should use the coesponding component of its velocity. This equies the identification of voxels occupied by solid objects, and the detemination of thei velocity. In othe wods the object should be voxelized. To do this we ceate a sepaate gid containing the inside-outside infomation of the voxels and also the velocity values in the solid objects. We used an appoach simila to [], but we applied alpha blending instead of stencil opeations. We ende objects into each slice of the gid using an othogaphic pojection. The fa clipping plane is set at infinity and the nea clipping plane at the depth of the cuent slice. We ende the object twice, once with back facing polygons and once with font facing polygons. We set up fo additive blending and use value fo back faces and - fo font faces. If the object is a closed shell, the esult will contain a value if the voxel is inside of the object and zeo othewise. If the mesh is a igid mesh and does not defom, we can also wite its velocity infomation into the fist thee components of this textue, while the alpha component stoes the inside-outside infomation. In case of defomable objects like skinned chaactes special handling of the exact bounday is [].

5 Afte voxelization the effect of solid object can be added to the velocity and density fields similaly to extenal foces. VIII. DISTRIBUTED SYSTEM Because of the data stoing needs and computational cost descibed so fa one can easily un into a point whee a single compute implementation becomes insufficient. Using flat D textues has a disadvantage that they limit the size of the gid that can be simulated, as thee is a limited textue size. Tiling the gid slices can easily esult in a flat D textue with too high esolutions. The maximum esolution of the gid that can be computed is We should note hee that this gid esolution equies flat D textue esolution since we need two exta slices and one exta pixel bode in each slice fo the bounday conditions. image as one famelet. The composition of famelets is done with alpha blending in a paallel way using the paallel pipeline algoithm [0]. We used object space distibution of the D data (see Fig.). We subdivided the gid and each pat was teated as a sepaate data set. Each node in the distibuted system should send the adjacent gid slices to its neighbos as a bounday condition to be used. In Fig. the dashed aows show the communication between the nodes in case of a thee node system. Fo example, the topmost node sends its lowest laye to its lowe neighbo, which puts this data to its topmost bounday condition laye. This neighboing node also sends its topmost slice to its uppe neighbo, which puts this data in its lowest bounday condition slice. Thee data should be tansfeed: the adjacent slices of the velocity, divegence vaiable s, and the display vaiable fields. We used an MPI implementation fo bounday laye communication between nodes. Node Node 4 D data with slices Node Fig.. Volume endeed with ou distibuted endeing algoithm. The wie cubes show one pat of the gid which is simulated on one node of the cluste. One can step ove this limit by subdividing the gid into smalle pats and stoe them in sepaate flat D textues, but can still un out of the GPU memoy. On the othe hand, the high computational cost of simulating high esolution gids does not allow inteactive fame ates. The solution of these poblems is the application of distibuted GPGPU simulation and endeing. We implemented ou algoithm on a GPU cluste. This is a shaed memoy paallel endeing and compositing envionment that uses the PaaComp libay ( of the HP Scalable Visualization Aay. The main aspect of this libay is that each host contibutes to the pixels of ectangula image aeas, called famelets. The pocess of meging the pixels of famelets into a single image is called compositing. The PaaComp libay allows not only the famelet computation but also the composition to un paallely on the cluste. In ou implementation one node takes the ole of the maste, which means that it has additional tasks beside endeing and compositing. The maste sets the pope ode of the nodes fo composition and displays the composited image on sceen. All nodes (including the maste) do simulation steps on one potion of the data set, ende the subvolume, and contibutes this Fig.. Data communication between the nodes of the cluste. As we used a slicing endeing method to display the volume we should only ensue that the images poduced by each node ae composited in back to font ode with alpha blending. IX. RESULTS Fo ou expeiments we used a Hewlett-Packad's Scalable Visualization Aay consisting of five computing nodes. Each node has a dual-coe AMD Opteon 46 pocesso, an nvidia Quado FX450 gaphics contolle, and an InfiniBand netwok adapte. One node is only esponsible fo compositing and managing the famelet geneations and does not take pat in the endeing pocesses, so we could divide ou data set into maximum fou pats. Table I. shows the pefomance esults of the simulation of Figues 4 and 6. It can be seen that using nodes gives bette pefomance than the single compute vesion. Using moe than nodes becomes useful only in case of lage data sets, fo small data sets the communication between the nodes becomes a bottleneck. The N/A sign means that a data set cannot be simulated on a single compute since it has too high memoy needs. It is woth examining the esolutions of and The 80 esolution needs about twice as many voxels as the 64 one. It can be clealy seen that the

6 pefomance of the two node implementation is the double of the pefomance obtained on a single compute. Similaly the two node implementation nealy doubles pefomance in almost all cases. X. CONCLUSIONS This pape showed that the computation of fluid simulation on a Catesian gid can be effectively shaed between nodes of a GPU cluste. Distibuted simulation and endeing of fluid phenomena ae necessay if the gid volume has highe esolution than the esolution a single GPU can cope with. Ou implementation shows good scalability, and the simulation esults do not suffe fom visual atifacts. TABLE I PERFORMANCE RESULTS Gid Resolution Node Node 4 Node 5 FPS 7 FPS 0 FPS FPS FPS 5 FPS FPS 0 FPS FPS FPS 6 FPS 9 FPS FPS 0 FPS FPS FPS.7 FPS 5.5 FPS FPS 6 FPS 8 FPS N/A 0. FPS 0.4 FPS ACKNOWLEDGEMENTS This wok has been suppoted by the National Office fo Reseach and Technology (Hungay), Hewlett-Packad, by OTKA K-799, and by the Coatian-Hungaian Action Fund CRO-5/006. REFERENCES [] Zhe Fan, Feng Qiu, Aie Kaufman, and Suzanne Yoakum- Stove, GPU cluste fo high pefomance computing, ACM/IEEE Supecomputing Confeence, 004. [] R. Fedkiw, J. Stam, and H. W. Jensen, Visual simulation of smoke, ACM SIGGRAPH 00, pages 5, 00. [] Nick Foste and Dimitis Metaxas, Modeling the motion of a hot, tubulent gas, Compute Gaphics, (Annual Confeence Seies):8 88, 997. [4] Mak Hais, Fast fluid dynamics simulation on the GPU, SIGGRAPH 05: ACM SIGGRAPH 005 Couses, page 0, New Yok, NY, USA, 005. ACM Pess. [5] M. Hais, W. Baxte, T. Scheuemann, and A. Lasta, Simulation of cloud dynamics on gaphics hadwae, Euogaphics Gaphics Hadwae 00, 00. [6] J. Küge and R. Westemann, GPU simulation and endeing of volumetic effects fo compute games and vitual envionments, Compute Gaphics Foum, 4():685 69, 005. [7] Natalya Tatachuk Pedo V. Sande and Jason L. Mitchell, Ealy-z culling fo efficient GPU-based fluid simulation, in Wolfgang Engel, edito, ShadeX5: Advanced Rendeing Techniques, chapte 9.6, page Chales Rive Media, Cambidge, MA, 006. [8] W. T. Reeves, Paticle systems - techniques fo modeling a class of fuzzy objects, SIGGRAPH 8 Poceedings, pages 59 76, 98. [9] Jos Stam, Stable fluids, Poceedings of SIGGRAPH 99, Compute Gaphics Poceedings, Annual Confeence Seies, pages 8, August 999. [0] T.-Y. Lee, C. Raghavenda, and J. B. Nicholas, Image composition schemes fo sot-last polygon endeing on D mesh multicomputes, IEEE Tansactions on Visualization and Compute Gaphics, (996). [] Keenan Cane, Ignacio Llamas, Saah Taiq. Real-Time Simulation and Rendeing of D Fluids. GPU Gems, Edited by Hubet Nguyen, Addison-Wesley 007. pp Fig. 4. Inteactive fluid simulation. Emittes ae contolled by the cuso.

7 Fig. 5. Inteactive fluid simulation. Emittes ae contolled by the cuso. Fig. 6. Flat D velocity (uppe ow) and density (bottom ow) textues of a simulation shown by Figue 4. The ight column shows the simulation with voticity confinement.

VISCOSITY OF BIO-DIESEL FUELS

VISCOSITY OF BIO-DIESEL FUELS VISCOSITY OF BIO-DIESEL FUELS One of the key assumptions fo ideal gases is that the motion of a given paticle is independent of any othe paticles in the system. With this assumption in place, one can use

More information

Chapter 4: Fluid Kinematics

Chapter 4: Fluid Kinematics Oveview Fluid kinematics deals with the motion of fluids without consideing the foces and moments which ceate the motion. Items discussed in this Chapte. Mateial deivative and its elationship to Lagangian

More information

Physics 235 Chapter 5. Chapter 5 Gravitation

Physics 235 Chapter 5. Chapter 5 Gravitation Chapte 5 Gavitation In this Chapte we will eview the popeties of the gavitational foce. The gavitational foce has been discussed in geat detail in you intoductoy physics couses, and we will pimaily focus

More information

2 r2 θ = r2 t. (3.59) The equal area law is the statement that the term in parentheses,

2 r2 θ = r2 t. (3.59) The equal area law is the statement that the term in parentheses, 3.4. KEPLER S LAWS 145 3.4 Keple s laws You ae familia with the idea that one can solve some mechanics poblems using only consevation of enegy and (linea) momentum. Thus, some of what we see as objects

More information

Software Engineering and Development

Software Engineering and Development I T H E A 67 Softwae Engineeing and Development SOFTWARE DEVELOPMENT PROCESS DYNAMICS MODELING AS STATE MACHINE Leonid Lyubchyk, Vasyl Soloshchuk Abstact: Softwae development pocess modeling is gaining

More information

Vector Calculus: Are you ready? Vectors in 2D and 3D Space: Review

Vector Calculus: Are you ready? Vectors in 2D and 3D Space: Review Vecto Calculus: Ae you eady? Vectos in D and 3D Space: Review Pupose: Make cetain that you can define, and use in context, vecto tems, concepts and fomulas listed below: Section 7.-7. find the vecto defined

More information

AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM

AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM AN IMPLEMENTATION OF BINARY AND FLOATING POINT CHROMOSOME REPRESENTATION IN GENETIC ALGORITHM Main Golub Faculty of Electical Engineeing and Computing, Univesity of Zageb Depatment of Electonics, Micoelectonics,

More information

Ilona V. Tregub, ScD., Professor

Ilona V. Tregub, ScD., Professor Investment Potfolio Fomation fo the Pension Fund of Russia Ilona V. egub, ScD., Pofesso Mathematical Modeling of Economic Pocesses Depatment he Financial Univesity unde the Govenment of the Russian Fedeation

More information

The Role of Gravity in Orbital Motion

The Role of Gravity in Orbital Motion ! The Role of Gavity in Obital Motion Pat of: Inquiy Science with Datmouth Developed by: Chistophe Caoll, Depatment of Physics & Astonomy, Datmouth College Adapted fom: How Gavity Affects Obits (Ohio State

More information

FXA 2008. Candidates should be able to : Describe how a mass creates a gravitational field in the space around it.

FXA 2008. Candidates should be able to : Describe how a mass creates a gravitational field in the space around it. Candidates should be able to : Descibe how a mass ceates a gavitational field in the space aound it. Define gavitational field stength as foce pe unit mass. Define and use the peiod of an object descibing

More information

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3

Lecture 16: Color and Intensity. and he made him a coat of many colours. Genesis 37:3 Lectue 16: Colo and Intensity and he made him a coat of many colous. Genesis 37:3 1. Intoduction To display a pictue using Compute Gaphics, we need to compute the colo and intensity of the light at each

More information

Strength Analysis and Optimization Design about the key parts of the Robot

Strength Analysis and Optimization Design about the key parts of the Robot Intenational Jounal of Reseach in Engineeing and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Pint): 2320-9356 www.ijes.og Volume 3 Issue 3 ǁ Mach 2015 ǁ PP.25-29 Stength Analysis and Optimization Design

More information

Episode 401: Newton s law of universal gravitation

Episode 401: Newton s law of universal gravitation Episode 401: Newton s law of univesal gavitation This episode intoduces Newton s law of univesal gavitation fo point masses, and fo spheical masses, and gets students pactising calculations of the foce

More information

Experiment 6: Centripetal Force

Experiment 6: Centripetal Force Name Section Date Intoduction Expeiment 6: Centipetal oce This expeiment is concened with the foce necessay to keep an object moving in a constant cicula path. Accoding to Newton s fist law of motion thee

More information

Pessu Behavior Analysis for Autologous Fluidations

Pessu Behavior Analysis for Autologous Fluidations EXPERIENCE OF USING A CFD CODE FOR ESTIMATING THE NOISE GENERATED BY GUSTS ALONG THE SUN- ROOF OF A CAR Liang S. Lai* 1, Geogi S. Djambazov 1, Choi -H. Lai 1, Koulis A. Peicleous 1, and Fédéic Magoulès

More information

Gravitation. AP Physics C

Gravitation. AP Physics C Gavitation AP Physics C Newton s Law of Gavitation What causes YOU to be pulled down? THE EARTH.o moe specifically the EARTH S MASS. Anything that has MASS has a gavitational pull towads it. F α Mm g What

More information

Concept and Experiences on using a Wiki-based System for Software-related Seminar Papers

Concept and Experiences on using a Wiki-based System for Software-related Seminar Papers Concept and Expeiences on using a Wiki-based System fo Softwae-elated Semina Papes Dominik Fanke and Stefan Kowalewski RWTH Aachen Univesity, 52074 Aachen, Gemany, {fanke, kowalewski}@embedded.wth-aachen.de,

More information

Chapter 3 Savings, Present Value and Ricardian Equivalence

Chapter 3 Savings, Present Value and Ricardian Equivalence Chapte 3 Savings, Pesent Value and Ricadian Equivalence Chapte Oveview In the pevious chapte we studied the decision of households to supply hous to the labo maket. This decision was a static decision,

More information

Spirotechnics! September 7, 2011. Amanda Zeringue, Michael Spannuth and Amanda Zeringue Dierential Geometry Project

Spirotechnics! September 7, 2011. Amanda Zeringue, Michael Spannuth and Amanda Zeringue Dierential Geometry Project Spiotechnics! Septembe 7, 2011 Amanda Zeingue, Michael Spannuth and Amanda Zeingue Dieential Geomety Poject 1 The Beginning The geneal consensus of ou goup began with one thought: Spiogaphs ae awesome.

More information

The transport performance evaluation system building of logistics enterprises

The transport performance evaluation system building of logistics enterprises Jounal of Industial Engineeing and Management JIEM, 213 6(4): 194-114 Online ISSN: 213-953 Pint ISSN: 213-8423 http://dx.doi.og/1.3926/jiem.784 The tanspot pefomance evaluation system building of logistics

More information

Voltage ( = Electric Potential )

Voltage ( = Electric Potential ) V-1 of 9 Voltage ( = lectic Potential ) An electic chage altes the space aound it. Thoughout the space aound evey chage is a vecto thing called the electic field. Also filling the space aound evey chage

More information

est using the formula I = Prt, where I is the interest earned, P is the principal, r is the interest rate, and t is the time in years.

est using the formula I = Prt, where I is the interest earned, P is the principal, r is the interest rate, and t is the time in years. 9.2 Inteest Objectives 1. Undestand the simple inteest fomula. 2. Use the compound inteest fomula to find futue value. 3. Solve the compound inteest fomula fo diffeent unknowns, such as the pesent value,

More information

MATHEMATICAL SIMULATION OF MASS SPECTRUM

MATHEMATICAL SIMULATION OF MASS SPECTRUM MATHEMATICA SIMUATION OF MASS SPECTUM.Beánek, J.Knížek, Z. Pulpán 3, M. Hubálek 4, V. Novák Univesity of South Bohemia, Ceske Budejovice, Chales Univesity, Hadec Kalove, 3 Univesity of Hadec Kalove, Hadec

More information

Gauss Law. Physics 231 Lecture 2-1

Gauss Law. Physics 231 Lecture 2-1 Gauss Law Physics 31 Lectue -1 lectic Field Lines The numbe of field lines, also known as lines of foce, ae elated to stength of the electic field Moe appopiately it is the numbe of field lines cossing

More information

Financing Terms in the EOQ Model

Financing Terms in the EOQ Model Financing Tems in the EOQ Model Habone W. Stuat, J. Columbia Business School New Yok, NY 1007 hws7@columbia.edu August 6, 004 1 Intoduction This note discusses two tems that ae often omitted fom the standad

More information

SUPPORT VECTOR MACHINE FOR BANDWIDTH ANALYSIS OF SLOTTED MICROSTRIP ANTENNA

SUPPORT VECTOR MACHINE FOR BANDWIDTH ANALYSIS OF SLOTTED MICROSTRIP ANTENNA Intenational Jounal of Compute Science, Systems Engineeing and Infomation Technology, 4(), 20, pp. 67-7 SUPPORT VECTOR MACHIE FOR BADWIDTH AALYSIS OF SLOTTED MICROSTRIP ATEA Venmathi A.R. & Vanitha L.

More information

Gravitational Mechanics of the Mars-Phobos System: Comparing Methods of Orbital Dynamics Modeling for Exploratory Mission Planning

Gravitational Mechanics of the Mars-Phobos System: Comparing Methods of Orbital Dynamics Modeling for Exploratory Mission Planning Gavitational Mechanics of the Mas-Phobos System: Compaing Methods of Obital Dynamics Modeling fo Exploatoy Mission Planning Alfedo C. Itualde The Pennsylvania State Univesity, Univesity Pak, PA, 6802 This

More information

Deflection of Electrons by Electric and Magnetic Fields

Deflection of Electrons by Electric and Magnetic Fields Physics 233 Expeiment 42 Deflection of Electons by Electic and Magnetic Fields Refeences Loain, P. and D.R. Coson, Electomagnetism, Pinciples and Applications, 2nd ed., W.H. Feeman, 199. Intoduction An

More information

Chapter 4: Fluid Kinematics

Chapter 4: Fluid Kinematics 4-1 Lagangian g and Euleian Desciptions 4-2 Fundamentals of Flow Visualization 4-3 Kinematic Desciption 4-4 Reynolds Tanspot Theoem (RTT) 4-1 Lagangian and Euleian Desciptions (1) Lagangian desciption

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 inestigation

More information

12. Rolling, Torque, and Angular Momentum

12. Rolling, Torque, and Angular Momentum 12. olling, Toque, and Angula Momentum 1 olling Motion: A motion that is a combination of otational and tanslational motion, e.g. a wheel olling down the oad. Will only conside olling with out slipping.

More information

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing

Questions & Answers Chapter 10 Software Reliability Prediction, Allocation and Demonstration Testing M13914 Questions & Answes Chapte 10 Softwae Reliability Pediction, Allocation and Demonstation Testing 1. Homewok: How to deive the fomula of failue ate estimate. λ = χ α,+ t When the failue times follow

More information

The Detection of Obstacles Using Features by the Horizon View Camera

The Detection of Obstacles Using Features by the Horizon View Camera The Detection of Obstacles Using Featues b the Hoizon View Camea Aami Iwata, Kunihito Kato, Kazuhiko Yamamoto Depatment of Infomation Science, Facult of Engineeing, Gifu Univesit aa@am.info.gifu-u.ac.jp

More information

Converting knowledge Into Practice

Converting knowledge Into Practice Conveting knowledge Into Pactice Boke Nightmae srs Tend Ride By Vladimi Ribakov Ceato of Pips Caie 20 of June 2010 2 0 1 0 C o p y i g h t s V l a d i m i R i b a k o v 1 Disclaime and Risk Wanings Tading

More information

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor

Reduced Pattern Training Based on Task Decomposition Using Pattern Distributor > PNN05-P762 < Reduced Patten Taining Based on Task Decomposition Using Patten Distibuto Sheng-Uei Guan, Chunyu Bao, and TseNgee Neo Abstact Task Decomposition with Patten Distibuto (PD) is a new task

More information

Database Management Systems

Database Management Systems Contents Database Management Systems (COP 5725) D. Makus Schneide Depatment of Compute & Infomation Science & Engineeing (CISE) Database Systems Reseach & Development Cente Couse Syllabus 1 Sping 2012

More information

ON THE (Q, R) POLICY IN PRODUCTION-INVENTORY SYSTEMS

ON THE (Q, R) POLICY IN PRODUCTION-INVENTORY SYSTEMS ON THE R POLICY IN PRODUCTION-INVENTORY SYSTEMS Saifallah Benjaafa and Joon-Seok Kim Depatment of Mechanical Engineeing Univesity of Minnesota Minneapolis MN 55455 Abstact We conside a poduction-inventoy

More information

dz + η 1 r r 2 + c 1 ln r + c 2 subject to the boundary conditions of no-slip side walls and finite force over the fluid length u z at r = 0

dz + η 1 r r 2 + c 1 ln r + c 2 subject to the boundary conditions of no-slip side walls and finite force over the fluid length u z at r = 0 Poiseuille Flow Jean Louis Maie Poiseuille, a Fench physicist and physiologist, was inteested in human blood flow and aound 1840 he expeimentally deived a law fo flow though cylindical pipes. It s extemely

More information

Magnetic Bearing with Radial Magnetized Permanent Magnets

Magnetic Bearing with Radial Magnetized Permanent Magnets Wold Applied Sciences Jounal 23 (4): 495-499, 2013 ISSN 1818-4952 IDOSI Publications, 2013 DOI: 10.5829/idosi.wasj.2013.23.04.23080 Magnetic eaing with Radial Magnetized Pemanent Magnets Vyacheslav Evgenevich

More information

Problems of the 2 nd and 9 th International Physics Olympiads (Budapest, Hungary, 1968 and 1976)

Problems of the 2 nd and 9 th International Physics Olympiads (Budapest, Hungary, 1968 and 1976) Poblems of the nd and 9 th Intenational Physics Olympiads (Budapest Hungay 968 and 976) Péte Vankó Institute of Physics Budapest Univesity of Technology and Economics Budapest Hungay Abstact Afte a shot

More information

Chapter 1: Introduction... 7 1-1. BELSORP analysis program... 7 1-2. Required computer environment... 8

Chapter 1: Introduction... 7 1-1. BELSORP analysis program... 7 1-2. Required computer environment... 8 1 [Table of contents] Chapte 1: Intoduction... 7 1-1. BELSORP analysis pogam... 7 1-. Requied compute envionment... 8 Chapte : Installation of the analysis pogam... 9-1. Installation of the WIBU-KEY pogam...

More information

PY1052 Problem Set 8 Autumn 2004 Solutions

PY1052 Problem Set 8 Autumn 2004 Solutions PY052 Poblem Set 8 Autumn 2004 Solutions H h () A solid ball stats fom est at the uppe end of the tack shown and olls without slipping until it olls off the ight-hand end. If H 6.0 m and h 2.0 m, what

More information

An Introduction to Omega

An Introduction to Omega An Intoduction to Omega Con Keating and William F. Shadwick These distibutions have the same mean and vaiance. Ae you indiffeent to thei isk-ewad chaacteistics? The Finance Development Cente 2002 1 Fom

More information

PAN STABILITY TESTING OF DC CIRCUITS USING VARIATIONAL METHODS XVIII - SPETO - 1995. pod patronatem. Summary

PAN STABILITY TESTING OF DC CIRCUITS USING VARIATIONAL METHODS XVIII - SPETO - 1995. pod patronatem. Summary PCE SEMINIUM Z PODSTW ELEKTOTECHNIKI I TEOII OBWODÓW 8 - TH SEMIN ON FUNDMENTLS OF ELECTOTECHNICS ND CICUIT THEOY ZDENĚK BIOLEK SPŠE OŽNO P.., CZECH EPUBLIC DLIBO BIOLEK MILITY CDEMY, BNO, CZECH EPUBLIC

More information

Lab #7: Energy Conservation

Lab #7: Energy Conservation Lab #7: Enegy Consevation Photo by Kallin http://www.bungeezone.com/pics/kallin.shtml Reading Assignment: Chapte 7 Sections 1,, 3, 5, 6 Chapte 8 Sections 1-4 Intoduction: Pehaps one of the most unusual

More information

Experiment MF Magnetic Force

Experiment MF Magnetic Force Expeiment MF Magnetic Foce Intoduction The magnetic foce on a cuent-caying conducto is basic to evey electic moto -- tuning the hands of electic watches and clocks, tanspoting tape in Walkmans, stating

More information

STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL DATA 1. INTRODUCTION

STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL DATA 1. INTRODUCTION Jounal of Machine Engineeing, Vol. 11, No. 4, 211 Batosz POWALKA 1 Macin CHODZKO 1 Kzysztof JEMIELNIAK 2 milling, chatte, opeational modal analysis STABILITY ANALYSIS IN MILLING BASED ON OPERATIONAL MODAL

More information

INVESTIGATION OF FLOW INSIDE AN AXIAL-FLOW PUMP OF GV IMP TYPE

INVESTIGATION OF FLOW INSIDE AN AXIAL-FLOW PUMP OF GV IMP TYPE 1 INVESTIGATION OF FLOW INSIDE AN AXIAL-FLOW PUMP OF GV IMP TYPE ANATOLIY A. YEVTUSHENKO 1, ALEXEY N. KOCHEVSKY 1, NATALYA A. FEDOTOVA 1, ALEXANDER Y. SCHELYAEV 2, VLADIMIR N. KONSHIN 2 1 Depatment of

More information

Structure and evolution of circumstellar disks during the early phase of accretion from a parent cloud

Structure and evolution of circumstellar disks during the early phase of accretion from a parent cloud Cente fo Tubulence Reseach Annual Reseach Biefs 2001 209 Stuctue and evolution of cicumstella disks duing the ealy phase of accetion fom a paent cloud By Olusola C. Idowu 1. Motivation and Backgound The

More information

An Epidemic Model of Mobile Phone Virus

An Epidemic Model of Mobile Phone Virus An Epidemic Model of Mobile Phone Vius Hui Zheng, Dong Li, Zhuo Gao 3 Netwok Reseach Cente, Tsinghua Univesity, P. R. China zh@tsinghua.edu.cn School of Compute Science and Technology, Huazhong Univesity

More information

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero.

The LCOE is defined as the energy price ($ per unit of energy output) for which the Net Present Value of the investment is zero. Poject Decision Metics: Levelized Cost of Enegy (LCOE) Let s etun to ou wind powe and natual gas powe plant example fom ealie in this lesson. Suppose that both powe plants wee selling electicity into the

More information

TORQUE AND ANGULAR MOMENTUM IN CIRCULAR MOTION

TORQUE AND ANGULAR MOMENTUM IN CIRCULAR MOTION MISN-0-34 TORQUE AND ANGULAR MOMENTUM IN CIRCULAR MOTION shaft TORQUE AND ANGULAR MOMENTUM IN CIRCULAR MOTION by Kiby Mogan, Chalotte, Michigan 1. Intoduction..............................................

More information

College of Engineering Bachelor of Computer Science

College of Engineering Bachelor of Computer Science 2 0 0 7 w w w. c n u a s. e d u College of Engineeing Bachelo of Compute Science This bochue Details the BACHELOR OF COMPUTER SCIENCE PROGRAM available though CNU s College of Engineeing. Fo ou most up-to-date

More information

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27

Magnetic Field and Magnetic Forces. Young and Freedman Chapter 27 Magnetic Field and Magnetic Foces Young and Feedman Chapte 27 Intoduction Reiew - electic fields 1) A chage (o collection of chages) poduces an electic field in the space aound it. 2) The electic field

More information

who supply the system vectors for their JVM products. 1 HBench:Java will work best with support from JVM vendors

who supply the system vectors for their JVM products. 1 HBench:Java will work best with support from JVM vendors Appeaed in the ACM Java Gande 2000 Confeence, San Fancisco, Califonia, June 3-5, 2000 HBench:Java: An Application-Specific Benchmaking Famewok fo Java Vitual Machines Xiaolan Zhang Mago Seltze Division

More information

Lab M4: The Torsional Pendulum and Moment of Inertia

Lab M4: The Torsional Pendulum and Moment of Inertia M4.1 Lab M4: The Tosional Pendulum and Moment of netia ntoduction A tosional pendulum, o tosional oscillato, consists of a disk-like mass suspended fom a thin od o wie. When the mass is twisted about the

More information

Exam 3: Equation Summary

Exam 3: Equation Summary MASSACHUSETTS INSTITUTE OF TECHNOLOGY Depatment of Physics Physics 8.1 TEAL Fall Tem 4 Momentum: p = mv, F t = p, Fext ave t= t f t= Exam 3: Equation Summay total = Impulse: I F( t ) = p Toque: τ = S S,P

More information

Tracking/Fusion and Deghosting with Doppler Frequency from Two Passive Acoustic Sensors

Tracking/Fusion and Deghosting with Doppler Frequency from Two Passive Acoustic Sensors Tacking/Fusion and Deghosting with Dopple Fequency fom Two Passive Acoustic Sensos Rong Yang, Gee Wah Ng DSO National Laboatoies 2 Science Pak Dive Singapoe 11823 Emails: yong@dso.og.sg, ngeewah@dso.og.sg

More information

An Analysis of Manufacturer Benefits under Vendor Managed Systems

An Analysis of Manufacturer Benefits under Vendor Managed Systems An Analysis of Manufactue Benefits unde Vendo Managed Systems Seçil Savaşaneil Depatment of Industial Engineeing, Middle East Technical Univesity, 06531, Ankaa, TURKEY secil@ie.metu.edu.t Nesim Ekip 1

More information

A framework for the selection of enterprise resource planning (ERP) system based on fuzzy decision making methods

A framework for the selection of enterprise resource planning (ERP) system based on fuzzy decision making methods A famewok fo the selection of entepise esouce planning (ERP) system based on fuzzy decision making methods Omid Golshan Tafti M.s student in Industial Management, Univesity of Yazd Omidgolshan87@yahoo.com

More information

STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION

STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION Page 1 STUDENT RESPONSE TO ANNUITY FORMULA DERIVATION C. Alan Blaylock, Hendeson State Univesity ABSTRACT This pape pesents an intuitive appoach to deiving annuity fomulas fo classoom use and attempts

More information

PHYSICS 111 HOMEWORK SOLUTION #13. May 1, 2013

PHYSICS 111 HOMEWORK SOLUTION #13. May 1, 2013 PHYSICS 111 HOMEWORK SOLUTION #13 May 1, 2013 0.1 In intoductoy physics laboatoies, a typical Cavendish balance fo measuing the gavitational constant G uses lead sphees with masses of 2.10 kg and 21.0

More information

The Binomial Distribution

The Binomial Distribution The Binomial Distibution A. It would be vey tedious if, evey time we had a slightly diffeent poblem, we had to detemine the pobability distibutions fom scatch. Luckily, thee ae enough similaities between

More information

Automatic Testing of Neighbor Discovery Protocol Based on FSM and TTCN*

Automatic Testing of Neighbor Discovery Protocol Based on FSM and TTCN* Automatic Testing of Neighbo Discovey Potocol Based on FSM and TTCN* Zhiliang Wang, Xia Yin, Haibin Wang, and Jianping Wu Depatment of Compute Science, Tsinghua Univesity Beijing, P. R. China, 100084 Email:

More information

Real Time Tracking of High Speed Movements in the Context of a Table Tennis Application

Real Time Tracking of High Speed Movements in the Context of a Table Tennis Application Real Time Tacking of High Speed Movements in the Context of a Table Tennis Application Stephan Rusdof Chemnitz Univesity of Technology D-09107, Chemnitz, Gemany +49 371 531 1533 stephan.usdof@infomatik.tu-chemnitz.de

More information

Carter-Penrose diagrams and black holes

Carter-Penrose diagrams and black holes Cate-Penose diagams and black holes Ewa Felinska The basic intoduction to the method of building Penose diagams has been pesented, stating with obtaining a Penose diagam fom Minkowski space. An example

More information

HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING

HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING U.P.B. Sci. Bull., Seies C, Vol. 77, Iss. 2, 2015 ISSN 2286-3540 HEALTHCARE INTEGRATION BASED ON CLOUD COMPUTING Roxana MARCU 1, Dan POPESCU 2, Iulian DANILĂ 3 A high numbe of infomation systems ae available

More information

Mechanics 1: Work, Power and Kinetic Energy

Mechanics 1: Work, Power and Kinetic Energy Mechanics 1: Wok, Powe and Kinetic Eneg We fist intoduce the ideas of wok and powe. The notion of wok can be viewed as the bidge between Newton s second law, and eneg (which we have et to define and discuss).

More information

YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH

YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH nd INTERNATIONAL TEXTILE, CLOTHING & ESIGN CONFERENCE Magic Wold of Textiles Octobe 03 d to 06 th 004, UBROVNIK, CROATIA YARN PROPERTIES MEASUREMENT: AN OPTICAL APPROACH Jana VOBOROVA; Ashish GARG; Bohuslav

More information

Gravitation and Kepler s Laws Newton s Law of Universal Gravitation in vectorial. Gm 1 m 2. r 2

Gravitation and Kepler s Laws Newton s Law of Universal Gravitation in vectorial. Gm 1 m 2. r 2 F Gm Gavitation and Keple s Laws Newton s Law of Univesal Gavitation in vectoial fom: F 12 21 Gm 1 m 2 12 2 ˆ 12 whee the hat (ˆ) denotes a unit vecto as usual. Gavity obeys the supeposition pinciple,

More information

Forces & Magnetic Dipoles. r r τ = μ B r

Forces & Magnetic Dipoles. r r τ = μ B r Foces & Magnetic Dipoles x θ F θ F. = AI τ = U = Fist electic moto invented by Faaday, 1821 Wie with cuent flow (in cup of Hg) otates aound a a magnet Faaday s moto Wie with cuent otates aound a Pemanent

More information

Chapter 30: Magnetic Fields Due to Currents

Chapter 30: Magnetic Fields Due to Currents d Chapte 3: Magnetic Field Due to Cuent A moving electic chage ceate a magnetic field. One of the moe pactical way of geneating a lage magnetic field (.1-1 T) i to ue a lage cuent flowing though a wie.

More information

Effect of Contention Window on the Performance of IEEE 802.11 WLANs

Effect of Contention Window on the Performance of IEEE 802.11 WLANs Effect of Contention Window on the Pefomance of IEEE 82.11 WLANs Yunli Chen and Dhama P. Agawal Cente fo Distibuted and Mobile Computing, Depatment of ECECS Univesity of Cincinnati, OH 45221-3 {ychen,

More information

SELF-INDUCTANCE AND INDUCTORS

SELF-INDUCTANCE AND INDUCTORS MISN-0-144 SELF-INDUCTANCE AND INDUCTORS SELF-INDUCTANCE AND INDUCTORS by Pete Signell Michigan State Univesity 1. Intoduction.............................................. 1 A 2. Self-Inductance L.........................................

More information

Lesson 7 Gauss s Law and Electric Fields

Lesson 7 Gauss s Law and Electric Fields Lesson 7 Gauss s Law and Electic Fields Lawence B. Rees 7. You may make a single copy of this document fo pesonal use without witten pemission. 7. Intoduction While it is impotant to gain a solid conceptual

More information

High Availability Replication Strategy for Deduplication Storage System

High Availability Replication Strategy for Deduplication Storage System Zhengda Zhou, Jingli Zhou College of Compute Science and Technology, Huazhong Univesity of Science and Technology, *, zhouzd@smail.hust.edu.cn jlzhou@mail.hust.edu.cn Abstact As the amount of digital data

More information

The force between electric charges. Comparing gravity and the interaction between charges. Coulomb s Law. Forces between two charges

The force between electric charges. Comparing gravity and the interaction between charges. Coulomb s Law. Forces between two charges The foce between electic chages Coulomb s Law Two chaged objects, of chage q and Q, sepaated by a distance, exet a foce on one anothe. The magnitude of this foce is given by: kqq Coulomb s Law: F whee

More information

BIOS American Megatrends Inc (AMI) v02.61 BIOS setup guide and manual for AM2/AM2+/AM3 motherboards

BIOS American Megatrends Inc (AMI) v02.61 BIOS setup guide and manual for AM2/AM2+/AM3 motherboards BIOS Ameican Megatends Inc (AMI) v02.61 BIOS setup guide and manual fo AM2/AM2+/AM3 motheboads The BIOS setup, also called CMOS setup, is a cucial pat of the pope setting up of a PC the BIOS (Basic Input

More information

Voltage ( = Electric Potential )

Voltage ( = Electric Potential ) V-1 Voltage ( = Electic Potential ) An electic chage altes the space aound it. Thoughout the space aound evey chage is a vecto thing called the electic field. Also filling the space aound evey chage is

More information

Distributed Computing and Big Data: Hadoop and MapReduce

Distributed Computing and Big Data: Hadoop and MapReduce Distibuted Computing and Big Data: Hadoop and Map Bill Keenan, Diecto Tey Heinze, Achitect Thomson Reutes Reseach & Development Agenda R&D Oveview Hadoop and Map Oveview Use Case: Clusteing Legal Documents

More information

Introduction to Fluid Mechanics

Introduction to Fluid Mechanics Chapte 1 1 1.6. Solved Examples Example 1.1 Dimensions and Units A body weighs 1 Ibf when exposed to a standad eath gavity g = 3.174 ft/s. (a) What is its mass in kg? (b) What will the weight of this body

More information

Moment and couple. In 3-D, because the determination of the distance can be tedious, a vector approach becomes advantageous. r r

Moment and couple. In 3-D, because the determination of the distance can be tedious, a vector approach becomes advantageous. r r Moment and couple In 3-D, because the detemination of the distance can be tedious, a vecto appoach becomes advantageous. o k j i M k j i M o ) ( ) ( ) ( + + M o M + + + + M M + O A Moment about an abita

More information

Chapter 22. Outside a uniformly charged sphere, the field looks like that of a point charge at the center of the sphere.

Chapter 22. Outside a uniformly charged sphere, the field looks like that of a point charge at the center of the sphere. Chapte.3 What is the magnitude of a point chage whose electic field 5 cm away has the magnitude of.n/c. E E 5.56 1 11 C.5 An atom of plutonium-39 has a nuclea adius of 6.64 fm and atomic numbe Z94. Assuming

More information

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360!

Figure 2. So it is very likely that the Babylonians attributed 60 units to each side of the hexagon. Its resulting perimeter would then be 360! 1. What ae angles? Last time, we looked at how the Geeks intepeted measument of lengths. Howeve, as fascinated as they wee with geomety, thee was a shape that was much moe enticing than any othe : the

More information

DYNAMICS AND STRUCTURAL LOADING IN WIND TURBINES

DYNAMICS AND STRUCTURAL LOADING IN WIND TURBINES DYNAMIS AND STRUTURAL LOADING IN WIND TURBINES M. Ragheb 12/30/2008 INTRODUTION The loading egimes to which wind tubines ae subject to ae extemely complex equiing special attention in thei design, opeation

More information

Towards Automatic Update of Access Control Policy

Towards Automatic Update of Access Control Policy Towads Automatic Update of Access Contol Policy Jinwei Hu, Yan Zhang, and Ruixuan Li Intelligent Systems Laboatoy, School of Computing and Mathematics Univesity of Westen Sydney, Sydney 1797, Austalia

More information

Supplementary Material for EpiDiff

Supplementary Material for EpiDiff Supplementay Mateial fo EpiDiff Supplementay Text S1. Pocessing of aw chomatin modification data In ode to obtain the chomatin modification levels in each of the egions submitted by the use QDCMR module

More information

THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION

THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION IADIS Intenational Confeence Applied Computing 2006 THE DISTRIBUTED LOCATION RESOLUTION PROBLEM AND ITS EFFICIENT SOLUTION Jög Roth Univesity of Hagen 58084 Hagen, Gemany Joeg.Roth@Fenuni-hagen.de ABSTRACT

More information

Chapter 2. Electrostatics

Chapter 2. Electrostatics Chapte. Electostatics.. The Electostatic Field To calculate the foce exeted by some electic chages,,, 3,... (the souce chages) on anothe chage Q (the test chage) we can use the pinciple of supeposition.

More information

NUCLEAR MAGNETIC RESONANCE

NUCLEAR MAGNETIC RESONANCE 19 Jul 04 NMR.1 NUCLEAR MAGNETIC RESONANCE In this expeiment the phenomenon of nuclea magnetic esonance will be used as the basis fo a method to accuately measue magnetic field stength, and to study magnetic

More information

Manual ultrasonic inspection of thin metal welds

Manual ultrasonic inspection of thin metal welds Manual ultasonic inspection of thin metal welds Capucine Capentie and John Rudlin TWI Cambidge CB1 6AL, UK Telephone 01223 899000 Fax 01223 890689 E-mail capucine.capentie@twi.co.uk Abstact BS EN ISO 17640

More information

Semipartial (Part) and Partial Correlation

Semipartial (Part) and Partial Correlation Semipatial (Pat) and Patial Coelation his discussion boows heavily fom Applied Multiple egession/coelation Analysis fo the Behavioal Sciences, by Jacob and Paticia Cohen (975 edition; thee is also an updated

More information

Modal Characteristics study of CEM-1 Single-Layer Printed Circuit Board Using Experimental Modal Analysis

Modal Characteristics study of CEM-1 Single-Layer Printed Circuit Board Using Experimental Modal Analysis Available online at www.sciencediect.com Pocedia Engineeing 41 (2012 ) 1360 1366 Intenational Symposium on Robotics and Intelligent Sensos 2012 (IRIS 2012) Modal Chaacteistics study of CEM-1 Single-Laye

More information

Graphs of Equations. A coordinate system is a way to graphically show the relationship between 2 quantities.

Graphs of Equations. A coordinate system is a way to graphically show the relationship between 2 quantities. Gaphs of Equations CHAT Pe-Calculus A coodinate sstem is a wa to gaphicall show the elationship between quantities. Definition: A solution of an equation in two vaiables and is an odeed pai (a, b) such

More information

Coordinate Systems L. M. Kalnins, March 2009

Coordinate Systems L. M. Kalnins, March 2009 Coodinate Sstems L. M. Kalnins, Mach 2009 Pupose of a Coodinate Sstem The pupose of a coodinate sstem is to uniquel detemine the position of an object o data point in space. B space we ma liteall mean

More information

A Web Application for Geothermal Borefield Design

A Web Application for Geothermal Borefield Design Poceedings Wold Geothemal Congess 205 Melboune, Austalia, 9-25 Apil 205 A Web Application fo Geothemal Boefield Design Davide Rolando,2, José Acuna and Maco Fossa 2 KT Royal Institute of Technology, Binellvägen

More information

INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS

INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS INITIAL MARGIN CALCULATION ON DERIVATIVE MARKETS OPTION VALUATION FORMULAS Vesion:.0 Date: June 0 Disclaime This document is solely intended as infomation fo cleaing membes and othes who ae inteested in

More information

The Electric Potential, Electric Potential Energy and Energy Conservation. V = U/q 0. V = U/q 0 = -W/q 0 1V [Volt] =1 Nm/C

The Electric Potential, Electric Potential Energy and Energy Conservation. V = U/q 0. V = U/q 0 = -W/q 0 1V [Volt] =1 Nm/C Geneal Physics - PH Winte 6 Bjoen Seipel The Electic Potential, Electic Potential Enegy and Enegy Consevation Electic Potential Enegy U is the enegy of a chaged object in an extenal electic field (Unit

More information

Continuous Compounding and Annualization

Continuous Compounding and Annualization Continuous Compounding and Annualization Philip A. Viton Januay 11, 2006 Contents 1 Intoduction 1 2 Continuous Compounding 2 3 Pesent Value with Continuous Compounding 4 4 Annualization 5 5 A Special Poblem

More information

Automatic Closed Caption Detection and Filtering in MPEG Videos for Video Structuring

Automatic Closed Caption Detection and Filtering in MPEG Videos for Video Structuring JOURNAL OF INFORMATION SCIENCE AND ENGINEERING, 1145-116 (006) Automatic Closed Caption Detection and Filteing in MPEG Videos fo Video Stuctuing Depatment of Compute Science and Infomation Engineeing National

More information