NWP | DA | Kalman Filter

Optimal Interpolation (OI), 3D-Variational Assimilation (3DVar), and the Kalman Filter (KF) share foundational mathematical objectives but differ in implementation and error covariance treatment. Below is a formulation of their core equations and key comparisons.


Mathematical Formulations

Optimal Interpolation (OI)

xa=xb+W(yoHxb) - Weights: W=BHT(HBHT+R)1
- Static Covariances: Background (B) and observation (R) error covariances are predefined and stationary.


3D-Variational Assimilation (3DVar)

J(x)=12(xxb)TB1(xxb)+12(yoHx)TR1(yoHx) - Minimizes J(x) to find xa. - Equivalence to OI: For linear H and Gaussian errors, 3DVar and OI yield identical solutions.


Kalman Filter (KF)

Predict Step: Update Step: - Dynamic Covariances: evolves with time, capturing flow-dependent errors.


Key Similarities

  1. Objective: Minimize analysis error via and .
  2. Linear-Gaussian Assumption: All methods assume linear observation operators () and Gaussian errors for optimality.
  3. Weighting: Use inverse error covariances (, ) to balance observations and background.

Critical Differences

Aspect OI 3DVar Kalman Filter
Covariance Static Static Dynamic
Computation Direct matrix inversion Gradient-based minimization Recursive covariance updates
Error Propagation None (stationary) None (stationary) Model-derived ()
Cost Low Moderate High (ensemble/recursive)
Typical Use Historical systems Operational NWP Adaptive systems, AI models

Hybrid Methods (e.g., 3DEnVar)

Combine static (from 3DVar) with ensemble-derived covariances (from EnKF) for flow-dependent updates. Example:

References

  1. 用最少的公式讲解几种传统数据同化方法的发展路径 | 2025
    1. 但凡提到传统同化方法的不足,我们言必及“线性-高斯分布假设”,然而我们在EKF中就已经适用非线性模式了,这个”线性-高斯分布假设“到底说的是什么呢?
    2. 一个根本性的问题,不确定性是否等价于误差协方差矩阵的大小?在自然界中,高斯分布(正态分布)是一个完美的分布,因为它仅使用均值和方差这两个关键参数就可以完全确定其形状和位置。
    3. 事实上,只有高斯分布才能只用协方差矩阵就完全确定其概率分布。所以在同化算法中默认用协方差矩阵表示不确定性其实已经默认了对象的分布是高斯分布
    4. 在此情况下公式(3)显然是包含高斯分布假设的,所以一切卡尔曼滤波方法都含有高斯分布假设。至于线性假设更容易说明:高斯分布的随机变量经过非线性变换后,通常不会保持高斯分布,非线性模式积分会改变状态变量的分布特征,使其偏离原始的高斯分布。所以如果假设数据一直符合高斯分布的话,那必然还默认了模式是线性的。
    5. 线性-高斯分布假设是卡尔曼滤波算法的先天不足,且四维变分方法也无法幸免。因为只要是只用协方差矩阵来代表状态不确定性的算法,毫无疑问都可以说它受限于”线性-高斯分布假设“

NWP | DA | Kalman Filter
https://waipangsze.github.io/2025/04/02/NWP-DA-Kalman-Filter/
Author
wpsze
Posted on
April 2, 2025
Updated on
April 2, 2025
Licensed under