Skip to content

Commit d1780e0

Browse files
committed
add sections on advanced portions
1 parent e7b6c25 commit d1780e0

7 files changed

+970
-13
lines changed

20-advance-intro.Rmd

+1-13
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,4 @@
44

55
```{r, include=FALSE}
66
source("_common.R", local = knitr::knit_global())
7-
```
8-
9-
# Sensitivity analysis
10-
11-
William of Occam to seek an economical description of natural phenomena and
12-
avoid excessive models that are overparameterized. Principal of Parisimony.
13-
14-
# Optimization
15-
16-
# Calibration
17-
18-
Taking reference to the quotation of statistician George Box that "All models
19-
are wrong, but some are useful"
7+
```

21-optimization.Rmd

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Design optimization
2+
3+
```{r, include=FALSE}
4+
source("_common.R", local = knitr::knit_global())
5+
```

22-sensitivity.Rmd

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Sensitivity analysis
2+
3+
```{r, include=FALSE}
4+
source("_common.R", local = knitr::knit_global())
5+
```
6+
7+
## Prerequisites
8+
9+
In this chapter, we will use the `{sensitivity}`, `{eplusr}`, and `{tidyverse}` package. The sensitivity package is designed to also work with an external computational code such as EnergyPlus. This is achieved by decoupling the energy simulations from the estimation of the sensitivity measures. We leverage the management of parametric simulations in the eplusr package to parse/extract the parameters/responses need for the sensitivity analysis. Functions from the tidyverse package is used for data transformation and visualization.
10+
11+
```{r, message=FALSE}
12+
library(sensitivity)
13+
library(eplusr)
14+
library(tidyverse)
15+
library(here)
16+
```
17+
18+
We will be working with the IDF and EPW file that pertains to the U.S. Department of Energy (DOE) Commercial Reference Building and Chicago's TMY3 respectively.
19+
20+
```{r, message=FALSE}
21+
path_idf <- here("data", "idf", "RefBldgMediumOfficeNew2004_Chicago.idf")
22+
model <- read_idf(path_idf)
23+
24+
path_epw <- here("data", "epw", "USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw")
25+
epw <- read_epw(path_epw)
26+
```
27+
28+
## Overview
29+
30+
Sensitivity analysis (SA) investigates how variations in the output of a model can be allocated to variations in different model input factors. Put differently, SA allow energy modelers to learn how sensitive models outputs are to changes in input factors. Consequently, SA plays an important role in building energy simulation (BES) applications that involve identifying important parameters, uncertainty analysis, model calibration, and robust decision making.
31+
32+
In general, SA can be categorized as local or global. Local SA considers the output sensitivity against variations of a single input factor, while global SA considers variations with regard to the entire space of the input factors.
33+
34+
## Local versus global sensitivity analysis
35+
36+
Local sensitivity analysis considers
37+
Local sensitivity analysis, also known as differential sensitivity analysis belongs to a class of One-at-A-Time (OAT) methods where the input factors are perturbed
38+
39+
## Global sensitivity analysis
40+
### Screening methods
41+
42+
Screening methods are popular in building energy simulation (BES) applications
43+
due to their low computation cost compared to other global sensitivity analysis
44+
methods. Morris method
45+
46+
47+

23-calibration.Rmd

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Model calibration
2+
3+
```{r, include=FALSE}
4+
source("_common.R", local = knitr::knit_global())
5+
```

0 commit comments

Comments
 (0)