pvlib.atmosphere.gueymard94_pw#
- pvlib.atmosphere.gueymard94_pw(temp_air, relative_humidity)[source]#
- Calculates precipitable water (cm) from ambient air temperature (C) and relatively humidity (%) using an empirical model. The accuracy of this method is approximately 20% for moderate PW (1-3 cm) and less accurate otherwise. - The model was developed by expanding Eq. 1 in [2]: \[Pw = 0.1 H_v \rho_v\]- using Eq. 2 in [2] \[\rho_v = 216.7 R_H e_s /T\]- \(Pw\) is the precipitable water (cm), \(H_v\) is the apparent water vapor scale height (km) and \(\rho_v\) is the surface water vapor density (g/m^3). . The expression for \(H_v\) is Eq. 4 in [2]: \[H_v = 0.4976 + 1.5265 \frac{T}{273.15} + \exp \left(13.6897 \frac{T}{273.15} - 14.9188 \left( \frac{T}{273.15} \right)^3 \right)\]- In the expression for \(\rho_v\), \(e_s\) is the saturation water vapor pressure (millibar). The expression for \(e_s\) is Eq. 1 in [3] \[e_s = \exp \left(22.330 - 49.140 \frac{100}{T} - 10.922 \left(\frac{100}{T}\right)^2 - 0.39015 \frac{T}{100} \right)\]- Parameters:
- temp_air (numeric) – ambient air temperature \(T\) at the surface. [C] 
- relative_humidity (numeric) – relative humidity \(R_H\) at the surface. [%] 
 
- Returns:
- pw (numeric) – precipitable water. [cm] 
 - References 
 
    
  
  
