/[escript]/trunk/doc/user/levelset.tex
ViewVC logotype

Annotation of /trunk/doc/user/levelset.tex

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1811 - (hide annotations)
Thu Sep 25 23:11:13 2008 UTC (14 years, 5 months ago) by ksteube
File MIME type: application/x-tex
File size: 10366 byte(s)
Copyright updated in all files

1 ksteube 1811
2     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 lgraham 1701 %
4 ksteube 1811 % Copyright (c) 2003-2008 by University of Queensland
5     % Earth Systems Science Computational Center (ESSCC)
6     % http://www.uq.edu.au/esscc
7 lgraham 1701 %
8 ksteube 1811 % Primary Business: Queensland, Australia
9     % Licensed under the Open Software License version 3.0
10     % http://www.opensource.org/licenses/osl-3.0.php
11 lgraham 1701 %
12 ksteube 1811 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
13 lgraham 1701
14 ksteube 1811
15 lgraham 1701 \section{Rayleigh-Taylor Instability}
16     \label{LEVELSET CHAP}
17    
18     In this chapter we will implement the Level Set Method in Escript for tracking the interface between two fluids for Computational Fluid Dynamics (CFD).
19     Normally in Earth science problems two or more fluids in a system with different properties are of interest. For example, lava dome growth in volcanology, with the contrast of the two mediums as being lava and air. The interface between the two mediums is often referred to as a free surface (free boundary value problem); the problem arises due to the large differences in densities between the lava and air, with their ratio being around 2000, and so the interface between the two fluids move with respect to each other.
20     %and so the lava with the much higher density is able to move independently with respect to the air, and the interface between the two fluids is not constrained.
21     There are a number of numerical techniques to define and track the free surfaces. One of these methods, which is conceptually the simplest, is to construct a Lagrangian grid which moves with the fluid, and so it tracks the free surface. The limitation of this method is that it cannot track surfaces that break apart or intersect. Another limitation is that the elements in the grid can become severely distorted, resulting in numerical instability. The Arbitrary Lagrangian-Eulerian (ALE) method for CFD in moving domains is used to overcome this problem by remeshing, but there is an overhead in computational time, and it results in a loss of accuracy due to the process of mapping the state variables every remesh by interpolation.
22    
23     There is a technique to overcome these limitations called the Level Set Method, for tracking interfaces between two fluids. The advantages of the method is that CFD can be performed on a fixed Cartesian mesh, and therefore problems with remeshing can be avoided. The field equations for calculating variables such as velocity and pressure are solved on the the same mesh. The Level Set Method is based upon the implicit representation of the interface by a continuous function. The function takes the form as a signed distance function, $\phi(x)$, of the interface in a Eulerian coordinate system. For example, the zero isocontour of the unit circle $\phi(x)=x^2 + y^2 -1$ is the set of all points where $\phi(x)=0$.
24     %
25     \begin{figure}
26     \center
27     \scalebox{0.5}{\includegraphics{figures/unitcircle.eps}}
28     \caption{Implicit representation of the curve $x^2 + y^2 = 1$.}
29     \label{UNITCIRCLE}
30     \end{figure}
31     %
32     The implicit representation can be used to define the interior and exterior of a fluid region. Since the isocontour at $\phi(x)=0$ has been defined as the interface, a point in the domain can be determined if its inside or outside of the interface, by looking at the local sign of $\phi(x)$. A point is inside the interface when $\phi(x)<0$, and outside the interface when $\phi(x)>0$. Parameters values such as density and viscosity can then be defined for two different mediums, depending on which side of the interface they are located. The displacement of the interface at the zero isocontour of $\phi(x)$ is calculated each time step by using the velocity field. This is achieved my solving the advection equation:
33    
34     \begin{equation}
35     \frac{\partial \phi}{\partial t} + \vec{v} \cdot \nabla \phi = 0,
36     \label{ADVECTION}
37     \end{equation}
38    
39     where $\vec{v}$ is the velocity field. The advection equation is solved using a mid-point method, which is a two step procedure:
40    
41     Firstly, $\phi^{1/2}$ is calculated solving:
42    
43     \begin{equation}
44     \frac{\phi^{1/2} - \phi^{-}}{dt/2} + \vec{v} \cdot \nabla \phi^{-} = 0.
45     \label{MIDPOINT FIST}
46     \end{equation}
47    
48     Secondly, using $\phi^{1/2}$, $\phi^{+}$ is calculated solving:
49    
50     \begin{equation}
51     \frac{\phi^{+} - \phi^{-}}{dt} + \vec{v} \cdot \nabla \phi^{1/2} = 0.
52     \label{MIDPOINT SECOND}
53     \end{equation}
54    
55     For more details on the mid-point procedure see reference \cite{BOURGOUIN2006}. In certain situations the mid-point procedure has been shown to produce artifacts in the numerical solutions. A more robust procedure is to use the Taylor-Galerkin scheme with the presence of diffusion, which gives more stable solutions. The expression is derived by either inserting Equation (\ref{MIDPOINT FIST}) into Equation (\ref{MIDPOINT SECOND}), or by expanding $\phi$ into a Taylor series:
56    
57     \begin{equation}
58     \phi^{+} \simeq \phi^{-} + dt\frac{\partial \phi^{-}}{\partial t} + \frac{dt^2}{2}\frac{\partial^{2}\phi^{-}}{\partial t^{2}},
59     \label{TAYLOR EXPANSION}
60     \end{equation}
61    
62     by inserting
63    
64     \begin{equation}
65     \frac{\partial \phi^{-}}{\partial t} = - \vec{v} \cdot \nabla \phi^{-},
66     \label{INSERT ADVECTION}
67     \end{equation}
68    
69     and
70    
71     \begin{equation}
72     \frac{\partial^{2} \phi^{-}}{\partial t^{2}} = \frac{\partial}{\partial t}(-\vec{v} \cdot \nabla \phi^{-}) = \vec{v}\cdot \nabla (\vec{v}\cdot \nabla \phi^{-}),
73     \label{SECOND ORDER}
74     \end{equation}
75    
76     into Equation \ref{TAYLOR EXPANSION}
77    
78     \begin{equation}
79     \phi^{+} = \phi^{-} - dt\vec{v}\cdot \nabla \phi^{-} + \frac{dt^2}{2}\vec{v}\cdot \nabla (\vec{v}\cdot \nabla \phi^{-}).
80     \label{TAYLOR GALERKIN}
81     \end{equation}
82    
83    
84     The fluid dynamics is governed by the Stokes equations. In geophysical problems the velocity of fluids are low; that is, the inertial forces are small compared with the viscous forces, therefore the inertial terms in the Navier-Stokes equations can be ignored. For a body force $f$ the governing equations are given by:
85    
86     \begin{equation}
87     \nabla \cdot (\eta(\nabla \vec{v} + \nabla^{T} \vec{v})) - \nabla p = -f,
88     \label{GENERAL NAVIER STOKES}
89     \end{equation}
90    
91     with the incompressibility condition
92    
93     \begin{equation}
94     \nabla \cdot \vec{v} = 0.
95     \label{INCOMPRESSIBILITY}
96     \end{equation}
97    
98     where $p$, $\eta$ and $f$ are the pressure, viscosity and body forces, respectively.
99     Alternatively, the Stokes equations can be represented in Einstein summation tensor notation (compact notation):
100    
101     \begin{equation}
102     -(\eta(v\hackscore{i,j} + v\hackscore{j,i})),\hackscore{j} - p,\hackscore{i} = f\hackscore{i},
103     \label{GENERAL NAVIER STOKES COM}
104     \end{equation}
105    
106     with the incompressibility condition
107    
108     \begin{equation}
109     -v\hackscore{i,i} = 0.
110     \label{INCOMPRESSIBILITY COM}
111     \end{equation}
112    
113     The subscript $,i$ denotes the derivative of the function with respect to $x\hackscore{i}$. A linear relationship between the deviatoric stress $\sigma^{'}\hackscore{ij}$ and the stretching $D\hackscore{ij} = \frac{1}{2}(v\hackscore{i,j} + v\hackscore{j,i})$ is defined as \cite{GROSS2006}:
114    
115     \begin{equation}
116     \sigma^{'}\hackscore{ij} = 2\eta D^{'}\hackscore{ij},
117     \label{STRESS}
118     \end{equation}
119    
120     where the deviatoric stretching $D^{'}\hackscore{ij}$ is defined as
121    
122     \begin{equation}
123     D^{'}\hackscore{ij} = D^{'}\hackscore{ij} - \frac{1}{3}D\hackscore{kk}\delta\hackscore{ij}.
124     \label{DEVIATORIC STRETCHING}
125     \end{equation}
126    
127     The $\delta\hackscore{ij}$ is the Kronecker $\delta$-symbol, which is a matrix with ones for its diagonal entries ($i = j$) and zeros for the remaining entries ($i \neq j$). The body force $f$ in Equation (\ref{GENERAL NAVIER STOKES COM}) is the gravity acting in the $x\hackscore{3}$ direction and is given as $f = -g \rho \delta\hackscore{i3}$.
128    
129     The Stokes equations is a saddle point problem, and can be solved using a Uzawa scheme. A class called StokesProblemCartesian in Escript can be used to solve for velocity and pressure.
130     In order to keep numerical stability, the time step size needs to be below a certain value, known as the Courant number. The Courant number is defined as:
131    
132     \begin{equation}
133     C = \frac{v \delta t}{h}.
134     \label{COURANT}
135     \end{equation}
136    
137     where $\delta t$, $v$, and $h$ are the time step, velocity, and the width of an element in the mesh, respectively. The velocity $v$ may be chosen as the maximum velocity in the domain. In this problem the Courant number is taken to be 0.4 \cite{BOURGOUIN2006}.
138    
139     As the computation of the distance function progresses, it becomes distorted, and so it needs to be updated in order to stay regular. This process is known as the reinitialization procedure. The aim is to iteratively find a solution to the reinitialization equation:
140    
141     \begin{equation}
142     \frac{\partial \psi}{\partial \tau} + sign(\psi)(1 - \nabla \psi) = 0.
143     \label{REINITIALISATION}
144     \end{equation}
145    
146     where $\tau$ is artificial time. This equation is solved to meet the definition of the level set function, $\lvert \nabla \psi \rvert = 1$; the normalization condition. However, it has been shown that in using this reinitialization procedure it is prone to mass loss and inconsistent positioning of the interface \cite{SUCKALE2008}.
147    
148     The Rayleigh-Taylor instability problem is used as a benchmark to validate CFD implementations \cite{VANKEKEN1997}. Figure \ref{RT2DSETUP} shows the setup of the problem. A rectangular domain with two different fluids is considered, with the greater density fluid on the top and the lighter density fluid on the bottom. The viscosities of the two fluids are equal (isoviscos). An initial perturbation is given to the interface of $\phi=0.02cos(\frac{\pi x}{\lambda}) + 0.2$. The aspect ratio, $\lambda = L/H = 0.9142$, is chosen such that it gives the greatest disturbance of the fluids.
149    
150     \begin{figure}
151     \center
152     \scalebox{0.7}{\includegraphics{figures/RT2Dsetup.eps}}
153     \caption{Parameters, initial interface and boundary conditions for the Rayleigh-Taylor instability problem. The interface is defined as $\phi=0.02cos(\frac{\pi x}{\lambda}) + 0.2$. The fluids have been assigned different densities and equal viscosity (isovisous).}
154     \label{RT2DSETUP}
155     \end{figure}
156    
157     %The Level Set Method can be applied to many areas of science, for example simulating subduction zones in geophysics, motion of bubbles, and flame propagation. Its also used in image processing. However, the Level Set Method does have limitations. The level set function can still become irregular after reinitialisation, leading to artifacts in the simulations, requiring more thought into the implementation of the reinitialisation step.

  ViewVC Help
Powered by ViewVC 1.1.26