forked from kunlz/SiTHv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterception.m
40 lines (34 loc) · 1.12 KB
/
interception.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
% -------------------------- %
% Interception evaporation %
% -------------------------- %
function [Ei,wetT,Pe] = interception(pEc,LAI,Rain,pftpar)
% ------- function input -------
% pEc : potnetial Evaporation on canopy
% Rain :
% LAI : Leaf area index
% PFTpar : PFT parameters
% ------- function output ------
% Ei : Interception envaporation, mm/day
% wet : wetness fraction
% -------
% Reference:
% Choudhury BJ, Digirolamo NE, 1998, A biologisical process-based estimate
% of global land surface evaporation using satellite and ancillary data I.
% Model description and comparison with observation. Journal of Hydrology.
%
% Interception (I, mm) was calculated using Horton's model:
% I = min(P,aP+b)
% Where P = precipitation in mm
% a,b = parameters with values derived from published records
% -------------------------------------------------------------------------
% x, parameter values, used for calculating daily rainfall interception
inc = pftpar(1);
Sc = min(Rain, inc.*LAI.*Rain);
wetT = min(0.7.*Sc./pEc,1);
if pEc < 1e-3
Ei = 0;
else
Ei = pEc.*wetT;
end
Pe = Rain - Ei;
end