-
Hello everyone, I was trying to compute ET with this module and synop data in France and comparing methods (Turc, Hargreaves, Penman-Monteith, FAO56). Looking at the code, I saw that the equation used is :
In this Actually, aren't I mean, not in Not quite sure if it's an issue or if I am missing something in my use of this module, so I am posting this question here... Thanks in advance for your answers. Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Dear Adrien, nn (maximum possible duration of sunshine) is now computed via Eq. 34 as in Allen et al. (1998), Thanks again! |
Beta Was this translation helpful? Give feedback.
Dear Adrien,
Thank you very much for raising this issue, and welcome to pyet discussions.
Everything you wrote is correct. There was an error in the code.
I did not test/check this function - I actually also was not using it, as I did not have data on sunshine duration.
nn (maximum possible duration of sunshine) is now computed via Eq. 34 as in Allen et al. (1998),
whereas n (duration of sunshine) is now a positional argument (must be provided).
According to example 10 on p. 50 in Allen et al. (1998), I also added a test for this function.
I corrected/added the function and test in the dev branch. If you have time, you can check.
I will then merge it with the master branch.
Thanks again!
…