Puneet Varma (Editor)

Ensemble Kalman filter

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The ensemble Kalman filter (EnKF) is a recursive filter suitable for problems with a large number of variables, such as discretizations of partial differential equations in geophysical models. The EnKF originated as a version of the Kalman filter for large problems (essentially, the covariance matrix is replaced by the sample covariance), and it is now an important data assimilation component of ensemble forecasting. EnKF is related to the particle filter (in this context, a particle is the same thing as ensemble member) but the EnKF makes the assumption that all probability distributions involved are Gaussian; when it is applicable, it is much more efficient than the particle filter.

Contents

Introduction

The Ensemble Kalman Filter (EnKF) is a Monte Carlo implementation of the Bayesian update problem: given a probability density function (pdf) of the state of the modeled system (the prior, called often the forecast in geosciences) and the data likelihood, the Bayes theorem is used to obtain the pdf after the data likelihood has been taken into account (the posterior, often called the analysis). This is called a Bayesian update. The Bayesian update is combined with advancing the model in time, incorporating new data from time to time. The original Kalman Filter assumes that all pdfs are Gaussian (the Gaussian assumption) and provides algebraic formulas for the change of the mean and the covariance matrix by the Bayesian update, as well as a formula for advancing the covariance matrix in time provided the system is linear. However, maintaining the covariance matrix is not feasible computationally for high-dimensional systems. For this reason, EnKFs were developed. EnKFs represent the distribution of the system state using a collection of state vectors, called an ensemble, and replace the covariance matrix by the sample covariance computed from the ensemble. The ensemble is operated with as if it were a random sample, but the ensemble members are really not independent – the EnKF ties them together. One advantage of EnKFs is that advancing the pdf in time is achieved by simply advancing each member of the ensemble. For a survey of EnKF and related data assimilation techniques, see G. Evensen.

Kalman filter

Let us review first the Kalman filter. Let x denote the n -dimensional state vector of a model, and assume that it has Gaussian probability distribution with mean μ and covariance Q , i.e., its pdf is

p ( x ) exp ( 1 2 ( x μ ) T Q 1 ( x μ ) ) .

Here and below, means proportional; a pdf is always scaled so that its integral over the whole space is one. This p ( x ) , called the prior, was evolved in time by running the model and now is to be updated to account for new data. It is natural to assume that the error distribution of the data is known; data have to come with an error estimate, otherwise they are meaningless. Here, the data d is assumed to have Gaussian pdf with covariance R and mean H x , where H is the so-called observation matrix. The covariance matrix R describes the estimate of the error of the data; if the random errors in the entries of the data vector d are independent, R is diagonal and its diagonal entries are the squares of the standard deviation (“error size”) of the error of the corresponding entries of the data vector d . The value H x is what the value of the data would be for the state x in the absence of data errors. Then the probability density p ( d | x ) of the data d conditional of the system state x , called the data likelihood, is

p ( d | x ) exp ( 1 2 ( d H x ) T R 1 ( d H x ) ) .

The pdf of the state and the data likelihood are combined to give the new probability density of the system state x conditional on the value of the data d (the posterior) by the Bayes theorem,

p ( x | d ) p ( d | x ) p ( x ) .

The data d is fixed once it is received, so denote the posterior state by x ^ instead of x | d and the posterior pdf by p ( x ^ ) . It can be shown by algebraic manipulations that the posterior pdf is also Gaussian,

p ( x ^ ) exp ( 1 2 ( x ^ μ ^ ) T Q ^ 1 ( x ^ μ ^ ) ) ,

with the posterior mean μ ^ and covariance Q ^ given by the Kalman update formulas

μ ^ = μ + K ( d H μ ) , Q ^ = ( I K H ) Q ,

where

K = Q H T ( H Q H T + R ) 1

is the so-called Kalman gain matrix.

Ensemble Kalman Filter

The EnKF is a Monte Carlo approximation of the Kalman filter, which avoids evolving the covariance matrix of the pdf of the state vector x . Instead, the pdf is represented by an ensemble

X = [ x 1 , , x N ] = [ x i ] .

X is an n × N matrix whose columns are the ensemble members, and it is called the prior ensemble. Ideally, ensemble members would form a sample from the prior distribution. However, the ensemble members are not in general independent except in the initial ensemble, since every EnKF step ties them together. They are deemed to be approximately independent, and all calculations proceed as if they actually were independent.

Replicate the data d into an m × N matrix

D = [ d 1 , , d N ] = [ d i ] , d i = d + ϵ i , ϵ i = N ( 0 , R ) ,

so that each column d i consists of the data vector d plus a random vector from the m -dimensional normal distribution N ( 0 , R ) . If, in addition, the columns of X are a sample from the prior probability distribution, then the columns of

X ^ = X + K ( D H X )

form a sample from the posterior probability distribution. [To see this in the scalar case with H = 1 : Let x i = μ + ξ i , ξ i N ( 0 , σ x 2 ) , and d i = d + ϵ i , ϵ i N ( 0 , σ d 2 ) . Then x ^ i = ( 1 / σ x 2 1 / σ x 2 + 1 / σ d 2 μ + 1 / σ d 2 1 / σ x 2 + 1 / σ d 2 d ) + ( 1 / σ x 2 1 / σ x 2 + 1 / σ d 2 ξ i + 1 / σ d 2 1 / σ x 2 + 1 / σ d 2 ϵ i ) . The first sum is the posterior mean, and the second sum, in view of the independence, has a variance ( 1 / σ x 2 1 / σ x 2 + 1 / σ d 2 ) 2 σ x 2 + ( 1 / σ d 2 1 / σ x 2 + 1 / σ d 2 ) 2 σ d 2 = 1 1 / σ x 2 + 1 / σ d 2 , which is the posterior variance. ]

The EnKF is now obtained simply by replacing the state covariance Q in Kalman gain matrix K by the sample covariance C computed from the ensemble members (called the ensemble covariance). That is: K = C H T ( H C H T + R ) 1

Basic formulation

Here we follow. Suppose the ensemble matrix X and the data matrix D are as above. The ensemble mean and the covariance are

E ( X ) = 1 N k = 1 N x k , C = A A T N 1 ,

where

A = X E ( X ) e 1 × N = X 1 N ( X e N × 1 ) e 1 × N ,

and e denotes the matrix of all ones of the indicated size.

The posterior ensemble X p is then given by

X p = X + C H T ( H C H T + R ) 1 ( D H X ) ,

where the perturbed data matrix D is as above.

Note that since R is a covariance matrix, it is always positive semidefinite and usually positive definite, so the inverse above exists and the formula can be implemented by the Cholesky decomposition. In, R is replaced by the sample covariance D ~ D ~ T / ( N 1 ) where D ~ = D 1 N d e 1 × N and the inverse is replaced by a pseudoinverse, computed using the Singular Value Decomposition (SVD) .

Since these formulas are matrix operations with dominant Level 3 operations, they are suitable for efficient implementation using software packages such as LAPACK (on serial and shared memory computers) and ScaLAPACK (on distributed memory computers). Instead of computing the inverse of a matrix and multiplying by it, it is much better (several times cheaper and also more accurate) to compute the Cholesky decomposition of the matrix and treat the multiplication by the inverse as solution of a linear system with many simultaneous right-hand sides.

Observation matrix-free implementation

Since we have replaced the covariance matrix with ensemble covariance, this leads to a simpler formula where ensemble observations are directly used without explicitly specifying the matrix H . More specifically, define a function h ( x ) of the form

h ( x ) = H x .

The function h is called the observation function or, in the inverse problems context, the forward operator. The value of h ( x ) is what the value of the data would be for the state x assuming the measurement is exact. Then the posterior ensemble can be rewritten as

X p = X + 1 N 1 A ( H A ) T P 1 ( D H X )

where

H A = H X 1 N ( ( H X ) e N × 1 ) e 1 × N ,

and

P = 1 N 1 H A ( H A ) T + R ,

with

[ H A ] i = H x i H 1 N j = 1 N x j   = h ( x i ) 1 N j = 1 N h ( x j ) .

Consequently, the ensemble update can be computed by evaluating the observation function h on each ensemble member once and the matrix H does not need to be known explicitly. This formula holds also for an observation function h ( x ) = H x + f with a fixed offset f , which also does not need to be known explicitly. The above formula has been commonly used for a nonlinear observation function h , such as the position of a hurricane vortex. In that case, the observation function is essentially approximated by a linear function from its values at ensemble members.

Implementation for a large number of data points

For a large number m of data points, the multiplication by P 1 becomes a bottleneck. The following alternative formula is advantageous when the number of data points m is large (such as when assimilating gridded or pixel data) and the data error covariance matrix R is diagonal (which is the case when the data errors are uncorrelated), or cheap to decompose (such as banded due to limited covariance distance). Using the Sherman–Morrison–Woodbury formula

( R + U V T ) 1 = R 1 R 1 U ( I + V T R 1 U ) 1 V T R 1 ,

with

U = 1 N 1 H A , V = H A ,

gives

P 1 = ( R + 1 N 1 H A ( H A ) T ) 1   = = R 1 [ I 1 N 1 ( H A ) ( I + ( H A ) T R 1 1 N 1 ( H A ) ) 1 ( H A ) T R 1 ] ,

which requires only the solution of systems with the matrix R (assumed to be cheap) and of a system of size N with m right-hand sides. See for operation counts.

Further extensions

The EnKF version described here involves randomization of data. For filters without randomization of data, see.

Since the ensemble covariance is rank deficient (there are many more state variables, typically millions, than the ensemble members, typically less than a hundred), it has large terms for pairs of points that are spatially distant. Since in reality the values of physical fields at distant locations are not that much correlated, the covariance matrix is tapered off artificially based on the distance, which gives rise to localized EnKF algorithms. These methods modify the covariance matrix used in the computations and, consequently, the posterior ensemble is no longer made only of linear combinations of the prior ensemble.

For nonlinear problems, EnKF can create posterior ensemble with non-physical states. This can be alleviated by regularization, such as penalization of states with large spatial gradients.

For problems with coherent features, such as hurricanes, thunderstorms, firelines, squall lines, and rain fronts, there is a need to adjust the numerical model state by deforming the state in space (its grid) as well as by correcting the state amplitudes additively. In Data Assimilation by Field Alignment, Ravela et al. introduce the joint position-amplitude adjustment model using ensembles, and systematically derive a sequential approximation which can be applied to both EnKF and other formulations. Their method does not make the assumption that amplitudes and position errors are independent or jointly Gaussian, as others do. The morphing EnKF employs intermediate states, obtained by techniques borrowed from image registration and morphing, instead of linear combinations of states.

EnKFs rely on the Gaussian assumption, although they in practice are used for nonlinear problems, where the Gaussian assumption may not be satisfied. Related filters attempting to relax the Gaussian assumption in EnKF while preserving its advantages include filters that fit the state pdf with multiple Gaussian kernels, filters that approximate the state pdf by Gaussian mixtures, a variant of the particle filter with computation of particle weights by density estimation, and a variant of the particle filter with thick tailed data pdf to alleviate particle filter degeneracy.

References

Ensemble Kalman filter Wikipedia