View source: R/esqc_Wet_Bulb_Calculator.R
dampfdruck2 | R Documentation |
dampfdruck2(Ta, RH)
Ta |
|
RH |
##---- 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.