Skip to content

Commit

Permalink
Update electric_storage.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
atpham88 committed Oct 13, 2024
1 parent 3cb56bd commit 807e3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/energy_storage/electric_storage.jl
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ end
degradation::Dict = Dict()
minimum_avg_soc_fraction::Float64 = 0.0
min_duration_hours::Real = 0.0 # Minimum amount of time storage can discharge at its rated power capacity
max_duration_hours::Real = 1000.0 # Maximum amount of time storage can discharge at its rated power capacity (ratio of ElectricStorage size_kwh to size_kw)
max_duration_hours::Real = 100000000.0 # Maximum amount of time storage can discharge at its rated power capacity (ratio of ElectricStorage size_kwh to size_kw)
```
"""
Base.@kwdef struct ElectricStorageDefaults
Expand Down Expand Up @@ -201,7 +201,7 @@ Base.@kwdef struct ElectricStorageDefaults
degradation::Dict = Dict()
minimum_avg_soc_fraction::Float64 = 0.0
min_duration_hours::Real = 0.0
max_duration_hours::Real = 1000.0
max_duration_hours::Real = 100000000.0
end


Expand Down

0 comments on commit 807e3da

Please sign in to comment.