├── .gitattributes ├── .gitignore ├── Lecture └── ESM_lecture.pdf ├── README.md ├── tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19) ├── Code │ ├── 1 HomerTrueStory.gms │ ├── 2 $conditions.gms │ └── project.gpr └── Tutorial 1.pdf ├── tutorial 02 GAMS features (14.11.19) ├── Code │ ├── $conditions.gms │ ├── $conditions_applicaiton.gms │ ├── Loop_examples.gms │ ├── Report_example.gms │ └── project.gpr └── Tutorial 2.pdf ├── tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19) ├── Code │ ├── Input.xlsx │ ├── Tutorial_3.gms │ ├── all_data.gdx │ ├── project.gpr │ └── results.xlsx └── Tutorial 3.pdf ├── tutorial 04 Modelling RES and energy trade (28.11.19) ├── Code │ ├── Input.xlsx │ ├── Input_I.xlsx │ ├── Tutorial_4.gms │ ├── project.gpr │ ├── results_notrade.xlsx │ ├── results_trade.gdx │ └── results_trade.xlsx └── Tutorial 4.pdf ├── tutorial 05 Impact of available NTCs. Simple DSM (04.12.19) ├── Code │ ├── Input.gdx │ ├── Input.xlsx │ ├── Tutorial_5.gms │ ├── project.gpr │ ├── results_LS.gdx │ ├── results_LS.xlsx │ ├── results_no_trade.gdx │ ├── results_no_trade.xlsx │ ├── results_trade.gdx │ └── results_trade.xlsx └── Tutorial 5.pdf ├── tutorial 06 Intertemporal dynamics 1 - storages (05.12.19) ├── Code │ ├── Input.gdx │ ├── Input.xlsx │ ├── Tutorial_6.gms │ ├── project.gpr │ ├── results_no_storage.gdx │ ├── results_no_storage.xlsx │ ├── results_storage.gdx │ └── results_storage.xlsx └── Tutorial 6.pdf ├── tutorial 07 Intertemporal dynamics 2 - investments (11.12.19) ├── Code │ ├── Input.gdx │ ├── Input.xlsx │ ├── Tutorial_7.gms │ ├── project.gpr │ ├── results_invest.gdx │ └── results_invest.xlsx └── Tutorial 7.pdf ├── tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19) ├── Code │ ├── Input.xlsx │ ├── Input_I.xlsx │ ├── Tutorial_8_SU(LP).gms │ ├── Tutorial_9_SU(MIP).gms │ ├── project.gpr │ ├── results_10_SU_MIP.xlsx │ ├── results_10_SU_MIP_2.xlsx │ ├── results_SU(LP).gdx │ └── results_SU(LP).xlsx └── Tutorials 8-9.pdf ├── tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19) ├── Code │ ├── Tutorial10_ToyModel_ECIU-EVPI.gms │ └── project.gpr ├── Tutorial 10.pdf ├── toy model whiteboard 1.jpeg └── toy model whiteboard 2.jpeg └── tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20) ├── Code ├── Tutorial 11_hometask.gms ├── Tutorial 12.gms └── project.gpr └── Tutorial 11-12.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/.gitignore -------------------------------------------------------------------------------- /Lecture/ESM_lecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/Lecture/ESM_lecture.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/README.md -------------------------------------------------------------------------------- /tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/1 HomerTrueStory.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/1 HomerTrueStory.gms -------------------------------------------------------------------------------- /tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/2 $conditions.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/2 $conditions.gms -------------------------------------------------------------------------------- /tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Tutorial 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 01 Intro to GAMS. Simple optimization problem. (07.11.19)/Tutorial 1.pdf -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Code/$conditions.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Code/$conditions.gms -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Code/$conditions_applicaiton.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Code/$conditions_applicaiton.gms -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Code/Loop_examples.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Code/Loop_examples.gms -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Code/Report_example.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Code/Report_example.gms -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 02 GAMS features (14.11.19)/Tutorial 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 02 GAMS features (14.11.19)/Tutorial 2.pdf -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/Tutorial_3.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/Tutorial_3.gms -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/all_data.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/all_data.gdx -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Code/results.xlsx -------------------------------------------------------------------------------- /tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Tutorial 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 03 Setting up a three-node toy electricity dispatch model (21.11.19)/Tutorial 3.pdf -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Input_I.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Input_I.xlsx -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Tutorial_4.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/Tutorial_4.gms -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_notrade.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_notrade.xlsx -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_trade.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_trade.gdx -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_trade.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Code/results_trade.xlsx -------------------------------------------------------------------------------- /tutorial 04 Modelling RES and energy trade (28.11.19)/Tutorial 4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 04 Modelling RES and energy trade (28.11.19)/Tutorial 4.pdf -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Input.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Input.gdx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Tutorial_5.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/Tutorial_5.gms -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_LS.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_LS.gdx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_LS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_LS.xlsx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_no_trade.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_no_trade.gdx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_no_trade.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_no_trade.xlsx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_trade.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_trade.gdx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_trade.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Code/results_trade.xlsx -------------------------------------------------------------------------------- /tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Tutorial 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 05 Impact of available NTCs. Simple DSM (04.12.19)/Tutorial 5.pdf -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Input.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Input.gdx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Tutorial_6.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/Tutorial_6.gms -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_no_storage.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_no_storage.gdx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_no_storage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_no_storage.xlsx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_storage.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_storage.gdx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_storage.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Code/results_storage.xlsx -------------------------------------------------------------------------------- /tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Tutorial 6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 06 Intertemporal dynamics 1 - storages (05.12.19)/Tutorial 6.pdf -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Input.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Input.gdx -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Tutorial_7.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/Tutorial_7.gms -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/results_invest.gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/results_invest.gdx -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/results_invest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Code/results_invest.xlsx -------------------------------------------------------------------------------- /tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Tutorial 7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 07 Intertemporal dynamics 2 - investments (11.12.19)/Tutorial 7.pdf -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Input.xlsx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Input_I.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Input_I.xlsx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Tutorial_8_SU(LP).gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Tutorial_8_SU(LP).gms -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Tutorial_9_SU(MIP).gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/Tutorial_9_SU(MIP).gms -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_10_SU_MIP.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_10_SU_MIP.xlsx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_10_SU_MIP_2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_10_SU_MIP_2.xlsx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_SU(LP).gdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_SU(LP).gdx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_SU(LP).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Code/results_SU(LP).xlsx -------------------------------------------------------------------------------- /tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Tutorials 8-9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 08&09 Intertemporal dynamics 3 - start-ups LP and MIP (12.12.19)/Tutorials 8-9.pdf -------------------------------------------------------------------------------- /tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Code/Tutorial10_ToyModel_ECIU-EVPI.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Code/Tutorial10_ToyModel_ECIU-EVPI.gms -------------------------------------------------------------------------------- /tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Tutorial 10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/Tutorial 10.pdf -------------------------------------------------------------------------------- /tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/toy model whiteboard 1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/toy model whiteboard 1.jpeg -------------------------------------------------------------------------------- /tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/toy model whiteboard 2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 10 Stochastic problem. ECIU and EVPI. (19.12.19)/toy model whiteboard 2.jpeg -------------------------------------------------------------------------------- /tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/Tutorial 11_hometask.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/Tutorial 11_hometask.gms -------------------------------------------------------------------------------- /tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/Tutorial 12.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/Tutorial 12.gms -------------------------------------------------------------------------------- /tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/project.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Code/project.gpr -------------------------------------------------------------------------------- /tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Tutorial 11-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Irieo/EnergySystemsModelling-course/HEAD/tutorial 11&12 Lagrange multipliers. MCPs. Cournot competition. (08.01.20)/Tutorial 11-12.pdf --------------------------------------------------------------------------------