Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: energy-to-power ratio for storage technology #131

Open
1 of 3 tasks
Drowsle opened this issue Jul 24, 2024 · 0 comments
Open
1 of 3 tasks

ENH: energy-to-power ratio for storage technology #131

Drowsle opened this issue Jul 24, 2024 · 0 comments

Comments

@Drowsle
Copy link

Drowsle commented Jul 24, 2024

Feature Type

  • Adding new functionality to tz-osemosys

  • Changing existing functionality in tz-osemosys

  • Removing existing functionality in tz-osemosys

Problem Description

Batteries usually have standardized storage capacity based on the power delivery. It is usually given as number of hours the battery can deliver at full power. For example, a [120MW, 4h] battery would equals to a [120MW, 480MWh] battery.

The power aspect and the storage aspect are de-coupled in OSeMOSYS and it can lead to situation where we would have 120MW battery with 20GWh worth of storage.

I think the solution is a fixed ratio between the power and the storage of a given technology

Feature Description

In the technologies.yaml setup file it would look like something like this :

  • id: battery-technology
    long_name: Battery technology
    capacity_activity_unit_ratio: 31.536
    opex_fixed: 10
    capex: 1200
    operating_life: 40
    energy_to_power_ratio: 0.0144 #PJ/GW 4h -> 4/1000*3.6
    operating_modes:
    • id: GEN
      long_name: discharging mode
      description: discharging mode
      output_activity_ratio:
      primary-electricity: 1.
      from_storage: {

      all regions

      "*":
      # storage unit
      {"battery-storage": True}
      }
      opex_variable: 0
    • id: CHARGE
      long_name: charging mode
      description: charging mode
      input_activity_ratio:
      primary-electricity: 1.
      to_storage: {

      all region

      "*":
      # storage unit
      {"battery-storage": True}
      }
      opex_variable: 0
      capacity_gross_min: 0

--------------------------------------------

STORAGE UNITS

- Inputs are in petajoules (PJ)

- Outputs are in petajoules (PJ)

--------------------------------------------

storage:

  • id: battery-storage
    capex: 0
    operating_life: 100
    residual_capacity: 0
    minimum_charge: 0
    initial_level: 0

If such a ratio is applied, in order to avoid confusion, one of the capex should take over the other. For example, consider the capex given by the power technology even if the storage has its own capex.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant