-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from EcoExtreML/move_equation
Move equations to right folder
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
function calcLambda(VPER, POR, Lamda_soc, XSOC) | ||
%{ | ||
Calculate soil hydraulic properties according to equation 6c in | ||
Zheng, D., van der Velde, R., Su, Z., Wang, X., Wen, J., Booij, M. J., | ||
Hoekstra, A. Y., and Chen, Y.: Augmentations to the Noah model physics | ||
for application to the Yellow River source area. Part I: Soil water | ||
flow, Journal of Hydrometeorology, 16, 2659-2676, | ||
https://doi.org/10.1175/JHM-D-14-0198.1, 2015 | ||
%} | ||
|
||
Lamda = (2.91 + 0.159 * VPER / (1 - POR) * 100); | ||
Lamda = 1 / (Lamda * (1 - XSOC) + XSOC * Lamda_soc); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
function Phi_s = calcPhi_s(VPER, POR, Phi_soc, XSOC) | ||
%{ | ||
Calculate soil hydraulic properties according to equation 6b in | ||
Zheng, D., van der Velde, R., Su, Z., Wang, X., Wen, J., Booij, M. J., | ||
Hoekstra, A. Y., and Chen, Y.: Augmentations to the Noah model physics | ||
for application to the Yellow River source area. Part I: Soil water | ||
flow, Journal of Hydrometeorology, 16, 2659-2676, | ||
https://doi.org/10.1175/JHM-D-14-0198.1, 2015 | ||
%} | ||
|
||
Phi_s = -0.01 * 10^(1.88 - 0.0131 * VPER / (1 - POR) * 100); | ||
Phi_s = (Phi_s * (1 - XSOC) + XSOC * Phi_soc) * 100; | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters