Skip to content

Commit

Permalink
Fix typo in Computation Pipeline/Normalization
Browse files Browse the repository at this point in the history
Signed-off-by: Johann Hemmann <[email protected]>
  • Loading branch information
Urhengulas authored and jawache committed Sep 28, 2023
1 parent 490df02 commit 4525fe3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/Computation Pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ Take, for example, the enriched data points from the example above, they each ha
| Timestamp | Duration | Energy | Location | Grid | Operational |
| ---------------- | -------- | ------ | -------- | ---- | ----------- |
| 2023-07-06T00:00 | 15 | 43 | west-us | 500 | 4.7 |
| 2023-07-06T05:00 | 5 | 20 | west-us | 490 | 2.9 |
| 2023-07-06T10:00 | 5 | 18 | west-us | 470 | 2.8 |
| 2023-07-06T15:00 | 5 | 20 | west-us | 490 | 2.9 |
| 2023-07-06T25:00 | 5 | 18 | west-us | 470 | 2.8 |
If we had decided to bucket the output impacts in 5 mins increments, we would specify an impact duration of 5 mins. This phase determines how to normalize the buckets to 5 min durations.
Expand All @@ -175,6 +175,7 @@ This effectively boils down to a choice of what weighting to use. The simplest w
| 2023-07-06T05:00 | 5 | 14.3 | west-us | 500 | 1.57 |
| 2023-07-06T10:00 | 5 | 14.3 | west-us | 500 | 1.57 |
| 2023-07-06T15:00 | 5 | 20 | west-us | 490 | 2.9 |
| 2023-07-06T20:00 | 5 | 0 | west-us | 0 | 0 |
| 2023-07-06T25:00 | 5 | 18 | west-us | 470 | 2.8 |
This would translate to YAML like so:
Expand Down

0 comments on commit 4525fe3

Please sign in to comment.