├── Code ├── basic_functions │ ├── __init__.py │ ├── heating_tech.py │ ├── mathfunctions.py │ └── read_txt.py ├── cg_lr_combination.py ├── column_generation.py ├── constants.py ├── data.py ├── heat_pumps │ ├── HP_characteristics.py │ └── __init__.py ├── input_data │ ├── el_demand_chp.csv │ ├── el_demand_hp.csv │ ├── heat_demand_chp.csv │ ├── heat_demand_hp.csv │ ├── input_data_chp.csv │ ├── input_data_hp.csv │ ├── standard_load_profile.txt │ ├── sun_direct.txt │ ├── temperature.txt │ └── wind_speed.txt ├── microgrid_functions │ ├── __init__.py │ └── renewables.py ├── model_masterproblem.py ├── model_subproblem_chp.py ├── model_subproblem_hp.py ├── object_chp.py ├── object_hp.py ├── object_master.py └── plot.py ├── LICENSE ├── Presentation.pdf ├── README.md └── Thesis.pdf /Code/basic_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/basic_functions/heating_tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/basic_functions/heating_tech.py -------------------------------------------------------------------------------- /Code/basic_functions/mathfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/basic_functions/mathfunctions.py -------------------------------------------------------------------------------- /Code/basic_functions/read_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/basic_functions/read_txt.py -------------------------------------------------------------------------------- /Code/cg_lr_combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/cg_lr_combination.py -------------------------------------------------------------------------------- /Code/column_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/column_generation.py -------------------------------------------------------------------------------- /Code/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/constants.py -------------------------------------------------------------------------------- /Code/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/data.py -------------------------------------------------------------------------------- /Code/heat_pumps/HP_characteristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/heat_pumps/HP_characteristics.py -------------------------------------------------------------------------------- /Code/heat_pumps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/input_data/el_demand_chp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/el_demand_chp.csv -------------------------------------------------------------------------------- /Code/input_data/el_demand_hp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/el_demand_hp.csv -------------------------------------------------------------------------------- /Code/input_data/heat_demand_chp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/heat_demand_chp.csv -------------------------------------------------------------------------------- /Code/input_data/heat_demand_hp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/heat_demand_hp.csv -------------------------------------------------------------------------------- /Code/input_data/input_data_chp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/input_data_chp.csv -------------------------------------------------------------------------------- /Code/input_data/input_data_hp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/input_data_hp.csv -------------------------------------------------------------------------------- /Code/input_data/standard_load_profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/standard_load_profile.txt -------------------------------------------------------------------------------- /Code/input_data/sun_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/sun_direct.txt -------------------------------------------------------------------------------- /Code/input_data/temperature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/temperature.txt -------------------------------------------------------------------------------- /Code/input_data/wind_speed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/input_data/wind_speed.txt -------------------------------------------------------------------------------- /Code/microgrid_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/microgrid_functions/renewables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/microgrid_functions/renewables.py -------------------------------------------------------------------------------- /Code/model_masterproblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/model_masterproblem.py -------------------------------------------------------------------------------- /Code/model_subproblem_chp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/model_subproblem_chp.py -------------------------------------------------------------------------------- /Code/model_subproblem_hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/model_subproblem_hp.py -------------------------------------------------------------------------------- /Code/object_chp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/object_chp.py -------------------------------------------------------------------------------- /Code/object_hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/object_hp.py -------------------------------------------------------------------------------- /Code/object_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/object_master.py -------------------------------------------------------------------------------- /Code/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Code/plot.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/LICENSE -------------------------------------------------------------------------------- /Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Presentation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/README.md -------------------------------------------------------------------------------- /Thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clamesc/Decentralized-Scheduling-Strategy-of-Heating-Systems/HEAD/Thesis.pdf --------------------------------------------------------------------------------