-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables
110 lines (87 loc) · 1.39 KB
/
variables
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Demand
population = 50000000;
demand_per_capita = 5;
// Simulation period
startYear
endYear
resolution = 1;
// Differential Evolution
mutations = 0.5;
recombination = 0.3;
popsize = 10;
iterations = 2000;
// Scenarios
solarOn = true;
windOn = true;
batteriesOn = true;
phesOn = true;
nuclearOn = true;
fossilOn = false;
hydrogenOn = true;
hydroOn = true;
bioOn = true;
interOn = true;
demandManageOn = true;
networkName = "NEM";
// Reliability
reliabilityPercent = 0.002; // Percentage (%) of annual demand that may not be met
// Constraints
hydroAnnualGen
bioAnnualGen
fossilAnnualGen
hydrogenAnnualGen
interAnnualImports
// Storage round-trip efficiency
phesEff = 0.8;
batteryEff = 0.9;
// Transmission losses
hvdcLossFactor = 0.03;
hvacLossFactor = 0.07;
// Costs
demandManageCost = 200;
hydroLCOE = 50;
bioLCOE = 100;
fossilLCOE = 100;
interLCOE = 50;
solarCAPEX =
solarFOM =
solarVOM =
solarLifetime =
solarDiscountRate
windCAPEX =
windFOM
windVOM
windLifetime
windDiscountRate
phesCAPEX_P
phesCAPEX_E
phesFOM
phesVOM
phesPOM
phesPOM_period
phesLifetime
phesDiscountRate
batteryCAPEX_P
batteryCAPEX_E
batteryFOM
batteryVOM
batteryLifetime
batteryDiscountRate
hydrogenCAPEX
hydrogenFOM
hydrogenVOM
hydrogenFuel
hydrogenLifetime
hydrogenDiscountRate
hvdcCAPEX
hvdcFOM
hvdcLifetime
hvacCAPEX
hvacFOM
hvacLifetime
subseaCAPEX
subseaFOM
subseaLifetime
converterCAPEX
converterFOM
converterLifetime