Adding basic subducting plate

Adding basic subducting plate#

Now that we have a solid understanding of how area features like oceanic plate, continental plate and mantle layer work, we can start to take a look at line features. In this case we are going to take a look at the subducting plate, but note that there is also the fault. On a fundamental level, they both function in a very similar way, with the main difference being that the slab has a slab surface and a up and down direction from that surface, while the fault has a center surface and is symmetric on both sides. The temperature and compositional models available for each may also differ.

There are five properties these line features objects require:

  1. model: The name of the model, e.g. subducting plate or fault

  2. name: Like with area features, a descriptive name to improve readability of the file.

  3. coordinates: The location of where the feature intersects with the surface. For a subducting plate, this would be the location of the trench. This is what the line in line feature refers to, these coordinates represent a line on a map view.

  4. dip point: This is often most confusing to new users, but the concept is really simple. If the slab or fault makes an angle, we need to decide what side of the line (trench for a slab) the slab or fault is dipping. There are many ways of doing this, but in GWB it is done through simply defining a point on one side of the line. The slab or fault will then dip in that direction. It is often good to choose a point far away from the trench, especially if the trench makes a lot of curves.

  5. segments: Defines the downwards part of the subducting plate (i.e. the slab) or fault. Each segment requires at least a length as a number, a thickness, which is an array of one or two numbers and an angle, which is also an array of one or two numbers. We will first show an example to get our first slab in the model before explaining further. It will hopefully be easier to understand when you see it in action in this and the next few sections.

For the example in this section, we will make a trench at the interface of two area features, where the slab is dipping with a constant angle of 60 degrees in the direction of the overriding plate. We make this slab (segment) 300 km long and give it a constant thickness of 100 km. So we set a dip point at a location on the side of the overriding plate with respect to the trench. In this case the origin (0,0) will work fine and the location is shown as the turquoise sphere in the figure below.

Note

The result will not change based on the exact location of the dip point, as long as it is on one side of all the lines formed by connecting the line features coordinate points.

43    { 
44      "model":"subducting plate", "name":"Slab", "dip point":[0,0],
45      "coordinates":[[1500e3,1000e3],[1600e3,350e3],[1500e3,0]],
46      "segments":[{"length":300e3, "thickness":[100e3], "angle":[60]}],
47      "temperature models":[{"model":"uniform", "temperature":400 }],
48      "composition models":[{"model":"uniform", "compositions":[2]}]
49    }
BST_10_adding_basic_subducting_plate.wb
BST_10_adding_basic_subducting_plate.grid
Paraview v3 state file
 1{
 2  "version": "1.0",
 3  "coordinate system":{"model":"cartesian"},
 4  "features":
 5  [
 6    {
 7       "model":"mantle layer", "name":"upper mantle", "max depth":660e3,
 8       "coordinates":[[-1000e3,0],[-1000e3,1000e3],[3000e3,1000e3],[3000e3,0]],
 9       "composition models":[{"model":"uniform", "compositions":[4]}]
10    },
11    {
12       "model":"oceanic plate", "name":"Overriding Plate", "max depth":100e3, 
13       "coordinates":[[0,0],[0,1000e3],[1500e3,1000e3],[1600e3,350e3],[1500e3,0]],
14       "temperature models":
15         [
16           {"model":"half space model", "max depth":100e3, "spreading velocity":0.04, 
17            "ridge coordinates":[[[400e3,-1],[-100e3,2000e3]]]}
18         ],
19       "composition models":[{"model":"uniform", "compositions":[0], "max depth":50e3}]
20    },
21    {
22       "model":"continental plate", "name":"Passive margin", "max depth":[[200e3]], 
23       "coordinates":[[-1000e3,0],[-1000e3,1000e3],[0,1000e3],[0,0]],
24       "temperature models":
25         [
26           {"model":"linear", "max depth":[[100e3],[200e3,[[-250e3,0],[-750e3,1000e3]]]]}
27         ],
28       "composition models":
29         [
30           {"model":"uniform", "compositions":[3], 
31            "max depth":[[100e3],[200e3,[[-250e3,0],[-750e3,1000e3]]]]},
32           {"model":"uniform", "compositions":[1], 
33            "min depth":[[100e3],[200e3,[[-250e3,0],[-750e3,1000e3]]]]}
34         ]
35    },
36    {
37      "model":"oceanic plate", "name":"Subducting Oceanic plate", "max depth":100e3, 
38      "coordinates":[[2000e3,0],[2000e3,1000e3],[1500e3,1000e3],[1600e3,350e3],[1500e3,0]],
39      "temperature models":[{"model":"linear", "max depth":100e3}],
40       "composition models":[{"model":"uniform", "compositions":[3], "max depth":50e3},
41                             {"model":"uniform", "compositions":[1], "min depth":50e3}]
42    },
43    { 
44      "model":"subducting plate", "name":"Slab", "dip point":[0,0],
45      "coordinates":[[1500e3,1000e3],[1600e3,350e3],[1500e3,0]],
46      "segments":[{"length":300e3, "thickness":[100e3], "angle":[60]}],
47      "temperature models":[{"model":"uniform", "temperature":400 }],
48      "composition models":[{"model":"uniform", "compositions":[2]}]
49    }
50  ]
51}
BST_10_adding_basic_subducting_plate.wb
BST_10_adding_basic_subducting_plate.grid
Paraview v3 state file

Todo

The explanation can be significantly improved by adding conceptual figures

Basic Starter Tutorial section 10.

Basic Starter Tutorial section 10. The top part of the figure shows where the composition as been assigned as an object. Currently it shows composition 0 as green, composition 1 as yellow, composition 2 as purple and composition 3 as blue. Composition 4 is not shown to be able to see the slab. The front half of the overriding plate (composition 1) has also been removed to be able to better view the slab. The turquoise sphere is the location of the dip point. The bottom part shows the temperature as seen slightly from below where only temperatures between 300K and 1600K are shown.#