Time Discretization

This section describes the various approaches used to discretize the governing equation in the temporal domain such as two step, multistep and multistage methods.

In order to determine a numerical solution of the governing differential equations the temporal domain must also be discretised apart from the spatial domain. The direction of influence of the time coordinate is only in the future. Therefore, all the solution methods for time dependent problems advance in time from a given initial data.

A vast majority of the methods used for temporal discretization are linear in nature. The time dependent variable is updated using a linear combination of the variable and its time derivatives. Linear approaches can be broadly categorized based on the number of steps, stages and derivatives used in the discretization.

Some of the widely used time discretization approaches are described below.

Generalized Two Step Methods

Two step methods involve function values at two instances in time, generally considering the current time step at which the solution is known and the next time step at which the solution has to be computed.

Consider a first-order ordinary differential equation for a dependent variable φ expressed as: (1)
d φ d t = f ( t , φ )

with an initial condition φ ( t 0 ) = φ 0 .

A generalized scheme using a weighted average value for the approximation of the variable value at the n+1th time step is expressed as: (2)
φ n + 1 = φ n + Δ t [ θ f n + 1 + ( 1 θ ) f n ]

where f n represents the function value at the nth time step and θ represents the weight.

The nature and stability of the temporal discretization scheme depends on the choice of the weight θ = 0 , 1 2 and 1 represent the forward Euler, Crank-Nicholson and the backward Euler schemes, respectively.

Multistep Methods

Multistep methods involve function values at more than two instances of time. These methods are generally derived by fitting a polynomial to the temporal derivative of the dependent variable, that is, f ( t , φ ) .

These methods include the Adams-Bashforth and Adams-Moutlton methods. The order of the method depends on the number of points in time at which the polynomial fitting it used. A third-order accurate Adams-Moulton method is expressed as: (3)
φ n + 1 = φ n + Δ t 2 [ 5 f n + 1 + 8 f n f n 1 ]

These methods require initial data at many steps, hence they are not self starting.

Multistage Methods

Multistage methods involve computation of the function values multiple times at the same time step. They generally involve predictor and corrector steps to compute the values at the n+1th time step.

Numerical solution schemes are often referred to as being explicit or implicit. When a direct computation of the dependent variables can be made in terms of known quantities the computation is said to be explicit. When the dependent variables are defined by coupled set of equations, and either a matrix or iterative technique is needed to obtain the solution, the numerical method is said to be implicit.

Explicit methods are easy to program but are conditionally stable whereas implicit methods offer better stability but are computationally expensive. Predictor-Corrector methods offer a compromise between these choices. A variety of methods exist based on the choice of base method and the time instants used in the predictor and corrector steps.

The most popular methods in this category are the Runge-Kutta methods. A fourth-order Runge-Kutta method is constructed as follows:
  • Explicit Euler Predictor: φ * n + 1 2 = φ n + Δ t 2 f n
  • Implicit Euler Corrector: φ * * n + 1 2 = φ n + Δ t 2 f * n + 1 2
  • Mid-point rule Predictor: φ * n + 1 = φ n + Δ t f * * n + 1 2
  • Simpsons rule Corrector: φ n + 1 = φ n + Δ t 6 [ f n + 2 f * n + 1 2 + 2 f * * n + 1 2 + f * n + 1 ]

Generalized- α Method

The generalized α method is an implicit method of time integration which achieves high frequency numerical dissipation while at the same time minimizing unwanted low frequency dissipation and offers unconditional stability for linear problems. It is a variant of the generalized two step theta scheme discussed above where the first temporal derivatives are evaluated as variables.

For a linear system defined by: (4)
φ ˙ = d φ d t = λ φ
The generalized α method for integration from time step t n to t n + 1 is constructed as follows:
  • φ ˙ n + α m = λ φ n + α f
  • φ n + 1 = φ n + Δ t φ ˙ n + Δ t γ ( φ ˙ n + 1 φ ˙ n )
  • φ ˙ n + α m = φ ˙ n + α m ( φ ˙ n + 1 φ ˙ n )
  • φ n + α f = φ n + α n ( φ n + 1 φ n )

where Δ t is the time step size ( Δ t = t n + 1 t n ) and α m , α f , γ are free parameters.

The above four equations combine to yield the following system: (5)
n + 1 = c n

where the solution vector n at t n is defined as n = { φ n , Δ t φ ˙ n } T .