Smoothed Particle Hydrodynamics (SPH) Huamin Wang

Size: px
Start display at page:

Download "Smoothed Particle Hydrodynamics (SPH) Huamin Wang"

Transcription

1 Smoothed Particle Hydrodynamics (SPH) Huamin Wang

2 Fluid Representation Fluid is represented using a set of particles. Particle i has position x i, velocity v i, and mass m i.

3 Animation Example Using 10 million particles A

4 Smoothed Particle Interpolation Suppose each particle has a physical quantity A. The quantity can be: velocity, pressure, density, temperature. How to estimate the quantity at a new location X i? A simple solution: A i smooth = A For X i X < r A 0 A 5 A 4 A 6 A i? A 1 A 3 A 2

5 Smoothed Particle Interpolation Instead of assuming a particle is volumeless, let us assume each one has a volume V i. So a better solution is: A i smooth = V A For X i X < r A 0 A 5 A 4 A 6 A i? A 1 A 3 A 2

6 Smoothed Particle Interpolation One problem of this solution: A i smooth = V A Not smooth! (red 7 -> green 9!) For X i X < r i

7 Smoothed Particle Interpolation Final solution: A i smooth = V A W i W i is called smoothing kernel. When X i X is large, W i is small. When X i X is small, W i is large. For X i X < r i

8 Particle Volume But how do we get the volume of particle i? ρ i = V ρ W i V i = m i ρ i V i = m 0 ρ i = m W i m i m W i m 5 m 4 m 6 m 3 m 2 m 1

9 Final Interpolation Solution So the actual solution is: A i smooth = V A W i V = k m m k W k A i smooth = k m m k W k A W i

10 The advantage of This Interpolation We can easily compute its derivatives: Gradient A i smooth = V A W i A smooth i = V A W i Laplacian A i smooth = V A W i A smooth i = V A W i

11 A Smoothing Kernel Example W i = 3 2πh q q3 (0 q < 1) 1 6 (2 q)3 (1 q < 2) 0 (2 q) q = x i x h h is called smoothing length

12 Kernel Derivatives Gradient at particle i (a vector) i W i = W i x i W i y i W i z i = W i q q = W i i q x i x x i x h q = x i x h W i = 3 2πh q q3 (0 q < 1) 1 6 (2 q)3 (1 q < 2) 0 (2 q) W i q = 3 2πh 3 2q q2 (0 q < 1) 1 2 (2 q)2 (1 q < 2) 0 (2 q)

13 Kernel Derivatives Laplacian at particle i (a scalar) i W i = 2 W i x i W i y i W i z i 2 = 2 W i q 2 1 h 2 + W i q 2 h q = x i x h W i q = 3 2πh 3 2q q2 (0 q < 1) 1 2 (2 q)2 (1 q < 2) 0 (2 q) 2 W i q 2 = 2 + 3q (0 q < 1) 3 2 q (1 q < 2) 2πh 3 0 (2 q)

14 Fluid Dynamics We model fluid dynamics by applying three forces on particle i. Gravity Fluid Pressure Fluid Viscosity i

15 Gravity Force is: Gravity Force F i gravity = m i g i

16 Pressure Force Pressure is related to the density First compute the density of Particle i: ρ i = m W i Convert it into pressure (some empirical function): P i = k ρ i ρ constant 7 1 High Pressure Low pressure

17 Pressure Force Pressure force depends on the difference of pressure: High Pressure High Pressure High Pressure High Pressure High Pressure Low Pressure High Pressure i High Pressure High Pressure i Low Pressure No pressure force! Pressure force!

18 Pressure Force Mathematically, the difference of pressure => Gradient of pressure. F i pressure = V i i P smooth To compute this pressure gradient, we assume that the pressure is also smoothly represented: So: P i smooth = F i pressure = V i V P W i V P i W i

19 Viscosity Force Viscosity effect means: particles should move together in the same velocity. In other words, minimize the difference between the particle velocity and the velocities of its neighbors. Before Ultimately

20 Viscosity Force Mathematically, it means: F i vis cos ity = νm i i v smooth To compute this Laplacian, we assume that the velocity is also smoothly represented: So: v i smooth = F i vis cos ity = νm i V v W i V v i W i

21 For every particle i Algorithm Compute its neighborhood set Using the neighborhood, compute: Force = 0 Force + = The gravity force Force + = The pressure force Force + = The viscosity force Update v i = v i + t * Force / m i ; Update x i = x i + t *v i ; What is the bottleneck of the performance here?

22 Exhaustive Neighborhood Search Search over every particle pair? O(N 2 ) 10M particles means: 100 Trillion pairs i

23 Solution: Spatial Partition Separate the space into cells Each cell stores the particles in it To find the neighborhood of i, ust look at the surrounding cells i

24 Spatial Partition What if particles are not uniformly distributed? Solution: Octree, Binary Spatial Partitioning tree i

25 Fluid Display Need to reconstruct the water surface from particles!

26 Ongoing Research How to make the simulation more efficient? How to make fluids incompressible? When simulating water, only use water particles, no air particles. So particles are sparse on the water-air boundary. How to avoid artifacts there?

Particle-based Fluids

