├── .gitignore ├── LICENSE ├── README.md ├── binder ├── apt.txt └── requirements.txt ├── data └── demand_wind_solar.csv ├── documentation ├── 6_region_diagram.jpg ├── README.md ├── documentation.pdf ├── documentation.tex └── youtube_link.png ├── models ├── 1_region │ ├── locations.yaml │ ├── model.yaml │ └── techs.yaml └── 6_region │ ├── locations.yaml │ ├── model.yaml │ └── techs.yaml ├── psm ├── __init__.py ├── consistency_checks.py ├── models.py └── utils.py ├── pytest.ini ├── requirements.txt ├── scripts ├── example_configs │ ├── __init__.py │ ├── one_region_operate.py │ ├── one_region_plan.py │ ├── six_region_operate.py │ └── six_region_plan.py └── main.py ├── setup.py ├── test ├── conftest.py └── test_models.py └── tutorial.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/README.md -------------------------------------------------------------------------------- /binder/apt.txt: -------------------------------------------------------------------------------- 1 | coinor-cbc 2 | -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- 1 | calliope==0.6.10 2 | -------------------------------------------------------------------------------- /data/demand_wind_solar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/data/demand_wind_solar.csv -------------------------------------------------------------------------------- /documentation/6_region_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/documentation/6_region_diagram.jpg -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/documentation/documentation.pdf -------------------------------------------------------------------------------- /documentation/documentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/documentation/documentation.tex -------------------------------------------------------------------------------- /documentation/youtube_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/documentation/youtube_link.png -------------------------------------------------------------------------------- /models/1_region/locations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/1_region/locations.yaml -------------------------------------------------------------------------------- /models/1_region/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/1_region/model.yaml -------------------------------------------------------------------------------- /models/1_region/techs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/1_region/techs.yaml -------------------------------------------------------------------------------- /models/6_region/locations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/6_region/locations.yaml -------------------------------------------------------------------------------- /models/6_region/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/6_region/model.yaml -------------------------------------------------------------------------------- /models/6_region/techs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/models/6_region/techs.yaml -------------------------------------------------------------------------------- /psm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/psm/__init__.py -------------------------------------------------------------------------------- /psm/consistency_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/psm/consistency_checks.py -------------------------------------------------------------------------------- /psm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/psm/models.py -------------------------------------------------------------------------------- /psm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/psm/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/example_configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/example_configs/__init__.py -------------------------------------------------------------------------------- /scripts/example_configs/one_region_operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/example_configs/one_region_operate.py -------------------------------------------------------------------------------- /scripts/example_configs/one_region_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/example_configs/one_region_plan.py -------------------------------------------------------------------------------- /scripts/example_configs/six_region_operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/example_configs/six_region_operate.py -------------------------------------------------------------------------------- /scripts/example_configs/six_region_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/example_configs/six_region_plan.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/scripts/main.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/setup.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/test/test_models.py -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahilbers/renewable_test_PSMs/HEAD/tutorial.ipynb --------------------------------------------------------------------------------