forked from WilcoTerink/SPHY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rootzone.py
50 lines (46 loc) · 2.28 KB
/
rootzone.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
# The Spatial Processes in HYdrology (SPHY) model:
# A spatially distributed hydrological model that calculates soil-water and
# cryosphere processes on a cell-by-cell basis.
#
# Copyright (C) 2013 Wilco Terink
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Email: [email protected] OR [email protected]
#-Authorship information-###################################################################
__author__ = "Wilco Terink"
__copyright__ = "Wilco Terink"
__license__ = "GPL"
__version__ = "2.1"
__email__ = "[email protected], [email protected]"
__date__ ='1 January 2017'
############################################################################################
#-Function to calculate rootzone runoff
def RootRunoff(pcr, rainfrac, rootwater, rootsat):
rootrunoff = pcr.ifthenelse(rainfrac > 0, pcr.max(rootwater - rootsat, 0), 0)
return rootrunoff
#-Function to calculate rootzone drainage
def RootDrainage(pcr, rootwater, rootdrain, rootfield, rootsat, drainvel, rootTT):
rootexcess = pcr.max(rootwater - rootfield, 0)
rootexcessfrac = rootexcess / (rootsat - rootfield)
rootlat = rootexcessfrac * drainvel
rootdrainage = pcr.max(pcr.min(rootwater, rootlat * (1-pcr.exp(-1/rootTT)) + rootdrain * pcr.exp(-1/rootTT)), 0)
return rootdrainage
#-Function to calculate rootzone percolation
def RootPercolation(pcr, rootwater, subwater, rootfield, rootTT, subsat):
rootexcess = pcr.max(rootwater - rootfield, 0)
rootperc = rootexcess * (1 - pcr.exp(-1 / rootTT))
rootperc = pcr.ifthenelse(subwater >= subsat, 0, pcr.min(subsat - subwater, rootperc))
rootperc = pcr.max(pcr.min(rootperc, rootwater), 0)
return rootperc