5. PRESSURE AND VELOCITY SPRING Each component of momentum satisfies its own scalar-transport equation. For one cell:

Size: px
Start display at page:

Download "5. PRESSURE AND VELOCITY SPRING Each component of momentum satisfies its own scalar-transport equation. For one cell:"

Transcription

1 5. PRESSURE AND VELOCITY SPRING The momentum equation 5.2 Pressure-velocity couling 5.3 Pressure-correction methods Summary References Examles 5.1 The Momentum Equation Each comonent of momentum satisfies its own scalar-transort equation. For one cell: (1) where C is the mass flux through a cell face. For the momentum-equation comonents: concentration, velocity comonent ( = u, v, w) diffusivity, Γ viscosity, μ source non-viscous forces However, these equations differ from those for assive scalars (those not affecting the flow) because they are: non-linear; couled; required also to be mass-consistent. For examle, the x-momentum flux through an x-directed face is The mass flux C is not constant but changes with u. The momentum equation is therefore non-linear and must be solved iteratively. v u mass flux ua Similarly, the y-momentum flux through an x-directed face is The v equation deends on the solution of the u equation (and vice versa). Hence, the momentum equations are couled and must be solved together. Pressure also aears in each momentum equation. This, together with the fact that velocity comonents u, v, w must satisfy mass conservation as well as momentum, further coules the equations and requires a means of determining ressure. The means of doing so is very different in comressible and incomressible CFD. In comressible flow, continuity rovides a transort equation for density ρ. Pressure is obtained by solving an energy equation to find temerature T and then using an equation of state (e.g. = ρrt). In incomressible flow, any density variations are, by definition, not determined by ressure. A ressure equation arises from the requirement that the solutions of the CFD 5 1 David Asley

2 momentum equations are also mass-consistent. In other words, mass conservation actually leads to a ressure equation! In most incomressible-flow solvers mass and momentum equations are solved sequentially and iteratively. This is called a segregated aroach, as in the following seudocode: DO WHILE (not_converged) CALL SCALAR_TRANSPORT( u ) CALL SCALAR_TRANSPORT( v ) CALL SCALAR_TRANSPORT( w ) CALL MASS_CONSERVATION END DO In many comressible-flow codes the main fluid variables are assembled and solved as a vector (ρ, ρu, ρv, ρw, ρe). This is called a couled aroach. 5.2 Pressure-Velocity Couling Question 1. How are velocity and ressure linked? Question 2. How does a ressure equation arise? Question 3. Should velocity and ressure be co-located (stored at the same ositions)? Link Between Pressure and Velocity The discretised momentum equation for one cell is of the form area A w u P e (2) Hence, where (3) Answer 1 (a) The force terms in the momentum equation rovide a link between velocity and ressure. (b) Velocity deends on the ressure gradient or, when discretised, on the difference between ressure values ½ cell either side. Symbolically: where indicates a centred difference ( right minus left ). Substituting for velocity in the continuity equation, CFD 5 2 David Asley W w N n P s S e E

3 This has the same algebraic form as the scalar-transort equation. Answer 2 The momentum equation rovides a link between velocity and ressure which, when substituted into the continuity equation, gives an equation for ressure. Hence, a ressure equation arises from the requirement that solutions of the momentum equation be mass-consistent Co-located Storage of Variables Suose ressure and velocity are co-located (stored at the same ositions) and that advective velocities (cell-face velocities in the mass fluxes) are calculated by linear interolation. In the momentum equation the net ressure force involves i-1 i i+1 w e Hence, the discretised momentum equation has the form: In the continuity equation the net outward mass flux deends on i-2 i-1 i i+1 i+2 w e So, both mass and momentum equations only link ressures at alternate nodes. Thus, the combination of: co-located u, ; linear interolation for advective velocities; leads to decouling of odd nodal values 1, 3, 5, from even nodal values 2, 4, 6,. This odd-even decouling or checkerboard effect leads to indeterminate oscillations in ressure. There are two common remedies: x CFD 5 3 David Asley

4 (1) use a staggered grid (velocity and ressure stored at different locations); or (2) use a co-located grid but Rhie-Chow interolation for the advective velocities. Both rovide a link between adjacent ressure nodes, reventing odd-even decouling Staggered Grid (Harlow and Welch, 1965) In the staggered-grid arrangement, velocity comonents are stored half-way between the ressure nodes that drive them. u v u ressure/scalar control volume This leads to different sets of control volumes: one set for ressure (and other scalars) and others for the different velocity comonents. v u control volume v control volume One indexing convention (esecially in comuter code) gives each velocity node the same index (P or ijk) as the ressure node to which it oints. Another (used in theoretical work) refers to, e.g., the u (i 1/2) velocity. On a cartesian mesh In the momentum equation, ressure is stored at recisely the oints required to comute the ressure force. u i-1 i i In the continuity equation velocity is stored at recisely the oints required to comute mass fluxes. For net mass flux: u i u i+1 i-1 i i+1 No interolation is required for cell-face values and there is a strong linkage between successive ressure nodes, avoiding odd-even decouling. Advantages No interolation required; variables are stored exactly where they are needed. No odd-even ressure decouling. Disadvantages Added geometrical comlexity from multile sets of nodes and control volumes. If the mesh is not cartesian then the velocity nodes may cease to lie between the ressure nodes that drive them (see right). Very difficult to imlement on unstructured meshes. CFD 5 4 David Asley

5 5.2.4 Rhie-Chow Velocity Interolation (Rhie and Chow, 1983) The alternative aroach uses co-located ressure and velocity but emloys a different, ressure-deendent, interolation for advective velocities (cell-face velocities in the mass fluxes). W P E w e The momentum equation connects velocity and ressure: Symbolically, is called the seudovelocity. It reresents everything on the RHS excet ressure. In the Rhie-Chow algorithm this symbolic relation is alied at both nodes and faces. (4) (5) (i) Invert to work out at nodes: with centred difference Δ from interolated face values (ii) Then linearly interolate and d to cell faces: with centred difference Δ taken from adjacent nodes This amounts to adding and subtracting centred ressure differences worked out at different laces; e.g. on the east face, with an overbar denoting linear interolation to that face, (6) Using this interolative technique, mass conservation gives: (7) Notes. The central ressure value does not cancel, so there is no odd-even decouling. This is a ressure equation. Moreover, it has the same algebraic form as a scalartransort equation:, where In ractice it is common to solve iteratively for ressure corrections rather than ressure itself (Section 5.3). Equation (7) then becomes where * denotes current value of. This can be rearranged as: (8) CFD 5 5 David Asley

6 Examle For the uniform cartesian mesh shown below the momentum equation gives a velocity/ressure relationshi for each cell, where Δ denotes a centred difference. f u = = A For the u and values given, calculate the advective velocity on the cell face marked f: (a) (b) (c) by linear interolation; by Rhie-Chow interolation, if A = 0.6 (local ressure maximum to the left of face); by Rhie-Chow interolation, if A = 0.9 (constant ressure gradient). Answer (a) By linear interolation, (b) The working for Rhie-Chow may be set out as follows. u by interolation of by interolation of 2.8 Answer: u f = 2.8 This is higher than that obtained from linear interolation, showing the velocity field trying to alleviate the local ressure maximum just to the left of the face. (c) If A = 0.9 then Rhie-Chow interolation roduces u f = 2.5, as for linear interolation. CFD 5 6 David Asley

