bayes_job() takes an IDF and EPW as input, and returns an BayesCalibJob
object for conducting Bayesian calibration on an EnergyPlus model. For more
details, please see BayesCalibJob.
bayes_job(idf, epw)
| idf | A path to an local EnergyPlus IDF file or an |
|---|---|
| epw | A path to an local EnergyPlus EPW file or an |
An BayesCalibJob object.
sensi_job() for creating a sensitivity analysis job.
Hongyuan Jia
# \dontrun{ if (eplusr::is_avail_eplus(8.8)) { idf_name <- "1ZoneUncontrolled.idf" epw_name <- "USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw" idf_path <- file.path(eplusr::eplus_config(8.8)$dir, "ExampleFiles", idf_name) epw_path <- file.path(eplusr::eplus_config(8.8)$dir, "WeatherData", epw_name) # create from local files bayes_job(idf_path, epw_path) # create from an Idf and an Epw object bayes_job(read_idf(idf_path), read_epw(epw_path)) }#> Error in read_epw(epw_path): could not find function "read_epw"# }