10 minutes to… understand the new dynamical spinup in OGGM v1.6#

In this example, we showcase a recent addition to OGGM: the dynamical spinup during the historical period. We explain why this was added, and how you can use the dynamical spinup during your simulations.

Tags: beginner, workflow, spinup

# Libs
import xarray as xr
import matplotlib.pyplot as plt

# Locals
import oggm.cfg as cfg
from oggm import utils, workflow, tasks, DEFAULT_BASE_URL
from oggm.shop import gcm_climate
Downloading salem-sample-data...

Accessing the pre-processed directories including spinup runs#

Let’s focus on our usual glacier: Hintereisferner.

# Initialize OGGM and set up the default run parameters
cfg.initialize(logging_level='WARNING')

# Local working directory (where OGGM will write its output)
cfg.PATHS['working_dir'] = utils.gettempdir('OGGM_gcm_run', reset=True)

# RGI glacier 
rgi_ids = 'RGI60-11.00897'
2024-02-02 16:56:24: oggm.cfg: Reading default parameters from the OGGM `params.cfg` configuration file.
2024-02-02 16:56:24: oggm.cfg: Multiprocessing switched OFF according to the parameter file.
2024-02-02 16:56:24: oggm.cfg: Multiprocessing: using all available processors (N=4)

To fetch the preprocessed directories including spinup, we have to tell OGGM where to find them. The default URL contains the runs with spinup:

gdirs = workflow.init_glacier_directories(rgi_ids, from_prepro_level=5, prepro_base_url=DEFAULT_BASE_URL)
2024-02-02 16:56:29: oggm.workflow: init_glacier_directories from prepro level 5 on 1 glaciers.
2024-02-02 16:56:29: oggm.workflow: Execute entity tasks [gdir_from_prepro] on 1 glaciers

A new workflow including a recalibration#

These directories are very similar to the “old” ones (same input data, same baseline climate…). But in addition, they include a new historical simulation run with a dynamic spinup. Let’s open it and compare it to the old historical run without a spinup:

# open the new historical run including a dynamic spinup
ds_spinup = utils.compile_run_output(gdirs, input_filesuffix='_spinup_historical')

# open the old historical run without a spinup
ds_historical = utils.compile_run_output(gdirs, input_filesuffix='_historical')

# compare area and volume evolution
f, (ax1, ax2) = plt.subplots(1, 2, figsize=(14, 4))

# Area
ds_spinup.area.plot(ax=ax1, label='dynamic spinup')
ds_historical.area.plot(ax=ax1, label='no spinup')
ax1.set_title('Area [m2]')

# Volume
ds_spinup.volume.plot(ax=ax2, label='dynamic spinup')
ds_historical.volume.plot(ax=ax2, label='no spinup')
ax2.set_title('Volume [m3]')

plt.legend();
2024-02-02 16:56:29: oggm.utils: Applying global task compile_run_output on 1 glaciers
2024-02-02 16:56:29: oggm.utils: Applying compile_run_output on 1 gdirs.
2024-02-02 16:56:29: oggm.utils: Applying global task compile_run_output on 1 glaciers
2024-02-02 16:56:29: oggm.utils: Applying compile_run_output on 1 gdirs.
../../_images/0525383eff2f0fa0542bd67a17384bb9c8d284831b3b684765f99a18bb939580.png

Let’s have a look at what happens here.

Dynamic spinup run extends further back in time#

The first thing to notice is that the new dynamic spinup run extends further back in time, starting in 1979 compared to 2003 (the RGI date for this glacier).

gdirs[0].rgi_date
2003

We achieve this by searching for a glacier state in 1979 which evolves to match the area at the RGI date. Therefore, you can see that the areas around the RGI date (2003) are very close.

However, the volumes show some difference around the RGI date, as we did not attempt to match the volume. The current workflow can match area OR volume and, by default, we decided to match area as it is a direct observation (from the RGI outlines), in contrast to a model guess for the volume (e.g. Farinotti et al. 2019).

Dynamical spinup also uses a dynamically recalibrated melt factor melt_f#

The second big difference is not directly visible, but during the dynamic spinup, we check that the dynamically modelled geodetic mass balance fits the given observations from Hugonnet et al. (2021). To achieve this, we use the melt_f of the mass balance as a tuning variable.

We need this step because the initial mass balance model calibration (see this tutorial) assumes constant glacier surface geometry, as defined by the RGI outline. However, the observed geodetic mass balance also contains surface geometry changes, which we only can consider during a dynamic model run.

