woodcrafty / PyETo

Python package for calculating reference/potential evapotranspiration (ETo).
BSD 3-Clause "New" or "Revised" License
155 stars 81 forks source link

Is there any provision to calculate ET for another crops if we know the crop coefficient data? #5

Closed kothawadegs closed 7 years ago

kothawadegs commented 7 years ago

As PyETo is written for calculation of reference evapotranspiration from a hypothetical grass reference surface, the calculations for the other crops would be different. How can we compute the reference evapotranspiration from the Winter Crops, if we know the crop coefficient Kc for the respective crops?

brycejohnston commented 7 years ago

To get potential evapotranspiration you would take the crop coefficient for the particular growth stage of that crop multiplied by the reference evapotranspiration you get from the FAO equations (hypothetical grass)

PET = Kc * Ref ET

kothawadegs commented 7 years ago

@beaorn Yes, it's mentioned in FAO 56 paper. Thanks for the answer.