Particle-based Fluids Particle-based Fluids Particle Fluids Spatial Discretization Fluid is discretized using particles 3 Particles = Molecules? Particle approaches: Molecular Dynamics: relates each particle to one molecule

More information

CSCI1950V Project 4 : Smoothed Particle Hydrodynamics

CSCI1950V Project 4 : Smoothed Particle Hydrodynamics CSCI1950V Project 4 : Smoothed Particle Hydrodynamics Due Date : Midnight, Friday March 23 1 Background For this project you will implement a uid simulation using Smoothed Particle Hydrodynamics (SPH).

More information

Fluid Dynamics. Part 2. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/17

Fluid Dynamics. Part 2. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/17 Fluid Dynamics p.1/17 Fluid Dynamics Part 2 Massimo Ricotti ricotti@astro.umd.edu University of Maryland Fluid Dynamics p.2/17 Schemes Based on Flux-conservative Form By their very nature, the fluid equations

More information

Pressure corrected SPH for fluid animation

Pressure corrected SPH for fluid animation Pressure corrected SPH for fluid animation Kai Bao, Hui Zhang, Lili Zheng and Enhua Wu Analyzed by Po-Ram Kim 2 March 2010 Abstract We present pressure scheme for the SPH for fluid animation In conventional

More information

Modeling, Simulating and Rendering Fluids. Thanks to Ron Fediw et al, Jos Stam, Henrik Jensen, Ryan

Modeling, Simulating and Rendering Fluids. Thanks to Ron Fediw et al, Jos Stam, Henrik Jensen, Ryan Modeling, Simulating and Rendering Fluids Thanks to Ron Fediw et al, Jos Stam, Henrik Jensen, Ryan Applications Mostly Hollywood Shrek Antz Terminator 3 Many others Games Engineering Animating Fluids is

More information

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost Game and Media Technology Master Program - Utrecht University Dr. Nicolas Pronost Soft body physics Soft bodies In reality, objects are not purely rigid for some it is a good approximation but if you hit

More information

Physics-Based Animation

Physics-Based Animation CSCI 5980/8980: Special Topics in Computer Science Physics-Based Animation 13 Fluid simulation with grids October 20, 2015 Today Presentation schedule Fluid simulation with grids Course feedback survey

More information

PDE Solvers for Fluid Flow

PDE Solvers for Fluid Flow PDE Solvers for Fluid Flow issues and algorithms for the Streaming Supercomputer Eran Guendelman February 5, 2002 Topics Equations for incompressible fluid flow 3 model PDEs: Hyperbolic, Elliptic, Parabolic

More information

Kazhdan, Bolitho and Hoppe. Poisson Surface Reconstruction 3/3

Kazhdan, Bolitho and Hoppe. Poisson Surface Reconstruction 3/3 Kazhdan, Bolitho and Hoppe Poisson Surface Reconstruction 3/3 Siddhartha Chaudhuri http://www.cse.iitb.ac.in/~cs749 Recap of differential operators (in 3D) ( x y z) Gradient (of scalar-valued function):

More information

Math background. Physics. Simulation. Related phenomena. Frontiers in graphics. Rigid fluids

Math background. Physics. Simulation. Related phenomena. Frontiers in graphics. Rigid fluids Fluid dynamics Math background Physics Simulation Related phenomena Frontiers in graphics Rigid fluids Fields Domain Ω R2 Scalar field f :Ω R Vector field f : Ω R2 Types of derivatives Derivatives measure

More information

Improvement of Calculation Stability for Slow Fluid Flow Analysis Using Particle Method *

Improvement of Calculation Stability for Slow Fluid Flow Analysis Using Particle Method * Materials Transactions, Vol. 58, No. 3 (2017) pp. 479 to 484 2017 Japan Foundry Engineering Society Improvement of Calculation Stability for Slow Fluid Flow Analysis Using Particle Method * Naoya Hirata

More information

Fluid Animation. Christopher Batty November 17, 2011

Fluid Animation. Christopher Batty November 17, 2011 Fluid Animation Christopher Batty November 17, 2011 What distinguishes fluids? What distinguishes fluids? No preferred shape Always flows when force is applied Deforms to fit its container Internal forces

More information

Computing a null divergence velocity field. using smoothed particle hydrodynamics

Computing a null divergence velocity field. using smoothed particle hydrodynamics Computing a null divergence velocity field using smoothed particle hydrodynamics F. COLIN a R. EGLI b, F. Y. LIN b a Department of Mathematics and Computer Science, Laurentian University, 935 Ramsey Lake

More information

Treecodes for Cosmology Thomas Quinn University of Washington N-Body Shop

Treecodes for Cosmology Thomas Quinn University of Washington N-Body Shop Treecodes for Cosmology Thomas Quinn University of Washington N-Body Shop Outline Motivation Multipole Expansions Tree Algorithms Periodic Boundaries Time integration Gravitational Softening SPH Parallel

More information

Heat Transfer Benchmark Problems Verification of Finite Volume Particle (FVP) Method-based Code

