-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_HYLANDS.m
73 lines (68 loc) · 2.45 KB
/
example_HYLANDS.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
% Example run of HyLands Hybrid Landscape evolution model to simulate the
% impact of landslides and landslide-derived sediment
%
% =========================================================================
% Papers to cite when using HyLands:
%
% * HyLands: Campforts B., Shobe M.C., et al. : HyLands 1.0: a Hybrid
% Landscape evolution model to simulate the impact of landslides and
% landslide-derived sediment on landscape evolution. Discussion paper in
% Geoscientific Model Development,
% https://geoscientific-model-development.net
%
% * SPACE: Shobe, C. M., Tucker, G. E., & Barnhart, K. R. (2017). The SPACE 1.0
% model: a Landlab component for 2-D calculation of sediment transport,
% bedrock erosion, and landscape evolution. Geoscientific Model
% Development, 10(12), 4577–4604. https://doi.org/10.5194/gmd-10-4577-2017
%
% * TTLEM: Campforts, B., Schwanghart, W., & Govers, G. (2017).
% Accurate simulation of transient landscape evolution
% by eliminating numerical diffusion: the TTLEM 1.0 model. Earth Surface
% Dynamics, 5(1), 47–66. https://doi.org/10.5194/esurf-5-47-2017
%
% Other relevant references:
%
% * Carretier, S., Martinod, P., Reich, M., & Godderis, Y. (2016).
% Modelling sediment clasts transport during landscape evolution. Earth
% Surface Dynamics, 4(1), 237–251. https://doi.org/10.5194/esurf-4-237-2016
%
% * Densmore, A. L., Ellis, M. A., & Anderson, R. S. (1998). Landsliding
% and the evolution of normal-fault-bounded mountains. Journal of
% Geophysical Research: Solid Earth, 103(B7), 15203–15219.
% https://doi.org/10.1029/98JB00510
%
% =========================================================================
%
% Author: Benjamin Campforts ([email protected])
%
% Date: 15. March, 2020
%% Clear environment
clearvars
clc
close all
%% Run mode from existing DEM
load('DEMs\DEM_Yarlung_Mini.mat','DEM');
iniSed=GRIDobj(DEM);
T.spatial = GRIDobj(DEM);
p.TimeSpan = 100;
p.TimeStep = 10;
p.ploteach = 1;
p.FlowBC='open';
p.BC_Type='Bed_Sed_Open';
p.LS_Bed = true;
p.t_LS=5e2;
p.Sc_fixed = .8;
p = HYLANDS_set(p);
%% If resultdir does not exist; make it
if ~exist(p.resultsdir,'dir')
mkdir(p.resultsdir)
end
HYLANDS_Out = HYLANDS(DEM,T,p,'iniSed',iniSed);
%% Plot Landslide characterstics
dx2=DEM.cellsize*DEM.cellsize;
bins=logspace(1,5,15);
figure; histogram([HYLANDS_Out.LS_prop_bed_store.Size]*dx2,bins);
set(gca,'YScale','log')
set(gca,'XScale','log')
xlabel('\bfArea of landslides, m^2')
ylabel('\bfNumber of landslides (#)')