├── .gitattributes ├── .gitignore ├── Code ├── dataReader.py ├── main.py ├── modelEstimation.py └── scenarioGeneration.py ├── RE-Europe_dataset_package └── Put_data_here.txt ├── Results └── Results_to_be_stored_here.txt └── licence.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/dataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/Code/dataReader.py -------------------------------------------------------------------------------- /Code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/Code/main.py -------------------------------------------------------------------------------- /Code/modelEstimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/Code/modelEstimation.py -------------------------------------------------------------------------------- /Code/scenarioGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/Code/scenarioGeneration.py -------------------------------------------------------------------------------- /RE-Europe_dataset_package/Put_data_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/RE-Europe_dataset_package/Put_data_here.txt -------------------------------------------------------------------------------- /Results/Results_to_be_stored_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/Results/Results_to_be_stored_here.txt -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorarduin/RESGen_EU/HEAD/licence.txt --------------------------------------------------------------------------------