Let’s check that the dynamically calibrated geodetic mass balance fits the given observations:

gdir = gdirs[0]

# period of geodetic mass balance
ref_period = cfg.PARAMS['geodetic_mb_period']

# open the observation with uncertainty
df_ref_dmdtda = utils.get_geodetic_mb_dataframe().loc[gdir.rgi_id]  # get the data from Hugonnet et al., 2021
df_ref_dmdtda = df_ref_dmdtda.loc[df_ref_dmdtda['period'] == ref_period]  # only select the desired period
dmdtda_reference = df_ref_dmdtda['dmdtda'].values[0] * 1000  # get the reference dmdtda and convert into kg m-2 yr-1
dmdtda_reference_error = df_ref_dmdtda['err_dmdtda'].values[0] * 1000  # corresponding uncertainty

# calculate dynamic geodetic mass balance
def get_dmdtda(ds):
    yr0_ref_mb, yr1_ref_mb = ref_period.split('_')
    yr0_ref_mb = int(yr0_ref_mb.split('-')[0])
    yr1_ref_mb = int(yr1_ref_mb.split('-')[0])

    return ((ds.volume.loc[yr1_ref_mb].values[0] -
             ds.volume.loc[yr0_ref_mb].values[0]) /
            gdir.rgi_area_m2 /
            (yr1_ref_mb - yr0_ref_mb) *
            cfg.PARAMS['ice_density'])

print(f'Reference dmdtda 2000 to 2020 (Hugonnet 2021): {dmdtda_reference:.2f} +/- {dmdtda_reference_error:6.2f} kg m-2 yr-1')
print(f'Dynamic spinup dmdtda 2000 to 2020:            {float(get_dmdtda(ds_spinup)):.2f}            kg m-2 yr-1')
print(f"Dynamically calibrated melt_f:                 {gdir.read_json('mb_calib')['melt_f']:.1f}                 kg m-2 day-1 °C-1")
Reference dmdtda 2000 to 2020 (Hugonnet 2021): -1100.30 +/- 171.80 kg m-2 yr-1
Dynamic spinup dmdtda 2000 to 2020:            -1130.19            kg m-2 yr-1
Dynamically calibrated melt_f:                 4.9                 kg m-2 day-1 °C-1

This fits quite well! The default in OGGM is to try to match the observations within 20% of the reported error by Hugonnet et al. (2021). This is a model option, and can be changed at wish.

Dynamical spinup addresses “initial shock” problems#

This is not really visible in the plots above, but the “old” method of initialisation in OGGM had another issue. It assumed dynamical steady state at the begining of the simulation (the RGI date), which was required by the bed inversion process. This could lead to artifacts (mainly in the glacier length and area, as well as velocities) during the first few years of the simulation. The dynamical spinup addresses this issue by starting the simulation in 1980.

One of the way to see the importance of the spinup is to have a look at glacier velocities. Let’s plot glacier volocities along the flowline in the year 2005 (the first year we have velocities from both the dynamical spinup, and without the spinup (“cold start” from an equilibrium):

f = gdir.get_filepath('fl_diagnostics', filesuffix='_historical')
with xr.open_dataset(f, group=f'fl_0') as dg:
    dgno = dg.load()
f = gdir.get_filepath('fl_diagnostics', filesuffix='_spinup_historical')
with xr.open_dataset(f, group=f'fl_0') as dg:
    dgspin = dg.load()

year = 2005
dgno.ice_velocity_myr.sel(time=year).plot(label='No spinup');
dgspin.ice_velocity_myr.sel(time=year).plot(label='With spinup');
plt.title(f'Velocity along the flowline at year {year}'); plt.legend();
../../_images/fc96fb0180fd80d0f506e742f42d74ee95a8375bf950120af42034f5ee634ad8.png

Ice velocities in the spinup case are considerably lower because they take into account the current retreat and past history of the glacier, while the blue line is the velocity of a glacier just getting out of steady state.

Using the dynamic spinup in your workflow#

We recommend that you use the provided preprocessed directories for your analysis. However, if you want to learn more about how the dynamic spinup works in detail or if you plan to use it in your workflow, maybe with different data, you should check out the more comprehensive tutorial: Dynamic spinup and dynamic melt_f calibration for past simulations. And do not hesitate to reach out if you have any questions!

What’s next?#