-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGR_PRICE_TECH.inc
30 lines (29 loc) · 8.92 KB
/
GR_PRICE_TECH.inc
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
* -----------------------------------------------------
* XLS2GMS Version 1.5, August 2002
* Erwin Kalvelagen, GAMS Development Corp.
* -----------------------------------------------------
* Application: Microsoft Excel
* Version: 16.0
* Workbook: \\nmbu.no\my\home\Documents\Prosjekter\Flex4RES\taxes\Grid_rent_data.xlsx
* Sheet: 4
* Range: $A$1:$P$19
* -----------------------------------------------------
TABLE GR_PRICE_TECH(CCC,GRDATASET)
GRDSUBS GRDECW GRDECS GRDTOU1 GRDTOU2 GRDTOU3 GRDTOU4 GRDDCW GRDDCS GRDDC2 GRDDCTOU GRDDCY
*** description Subscribed Power Energy charge winter ** Energy charge summer TOU energy charge 1 TOU energy charge 2 TOU energy charge 3 TOU energy charge 4 Demand charge winter ** Demand charge summer Demand charge 2 Demand charge TOU Demand charge with yearly calculation
*** unit €/kW €/MWh €/MWh €/MWh €/MWh €/MWh €/MWh €/kW-peak/month €/kW-peak/month €/kW-peak/month €/kW-peak/month €/kW-peak/year Source:
DENMARK 0.032907 23.34 !! Lucien data collection
ESTONIA 2.0521 9.6 34.2 !! https://www.elektrilevi.ee/-/doc/6305157/kliendile/el_hinnakiri_vorguteenused_01112017_est.pdf
FINLAND 0.3524 11.7 8.7 8.7 2.2 !! Average of Helsinki, Oulo and Turku tariff
LATVIA 0 21.29 19.56 !! Daniel and Eli data collection
LITHUANIA 0 19 6.96 !! Daniel and Eli data collection
NORWAY 0.2282 6.4 34.18 !! https://www.nve.no/reguleringsmyndigheten-for-energi-rme-marked-og-monopol/nettjenester/nettleie/nettleiestatistikk/nettleiestatistikk-for-naeringskunder/
SWEDEN 33.2558 2.69 !! https://www.ei.se/sv/Publikationer/Arsrapporter/elnatsforetag-arsrapporter/
GERMANY 0.00112137023333333 11.6075 !! Average of Nordic countries
;
* it assumed that an average P2H connection is 10 MW, therefore the fixed component is divided by 10 to get the price per MW
** for the whole year if no entered value for summer
GR_PRICE_TECH('NETHERLANDS',GRDATASET) = GR_PRICE_TECH('GERMANY',GRDATASET);
GR_PRICE_TECH('UNITED_KINGDOM',GRDATASET) = GR_PRICE_TECH('GERMANY',GRDATASET);
GR_PRICE_TECH('POLAND',GRDATASET) = GR_PRICE_TECH('GERMANY',GRDATASET);
* -----------------------------------------------------