Potential Flow for inviscid, irrotational flows velocity potential

Slides:



Advertisements
Similar presentations
Differential Calculus (revisited):
Advertisements

Chapter 8 Elliptic Equation.
MECH 221 FLUID MECHANICS (Fall 06/07) Chapter 7: INVISCID FLOWS
VECTOR CALCULUS 1.10 GRADIENT OF A SCALAR 1.11 DIVERGENCE OF A VECTOR
Navier-Stokes.
Finite Elements in Electromagnetics 1. Introduction Oszkár Bíró IGTE, TU Graz Kopernikusgasse 24, Graz, Austria
ECE602 BME I Partial Differential Equations in Biomedical Engineering.
Boundary Element Method (BEM) Zoran Ilievski Wednesday 28 th June, 2006 HG 6.96 (TU/e)
Trajectories. Eulerian View  In the Lagrangian view each body is described at each point in space. Difficult for a fluid with many particles.  In the.
VECTOR CALCULUS VECTOR CALCULUS Here, we define two operations that:  Can be performed on vector fields.  Play a basic role in the applications.
AOSS 321, Winter 2009 Earth System Dynamics Lecture 4 1/20/2009 Christiane Jablonowski Eric Hetland
Vector Fields. Time Derivative  Derivatives of vectors are by component.  Derivatives of vector products use the chain rule. Scalar multiplicationScalar.
Mathematics Review A.1 Vectors A.1.1 Definitions
Chapter 16 – Vector Calculus 16.5 Curl and Divergence 1 Objectives:  Understand the operations of curl and divergence  Use curl and divergence to obtain.
Types of Governing equations
Day18: Electric Dipole Potential & Determining E-Field from V
Euler’s Equation in Fluid Mechanics. What is Fluid Mechanics? Fluid mechanics is the study of the macroscopic physical behavior of fluids. Fluids are.
9.6 Other Heat Conduction Problems
Lecture 4: Boundary Value Problems
Stream Function Definitions
Conservation of Mass D=Domain of a body of water Water is flowing in and out of D Mass is neither created nor destroyed Flow coming in = Flow going out.
Partial Differential Equations Introduction –Adam Zornes, Deng Li Discretization Methods –Chunfang Chen, Danny Thorne, Adam Zornes.
AOE 5104 Class 5 9/9/08 Online presentations for next class:
Copyright © Cengage Learning. All rights reserved.
Lecture 7: Unsteady Laminar Flow
Panel methods to Innovate a Turbine Blade-1 P M V Subbarao Professor Mechanical Engineering Department A Linear Mathematics for Invention of Blade Shape…..
Pharos University MECH 253 FLUID MECHANICS II
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS Aerodynamic Force and Vector Calculus Review January 12, 2011 Mechanical and Aerospace Engineering Department.
Stream Function & Velocity Potential
1 Chapter 6 Flow Analysis Using Differential Methods ( Differential Analysis of Fluid Flow)
Any vector can be written as a linear combination of two standard unit vectors. The vector v is a linear combination of the vectors i and j. The scalar.
Pharos University ME 253 Fluid Mechanics 2
Partial Derivatives bounded domain Its boundary denoted by
© Fox, McDonald & Pritchard Introduction to Fluid Mechanics Chapter 6 Incompressible Inviscid Flow.
Differential Analysis of Fluid Flow. Navier-Stokes equations Example: incompressible Navier-Stokes equations.
V. Fundamentals of Fluid Dynamics. Contents 1. State of Stress in Moving Fluid 2. Equations of Motion 3. Bernoulli Equation.
X = 2 + t y = t t = x – 2 t = (y + 3)/2 x – 2 = y x – 4 = y + 3 y – 2x + 7 = 0 Finding the Cartesian Equation from a vector equation x = 2.
CP502 Advanced Fluid Mechanics Flow of Viscous Fluids and Boundary Layer Flow Lectures 3 and 4.
Examples of Potential Flows
Examples of Potential Flows SOURCE FLOW All rights reserved by don moorcroft.
§1.6 Green’s functions; Helmholtz Theorem Christopher Crawford PHY
Homogeneous Differential Equation
Operators in scalar and vector fields
CALCULUS III CHAPTER 5: Orthogonal curvilinear coordinates
Finding electrostatic potential Griffiths Ch.3: Special Techniques week 3 fall EM lecture, 14.Oct.2002, Zita, TESC Review electrostatics: E, V, boundary.
MAE 5130: VISCOUS FLOWS Lecture 2: Introductory Concepts
MA 6251 MATHEMATICS-II . M.JAYAKUMAR ASSISTANT PROFESSOR
The Displacement field
Part IV: Detailed Flow Structure Chap. 7: Microscopic Balances
S.N.P.I.T & R.C,UMRAKH GUJRARAT TECHNICHAL UNIVERSITY
Partial Derivative - Definition
3. The Restricted Three-Body Problem
The Bernoulli Equation
MAE 3241: AERODYNAMICS AND FLIGHT MECHANICS
Laplacian Operator : A Mathematical Key to Thermofluids
Christopher Crawford PHY
AE/ME 339 Computational Fluid Dynamics (CFD) K. M. Isaac
13 VECTOR CALCULUS.
State Space Method.
Brief introduction to Partial Differential Equations (PDEs)
topic16_cylinder_flow_relaxation
Relaxation Technique CFD
Part 5:Vorticity.
Boundary Value Problems
Copyright © Cengage Learning. All rights reserved.
Find the set of points (x, y) such that F(x, y) = 0 if F(x, y) = (r - 4)x, {image} , and r = |x|
Physics 451/551 Theoretical Mechanics
Introduction to Fluid Mechanics
Lecture 16 Gradient in Cartesian Coordinates
Presentation transcript:

Potential Flow for inviscid, irrotational flows velocity potential can only exist for irrotational flows curl of gradient = 0 In Cartesian coordinates:

In Cartesian coordinates: Incompressible flows: continuity in terms of the velocity potential: For incompressible, irrotational flows, the governing equation is: Laplace’s equation

Potential Flows Although incompressibility is not required for a velocity potential to exist, only incompressible, irrotational flows are called Potential Flows The advantage of using a velocity potential, instead of a velocity vector is that one scalar function can contain all three components of velocity vector http://today.slac.stanford.edu/images/2009/data-mining.jpg Potential function - Points of different clusters fall in separate valleys

The stream function ψ is another scalar function that contains all velocity components For 2-D incompressible flows: Continuity equation: is satisfied if Ψ is differentiable For 2-D irrotational flows: For incompressible & irrotational 2-D flows, ψ satisfies Laplace’s eq. Therefore, for potential flows, both Φ and ψ satisfy Laplace’s eq.

Potential Flows Partial differential equation -- elliptic Boundary conditions need to be specified around the entire domain a) Specify at boundaries : Dirichlet boundary condition b) Specify at normal to boundaries : Neumann boundary condition c) Specify at (any linear combination of a) and b)): Robin boundary condition

Examples of Potential Flows Uniform Flow y u x

[x,y]=meshgrid(0:.05:2,0:.05:1); fi=0.5*x; contourf(x,y,fi) xlabel('x','FontSize',14); ylabel('y','FontSize',14); title({'Potential Function for ux'},'FontSize',14); colorbar('FontSize',14);

figure psi=-.5*y; contourf(x,y,psi) xlabel('x','FontSize',14); ylabel('y','FontSize',14); title({'Stream Function for -uy'},'FontSize',14); colorbar('FontSize',14);