Skip to content

Commit

Permalink
Merge pull request #56 from NREL-Sienna/jd/change_storage
Browse files Browse the repository at this point in the history
Jd/change storage
  • Loading branch information
jd-lara authored May 16, 2024
2 parents b528649 + 887d007 commit 814286e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 5-Bus/generator_mapping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ ThermalStandard:
- {fuel: SYNC_COND, type: SYNC_COND}
- {fuel: OTHER, type: OT}

GenericBattery:
EnergyReservoirStorage:
- {fuel: STORAGE, type: null}
2 changes: 1 addition & 1 deletion RTS_GMLC/generator_mapping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ ThermalStandard:
- {fuel: SYNC_COND, type: SYNC_COND}
- {fuel: OTHER, type: OT}

GenericBattery:
EnergyReservoirStorage:
- {fuel: STORAGE, type: null}
2 changes: 1 addition & 1 deletion RTS_GMLC/generator_mapping_multi_start.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ ThermalMultiStart:
- {fuel: SYNC_COND, type: SYNC_COND}
- {fuel: OTHER, type: OT}

GenericBattery:
EnergyReservoirStorage:
- {fuel: STORAGE, type: null}
3 changes: 2 additions & 1 deletion psy_data/data_14bus_pu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -837,9 +837,10 @@ timeseries_DA14 = [
];

battery14(nodes14) = [
GenericBattery(
EnergyReservoirStorage(
name = "Bat",
prime_mover_type = PrimeMovers.BA,
storage_technology_type = StorageTech.OTHER_CHEM,
available = true,
bus = nodes14[1],
initial_energy = 5.0,
Expand Down
6 changes: 4 additions & 2 deletions psy_data/data_5bus_pu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,10 @@ phes5(nodes5) = [
),
];

battery5(nodes5) = [GenericBattery(
battery5(nodes5) = [EnergyReservoirStorage(
name = "Bat",
prime_mover_type = PrimeMovers.BA,
storage_technology_type = StorageTech.OTHER_CHEM,
available = true,
bus = nodes5[1],
initial_energy = 2.0,
Expand All @@ -779,9 +780,10 @@ battery5(nodes5) = [GenericBattery(
)];

batteryems5(nodes5) = [
PSY.BatteryEMS(;
PSY.EnergyReservoirStorage(;
name = "Bat2",
prime_mover_type = PrimeMovers.BA,
storage_technology_type = StorageTech.OTHER_CHEM,
available = true,
bus = nodes5[1],
initial_energy = 5.0,
Expand Down

0 comments on commit 814286e

Please sign in to comment.