Tectonic forcing

Note

These forcing are user defined and could be either lithospheric or mantle induced but gospl does not know which underlying process is inducing these changes and does not account for sediments and crust compression.

Uplift & subsidence

In the most simple case of vertical-only displacements (i.e. uplift or subsidence), the model requires the declaration of successive events using start, end times and the tectonic rates map mapV (in metres per year). This map is defined prior to the model run for gospl spherical mesh as a numpy zip array.

During the model run and for each time step, the prescribed rates are applied on all vertices of all partition by increasing or decreasing their elevation values following imposed local subsidence or uplift rates.

For particular experiments, where gospl is ran in forcing paleo-topography mode and for specified time intervals, simulated elevations are compared with user defined paleo-topography ones. The differences are then converted as a vertical displacement field. Then the simulation is reinitialised to the previous comparison time and reran forward adding this new vertical displacements field to the one already existing for this previous timeframe. This approach allows to force the model with available paleo-topographies while allowing erosion, deposition and hillslope processes to act upon the surface based on the changing tectonic conditions.

Horizontal advection

The second, more complex, option consists in adding horizontal displacements (mapH). In this case, the user has to defined for each point of the grid the associated spherical velocities (represented by displacement fields in both X,Y and Z coordinates) and advection is performed using a semi-lagrangian scheme.

Considering the spatial resolution of gospl mesh (above 5 km), the horizontal advection often corresponds to plate motions and can be obtained from plate-tectonic reconstruction software.

Warning

Compared to vertical displacements applied at each time step, the horizontal advection is only performed at specific intervals (of the order of several thousands to millions years) specified in the gospl input file by the tec parameter in the time section.

../_images/tecto.png

Fig. 6 Illustration of interpolation between mesh vertices induced by horizontal velocities based on a semi-lagrangian scheme.

Due to tectonic advection, the density of the surface nodes evolves over time, which leads to areas showing rarefaction or accumulation of nodes. In order for the finite volume schema to remain accurate, local addition and deletion of nodes and remeshing of the triangulated spherical surface are therefore required. However, the remeshing process is computationally expensive and requires to rebuild not only the delaunay mesh but also the associated voronoi one and to redistribute, balance the mesh and its vertices parameters with PETSc.

Two options are proposed to deal with vertices advection in gospl.

In the first one and to avoid remeshing, the initial mesh is assumed to remain fixed and the advected points are then used to interpolate the advected nodes informations (elevation, erosion, deposition, stratigraphic information…) onto the fixed ones using an inverse weighting distance approach and SciPy cKDTree. The number of points used for the interpolation is defined by the user in the input file (interp field). An example based on this option is provided in the User Guide - backward forward example. In this version, a unique number of points is given for the interpolation but we plan to make it spatially varying to avoid over-smoothing node parameters in specific regions (such as subduction zones).

The second option is much slower as it involves creating a completely new mesh every time the horizontal advection is applied. This new mesh is then used to perform the interpolation strategy presented above. Disregarding the chosen method, the interpolation will always smooth the nodes parameters. This second option however allows to use unstructured spherical mesh with refined regions that will retain their resolution as the plates motion is applied. In its current form gospl uses JIGSAW to perform the refinement based on elevation range. We chose an elevation-based refinement approach with higher resolutions on the terrestrial and shelf domain as our focus is on rivers network, drainage basin reorganisation and deltaic systems representation. An example of the approach used in this case is provided in the User Guide Remeshing Workflow section.

For regions of diverging or converging lateral movement, the elevation and stratigraphic information are first interpolated based on previous time step, and then uplift and subsidence are applied. In this sense the vertical and horizontal movement of the surface is performed kinematically at each time step, and subsequent erosion and deposition occuring on the modified surface lead to an update in elevation and stratigraphy information.

Note

Additional constrained for mesh refinement can be set if needed. As an example, one can use the horizontal velocity field magnitude as a parameter for refinement and create meshes with higher resolutions for regions with higher magnitudes in order to better represent the deformation in these areas.