1  Introduction

DYPTOP provides a solution for treating sub-grid scale topography in determining the portion of a (global) model gridcell flooded as a function of the gridcell-average water table depth. Given the mean seasonal cycle of flooding and additional criteria related the the land surface water and carbon balances, DYPTOP determines whether a peatland can establish and grow, and it simulates its dynamic lateral expansion and contraction in a non-spatially explicit manner - always as a fraction of the (global) model gridcell.

The central challenge is to describe sub-grid scale relations for a larger domain. Dynamic Global Vegetation Models (DGVMs) commonly resolve the Earth’s land surface at a spatial resolution of 10-100 km. The water and carbon balances are simulated at this coarse resolution and for each gridcell. However, relations between the surface water balance and flooding are determined by the topography. Topographical variations arise at much smaller spatial scales than the common resolution of DGVMs - at 10-1000 m. Such small scales cannot be resolved for global modelling.

The approach taken by DYPTOP is to not consider the explicit spatial distribution of flooding within a model gridcell, but just to determine the gridcell’s area fraction that is flooded (\(\Psi_x\)) as a function of the gridcell’s water table depth (\(\Gamma_x\)). \[ \Psi_x = f_x(\Gamma_x) \] In the following, we will denote quantities that are defined at the coarse model gridcell with a subscript \(x\). Above, \(f_x\) is an empirical relation, determined by a gridcell’s topography, and is thus specific for each gridcell (hence the subscript \(x\)).

Remember that the water balance is simulated at the corse model gridcell and the water table thus represents an average across the coarse gridcell, without resolving topographic effects and lateral flow. \(f_x(\Gamma_x)\)) is the central relation and is determined from information about the fine-scale topography within a coarse-scale model gridcell. The clue of the DYPTOP approach is to approximate it by a fitted curve that characterises the sub-grid scale relations without actually resolving them (\(\hat{f_x}(\Gamma_x)\)).

This approach is demonstrated in Chapter 2 for the two demo regions shown in Figure 1 and Figure 2.

1.1 Setup

Before we get started, make sure to have all required packages installed.

package_list <- c("readr", "purrr", "ncdf4", "khroma", "tidyr", "optimx", "here", "dplyr", "ggspatial", "cowplot", "rnaturalearthdata", "rnaturalearth", "sf", "ggplot2", "tidyterra", "terra")

# Check which packages are not installed
missing_packages <- setdiff(package_list, rownames(installed.packages()))

# Install only the missing packages
if (length(missing_packages) > 0) {
  install.packages(missing_packages)
} else {
  message("All packages are already installed.")
}