Skip to content

Commit

Permalink
* nemo/scenarios.py (_pumped_hydro): Clean up NSW capacity.
Browse files Browse the repository at this point in the history
  • Loading branch information
bje- committed Feb 16, 2024
1 parent 9c8eead commit df2d471
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions nemo/scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@ def _pumped_hydro():
psh17turb = PumpedHydroTurbine(17, 500, psh17stg,
label='poly 17 PSH generator')

# NSW: Tumut 3 (6x250), Bendeela (2x80) and Kangaroo Valley (2x40)
psh36stg = PumpedHydroStorage(15000, label='Tumut 3 storage')
psh36pump = PumpedHydroPump(36, 600, psh36stg, label='Tumut 3 pump')
psh36turb = PumpedHydroTurbine(36, 1800, psh36stg,
label='Tumut 3 generator')
# NSW: Tumut 3, Bendeela (2x80 MW) and Kangaroo Valley (2x40 MW)
# Tumut 3 is 600 MW pumping and 1800 MW generating
psh36stg = PumpedHydroStorage(15000, label='poly 36 pumped storage')
psh36pump = PumpedHydroPump(36, 600 + 160 + 80, psh36stg,
label='poly 36 PSH pump')
psh36turb = PumpedHydroTurbine(36, 1800 + 160 + 80, psh36stg,
label='poly 36 PSH generator')

return [psh17pump, psh36pump, psh17turb, psh36turb]

Expand Down

0 comments on commit df2d471

Please sign in to comment.