!$Author: joelevin $ !$Date: 2011-03-24 11:33:26 -0500 (Thu, 24 Mar 2011) $ !$Revision: 11724 $ !$HeadURL: https://svn.weru.ksu.edu/weru/weps1/trunk/weps.src/src/lib_hydro/satvappres.for $ real function satvappres( airtemp ) ! returns the saturated vapor pressure for water (kPa) ! Approximation from Jensen ASCE manual 70 evapotranspiration ! valid in normal climatic condition range real airtemp ! airtemp - the temperature of the air (C) real c1, c2, c3 ! c1, c2, c3 - coefficients for saturated equation parameter (c1 = 0.611, c2 = 17.27, c3 = 237.3) satvappres = c1 * exp( c2 * airtemp/( airtemp + c3 ) ) return end