dampfdruck2:

View source: R/esqc_Wet_Bulb_Calculator.R


dampfdruck2R Documentation

dampfdruck2

Usage

dampfdruck2(Ta, RH)

Arguments

Ta
RH

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (Ta, RH) 
{
    if (Ta > 0) {
        Dampfd2 = RH * SVPwater(Ta)
    }
    else {
        Dampfd2 = RH * SVPice(Ta)
    }
    return(Dampfd2)
  }

EURAC-Ecohydro/SnowSeasonAnalysis documentation built on Dec. 2, 2024, 6:43 a.m.