Subducting slab adding a segment

Subducting slab adding a segment#

Although our slabs can now bend, real slabs actually can bend many times in many different ways. The way this is parameterized for faults and slab in the world builder is through dividing the slab into in multiple segments. In other words, a segment is a downwards section of a slab or a fault. Each segment can have their own parameters and models attached to it.

So how do we achieve this? We just add a second object to the segments line. Usually you will want to make sure that the end of one segment has the same angle and thickness as the beginning of the next segment. So in this case we end the first segment with an angle of 60 degrees and begin the second segment also with an angle of 60 degrees.

43    { 
44      "model":"subducting plate", "name":"Slab", "dip point":[0,0],
45      "coordinates":[[1500e3,1000e3],[1600e3,350e3],[1500e3,0]],
46      "segments":
47        [
48          {"length":300e3, "thickness":[100e3], "angle":[0,60]},
49          {"length":500e3, "thickness":[100e3], "angle":[60,20]}
50        ],
51      "temperature models":[{"model":"plate model", "density":3300, "plate velocity":0.02}],
52      "composition models":[{"model":"uniform", "compositions":[2]}]
BST_13_subducting_slab_adding_a_segment.wb
BST_13_subducting_slab_adding_a_segment.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":
47        [
48          {"length":300e3, "thickness":[100e3], "angle":[0,60]},
49          {"length":500e3, "thickness":[100e3], "angle":[60,20]}
50        ],
51      "temperature models":[{"model":"plate model", "density":3300, "plate velocity":0.02}],
52      "composition models":[{"model":"uniform", "compositions":[2]}]
53    }
54  ]
55}
BST_13_subducting_slab_adding_a_segment.wb
BST_13_subducting_slab_adding_a_segment.grid
Paraview v3 state file
Basic Starter Tutorial section 13.

Basic Starter Tutorial section 13. 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 bottom part shows the temperature as seen slightly from below where only temperatures between 300K and 1600K are shown.#