forked from JoostBuitink/dS2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdS2_settings_and_run.py
137 lines (123 loc) · 6.1 KB
/
dS2_settings_and_run.py
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
class ModelSettings:
def __init__(self):
# =====================================================================
# General simulation values
# =====================================================================
# Start of the simulation period (yyyy, mm, dd, hh)
self.sim_start = 2010, 1, 1, 0
# End of the simulation period, plus 1 dt (yyyy, mm, dd, hh)
self.sim_end = 2011, 1, 1, 0
# Time step [h]
self.dt = 1
# =====================================================================
# File locations
# =====================================================================
# Location of the input files
self.input_dir = "input\\"
# Location of the output folder
self.output_dir = "output\\"
# =====================================================================
# Catchment information (relative to input_dir)
# =====================================================================
# Location of (sub)basin by ID (matching info in routingInfo below), nan outside main basin [-]
self.catchment = "map_catchment.asc"
# Distance of each pixel to main outlet [m]
self.distance = "map_distance_meters.asc"
# Pickle object with 3 dictionaries: outletLoc, catchLoc, outletInfo
self.routing_info = "routingInfo.pkl"
# =====================================================================
# Forcing files (relative to input_dir)
# =====================================================================
# Numpy memmap files containing precipitation and evaporation data [mm h-1]
self.precipitation = "2010_tp.dat"
self.evaporation = "2010_etref.dat"
# Start of the forcing data (yyyy, mm, dd, hh)
self.data_start = 2010, 1, 1, 0
# End of the forcing data, plut 1 dt (yyyy, mm, dd, hh)
self.data_end = 2011, 1, 1, 0
# =====================================================================
# Initial conditions
# =====================================================================
# Initial snow storage and discharge value, can also be a NetCDF file
self.init_Sstore = 0
self.init_Qsim = 0.1
# =====================================================================
# Parameters
# =====================================================================
# Intersect of gQ function
self.alpha = -2.471
# Slope of gQ function
self.beta = 0.861
# Downward curvature of gQ function
self.gamma = -0.011
# Correction factor on evaporation [-]
self.eps = 0.89
# Average flow speed for routing [m s-1]
self.tau = 2
# =====================================================================
# Model options and settings
# =====================================================================
# Option to include snow processes in model
self.SnowProcesses = True
# Numpy memmap file containing temperature [deg C]
self.temperature = "2010_t2m.dat"
# Numpy memmap file containing radiation [W m-2]
self.radiation = "2010_ssrd.dat"
# Critical temperature for snowfall and snowmelt [deg C]
self.crit_temp = 0
# Degree day factor for snowmelt [mm day-1 deg C-1]
self.ddf = 2.00
# Radiation day factor for snowmelt [mm day-1 (W/m2)-1]
self.rdf = 0.26
# Option to include evaporation reduction
self.EvapReduction = True
# Threshold below which no evaporation is allowed to occur
self.Q_threshold = 1e-4
# =====================================================================
# Reporting options
# =====================================================================
# Define which variables need to be stored as output, Qsim will always be stored as output
self.output_Qsim = True
self.output_Sstore = False # Only when SnowProcesses = True
self.output_Smelt = False # Only when SnowProcesses = True
self.output_watbal = False
# =====================================================================
# Numerics and stability settings
# =====================================================================
# Define approx maximum memory size that dS2 is allowed to use [MB]
self.max_RAM = 1024
# Size of a single value in the memmap files: float32: 4, float64: 8 [bytes]
self.size_one_value = 4
# Q_t is not allowed to be smaller than Q_t-1 * LB
self.LB = 1e-3
# Maximum allowed difference between gQ_t and gQ_t-1
self.max_gQ_diff = 2
# Factor controlling how the time step is reduced
self.dt_reduction = 0.15
# Minimum extra internal time steps
self.min_extra_dt = 5
# Maximum extra internal time steps
self.max_extra_dt = 50
if __name__ == "__main__":
import matplotlib.pyplot as plt
from dS2_model import dS2
# Read model settings
Settings = ModelSettings()
# Setup model
model = dS2()
model.model_setup_class(Settings)
# Change model parameters using the functions below, or modify them in the settings.cfg file
model.change_param("alpha", -3.471)
model.change_param("beta", 0.561)
model.change_param("gamma", -0.11)
model.change_param("eps", 1.5)
model.change_param("tau", 1.5)
# Run model and rout water
model.generate_runoff(progress=True)
model.routing()
Qsim = model.Qrout["1.0"][:len(model.sim_period)]
# Plot results
fig = plt.figure("Compare discharge", clear=True, tight_layout=True)
ax = fig.subplots(1)
ax.plot(Qsim, label="Simulated")
ax.legend()