Skip to content

Commit

Permalink
Fix docs about auto scale
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Apr 3, 2024
1 parent ade18be commit 2b1bf73
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docs/reference/configuration/keywords.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1388,16 +1388,24 @@ AUTO_SCALE_OBSERVATIONS
^^^^^^^^^^^^^^^^^^^^^^^
.. _auto_scale_observations:

The analysis module has capability for specifying the adaptive
localization correlation threshold value.
This can be specified from the config file using the
ANALYSIS_SET_VAR keyword but is valid for the ``STD_ENKF`` module only.
This is default ``0.30``.
The analysis can try to find correlated observations and scale those, to decrease
the impact of correlated observations, this can be specified from the config file:

::

ANALYSIS_SET_VAR OBSERVATIONS AUTO_SCALE *

This will go through all the observations and scale them according to how correlated they are. If
would would like to only scale some observations, you can use wildcard matching:

.. code-block:: text
ANALYSIS_SET_VAR OBSERVATIONS OBS_1*
ANALYSIS_SET_VAR OBSERVATIONS OBS_2*
This will find correlations in all observations starting with: 'OBS_1' and scale those, then
find correlations in all observations starting with: 'OBS_2', and scale those, independent of 'OBS_1*'


ENKF_TRUNCATION
^^^^^^^^^^^^^^^
Expand Down

0 comments on commit 2b1bf73

Please sign in to comment.