7 Analysis of Rhie-Chow Interolation Parts (a) and (c) of the examle above show that Rhie-Chow interolation gives the same result as linear interolation if there is a constant ressure gradient, whereas if (as in art(b)) there is a local ressure eak to one side of the face then the advective velocity increases to comensate. For general values of u i and i (and a uniform mesh and a constant coefficient d), Rhie-Chow interolation gives (exercise): Thus, Rhie-Chow interolation adds a ressure-smoothing term to the art obtained simly by interolation. Pressure-velocity couling is the dominant feature of the Navier-Stokes equations. Staggered grids are an effective way of handling it on Cartesian meshes. However, for non-cartesian meshes, co-located storage is the norm; the Rhie-Chow algorithm is emloyed in most general-urose CFD codes. A generalised form of the Rhie-Chow algorithm (based on local ressure gradients) is used on unstructured meshes. CFD 5 7 David Asley

8 5.3 Pressure-Correction Methods Consider how changing ressure could be used to enforce mass conservation. Net mass flux in. Increase cell ressure to drive mass out. Net mass flux out. Decrease cell ressure to suck mass in. What are ressure-correction methods? Iterative numerical schemes for ressure-linked equations. Seek to roduce velocity and ressure satisfying both mass and momentum equations. Consist of alternating udates of velocity and ressure: solve the momentum equation for velocity with the current ressure; use velocity-ressure link to rehrase continuity as a ressure-correction equation; solve for ressure corrections to nudge velocity towards mass conservation. There are two common schemes: SIMPLE and PISO. Velocity and Pressure Corrections The momentum equation connects velocity and ressure: where ½ and +½ indicate the relative locations as multiles of the grid sacing. One must correct velocity to satisfy continuity: but simultaneously correct ressure so as to retain a solution of the momentum equation: The velocity-correction formula is, therefore, (9) CFD 5 8 David Asley

9 Classroom Examle 1 (Patankar, 1980) A 1 B 2 C 3 In the steady, one-dimensional, constant-density situation shown, the ressure is stored at locations 1, 2 and 3, whilst velocity u is stored at the staggered locations A, B and C. The velocity-correction formula is where ressure nodes i 1 and i lie on either side of the location for u. The value of d is 2 everywhere. The inflow boundary condition is u A = 10. If, at a given stage in the iteration rocess, the momentum equations give and, calculate the values of,, and the resulting corrected velocities. Classroom Examle 2 (Exam 2006 art) In the 2-d staggered-grid arrangement shown below, u and v (the x and y comonents of velocity), are stored at nodes indicated by arrows, whilst ressure is stored at the intermediate nodes A D. The grid sacing is uniform and the same in both directions. The velocity is fixed on the boundaries as shown. The velocity comonents at the interior nodes (u B, u D, v C and v D ) are to be found. At an intermediate stage of calculation the internal velocity values are found to be u B = 11, u D = 14, v C = 8, v D = 5 whilst correction formulae derived from the momentum equation are with geograhical (w,e,s,n) notation indicating the relative location of ressure nodes. (a) Show that alying mass conservation to control volumes centred on ressure nodes leads to simultaneous equations for the ressure corrections. Solve for the ressure corrections and use them to generate a mass-consistent flow field. C 5 10 u D D vc vd A u B B 5 5 y x (b) Exlain why, in ractice, it is necessary to solve for the ressure correction and not just the velocity corrections in order to satisfy mass conservation. CFD 5 9 David Asley

10 5.3.1 SIMPLE: Semi-Imlicit Method for Pressure-Linked Equations (Patankar and Salding, 1972) Stage 1. Solve the momentum equation with current ressure. START The resulting velocity generally won t be mass-consistent. Stage 2. Formulate the ressure-correction equation. (i) Relate changes in u to changes in : solve momentum equations solve ressurecorrection equation (ii) Make the SIMPLE aroximation: neglect. correct velocity and ressure (iii) (Legitimate, since corrections vanish in the final solution.) Aly mass conservation to control volumes centred on the ressure nodes. The net mass flux results from current (u * ) lus correction (u) velocity fields: no converged? yes END Hence, (minus the current net mass flux) or, writing in terms of the ressure correction (staggered or non-staggered mesh): This results in a ressure-correction equation of the form: (10) Stage 3. Solve the ressure-correction equation The discretised ressure-correction equation (10) has the same form as the discretised scalar-transort equation, and hence the same solver may be used. Stage 4. Correct ressure and velocity: (11) Iterate. Reeat stages 1 to 4 until mass and momentum equations are simultaneously satisfied. CFD 5 10 David Asley

11 Notes. The source term for the ressure-correction equation is minus the current net mass flux ( ), as exected. If at any stage there is net mass flow into a control volume then the ressure there must rise in order to ush mass back out. In ractice, substantial under-relaxation of the ressure udate is needed to revent divergence. In the correction ste the ressure (but not the velocity) udate is relaxed: Tyical values of α are Velocity is under-relaxed in the momentum transort equations, but the under-relaxation is generally less severe: α u As they involve the velocities being comuted, matrix elements change at each iteration. There is little to be gained by solving matrix equations exactly at each stage, but only doing enough iterations of the matrix solver to reduce the residuals by a sufficient amount. Alternative strategies at each SIMPLE iteration are: (1) m iterations of each u, v, w equation, followed by n iterations of the equation (tyically m = 1, n = 4); or (2) do enough iterations of each equation to reduce the residual error to a small fraction of the original (say 10%) Variants of SIMPLE The SIMPLE scheme can be inefficient and requires considerable ressure under-relaxation. This is because the corrected fields are good for udating velocity (since a mass-consistent flow field is roduced) but not ressure (because of the inaccuracy of the aroximation connecting velocity and ressure corrections). To remedy this, a number of variants of SIMPLE have been roduced. SIMPLER (Patankar, 1980) This variant acknowledges that the correction equation is good for udating velocity but not ressure, and recedes the momentum and ressure-correction equations with the equation for the ressure itself (equation (7)). SIMPLEC (Van Doormaal and Raithby, 1984) This scheme seeks a more accurate relationshi between velocity and ressure changes. From the momentum equations, the velocity and ressure equations are related by (12) The SIMPLE aroximation is to neglect the term (*). However, this is actually of comarable size to the LHS. In the SIMPLEC scheme, (12) is rewritten by subtracting from both sides: Assuming that, it is more accurate to neglect the term (**), thus CFD 5 11 David Asley

12 roducing an alternative formula connecting velocity and ressure changes: (13) Comare: (14) Although concetually aealing, there is a difficulty. The sum-of-the-neighbouringcoefficients constraint on a P means that, in steady-state calculations,, and hence the denominator of (13) vanishes. This roblem doesn t arise in time-varying calculations, where a time-deendent art is added to a P, removing the singularity. SIMPLEX This scheme assumes that velocity and ressure corrections are linked by some general relationshi This includes both SIMPLE and SIMPLEC as secial cases (see equation (14)). However, the SIMPLEX scheme attemts to imrove on this by actually solving equations for the P. These equations are derived from (12) but we shall not go into the details here. This author s exerience is that SIMPLER and SIMPLEX offer substantial erformance imrovements over SIMPLE on staggered grids, but that the advanced schemes are difficult (imossible?) to formulate on co-located grids and offer little advantage there. (15) PISO PISO Pressure Imlicit with Slitting of Oerators (Issa, 1986). This was originally roosed as a time-deendent, non-iterative ressure-correction method. Each timeste (t old t new ) consists of a sequence of three stages: (1) Solution of the time-deendent momentum equation with the t old ressure. (2) A ressure-correction equation and ressure/velocity udate à la SIMPLE to roduce a mass-consistent flow field. (3) A second corrector ste to roduce a second mass-consistent flow field but with timeadvanced ressure. Aart from time-deendence, stes (1) and (2) are essentially the same as SIMPLE. However, ste (3) is designed to eliminate the need for outer iteration at each time ste as would be the case with SIMPLE. However, the ressure-correction equations (2) and (3) must be solved to a much finer tolerance on each ass, so requiring many more inner iterations of the matrix equations. Evidence suggests that PISO can be more efficient in some time-deendent calculations, but SIMPLE and its variants are better in direct iteration to steady state. CFD 5 12 David Asley