Heat Transfer Benchmark Problems Verification of Finite Volume Particle (FVP) Method-based Code PROCEEDING OF 3 RD INTERNATIONAL CONFERENCE ON RESEARCH, IMPLEMENTATION AND EDUCATION OF MATHEMATICS AND SCIENCE YOGYAKARTA, 16 17 MAY 2016 Heat Transfer Benchmark Problems Verification of Finite Volume

More information

Fluid-soil multiphase flow simulation by an SPH-DEM coupled method

Fluid-soil multiphase flow simulation by an SPH-DEM coupled method Fluid-soil multiphase flow simulation by an SPH-DEM coupled method *Kensuke Harasaki 1) and Mitsuteru Asai 2) 1), 2) Department of Civil and Structural Engineering, Kyushu University, 744 Motooka, Nishi-ku,

More information

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Soft-Body Physics Soft Bodies Realistic objects are not purely rigid. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Deformed

More information

The Initial Mass Function Elisa Chisari

The Initial Mass Function Elisa Chisari The Initial Mass Function AST 541 Dec 4 2012 Outline The form of the IMF Summary of observations Ingredients of a complete model A Press Schechter model Numerical simulations Conclusions The form of the

More information

Smoothed Particle Hydrodynamics (SPH) 4. May 2012

Smoothed Particle Hydrodynamics (SPH) 4. May 2012 Smoothed Particle Hydrodynamics (SPH) 4. May 2012 Calculating density SPH density estimator Weighted summation over nearby particles: ρ(r) = N neigh b=1 m bw (r r b, h) W weight function with dimension

More information

An Overview of Fluid Animation. Christopher Batty March 11, 2014

An Overview of Fluid Animation. Christopher Batty March 11, 2014 An Overview of Fluid Animation Christopher Batty March 11, 2014 What distinguishes fluids? What distinguishes fluids? No preferred shape. Always flows when force is applied. Deforms to fit its container.

More information

Godunov methods in GANDALF

Godunov methods in GANDALF Godunov methods in GANDALF Stefan Heigl David Hubber Judith Ngoumou USM, LMU, München 28th October 2015 Why not just stick with SPH? SPH is perfectly adequate in many scenarios but can fail, or at least

More information

CHAPTER 4. Basics of Fluid Dynamics

