cold_mileage {vein} | R Documentation |
Fraction of mileage driven with a cold engine or catalizer below normal temperature
Description
This function depends length of trip and on ambient temperature. From the guidelines EMEP/EEA air pollutant emission inventory guidebook http://www.eea.europa.eu/themes/air/emep-eea-air-pollutant-emission-inventory-guidebook
Usage
cold_mileage(ltrip, ta)
Arguments
ltrip |
Numeric; Length of trip. It must be in 'units' km. |
ta |
Numeric or data.frame; average monthly temperature Celsius. It if is a data.frame, it is convenient that each column is each month. |
Note
This function is set so that values varies between 0 and 1.
Examples
## Not run:
lkm <- units::set_units(1:10, km)
ta <- celsius(matrix(0:9, ncol = 12, nrow = 10))
a <- cold_mileage(lkm, ta)
colplot(a)
## End(Not run)
[Package vein version 1.1.3 Index]