13 Summary Each comonent of momentum satisfies its own scalar-transort equation: concentration, velocity comonent (u, v or w) diffusivity, Γ viscosity, μ source, S forces However, the momentum equations are: non-linear; couled; required also to be mass-consistent. and, as a consequence, have to be solved: iteratively; together; in conjunction with the mass equation. For incomressible flow, the requirement that solutions of the momentum equation be mass-consistent generates a ressure equation. Pressure-gradient source terms lead to odd-even decouling when all variables are colocated (stored at the same nodes). This may be remedied by using either: a staggered velocity grid; a non-staggered grid, but Rhie-Chow interolation for advective velocities. Pressure-correction methods make small corrections to ressure in order to nudge the velocity field towards mass conservation whilst still reserving a solution of the momentum equation. Widely-used ressure-correction algorithms are SIMPLE (and its variants) and PISO. The first is an iterative scheme; the second is a non-iterative, time-deendent scheme. References Harlow, F.H. and Welch, J.E., 1965, Numerical calculation of time-deendent viscous incomressible flow of fluid with a free surface, Physics of Fluids, 8, Issa, R.I., 1986, Solution of the imlicitly discretised fluid flow equations by oerator slitting, J. Comut. Phys., 62, Patankar, S.V., 1980, Numerical Heat Transfer and Fluid Flow, McGraw-Hill. Patankar, S.V., 1988, Ellitic systems: finite difference method I, Chater 6 in Handbook of Numerical Heat Transfer, Minkowycz, W.J., Sarrow, E.M., Schneider, G.E. and Pletcher, R.H. (eds.), Wiley. Raithby, G.D. and Schneider, G.E., 1988, Ellitic systems: finite difference method II, Chater 7 in Handbook of Numerical Heat Transfer, Minkowycz, W.J., Sarrow, E.M., Schneider, G.E. and Pletcher, R.H. (eds.), Wiley. Rhie, C.M. and Chow, W.L., 1983, A numerical study of the turbulent flow ast an isolated airfoil with trailing edge searation, AIAA Journal, 21, Van Doormaal, J.P. and Raithby, G.D., 1984, Enhancements of the SIMPLE method for redicting incomressible fluid flows, Numerical Heat Transfer, 7, CFD 5 13 David Asley

14 Examles Q1. For the rectangular control volume with surface ressures shown, what is: (a) the net force in the x direction? (b) the net force in the x direction, er unit volume? (c) the average ressure gradient in the x direction? w A x e (0,2) =9 (2,4) =5 =7 (4,0) Q2. The figure left shows a triangular cell in a 2-d unstructured mesh, together with the coordinates of its vertices and the average ressures on the cell faces. Calculate the x and y comonents of the net ressure force on the cell (er unit deth). Q3. (Exam 2014 art) The figure right shows a quadrilateral cell in a 2-d mesh, together with the coordinates of its vertices and the average ressures on the cell faces. Calculate the x and y comonents of the net ressure force on the cell (er unit deth). (1,4) =4 =10 (5,3) =2 (-1,1) =1 (4,0) Q4. (a) (b) (c) Exlain (briefly) how an equation for ressure is derived in finite-volume calculations of incomressible fluid flow. Exlain how the roblem of odd-even decouling in the discretised ressure field arises with co-located storage and linear interolation for advective velocities, and detail the Rhie-Chow interolation which can be used to overcome this. The figure below shows art of a Cartesian mesh with the velocity u and ressure at the centre of 4 control volumes. If the momentum equation leads to a ressurevelocity linkage of the form, (where Δ reresents a centred difference) use the Rhie-Chow rocedure to find the advective velocity on the cell face marked f. f u = = (d) Describe the SIMPLE ressure-correction method for the solution of couled mass and momentum equations. CFD 5 14 David Asley

15 Q5. (Exam 2016) (a) By considering an infinitesimal cuboid cell with edges aligned with the coordinate axes, show that the ressure force er unit volume in the x direction is. (b) For what urose is the Rhie-Chow algorithm used in ressure-based finite-volume simulations of incomressible fluid flow? Part of a uniform structured mesh is shown in the figure below, along with the cell-centred values of the x-velocity comonent u and the ressure in consistent units. From the discretised momentum equation, velocities and ressures are found to be linked by where Δ here denotes a centred difference. i-2 w e i-1 i i+1 i+2 = u = (c) (d) Find the velocity on the w and e faces of cell i (ositions i ½ and i + ½) using: (i) linear interolation; (ii) Rhie-Chow interolation. Comment briefly on your results and the effect of the ressure field on advective velocities. Assuming flow only in the x direction, and using the face velocities found in art (c)(ii) as the current velocity values, set u but do not solve the ressurecorrection equation for cell i. Q6. The figure defines the relative osition of velocity ( ) and ressure () nodes in a 1-d, staggered-grid arrangement. u 1 u 2 u3 u Velocity u 1 = 4 is fixed as a boundary condition. After solving the momentum equation the velocities at the other nodes are found to be u 2 = 3, u 3 = 5, u 4 = 6. The relationshi between velocity and ressure is found (from the discretised momentum equation) to be of the form at each node, where Δ denotes a centred difference in sace. Aly mass conservation to cells centred on scalar nodes, calculate the ressure corrections necessary to enforce continuity, and confirm that a mass-consistent velocity field is obtained. CFD 5 15 David Asley

16 Q7. (Exam 2013) (a) Exlain, without mathematical detail, how ressure-correction methods may be used to solve the couled equations of incomressible fluid flow. (b) State the two main differences between the PISO and SIMPLE ressure-correction methods. In the 2-d staggered-grid arrangement shown right, u and v (the x and y comonents of velocity), are stored at nodes indicated by arrows, whilst ressure is stored at intermediate nodes A, B, C, D. Grid sacing is uniform and the same in both directions. Velocity is fixed at inflow. Uer and lower boundaries are imermeable. 6 6 A v A B u C ud C v C D u E uf At an intermediate stage of calculation the outflow velocities are u E = 12, u F = 4, inflow outflow whilst the internal velocity comonents are u C = 2, u D = 1, v A = 1, v C = 2. Velocity-ressure correction formulae are with geograhical (w,e,s,n) notation indicating the relative location of ressure nodes. (c) (d) Aly a uniform scale factor to the outflow velocities to enforce global mass conservation, stating the scale factor and outflow velocities after its alication. Show that alying mass conservation to control volumes centred on ressure nodes leads to simultaneous equations for the ressure corrections. Solve for the ressure corrections and use them to generate a mass-consistent flow field. CFD 5 16 David Asley

17 Q8. (Exam 2011) (a) In a finite-volume CFD calculation, flow variables are usually stored at the centre of comutational cells. Exlain briefly, and without mathematical detail, (i) how ressure-correction methods can be used to generate a mass-consistent velocity field; (ii) why simle linear interolation may cause difficulties with the couling of ressure and velocity if these variables are stored at the same locations. (b) Part of one line of cells in a uniform Cartesian mesh is shown in the figure below, together with the velocity u and ressure at nodes. In each cell the momentum equation gives a relationshi between velocity and ressure of the form where Δ denotes a centred difference. f u = = L Calculate the velocity on the cell face marked f by Rhie-Chow interolation if: (i) L = 0.5; (ii) L = 0.3. (c) The figure below shows a triangular cell in a 2-d mesh for an inviscid CFD calculation. The vertex coordinates and the average ressures on the cell edges are shown in the figure. The density ρ = 1.0 everywhere. Find the x and y comonents of: (i) the net ressure force on the cell; (ii) the fluid acceleration. (3,5) y = 2 = 5 x (0,0) = 3 (4,0) CFD 5 17 David Asley

