pmv: Predicted Mean Vote

Description Usage Arguments Details Value References Examples

View source: R/pmv.R

Description

Computes Fanger's predicted mean vote

Usage

1
pmv(clo, met, air.temp, saturation)

Arguments

clo

Thermal insulation of clothing in [clo] (underwear, blouse/shirt, slacks/trousers, jacket, socks and shoes are approximately 1 clo)

met

Physical activity in [met] (one person seated at rest is approximately 1 met)

air.temp

Indoor air temperature (assumed equal to mean radiant temperature) in [C]

saturation

Ratio of moisture content to moisture content of saturated air at the same temperature, in [%] (approximately the same thing as relative humidity)

Details

Compute the predicted mean vote for one or more combinations of clo, met, air temperature and moisture saturation. The inputs arguments can be scalars or vectors.

Value

The predicted mean vote, a value between -3 (cold) to +3 (hot)

References

CIBSE Guide A, section 1.4 and 1.A1.2 (from which this implementation is derived)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# With scalars
pmv(clo=1.0,
    met=1.2,
    air.temp=19,
    saturation=40)
# With vectors
pmv(clo=c(1.0, 1.5),
    met=c(1.2, 0.6),
    air.temp=c(19, 30),
    sat=c(35, 40))

neurobat/homeR documentation built on May 23, 2019, 1:43 p.m.