Skip to content

Commit

Permalink
Merge pull request #4 from rundxdi/main
Browse files Browse the repository at this point in the history
Black formatting
  • Loading branch information
rundxdi authored Jan 23, 2024
2 parents da71c31 + 9df2b08 commit ded8eaf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gtep/gtep_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ def model_data_references(m):
}

# A fraction of renewableCapacity representing fraction of capacity
# that can be reliably counted toward planning reserve requriement
# that can be reliably counted toward planning reserve requirement
# TODO: WHAT HAVE I DONE HERE I HATE IT
m.renewableCapacityValue = {
renewableGen: min(
Expand Down Expand Up @@ -1426,7 +1426,7 @@ def model_data_references(m):
}

# Cost per MW of curtailed renewable energy
# NOTE: what should this be vauled at? This being both curtailment and load shed.
# NOTE: what should this be valued at? This being both curtailment and load shed.
# TODO: update valuations
m.curtailmentCost = 2 * max(m.fuelCost.values())
m.loadShedCost = 1000 * m.curtailmentCost
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import os
from setuptools import setup, find_packages

setup(name="gtep", version="0.1.dev0", python_requires=">=3.7", description="a python package", packages=find_packages())
setup(
name="gtep",
version="0.1.dev0",
python_requires=">=3.7",
description="a python package",
packages=find_packages(),
)

0 comments on commit ded8eaf

Please sign in to comment.