Understanding DPMFoam/MPPICFoam

Understanding DPMFoam/MPPICFoam Understanding DPMFoam/MPPICFoam Jeroen Hofman March 18, 2015 In this document I intend to clarify the flow solver and at a later stage, the article-fluid and article-article interaction forces as imlemented

More information

Pressure-velocity correction method Finite Volume solution of Navier-Stokes equations Exercise: Finish solving the Navier Stokes equations

Pressure-velocity correction method Finite Volume solution of Navier-Stokes equations Exercise: Finish solving the Navier Stokes equations Today's Lecture 2D grid colocated arrangement staggered arrangement Exercise: Make a Fortran program which solves a system of linear equations using an iterative method SIMPLE algorithm Pressure-velocity

More information

Feedback-error control

Feedback-error control Chater 4 Feedback-error control 4.1 Introduction This chater exlains the feedback-error (FBE) control scheme originally described by Kawato [, 87, 8]. FBE is a widely used neural network based controller

More information

Simplifications to Conservation Equations

Simplifications to Conservation Equations Chater 5 Simlifications to Conservation Equations 5.1 Steady Flow If fluid roerties at a oint in a field do not change with time, then they are a function of sace only. They are reresented by: ϕ = ϕq 1,

More information

Antony Jameson. Stanford University Aerospace Computing Laboratory Report ACL

Antony Jameson. Stanford University Aerospace Computing Laboratory Report ACL Formulation of Kinetic Energy Preserving Conservative Schemes for Gas Dynamics and Direct Numerical Simulation of One-dimensional Viscous Comressible Flow in a Shock Tube Using Entroy and Kinetic Energy

More information

Paper C Exact Volume Balance Versus Exact Mass Balance in Compositional Reservoir Simulation

Paper C Exact Volume Balance Versus Exact Mass Balance in Compositional Reservoir Simulation Paer C Exact Volume Balance Versus Exact Mass Balance in Comositional Reservoir Simulation Submitted to Comutational Geosciences, December 2005. Exact Volume Balance Versus Exact Mass Balance in Comositional

More information

Statics and dynamics: some elementary concepts

Statics and dynamics: some elementary concepts 1 Statics and dynamics: some elementary concets Dynamics is the study of the movement through time of variables such as heartbeat, temerature, secies oulation, voltage, roduction, emloyment, rices and

More information

Preconditioning techniques for Newton s method for the incompressible Navier Stokes equations

Preconditioning techniques for Newton s method for the incompressible Navier Stokes equations Preconditioning techniques for Newton s method for the incomressible Navier Stokes equations H. C. ELMAN 1, D. LOGHIN 2 and A. J. WATHEN 3 1 Deartment of Comuter Science, University of Maryland, College

More information

Role of Momentum Interpolation Mechanism of the Roe. Scheme in Shock Instability

Role of Momentum Interpolation Mechanism of the Roe. Scheme in Shock Instability Role of Momentum Interolation Mechanism of the Roe Scheme in Shock Instability Xiao-dong Ren 1,2 Chun-wei Gu 1 Xue-song Li 1,* 1. Key Laboratory for Thermal Science and Power Engineering of Ministry of

More information

FE FORMULATIONS FOR PLASTICITY

FE FORMULATIONS FOR PLASTICITY G These slides are designed based on the book: Finite Elements in Plasticity Theory and Practice, D.R.J. Owen and E. Hinton, 1970, Pineridge Press Ltd., Swansea, UK. 1 Course Content: A INTRODUCTION AND

More information

Meshless Methods for Scientific Computing Final Project

Meshless Methods for Scientific Computing Final Project Meshless Methods for Scientific Comuting Final Project D0051008 洪啟耀 Introduction Floating island becomes an imortant study in recent years, because the lands we can use are limit, so eole start thinking

More information

Optimisation of Pressure Loss and Flow Distribution at Pipe Bifurcation

Optimisation of Pressure Loss and Flow Distribution at Pipe Bifurcation ISSN 9 86 Volume, Issue 9 Setember 07 Otimisation of Pressure Loss and Flow Distribution at Pie Bifurcation Dr. Nagaraj Sitaram Professor, Deartment of Civil Engineering,School of Engineering Technology,

More information

Computer arithmetic. Intensive Computation. Annalisa Massini 2017/2018

Computer arithmetic. Intensive Computation. Annalisa Massini 2017/2018 Comuter arithmetic Intensive Comutation Annalisa Massini 7/8 Intensive Comutation - 7/8 References Comuter Architecture - A Quantitative Aroach Hennessy Patterson Aendix J Intensive Comutation - 7/8 3

More information

AN UNCERTAINTY ESTIMATION EXAMPLE FOR BACKWARD FACING STEP CFD SIMULATION. Abstract

AN UNCERTAINTY ESTIMATION EXAMPLE FOR BACKWARD FACING STEP CFD SIMULATION. Abstract nd Workshop on CFD Uncertainty Analysis - Lisbon, 19th and 0th October 006 AN UNCERTAINTY ESTIMATION EXAMPLE FOR BACKWARD FACING STEP CFD SIMULATION Alfredo Iranzo 1, Jesús Valle, Ignacio Trejo 3, Jerónimo

More information

EE 508 Lecture 13. Statistical Characterization of Filter Characteristics

EE 508 Lecture 13. Statistical Characterization of Filter Characteristics EE 508 Lecture 3 Statistical Characterization of Filter Characteristics Comonents used to build filters are not recisely redictable L C Temerature Variations Manufacturing Variations Aging Model variations

More information

NUMERICAL AND THEORETICAL INVESTIGATIONS ON DETONATION- INERT CONFINEMENT INTERACTIONS

NUMERICAL AND THEORETICAL INVESTIGATIONS ON DETONATION- INERT CONFINEMENT INTERACTIONS NUMERICAL AND THEORETICAL INVESTIGATIONS ON DETONATION- INERT CONFINEMENT INTERACTIONS Tariq D. Aslam and John B. Bdzil Los Alamos National Laboratory Los Alamos, NM 87545 hone: 1-55-667-1367, fax: 1-55-667-6372

More information

MATH 2710: NOTES FOR ANALYSIS

MATH 2710: NOTES FOR ANALYSIS MATH 270: NOTES FOR ANALYSIS The main ideas we will learn from analysis center around the idea of a limit. Limits occurs in several settings. We will start with finite limits of sequences, then cover infinite

More information

Combining Logistic Regression with Kriging for Mapping the Risk of Occurrence of Unexploded Ordnance (UXO)

Combining Logistic Regression with Kriging for Mapping the Risk of Occurrence of Unexploded Ordnance (UXO) Combining Logistic Regression with Kriging for Maing the Risk of Occurrence of Unexloded Ordnance (UXO) H. Saito (), P. Goovaerts (), S. A. McKenna (2) Environmental and Water Resources Engineering, Deartment

More information

Linear diophantine equations for discrete tomography

Linear diophantine equations for discrete tomography Journal of X-Ray Science and Technology 10 001 59 66 59 IOS Press Linear diohantine euations for discrete tomograhy Yangbo Ye a,gewang b and Jiehua Zhu a a Deartment of Mathematics, The University of Iowa,