CHAPTER 4. Basics of Fluid Dynamics CHAPTER 4 Basics of Fluid Dynamics What is a fluid? A fluid is a substance that can flow, has no fixed shape, and offers little resistance to an external stress In a fluid the constituent particles (atoms,

More information

KELVIN-HELMHOLTZ INSTABILITY BY SPH

KELVIN-HELMHOLTZ INSTABILITY BY SPH II International Conference on Particle-based Methods - Fundamentals and Applications PARTICLES 2011 E. Oñate and D.R.J. Owen (Eds) KELVIN-HELMHOLTZ INSTABILITY BY SPH M. S. Shadloo, M. Yildiz Faculty

More information

Elliptic Problems / Multigrid. PHY 604: Computational Methods for Physics and Astrophysics II

Elliptic Problems / Multigrid. PHY 604: Computational Methods for Physics and Astrophysics II Elliptic Problems / Multigrid Summary of Hyperbolic PDEs We looked at a simple linear and a nonlinear scalar hyperbolic PDE There is a speed associated with the change of the solution Explicit methods

More information

MOMENTUM TRANSPORT Velocity Distributions in Turbulent Flow

MOMENTUM TRANSPORT Velocity Distributions in Turbulent Flow TRANSPORT PHENOMENA MOMENTUM TRANSPORT Velocity Distributions in Turbulent Flow Introduction to Turbulent Flow 1. Comparisons of laminar and turbulent flows 2. Time-smoothed equations of change for incompressible

More information

Chapter 5. The Differential Forms of the Fundamental Laws

Chapter 5. The Differential Forms of the Fundamental Laws Chapter 5 The Differential Forms of the Fundamental Laws 1 5.1 Introduction Two primary methods in deriving the differential forms of fundamental laws: Gauss s Theorem: Allows area integrals of the equations

More information

Random projection trees and low dimensional manifolds. Sanjoy Dasgupta and Yoav Freund University of California, San Diego

Random projection trees and low dimensional manifolds. Sanjoy Dasgupta and Yoav Freund University of California, San Diego Random projection trees and low dimensional manifolds Sanjoy Dasgupta and Yoav Freund University of California, San Diego I. The new nonparametrics The new nonparametrics The traditional bane of nonparametric

More information

Sink particle accretion test

Sink particle accretion test Sink particle accretion test David A. Hubber & Stefanie Walch 1 Objectives Simulate spherically-symmetric Bondi accretion onto a sink particle for an isothermal gas. Calculate the accretion rate onto a

More information

SPH for the Modeling of non-newtonian Fluids with Thermal-Dependent Rheology

SPH for the Modeling of non-newtonian Fluids with Thermal-Dependent Rheology SPH for the Modeling of non-newtonian Fluids with Thermal-Dependent Rheology G. Bilotta 1,2 1 Dipartimento di Matematica e Informatica, Università di Catania, Italy 2 Istituto Nazionale Geofisica e Vulcanologia,

More information

- Marine Hydrodynamics. Lecture 4. Knowns Equations # Unknowns # (conservation of mass) (conservation of momentum)

- Marine Hydrodynamics. Lecture 4. Knowns Equations # Unknowns # (conservation of mass) (conservation of momentum) 2.20 - Marine Hydrodynamics, Spring 2005 Lecture 4 2.20 - Marine Hydrodynamics Lecture 4 Introduction Governing Equations so far: Knowns Equations # Unknowns # density ρ( x, t) Continuity 1 velocities

More information

Physically Based Simulations (on the GPU)

Physically Based Simulations (on the GPU) Physically Based Simulations (on the GPU) (some material from slides of Mark Harris) CS535 Fall 2014 Daniel G. Aliaga Department of Computer Science Purdue University Simulating the world Floating point

More information

Smooth Particle Hydrodynamic (SPH) Presented by: Omid Ghasemi Fare Nina Zabihi XU Zhao Miao Zhang Sheng Zhi EGEE 520

Smooth Particle Hydrodynamic (SPH) Presented by: Omid Ghasemi Fare Nina Zabihi XU Zhao Miao Zhang Sheng Zhi EGEE 520 Smooth Particle Hydrodynamic (SPH) Presented by: Omid Ghasemi Fare Nina Zabihi XU Zhao Miao Zhang Sheng Zhi EGEE 520 OUTLINE Ø Introduction and Historical Perspective: Ø General Principles: Ø Governing

More information

Image Filtering. Slides, adapted from. Steve Seitz and Rick Szeliski, U.Washington

Image Filtering. Slides, adapted from. Steve Seitz and Rick Szeliski, U.Washington Image Filtering Slides, adapted from Steve Seitz and Rick Szeliski, U.Washington The power of blur All is Vanity by Charles Allen Gillbert (1873-1929) Harmon LD & JuleszB (1973) The recognition of faces.

More information

Fluid Mechanics Qualifying Examination Sample Exam 2

Fluid Mechanics Qualifying Examination Sample Exam 2 Fluid Mechanics Qualifying Examination Sample Exam 2 Allotted Time: 3 Hours The exam is closed book and closed notes. Students are allowed one (double-sided) formula sheet. There are five questions on

More information

arxiv:astro-ph/ v2 22 Nov 1996

arxiv:astro-ph/ v2 22 Nov 1996 Force Error Optimization in Smooth Particle Hydrodynamics 1 R. Capuzzo Dolcetta, 1,2 R. Di Lisio arxiv:astro-ph/9611177v2 22 Nov 1996 1 Istituto Astronomico Università di Roma La Sapienza Via G.M. Lancisi

More information

White dwarf dynamical interactions. Enrique García-Berro. Jornades de Recerca, Departament de Física

White dwarf dynamical interactions. Enrique García-Berro. Jornades de Recerca, Departament de Física White dwarf dynamical interactions Enrique García-Berro Jornades de Recerca, Departament de Física CONTENTS 1. Introduction 2. Smoothed Particle Hydrodynamics 3. White dwarf mergers 4. White dwarf collisions

More information

CSE 190: Reinforcement Learning: An Introduction. Chapter 8: Generalization and Function Approximation. Pop Quiz: What Function Are We Approximating?

CSE 190: Reinforcement Learning: An Introduction. Chapter 8: Generalization and Function Approximation. Pop Quiz: What Function Are We Approximating? CSE 190: Reinforcement Learning: An Introduction Chapter 8: Generalization and Function Approximation Objectives of this chapter: Look at how experience with a limited part of the state set be used to

More information

2D Wavelets. Hints on advanced Concepts

2D Wavelets. Hints on advanced Concepts 2D Wavelets Hints on advanced Concepts 1 Advanced concepts Wavelet packets Laplacian pyramid Overcomplete bases Discrete wavelet frames (DWF) Algorithme à trous Discrete dyadic wavelet frames (DDWF) Overview

More information

Dynamics and Time Integration

Dynamics and Time Integration Lecture 17: Dynamics and Time Integration Computer Graphics CMU 15-462/15-662, Fall 2015 Last time: animation Added motion to our model Interpolate keyframes Still a lot of work! Today: physically-based

More information

Numerical Simulations. Duncan Christie

Numerical Simulations. Duncan Christie Numerical Simulations Duncan Christie Motivation There isn t enough time to derive the necessary methods to do numerical simulations, but there is enough time to survey what methods and codes are available

More information

Numerical simulation of landslide impulsive waves by incompressible smoothed particle hydrodynamics

Numerical simulation of landslide impulsive waves by incompressible smoothed particle hydrodynamics INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN FLUIDS Int. J. Numer. Meth. Fluids 2008; 56:209 232 Published online 30 May 2007 in Wiley InterScience (www.interscience.wiley.com)..1526 Numerical simulation

More information

Introduction to Heat and Mass Transfer. Week 10

Introduction to Heat and Mass Transfer. Week 10 Introduction to Heat and Mass Transfer Week 10 Concentration Boundary Layer No concentration jump condition requires species adjacent to surface to have same concentration as at the surface Owing to concentration

More information

Chapter 9. Solids and Fluids (c)

Chapter 9. Solids and Fluids (c) Chapter 9 Solids and Fluids (c) EXAMPLE A small swimming pool has an area of 0 square meters. A wooden 4000-kg statue of density 500 kg/m 3 is then floated on top of the pool. How far does the water rise?

More information

Fundamentals of Fluid Dynamics: Ideal Flow Theory & Basic Aerodynamics

Fundamentals of Fluid Dynamics: Ideal Flow Theory & Basic Aerodynamics Fundamentals of Fluid Dynamics: Ideal Flow Theory & Basic Aerodynamics Introductory Course on Multiphysics Modelling TOMASZ G. ZIELIŃSKI (after: D.J. ACHESON s Elementary Fluid Dynamics ) bluebox.ippt.pan.pl/

More information

Fluid Dynamics. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/14

Fluid Dynamics. Massimo Ricotti. University of Maryland. Fluid Dynamics p.1/14 Fluid Dynamics p.1/14 Fluid Dynamics Massimo Ricotti ricotti@astro.umd.edu University of Maryland Fluid Dynamics p.2/14 The equations of fluid dynamics are coupled PDEs that form an IVP (hyperbolic). Use

More information

Edge Detection. Image Processing - Computer Vision

Edge Detection. Image Processing - Computer Vision Image Processing - Lesson 10 Edge Detection Image Processing - Computer Vision Low Level Edge detection masks Gradient Detectors Compass Detectors Second Derivative - Laplace detectors Edge Linking Image

More information

Finite Volume Schemes: an introduction

Finite Volume Schemes: an introduction Finite Volume Schemes: an introduction First lecture Annamaria Mazzia Dipartimento di Metodi e Modelli Matematici per le Scienze Applicate Università di Padova mazzia@dmsa.unipd.it Scuola di dottorato

More information

Mohammad Zare Manfred Koch

Mohammad Zare Manfred Koch Analysis of some common theoretical and empirical relationships between fall velocity of a sediment particle as a function of particle size and water temperature and development of new empirical nonlinear

More information

Fast Local Laplacian Filters: Theory and Applications

Fast Local Laplacian Filters: Theory and Applications Fast Local Laplacian Filters: Theory and Applications Mathieu Aubry (INRIA, ENPC), Sylvain Paris (Adobe), Sam Hasinoff (Google), Jan Kautz (UCL), and Frédo Durand (MIT) Input Unsharp Mask, not edge-aware

More information

Dan s Morris s Notes on Stable Fluids (Jos Stam, SIGGRAPH 1999)

Dan s Morris s Notes on Stable Fluids (Jos Stam, SIGGRAPH 1999) Dan s Morris s Notes on Stable Fluids (Jos Stam, SIGGRAPH 1999) This is intended to be a detailed by fairly-low-math explanation of Stam s Stable Fluids, one of the key papers in a recent series of advances

More information

Chapter 8: Generalization and Function Approximation

Chapter 8: Generalization and Function Approximation Chapter 8: Generalization and Function Approximation Objectives of this chapter: Look at how experience with a limited part of the state set be used to produce good behavior over a much larger part. Overview

More information

OPEN QUIZ WHEN TOLD AT 7:00 PM

OPEN QUIZ WHEN TOLD AT 7:00 PM 2.25 ADVANCED FLUID MECHANICS Fall 2013 QUIZ 1 THURSDAY, October 10th, 7:00-9:00 P.M. OPEN QUIZ WHEN TOLD AT 7:00 PM THERE ARE TWO PROBLEMS OF EQUAL WEIGHT Please answer each question in DIFFERENT books

More information

Experience with DNS of particulate flow using a variant of the immersed boundary method

Experience with DNS of particulate flow using a variant of the immersed boundary method Experience with DNS of particulate flow using a variant of the immersed boundary method Markus Uhlmann Numerical Simulation and Modeling Unit CIEMAT Madrid, Spain ECCOMAS CFD 2006 Motivation wide range

More information

Detailed 3D modelling of mass transfer processes in two phase flows with dynamic interfaces

Detailed 3D modelling of mass transfer processes in two phase flows with dynamic interfaces Detailed 3D modelling of mass transfer processes in two phase flows with dynamic interfaces D. Darmana, N.G. Deen, J.A.M. Kuipers Fundamentals of Chemical Reaction Engineering, Faculty of Science and Technology,

More information

PDEs in Image Processing, Tutorials

PDEs in Image Processing, Tutorials PDEs in Image Processing, Tutorials Markus Grasmair Vienna, Winter Term 2010 2011 Direct Methods Let X be a topological space and R: X R {+ } some functional. following definitions: The mapping R is lower

More information

Study of the diffusion operator by the SPH method

Study of the diffusion operator by the SPH method IOSR Jornal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-684,p-ISSN: 2320-334X, Volme, Isse 5 Ver. I (Sep- Oct. 204), PP 96-0 Stdy of the diffsion operator by the SPH method Abdelabbar.Nait

More information

Control of Swarms Based on Hydrodynamic Models

Control of Swarms Based on Hydrodynamic Models 8 IEEE International Conference on Robotics and Automation Pasadena, CA, USA, May 9-3, 8 Control of Swarms Based on Hydrodynamic Models Luciano C. A. Pimenta, Nathan Michael, Renato C. Mesquita, Guilherme

More information

CS 542G: The Poisson Problem, Finite Differences

CS 542G: The Poisson Problem, Finite Differences CS 542G: The Poisson Problem, Finite Differences Robert Bridson November 10, 2008 1 The Poisson Problem At the end last time, we noticed that the gravitational potential has a zero Laplacian except at

More information

Gluonic superfluid in high energy p-pb collisions. Chris Zin Derek Everett, Sean Gavin, AbhijitMajumder Graduate Research Day Wayne State University

Gluonic superfluid in high energy p-pb collisions. Chris Zin Derek Everett, Sean Gavin, AbhijitMajumder Graduate Research Day Wayne State University Gluonic superfluid in high energy p-pb collisions Chris Zin Derek Everett, Sean Gavin, AbhijitMajumder Graduate Research Day Wayne State University Quark-gluon plasma State of matter consisting of free

More information

A first model of learning

A first model of learning A first model of learning Let s restrict our attention to binary classification our labels belong to (or ) We observe the data where each Suppose we are given an ensemble of possible hypotheses / classifiers

More information

Absorption of gas by a falling liquid film

Absorption of gas by a falling liquid film Absorption of gas by a falling liquid film Christoph Albert Dieter Bothe Mathematical Modeling and Analysis Center of Smart Interfaces/ IRTG 1529 Darmstadt University of Technology 4th Japanese-German

More information

Smoothed Particle Hydrodynamics

Smoothed Particle Hydrodynamics Smoothed Particle Hydrodynamics for astronomical model demonstration (2010) Thomas A. Grønneløv Figure 1: Collision between protoplanets e-mail:tag@greenleaf.dk This text can currently (april 2010) be

More information

Computational Astrophysics

Computational Astrophysics Computational Astrophysics Lecture 1: Introduction to numerical methods Lecture 2:The SPH formulation Lecture 3: Construction of SPH smoothing functions Lecture 4: SPH for general dynamic flow Lecture

More information

Random walks and anisotropic interpolation on graphs. Filip Malmberg

Random walks and anisotropic interpolation on graphs. Filip Malmberg Random walks and anisotropic interpolation on graphs. Filip Malmberg Interpolation of missing data Assume that we have a graph where we have defined some (real) values for a subset of the nodes, and that

More information

Michela Mapelli. N-body techniques for astrophysics: Lecture 1 General Introduction

Michela Mapelli. N-body techniques for astrophysics: Lecture 1 General Introduction Michela Mapelli N-body techniques for astrophysics: Lecture 1 General Introduction PhD School in Astrophysics, University of Padova November 3-12, 2015 A few words about the course: This course is NOT:

More information

UL XM522 Mutivariable Integral Calculus

UL XM522 Mutivariable Integral Calculus 1 UL XM522 Mutivariable Integral Calculus Instructor: Margarita Kanarsky 2 3 Vector fields: Examples: inverse-square fields the vector field for the gravitational force 4 The Gradient Field: 5 The Divergence

More information

Flow and Transport. c(s, t)s ds,

Flow and Transport. c(s, t)s ds, Flow and Transport 1. The Transport Equation We shall describe the transport of a dissolved chemical by water that is traveling with uniform velocity ν through a long thin tube G with uniform cross section

More information

Dynamics and Time Integration. Computer Graphics CMU /15-662, Fall 2016

Dynamics and Time Integration. Computer Graphics CMU /15-662, Fall 2016 Dynamics and Time Integration Computer Graphics CMU 15-462/15-662, Fall 2016 Last Quiz: IK (and demo) Last few classes Keyframing and motion capture - Q: what can one NOT do with these techniques? The

More information

Forming Intermediate-Mass Black Holes in Dense Clusters Through Collisional Run-away

Forming Intermediate-Mass Black Holes in Dense Clusters Through Collisional Run-away Forming Intermediate-Mass Black Holes in Dense Clusters Through Collisional Run-away Marc Freitag ARI, Heidelberg freitag@ari.uni-heidelberg.de http://obswww.unige.ch/~freitag Collaboration with Atakan

More information

Chapter 9 Solids and Fluids. Elasticity Archimedes Principle Bernoulli s Equation

Chapter 9 Solids and Fluids. Elasticity Archimedes Principle Bernoulli s Equation Chapter 9 Solids and Fluids Elasticity Archimedes Principle Bernoulli s Equation States of Matter Solid Liquid Gas Plasmas Solids: Stress and Strain Stress = Measure of force felt by material Stress= Force

More information

Properties of Coordinate Systems

Properties of Coordinate Systems Properties of Coordinate Systems Cartesian Coordinates Position vector: r yy For Two Neighboring Points P and P : Displacement between two neighboring points: dsdr d dy y d Distance between two neighboring

More information

Image Stitching II. Linda Shapiro CSE 455

Image Stitching II. Linda Shapiro CSE 455 Image Stitching II Linda Shapiro CSE 455 RANSAC for Homography Initial Matched Points RANSAC for Homography Final Matched Points RANSAC for Homography Image Blending What s wrong? Feathering + 1 0 1 0

More information

Improving gradient evaluation in Smoothed Particle Hydrodynamics

Improving gradient evaluation in Smoothed Particle Hydrodynamics Improving gradient evaluation in Smoothed Particle Hydrodynamics Domingo García Senz José A. Escartín Antonio Relaño Ruén M. Caezón Alino Perego Matthias Lieendörfer Gradients in SPH < f r > = f r W r

More information

A Framework for Hybrid Parallel Flow Simulations with a Trillion Cells in Complex Geometries

A Framework for Hybrid Parallel Flow Simulations with a Trillion Cells in Complex Geometries A Framework for Hybrid Parallel Flow Simulations with a Trillion Cells in Complex Geometries SC13, November 21 st 2013 Christian Godenschwager, Florian Schornbaum, Martin Bauer, Harald Köstler, Ulrich

More information

Big & Quic: Sparse Inverse Covariance Estimation for a Million Variables

Big & Quic: Sparse Inverse Covariance Estimation for a Million Variables for a Million Variables Cho-Jui Hsieh The University of Texas at Austin NIPS Lake Tahoe, Nevada Dec 8, 2013 Joint work with M. Sustik, I. Dhillon, P. Ravikumar and R. Poldrack FMRI Brain Analysis Goal:

More information

COMS 4771 Regression. Nakul Verma

COMS 4771 Regression. Nakul Verma COMS 4771 Regression Nakul Verma Last time Support Vector Machines Maximum Margin formulation Constrained Optimization Lagrange Duality Theory Convex Optimization SVM dual and Interpretation How get the

More information

CSE 190: Reinforcement Learning: An Introduction. Chapter 8: Generalization and Function Approximation. Pop Quiz: What Function Are We Approximating?

CSE 190: Reinforcement Learning: An Introduction. Chapter 8: Generalization and Function Approximation. Pop Quiz: What Function Are We Approximating? CSE 190: Reinforcement Learning: An Introduction Chapter 8: Generalization and Function Approximation Objectives of this chapter: Look at how experience with a limited part of the state set be used to

More information

Efficient Inference in Fully Connected CRFs with Gaussian Edge Potentials

Efficient Inference in Fully Connected CRFs with Gaussian Edge Potentials Efficient Inference in Fully Connected CRFs with Gaussian Edge Potentials Philipp Krähenbühl and Vladlen Koltun Stanford University Presenter: Yuan-Ting Hu 1 Conditional Random Field (CRF) E x I = φ u

More information

Image Stitching II. Linda Shapiro EE/CSE 576

Image Stitching II. Linda Shapiro EE/CSE 576 Image Stitching II Linda Shapiro EE/CSE 576 RANSAC for Homography Initial Matched Points RANSAC for Homography Final Matched Points RANSAC for Homography Image Blending What s wrong? Feathering + 1 0 ramp

More information

Navier-Stokes Equation: Principle of Conservation of Momentum

Navier-Stokes Equation: Principle of Conservation of Momentum Navier-tokes Equation: Principle of Conservation of Momentum R. hankar ubramanian Department of Chemical and Biomolecular Engineering Clarkson University Newton formulated the principle of conservation

More information

Non-linear Dimensionality Reduction

Non-linear Dimensionality Reduction Non-linear Dimensionality Reduction CE-725: Statistical Pattern Recognition Sharif University of Technology Spring 2013 Soleymani Outline Introduction Laplacian Eigenmaps Locally Linear Embedding (LLE)

More information

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Cheng Soon Ong & Christian Walder. Canberra February June 2018 Cheng Soon Ong & Christian Walder Research Group and College of Engineering and Computer Science Canberra February June 218 Outlines Overview Introduction Linear Algebra Probability Linear Regression 1

More information

Numerical Analysis of Type I Settling

Numerical Analysis of Type I Settling Numerical Analysis of Type I Settling Saurabh Arun Samdani 1 and Saurabh Kapoor 2 Abstract: Sedimentation and clarification are used interchangeably for potable water; both refer to the separating of solid

More information

Laplacian Mesh Processing

Laplacian Mesh Processing Sorkine et al. Laplacian Mesh Processing (includes material from Olga Sorkine, Yaron Lipman, Marc Pauly, Adrien Treuille, Marc Alexa and Daniel Cohen-Or) Siddhartha Chaudhuri http://www.cse.iitb.ac.in/~cs749

More information

Intensity Analysis of Spatial Point Patterns Geog 210C Introduction to Spatial Data Analysis

Intensity Analysis of Spatial Point Patterns Geog 210C Introduction to Spatial Data Analysis Intensity Analysis of Spatial Point Patterns Geog 210C Introduction to Spatial Data Analysis Chris Funk Lecture 4 Spatial Point Patterns Definition Set of point locations with recorded events" within study

More information

Fluid Dynamics and Balance Equations for Reacting Flows

Fluid Dynamics and Balance Equations for Reacting Flows Fluid Dynamics and Balance Equations for Reacting Flows Combustion Summer School 2018 Prof. Dr.-Ing. Heinz Pitsch Balance Equations Basics: equations of continuum mechanics balance equations for mass and

More information

Deformation Properties of Single Red Blood Cell in a Stenosed Microchannel

Deformation Properties of Single Red Blood Cell in a Stenosed Microchannel -4 th December, 3, Singapore Deformation Properties of Single Red Blood Cell in a Stenosed Microchannel P.G.H. Nayanajith¹, S. C. Saha¹, and Y.T. Gu¹* School of Chemistry, Physics and Mechanical Engineering

More information

SHALLOW WATER MODEL FOR ALUMINIUM ELECTROLYSIS CELLS WITH VARIABLE TOP AND BOTTOM

SHALLOW WATER MODEL FOR ALUMINIUM ELECTROLYSIS CELLS WITH VARIABLE TOP AND BOTTOM SHALLOW WATER MODEL FOR ALUMINIUM ELECTROLYSIS CELLS WITH VARIABLE TOP AND BOTTOM Valdis Boarevics and Koulis Pericleous University of Greenwich, School of Computing and Mathematical Sciences, 30 Park

More information

PREDICTING DPF PERFORMANCE BASED ON 3D MICROSCOPIC STRUCTURE FROM CT- SCAN

PREDICTING DPF PERFORMANCE BASED ON 3D MICROSCOPIC STRUCTURE FROM CT- SCAN 2016 CLEERS PREDICTING DPF PERFORMANCE BASED ON 3D MICROSCOPIC STRUCTURE FROM CT- SCAN Yujun Wang 1, Paul Folino 2, Carl J. Kamp 2, Rakesh K. Singh 1, Amin Saeid 1, Bachir Kharraja 1, Victor W. Wong 2

More information

Fast approximate curve evolution

Fast approximate curve evolution Fast approximate curve evolution James Malcolm Yogesh Rathi Anthony Yezzi Allen Tannenbaum Georgia Institute of Technology, Atlanta, GA Brigham and Women s Hospital, Boston, MA James Malcolm Georgia Institute

More information

Fluid Mechanics Abdusselam Altunkaynak

Fluid Mechanics Abdusselam Altunkaynak Fluid Mechanics Abdusselam Altunkaynak 1. Unit systems 1.1 Introduction Natural events are independent on units. The unit to be used in a certain variable is related to the advantage that we get from it.

More information

meters, we can re-arrange this expression to give

meters, we can re-arrange this expression to give Turbulence When the Reynolds number becomes sufficiently large, the non-linear term (u ) u in the momentum equation inevitably becomes comparable to other important terms and the flow becomes more complicated.

More information

2. Modeling of shrinkage during first drying period

2. Modeling of shrinkage during first drying period 2. Modeling of shrinkage during first drying period In this chapter we propose and develop a mathematical model of to describe nonuniform shrinkage of porous medium during drying starting with several

More information

Learning Eigenfunctions: Links with Spectral Clustering and Kernel PCA

Learning Eigenfunctions: Links with Spectral Clustering and Kernel PCA Learning Eigenfunctions: Links with Spectral Clustering and Kernel PCA Yoshua Bengio Pascal Vincent Jean-François Paiement University of Montreal April 2, Snowbird Learning 2003 Learning Modal Structures

More information

Week 6 Notes, Math 865, Tanveer

Week 6 Notes, Math 865, Tanveer Week 6 Notes, Math 865, Tanveer. Energy Methods for Euler and Navier-Stokes Equation We will consider this week basic energy estimates. These are estimates on the L 2 spatial norms of the solution u(x,

More information

Application of meshless EFG method in fluid flow problems

Application of meshless EFG method in fluid flow problems Sādhan ā Vol. 29, Part 3, June 2004, pp. 285 296. Printed in India Application of meshless EFG method in fluid flow problems I V SINGH Mechanical Engineering Group, Birla Institute of Technology and Science,

More information

A monolithic Lagrangian approach for fluid structure interaction problems

A monolithic Lagrangian approach for fluid structure interaction problems Comput Mech (2010) 46:883 899 DOI 10.1007/s00466-010-0522-0 ORIGINAL PAPER A monolithic Lagrangian approach for fluid structure interaction problems P. B. Ryzhakov R. Rossi S. R. Idelsohn E. Oñate Received:

More information

An Empirical Comparison of Graph Laplacian Solvers

An Empirical Comparison of Graph Laplacian Solvers An Empirical Comparison of Graph Laplacian Solvers Kevin Deweese 1 Erik Boman 2 John Gilbert 1 1 Department of Computer Science University of California, Santa Barbara 2 Scalable Algorithms Department

More information

Lecture 7: The wave equation: higher dimensional case

Lecture 7: The wave equation: higher dimensional case Lecture 7: The wave equation: higher dimensional case Some auxiliary facts The co area formula. Let be a bounded domain and be a function of class. Denote by : the level set of. Let be any integrable function.

More information

General Curvilinear Ocean Model (GCOM): Enabling Thermodynamics

General Curvilinear Ocean Model (GCOM): Enabling Thermodynamics General Curvilinear Ocean Model (GCOM): Enabling Thermodynamics M. Abouali, C. Torres, R. Walls, G. Larrazabal, M. Stramska, D. Decchis, and J.E. Castillo AP0901 09 General Curvilinear Ocean Model (GCOM):

More information