├── .gitignore ├── LICENSE ├── README.md ├── beamerthemeJD.sty ├── defense.gif ├── defense.pdf ├── defense.tex ├── img ├── haag │ ├── haag-i-ob.pdf │ ├── scenario_base-Elec-Moosham-spr_edit.pdf │ ├── scenario_cheap_battery-Elec-Moosham-spr_edit.pdf │ ├── scenario_no_electric_heating-caps-Elec.pdf │ ├── scenario_no_electric_heating-caps-Gas.pdf │ ├── scenario_no_electric_heating-caps-Heat.pdf │ ├── scenario_no_electric_heating-peak-Elec.pdf │ ├── scenario_no_electric_heating-peak-Heat.pdf │ ├── scenario_renovation-caps-Elec.pdf │ ├── scenario_renovation-caps-Gas.pdf │ └── scenario_renovation-caps-Heat.pdf ├── rivus │ ├── scen-today-rivus-networks.pdf │ ├── stacked-networks-half.pdf │ └── stacked-networks.pdf ├── techno-economic-modelling.pdf └── urbs │ ├── res-diagram.pdf │ ├── urbs-commit-network-transp.png │ └── urbs-ts-graph.pdf └── tex ├── development.tex ├── introduction.tex ├── models.tex ├── setup-colors.tex ├── setup-settings.tex └── setup.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/README.md -------------------------------------------------------------------------------- /beamerthemeJD.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/beamerthemeJD.sty -------------------------------------------------------------------------------- /defense.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/defense.gif -------------------------------------------------------------------------------- /defense.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/defense.pdf -------------------------------------------------------------------------------- /defense.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/defense.tex -------------------------------------------------------------------------------- /img/haag/haag-i-ob.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/haag-i-ob.pdf -------------------------------------------------------------------------------- /img/haag/scenario_base-Elec-Moosham-spr_edit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_base-Elec-Moosham-spr_edit.pdf -------------------------------------------------------------------------------- /img/haag/scenario_cheap_battery-Elec-Moosham-spr_edit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_cheap_battery-Elec-Moosham-spr_edit.pdf -------------------------------------------------------------------------------- /img/haag/scenario_no_electric_heating-caps-Elec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_no_electric_heating-caps-Elec.pdf -------------------------------------------------------------------------------- /img/haag/scenario_no_electric_heating-caps-Gas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_no_electric_heating-caps-Gas.pdf -------------------------------------------------------------------------------- /img/haag/scenario_no_electric_heating-caps-Heat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_no_electric_heating-caps-Heat.pdf -------------------------------------------------------------------------------- /img/haag/scenario_no_electric_heating-peak-Elec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_no_electric_heating-peak-Elec.pdf -------------------------------------------------------------------------------- /img/haag/scenario_no_electric_heating-peak-Heat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_no_electric_heating-peak-Heat.pdf -------------------------------------------------------------------------------- /img/haag/scenario_renovation-caps-Elec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_renovation-caps-Elec.pdf -------------------------------------------------------------------------------- /img/haag/scenario_renovation-caps-Gas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_renovation-caps-Gas.pdf -------------------------------------------------------------------------------- /img/haag/scenario_renovation-caps-Heat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/haag/scenario_renovation-caps-Heat.pdf -------------------------------------------------------------------------------- /img/rivus/scen-today-rivus-networks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/rivus/scen-today-rivus-networks.pdf -------------------------------------------------------------------------------- /img/rivus/stacked-networks-half.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/rivus/stacked-networks-half.pdf -------------------------------------------------------------------------------- /img/rivus/stacked-networks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/rivus/stacked-networks.pdf -------------------------------------------------------------------------------- /img/techno-economic-modelling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/techno-economic-modelling.pdf -------------------------------------------------------------------------------- /img/urbs/res-diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/urbs/res-diagram.pdf -------------------------------------------------------------------------------- /img/urbs/urbs-commit-network-transp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/urbs/urbs-commit-network-transp.png -------------------------------------------------------------------------------- /img/urbs/urbs-ts-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/img/urbs/urbs-ts-graph.pdf -------------------------------------------------------------------------------- /tex/development.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/development.tex -------------------------------------------------------------------------------- /tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/introduction.tex -------------------------------------------------------------------------------- /tex/models.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/models.tex -------------------------------------------------------------------------------- /tex/setup-colors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/setup-colors.tex -------------------------------------------------------------------------------- /tex/setup-settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/setup-settings.tex -------------------------------------------------------------------------------- /tex/setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojdo/thesis-defense/HEAD/tex/setup.tex --------------------------------------------------------------------------------