More information

2. FLUID-FLOW EQUATIONS SPRING 2019

2. FLUID-FLOW EQUATIONS SPRING 2019 2. FLUID-FLOW EQUATIONS SPRING 2019 2.1 Introduction 2.2 Conservative differential equations 2.3 Non-conservative differential equations 2.4 Non-dimensionalisation Summary Examples 2.1 Introduction Fluid

More information

System Reliability Estimation and Confidence Regions from Subsystem and Full System Tests

System Reliability Estimation and Confidence Regions from Subsystem and Full System Tests 009 American Control Conference Hyatt Regency Riverfront, St. Louis, MO, USA June 0-, 009 FrB4. System Reliability Estimation and Confidence Regions from Subsystem and Full System Tests James C. Sall Abstract

More information

pp physics, RWTH, WS 2003/04, T.Hebbeker

pp physics, RWTH, WS 2003/04, T.Hebbeker 1. PP TH 03/04 Accelerators and Detectors 1 hysics, RWTH, WS 2003/04, T.Hebbeker 2003-12-03 1. Accelerators and Detectors In the following, we concentrate on the three machines SPS, Tevatron and LHC with

More information

Round-off Errors and Computer Arithmetic - (1.2)

Round-off Errors and Computer Arithmetic - (1.2) Round-off Errors and Comuter Arithmetic - (.). Round-off Errors: Round-off errors is roduced when a calculator or comuter is used to erform real number calculations. That is because the arithmetic erformed

More information

The Second Law: The Machinery

The Second Law: The Machinery The Second Law: The Machinery Chater 5 of Atkins: The Second Law: The Concets Sections 3.7-3.9 8th Ed, 3.3 9th Ed; 3.4 10 Ed.; 3E 11th Ed. Combining First and Second Laws Proerties of the Internal Energy

More information

John Weatherwax. Analysis of Parallel Depth First Search Algorithms

John Weatherwax. Analysis of Parallel Depth First Search Algorithms Sulementary Discussions and Solutions to Selected Problems in: Introduction to Parallel Comuting by Viin Kumar, Ananth Grama, Anshul Guta, & George Karyis John Weatherwax Chater 8 Analysis of Parallel

More information

Numerical Linear Algebra

Numerical Linear Algebra Numerical Linear Algebra Numerous alications in statistics, articularly in the fitting of linear models. Notation and conventions: Elements of a matrix A are denoted by a ij, where i indexes the rows and

More information

Enhancement of the momentum interpolation method on non-staggered grids

Enhancement of the momentum interpolation method on non-staggered grids INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN FLUIDS Int. J. Numer. Meth. Fluids 2000; 33: 1 22 Enhancement of the momentum interpolation method on non-staggered grids J. Papageorgakopoulos, G. Arampatzis,

More information

Use of Transformations and the Repeated Statement in PROC GLM in SAS Ed Stanek

Use of Transformations and the Repeated Statement in PROC GLM in SAS Ed Stanek Use of Transformations and the Reeated Statement in PROC GLM in SAS Ed Stanek Introduction We describe how the Reeated Statement in PROC GLM in SAS transforms the data to rovide tests of hyotheses of interest.

More information

NUMERICAL ANALYSIS OF THE IMPACT OF THE INLET AND OUTLET JETS FOR THE THERMAL STRATIFICATION INSIDE A STORAGE TANK

NUMERICAL ANALYSIS OF THE IMPACT OF THE INLET AND OUTLET JETS FOR THE THERMAL STRATIFICATION INSIDE A STORAGE TANK NUMERICAL ANALYSIS OF HE IMAC OF HE INLE AND OULE JES FOR HE HERMAL SRAIFICAION INSIDE A SORAGE ANK A. Zachár I. Farkas F. Szlivka Deartment of Comuter Science Szent IstvÆn University Æter K. u.. G d llı

More information

Solution Methods. Steady State Diffusion Equation. Lecture 04

Solution Methods. Steady State Diffusion Equation. Lecture 04 Solution Methods Steady State Diffusion Equation Lecture 04 1 Solution methods Focus on finite volume method. Background of finite volume method. Discretization example. General solution method. Convergence.

More information

Chapter 6. Thermodynamics and the Equations of Motion

Chapter 6. Thermodynamics and the Equations of Motion Chater 6 hermodynamics and the Equations of Motion 6.1 he first law of thermodynamics for a fluid and the equation of state. We noted in chater 4 that the full formulation of the equations of motion required

More information

Chapter 1 Fundamentals

Chapter 1 Fundamentals Chater Fundamentals. Overview of Thermodynamics Industrial Revolution brought in large scale automation of many tedious tasks which were earlier being erformed through manual or animal labour. Inventors

More information

Solved Problems. (a) (b) (c) Figure P4.1 Simple Classification Problems First we draw a line between each set of dark and light data points.

Solved Problems. (a) (b) (c) Figure P4.1 Simple Classification Problems First we draw a line between each set of dark and light data points. Solved Problems Solved Problems P Solve the three simle classification roblems shown in Figure P by drawing a decision boundary Find weight and bias values that result in single-neuron ercetrons with the

More information

CMSC 425: Lecture 4 Geometry and Geometric Programming

CMSC 425: Lecture 4 Geometry and Geometric Programming CMSC 425: Lecture 4 Geometry and Geometric Programming Geometry for Game Programming and Grahics: For the next few lectures, we will discuss some of the basic elements of geometry. There are many areas

More information

ON THE DEVELOPMENT OF PARAMETER-ROBUST PRECONDITIONERS AND COMMUTATOR ARGUMENTS FOR SOLVING STOKES CONTROL PROBLEMS

ON THE DEVELOPMENT OF PARAMETER-ROBUST PRECONDITIONERS AND COMMUTATOR ARGUMENTS FOR SOLVING STOKES CONTROL PROBLEMS Electronic Transactions on Numerical Analysis. Volume 44,. 53 72, 25. Coyright c 25,. ISSN 68 963. ETNA ON THE DEVELOPMENT OF PARAMETER-ROBUST PRECONDITIONERS AND COMMUTATOR ARGUMENTS FOR SOLVING STOKES

More information

State Estimation with ARMarkov Models

State Estimation with ARMarkov Models Deartment of Mechanical and Aerosace Engineering Technical Reort No. 3046, October 1998. Princeton University, Princeton, NJ. State Estimation with ARMarkov Models Ryoung K. Lim 1 Columbia University,

More information

The Role of Momentum Interpolation Mechanism of the Roe. Scheme in the Shock Instability

The Role of Momentum Interpolation Mechanism of the Roe. Scheme in the Shock Instability The Role of Momentum Interolation Mechanism of the Roe Scheme in the Shock Instabilit Xue-song Li Ke Laborator for Thermal Science and Power Engineering of Ministr of Education, Deartment of Thermal Engineering,

More information

rate~ If no additional source of holes were present, the excess

rate~ If no additional source of holes were present, the excess DIFFUSION OF CARRIERS Diffusion currents are resent in semiconductor devices which generate a satially non-uniform distribution of carriers. The most imortant examles are the -n junction and the biolar

More information

Computation of Incompressible Flows: SIMPLE and related Algorithms

Computation of Incompressible Flows: SIMPLE and related Algorithms Computation of Incompressible Flows: SIMPLE and related Algorithms Milovan Perić CoMeT Continuum Mechanics Technologies GmbH milovan@continuummechanicstechnologies.de SIMPLE-Algorithm I - - - Consider

More information

Thickness and refractive index measurements using multiple beam interference fringes (FECO)

