type

states.EnsembleProcess

class EnsembleProcess:

Random-walk predict step: multiplicative covariance inflation.

Adds process uncertainty by inflating the ensemble's spread about its mean by ``sqrt(1 + q * dt)``. This is the standard EnKF treatment of additive process noise for a random-walk state and leaves the ensemble mean (the matched estimate) unchanged.

Parameters

NameTypeDescription
fieldstrPrimary mean field. The ensemble members live in ``f"{field}_ensemble"`` with shape ``(N, E, D)``.
q = 0.01floatPer-unit-time process-noise (inflation) scale.

Members

method

property

Source: unitrack/states/kalman/ensemble.py:56