View source: R/esqc_Wet_Bulb_Calculator.R
Dampfdrucksprung | R Documentation |
Dampfdrucksprung(Ta, Tf, lambda)
Ta |
|
Tf |
|
lambda |
##---- 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, Tf, lambda)
{
if (Ta > 0) {
Dampfdsprung = SVPwater(Tf) - lambda * (Ta - Tf)
}
else {
Dampfdsprung = SVPice(Tf) - lambda * (Ta - Tf)
}
return(Dampfdsprung)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.