Thickness and refractive index measurements using multiple beam interference fringes (FECO) Journal of Colloid and Interface Science 264 2003 548 553 Note www.elsevier.com/locate/jcis Thickness and refractive index measurements using multile beam interference fringes FECO Rafael Tadmor, 1 Nianhuan

More information

integral invariant relations is not limited to one or two such

integral invariant relations is not limited to one or two such The Astronomical Journal, 126:3138 3142, 2003 December # 2003. The American Astronomical Society. All rights reserved. Printed in U.S.A. EFFICIENT ORBIT INTEGRATION BY SCALING AND ROTATION FOR CONSISTENCY

More information

A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE

A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE THE 19 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE K.W. Gan*, M.R. Wisnom, S.R. Hallett, G. Allegri Advanced Comosites

More information

Modeling Volumetric Coupling of the Dispersed Phase using the Eulerian-Lagrangian Approach

Modeling Volumetric Coupling of the Dispersed Phase using the Eulerian-Lagrangian Approach ILASS Americas 21st Annual Conference on Liquid Atomization and Sray Systems, Orlando, FL, May 28 Modeling Volumetric Couling of the Disersed Phase using the Eulerian-Lagrangian Aroach Ehsan Shams and

More information

OXFORD UNIVERSITY. MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: hours

OXFORD UNIVERSITY. MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: hours OXFORD UNIVERSITY MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: 2 1 2 hours For candidates alying for Mathematics, Mathematics & Statistics, Comuter Science, Mathematics

More information

FAST AND EFFICIENT SIDE INFORMATION GENERATION IN DISTRIBUTED VIDEO CODING BY USING DENSE MOTION REPRESENTATIONS

FAST AND EFFICIENT SIDE INFORMATION GENERATION IN DISTRIBUTED VIDEO CODING BY USING DENSE MOTION REPRESENTATIONS 18th Euroean Signal Processing Conference (EUSIPCO-2010) Aalborg, Denmark, August 23-27, 2010 FAST AND EFFICIENT SIDE INFORMATION GENERATION IN DISTRIBUTED VIDEO CODING BY USING DENSE MOTION REPRESENTATIONS

More information

Analysis of execution time for parallel algorithm to dertmine if it is worth the effort to code and debug in parallel

Analysis of execution time for parallel algorithm to dertmine if it is worth the effort to code and debug in parallel Performance Analysis Introduction Analysis of execution time for arallel algorithm to dertmine if it is worth the effort to code and debug in arallel Understanding barriers to high erformance and redict

More information

High speed wind tunnels 2.0 Definition of high speed. 2.1 Types of high speed wind tunnels

High speed wind tunnels 2.0 Definition of high speed. 2.1 Types of high speed wind tunnels Module Lectures 6 to 1 High Seed Wind Tunnels Keywords: Blow down wind tunnels, Indraft wind tunnels, suersonic wind tunnels, c-d nozzles, second throat diffuser, shocks, condensation in wind tunnels,

More information

Flexible Pipes in Trenches with Stiff Clay Walls

Flexible Pipes in Trenches with Stiff Clay Walls Flexible Pies in Trenches with Stiff Clay Walls D. A. Cameron University of South Australia, South Australia, Australia J. P. Carter University of Sydney, New South Wales, Australia Keywords: flexible

More information

ONE. The Earth-atmosphere system CHAPTER

ONE. The Earth-atmosphere system CHAPTER CHAPTER ONE The Earth-atmoshere system 1.1 INTRODUCTION The Earth s atmoshere is the gaseous enveloe surrounding the lanet. Like other lanetary atmosheres, it figures centrally in transfers of energy between

More information

ASSESSMENT OF NUMERICAL UNCERTAINTY FOR THE CALCULATIONS OF TURBULENT FLOW OVER A BACKWARD FACING STEP

ASSESSMENT OF NUMERICAL UNCERTAINTY FOR THE CALCULATIONS OF TURBULENT FLOW OVER A BACKWARD FACING STEP Submitted to Worsho on Uncertainty Estimation October -, 004, Lisbon, Portugal ASSESSMENT OF NUMERICAL UNCERTAINTY FOR THE CALCULATIONS OF TURBULENT FLOW OVER A BACKWARD FACING STEP ABSTRACT Ismail B.

More information

Node-voltage method using virtual current sources technique for special cases

Node-voltage method using virtual current sources technique for special cases Node-oltage method using irtual current sources technique for secial cases George E. Chatzarakis and Marina D. Tortoreli Electrical and Electronics Engineering Deartments, School of Pedagogical and Technological

More information

The thermal wind 1. v g

The thermal wind 1. v g The thermal win The thermal win Introuction The geostrohic win is etermine by the graient of the isobars (on a horizontal surface) or isohyses (on a ressure surface). On a ressure surface the graient of

More information

Lower bound solutions for bearing capacity of jointed rock

Lower bound solutions for bearing capacity of jointed rock Comuters and Geotechnics 31 (2004) 23 36 www.elsevier.com/locate/comgeo Lower bound solutions for bearing caacity of jointed rock D.J. Sutcliffe a, H.S. Yu b, *, S.W. Sloan c a Deartment of Civil, Surveying

More information

Week 8 lectures. ρ t +u ρ+ρ u = 0. where µ and λ are viscosity and second viscosity coefficients, respectively and S is the strain tensor:

Week 8 lectures. ρ t +u ρ+ρ u = 0. where µ and λ are viscosity and second viscosity coefficients, respectively and S is the strain tensor: Week 8 lectures. Equations for motion of fluid without incomressible assumtions Recall from week notes, the equations for conservation of mass and momentum, derived generally without any incomressibility

More information

CSC165H, Mathematical expression and reasoning for computer science week 12

CSC165H, Mathematical expression and reasoning for computer science week 12 CSC165H, Mathematical exression and reasoning for comuter science week 1 nd December 005 Gary Baumgartner and Danny Hea hea@cs.toronto.edu SF4306A 416-978-5899 htt//www.cs.toronto.edu/~hea/165/s005/index.shtml

More information

Session 5: Review of Classical Astrodynamics

Session 5: Review of Classical Astrodynamics Session 5: Review of Classical Astrodynamics In revious lectures we described in detail the rocess to find the otimal secific imulse for a articular situation. Among the mission requirements that serve

More information

MATHEMATICAL MODELLING OF THE WIRELESS COMMUNICATION NETWORK

MATHEMATICAL MODELLING OF THE WIRELESS COMMUNICATION NETWORK Comuter Modelling and ew Technologies, 5, Vol.9, o., 3-39 Transort and Telecommunication Institute, Lomonosov, LV-9, Riga, Latvia MATHEMATICAL MODELLIG OF THE WIRELESS COMMUICATIO ETWORK M. KOPEETSK Deartment

More information

ON THE GRID REFINEMENT RATIO FOR ONE-DIMENSIONAL ADVECTIVE PROBLEMS WITH NONUNIFORM GRIDS

ON THE GRID REFINEMENT RATIO FOR ONE-DIMENSIONAL ADVECTIVE PROBLEMS WITH NONUNIFORM GRIDS Proceedings of COBEM 2005 Coyright 2005 by ABCM 18th International Congress of Mechanical Engineering November 6-11, 2005, Ouro Preto, MG ON THE GRID REFINEMENT RATIO FOR ONE-DIMENSIONAL ADVECTIVE PROBLEMS

More information

An Improved Calibration Method for a Chopped Pyrgeometer

