dampfdruck2:

Usage Arguments Examples

View source: R/esqc_Wet_Bulb_Calculator.R

Usage

1
dampfdruck2(Ta, RH)

Arguments

Ta
RH

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- 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. 6, 2020, 2:05 a.m.