Skip to content

Commit 4a55bd7

Browse files
pesapstaadecker
authored andcommitted
Script to fix derating factor for transmission lines
1 parent 6897e2c commit 4a55bd7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
-- October 12, 2022
2+
-- Author: pesap
3+
4+
-- Reason: We detected a type in the transmission derating factor for all the transmission
5+
-- lines for the WECC model. This is the description in the switch module of what the
6+
-- transmission derate factor does: trans_derating_factor[tx in TRANSMISSION_LINES] is an
7+
-- overall derating factor for each transmission line that can reflect forced outage
8+
-- rates, stability or contingency limitations. This parameter is optional and defaults to
9+
-- 1. This parameter should be in the range of 0 to 1, being 0 a value that disables the
10+
-- line completely.
11+
-- In our scenarios we have been using 0.59 for no apparent reason and this limited the
12+
-- amount of electricity that flow throught the transmission line. The new value that we
13+
-- will use for the scenarios is 0.95 or a 5% derate.
14+
15+
16+
UPDATE switch.transmission_lines SET derating_factor = 0.95;

0 commit comments

Comments
 (0)