An Improved Calibration Method for a Chopped Pyrgeometer 96 JOURNAL OF ATMOSPHERIC AND OCEANIC TECHNOLOGY VOLUME 17 An Imroved Calibration Method for a Choed Pyrgeometer FRIEDRICH FERGG OtoLab, Ingenieurbüro, Munich, Germany PETER WENDLING Deutsches Forschungszentrum

More information

a) Derive general expressions for the stream function Ψ and the velocity potential function φ for the combined flow. [12 Marks]

a) Derive general expressions for the stream function Ψ and the velocity potential function φ for the combined flow. [12 Marks] Question 1 A horizontal irrotational flow system results from the combination of a free vortex, rotating anticlockwise, of strength K=πv θ r, located with its centre at the origin, with a uniform flow

More information

4. Score normalization technical details We now discuss the technical details of the score normalization method.

4. Score normalization technical details We now discuss the technical details of the score normalization method. SMT SCORING SYSTEM This document describes the scoring system for the Stanford Math Tournament We begin by giving an overview of the changes to scoring and a non-technical descrition of the scoring rules

More information

Weather and Climate Laboratory Spring 2009

Weather and Climate Laboratory Spring 2009 MIT OenCourseWare htt://ocw.mit.edu 12.307 Weather and Climate Laboratory Sring 2009 For information about citing these materials or our Terms of Use, visit: htt://ocw.mit.edu/terms. Thermal wind John

More information

An underrelaxation control method

An underrelaxation control method The current issue and full text archive of this journal is available at www.emeraldinsight.com/064-4401.htm An under-relaxation for accelerating the iteration convergence of flow field simulation C.H.

More information

PHYS 301 HOMEWORK #9-- SOLUTIONS

PHYS 301 HOMEWORK #9-- SOLUTIONS PHYS 0 HOMEWORK #9-- SOLUTIONS. We are asked to use Dirichlet' s theorem to determine the value of f (x) as defined below at x = 0, ± /, ± f(x) = 0, - < x

More information

GT NUMERICAL STUDY OF A CASCADE UNSTEADY SEPARATION FLOW

GT NUMERICAL STUDY OF A CASCADE UNSTEADY SEPARATION FLOW Proceedings of ASME urbo Exo 2004 2004 Power for Land, Sea, and Air Vienna, Austria, June 4-7, 2004 G2004-5395 NUMERICAL SUDY OF A CASCADE UNSEADY SEPARAION FLOW Zongjun Hu and GeCheng Zha Deartment of

More information

Math 104B: Number Theory II (Winter 2012)

Math 104B: Number Theory II (Winter 2012) Math 104B: Number Theory II (Winter 01) Alina Bucur Contents 1 Review 11 Prime numbers 1 Euclidean algorithm 13 Multilicative functions 14 Linear diohantine equations 3 15 Congruences 3 Primes as sums

More information

Plotting the Wilson distribution

Plotting the Wilson distribution , Survey of English Usage, University College London Setember 018 1 1. Introduction We have discussed the Wilson score interval at length elsewhere (Wallis 013a, b). Given an observed Binomial roortion

More information

Homogeneous and Inhomogeneous Model for Flow and Heat Transfer in Porous Materials as High Temperature Solar Air Receivers

Homogeneous and Inhomogeneous Model for Flow and Heat Transfer in Porous Materials as High Temperature Solar Air Receivers Excert from the roceedings of the COMSOL Conference 1 aris Homogeneous and Inhomogeneous Model for Flow and Heat ransfer in orous Materials as High emerature Solar Air Receivers Olena Smirnova 1 *, homas

More information

A Closed-Form Solution to the Minimum V 2

A Closed-Form Solution to the Minimum V 2 Celestial Mechanics and Dynamical Astronomy manuscrit No. (will be inserted by the editor) Martín Avendaño Daniele Mortari A Closed-Form Solution to the Minimum V tot Lambert s Problem Received: Month

More information

Determining Momentum and Energy Corrections for g1c Using Kinematic Fitting

Determining Momentum and Energy Corrections for g1c Using Kinematic Fitting CLAS-NOTE 4-17 Determining Momentum and Energy Corrections for g1c Using Kinematic Fitting Mike Williams, Doug Alegate and Curtis A. Meyer Carnegie Mellon University June 7, 24 Abstract We have used the

More information

NONLINEAR OPTIMIZATION WITH CONVEX CONSTRAINTS. The Goldstein-Levitin-Polyak algorithm

NONLINEAR OPTIMIZATION WITH CONVEX CONSTRAINTS. The Goldstein-Levitin-Polyak algorithm - (23) NLP - NONLINEAR OPTIMIZATION WITH CONVEX CONSTRAINTS The Goldstein-Levitin-Polya algorithm We consider an algorithm for solving the otimization roblem under convex constraints. Although the convexity

More information

CFD Modelling of Mass Transfer and Interfacial Phenomena on Single Droplets

CFD Modelling of Mass Transfer and Interfacial Phenomena on Single Droplets Euroean Symosium on Comuter Arded Aided Process Engineering 15 L. Puigjaner and A. Esuña (Editors) 2005 Elsevier Science B.V. All rights reserved. CFD Modelling of Mass Transfer and Interfacial Phenomena

More information

A Comparison between Biased and Unbiased Estimators in Ordinary Least Squares Regression

A Comparison between Biased and Unbiased Estimators in Ordinary Least Squares Regression Journal of Modern Alied Statistical Methods Volume Issue Article 7 --03 A Comarison between Biased and Unbiased Estimators in Ordinary Least Squares Regression Ghadban Khalaf King Khalid University, Saudi

More information

AE301 Aerodynamics I UNIT A: Fundamental Concepts

AE301 Aerodynamics I UNIT A: Fundamental Concepts AE301 Aerodynamics I UNIT A: Fundamental Concets ROAD MAP... A-1: Engineering Fundamentals Reiew A-: Standard Atmoshere A-3: Goerning Equations of Aerodynamics A-4: Airseed Measurements A-5: Aerodynamic

More information

OPTIMUM TRANSONIC WING DESIGN USING CONTROL THEORY

OPTIMUM TRANSONIC WING DESIGN USING CONTROL THEORY OPTIMUM TRANSONIC WING DESIGN USING CONTROL THEORY Thomas V. Jones Professor of Engineering, Deartment of Aeronautics and Astronautics Stanford University, Stanford, CA 9435-435 jamesonbaboon.stanford.edu

More information

Multigrid Methods and their application in CFD

Multigrid Methods and their application in CFD Multigrid Methods and their application in CFD Michael Wurst TU München 16.06.2009 1 Multigrid Methods Definition Multigrid (MG) methods in numerical analysis are a group of algorithms for solving differential

More information

Liquid water static energy page 1/8

Liquid water static energy page 1/8 Liquid water static energy age 1/8 1) Thermodynamics It s a good idea to work with thermodynamic variables that are conserved under a known set of conditions, since they can act as assive tracers and rovide

More information

Solution Methods. Steady convection-diffusion equation. Lecture 05

Solution Methods. Steady convection-diffusion equation. Lecture 05 Solution Methods Steady convection-diffusion equation Lecture 05 1 Navier-Stokes equation Suggested reading: Gauss divergence theorem Integral form The key step of the finite volume method is to integrate

More information

Elliptic Curves and Cryptography

Elliptic Curves and Cryptography Ellitic Curves and Crytograhy Background in Ellitic Curves We'll now turn to the fascinating theory of ellitic curves. For simlicity, we'll restrict our discussion to ellitic curves over Z, where is a

More information

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE In this chapter, the governing equations for the proposed numerical model with discretisation methods are presented. Spiral

More information

