Learn R Programming

comf (version 0.1.9)

dfISO7730AppE: Adjusted data from Appendix E of ISO 7730

Description

Callibration data for PMV/PPD model from ISO 7730 Appendix E

Usage

data(dfISO7730AppE)

Arguments

Format

A data frame with 2963 rows on the following 6 variables.

top

a numeric vector of operative temperature [degree C]

vel

a numeric vector of indoor air velocity [m/s]

rh

a numeric vector of relative humidity [%]

met

a numeric vector of metabolic rate [MET]

clo

a numeric vector of clothing insulation level [CLO]

pmv

a numeric vector of Predicted mean vote (PMV)

References

ISO 7730 Ergonomics of the thermal environment analytical determination and interpretation of thermal comfort using calculation of the pmv and ppd indices and local thermal comfort criteria 2005.

Fanger, P. O. Thermal Comfort Analysis and Applications in Environmental Engineering McGraw-Hill, New York, 1970.

Examples

Run this code
# NOT RUN {
data(dfISO7730AppE)
head(dfISO7730AppE)

PMV <- sapply(seq(nrow(dfISO7730AppE)), function(x) { calcPMV(dfISO7730AppE$top[x], 
dfISO7730AppE$top[x], dfISO7730AppE$vel[x], dfISO7730AppE$rh[x], dfISO7730AppE$clo[x], 
dfISO7730AppE$met[x]) } ) 

plot(PMV~dfISO7730AppE$pmv)

# }

Run the code above in your browser using DataLab