0.6 Factoring 73. As always, the reader is encouraged to multiply out (3

0.6 Factoring 73. As always, the reader is encouraged to multiply out (3 0.6 Factoring 7 5. The G.C.F. of the terms in 81 16t is just 1 so there is nothing of substance to factor out from both terms. With just a difference of two terms, we are limited to fitting this olynomial

More information

Uniformly best wavenumber approximations by spatial central difference operators: An initial investigation

Uniformly best wavenumber approximations by spatial central difference operators: An initial investigation Uniformly best wavenumber aroximations by satial central difference oerators: An initial investigation Vitor Linders and Jan Nordström Abstract A characterisation theorem for best uniform wavenumber aroximations

More information

A Variationally Consistent Mesh Adaptation Method for Triangular Elements in Explicit Lagrangian Dynamics

A Variationally Consistent Mesh Adaptation Method for Triangular Elements in Explicit Lagrangian Dynamics INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng 28; : 39 [Version: 22/9/8 v2.2] A Variationally Consistent Mesh Adatation Method for Triangular Elements in Exlicit

More information

Parameters Optimization and Numerical Simulation for Soft Abrasive Flow Machining

Parameters Optimization and Numerical Simulation for Soft Abrasive Flow Machining Sensors & Transducers 014 by IFSA Publishing, S. L. htt://www.sensorsortal.com Parameters Otimization and Numerical Simulation for Soft Abrasive Flow Machining Qiaoling YUAN, Shiming JI, Donghui WEN and

More information

Theory of turbomachinery. Chapter 1

Theory of turbomachinery. Chapter 1 Theory of turbomachinery Chater Introduction: Basic Princiles Take your choice of those that can best aid your action. (Shakeseare, Coriolanus) Introduction Definition Turbomachinery describes machines

More information

Radial Basis Function Networks: Algorithms

Radial Basis Function Networks: Algorithms Radial Basis Function Networks: Algorithms Introduction to Neural Networks : Lecture 13 John A. Bullinaria, 2004 1. The RBF Maing 2. The RBF Network Architecture 3. Comutational Power of RBF Networks 4.

More information

CFL Conditions for Runge-Kutta Discontinuous Galerkin Methods on Triangular Grids

CFL Conditions for Runge-Kutta Discontinuous Galerkin Methods on Triangular Grids CFL Conditions for Runge-Kutta Discontinuous Galerkin Methods on Triangular Grids T. Toulorge a,, W. Desmet a a K.U. Leuven, Det. of Mechanical Engineering, Celestijnenlaan 3, B-31 Heverlee, Belgium Abstract

More information

Conservation of Mass. Computational Fluid Dynamics. The Equations Governing Fluid Motion

Conservation of Mass. Computational Fluid Dynamics. The Equations Governing Fluid Motion http://www.nd.edu/~gtryggva/cfd-course/ http://www.nd.edu/~gtryggva/cfd-course/ Computational Fluid Dynamics Lecture 4 January 30, 2017 The Equations Governing Fluid Motion Grétar Tryggvason Outline Derivation

More information

2.6 Primitive equations and vertical coordinates

2.6 Primitive equations and vertical coordinates Chater 2. The continuous equations 2.6 Primitive equations and vertical coordinates As Charney (1951) foresaw, most NWP modelers went back to using the rimitive equations, with the hydrostatic aroximation,

More information

FINITE VOLUME METHOD: BASIC PRINCIPLES AND EXAMPLES

FINITE VOLUME METHOD: BASIC PRINCIPLES AND EXAMPLES FINITE VOLUME METHOD: BASIC PRINCIPLES AND EXAMPLES SHRUTI JAIN B.Tech III Year, Electronics and Communication IIT Roorkee Tutors: Professor G. Biswas Professor S. Chakraborty ACKNOWLEDGMENTS I would like

More information

Low field mobility in Si and GaAs

Low field mobility in Si and GaAs EE30 - Solid State Electronics Low field mobility in Si and GaAs In doed samles, at low T, ionized imurity scattering dominates: τ( E) ------ -------------- m N D πe 4 ln( + γ ) ------------- + γ γ E 3

More information

International Journal of Mathematics Trends and Technology- Volume3 Issue4-2012

International Journal of Mathematics Trends and Technology- Volume3 Issue4-2012 Effect of Hall current on Unsteady Flow of a Dusty Conducting Fluid through orous medium between Parallel Porous Plates with Temerature Deendent Viscosity and Thermal Radiation Harshbardhan Singh and Dr.

More information

Positive decomposition of transfer functions with multiple poles

Positive decomposition of transfer functions with multiple poles Positive decomosition of transfer functions with multile oles Béla Nagy 1, Máté Matolcsi 2, and Márta Szilvási 1 Deartment of Analysis, Technical University of Budaest (BME), H-1111, Budaest, Egry J. u.

More information

An-Najah National University Civil Engineering Departemnt. Fluid Mechanics. Chapter [2] Fluid Statics

An-Najah National University Civil Engineering Departemnt. Fluid Mechanics. Chapter [2] Fluid Statics An-Najah National University Civil Engineering Deartemnt Fluid Mechanics Chater [2] Fluid Statics 1 Fluid Statics Problems Fluid statics refers to the study of fluids at rest or moving in such a manner

More information

On Line Parameter Estimation of Electric Systems using the Bacterial Foraging Algorithm

On Line Parameter Estimation of Electric Systems using the Bacterial Foraging Algorithm On Line Parameter Estimation of Electric Systems using the Bacterial Foraging Algorithm Gabriel Noriega, José Restreo, Víctor Guzmán, Maribel Giménez and José Aller Universidad Simón Bolívar Valle de Sartenejas,

More information

HEAT, WORK, AND THE FIRST LAW OF THERMODYNAMICS

HEAT, WORK, AND THE FIRST LAW OF THERMODYNAMICS HET, ORK, ND THE FIRST L OF THERMODYNMIS 8 EXERISES Section 8. The First Law of Thermodynamics 5. INTERPRET e identify the system as the water in the insulated container. The roblem involves calculating

More information

Heat Transfer Analysis in the Cylinder of Reciprocating Compressor

Heat Transfer Analysis in the Cylinder of Reciprocating Compressor Purdue University Purdue e-pubs International Comressor Engineering Conference School of Mechanical Engineering 2016 Heat Transfer Analysis in the Cylinder of Recirocating Comressor Ján Tuhovcák Brno University

More information

ADAPTIVE CONTROL METHODS FOR EXCITED SYSTEMS

ADAPTIVE CONTROL METHODS FOR EXCITED SYSTEMS ADAPTIVE CONTROL METHODS FOR NON-LINEAR SELF-EXCI EXCITED SYSTEMS by Michael A. Vaudrey Dissertation submitted to the Faculty of the Virginia Polytechnic Institute and State University in artial fulfillment

More information

The Quark-Parton Model

The Quark-Parton Model The Quark-Parton Model Before uarks and gluons were generally acceted Feynman roosed that the roton was made u of oint-like constituents artons Both Bjorken Scaling and the Callan-Gross relationshi can

More information

For q 0; 1; : : : ; `? 1, we have m 0; 1; : : : ; q? 1. The set fh j(x) : j 0; 1; ; : : : ; `? 1g forms a basis for the tness functions dened on the i

For q 0; 1; : : : ; `? 1, we have m 0; 1; : : : ; q? 1. The set fh j(x) : j 0; 1; ; : : : ; `? 1g forms a basis for the tness functions dened on the i Comuting with Haar Functions Sami Khuri Deartment of Mathematics and Comuter Science San Jose State University One Washington Square San Jose, CA 9519-0103, USA khuri@juiter.sjsu.edu Fax: (40)94-500 Keywords:

More information