├── LICENSE ├── README.md ├── matlab_code ├── DA_market_KKT.m ├── DA_market_clearing.m ├── DA_market_clearing_PF.m ├── DA_market_clearing_SCEN.m ├── DA_powerflow.m ├── DSO_lookahead.m ├── DSO_lookahead_KKT.m ├── Data_Reader.m ├── OOS_validation.m ├── PCC_optim.m ├── PCC_optim_EVPI.m ├── PCC_optimizer_DA_KKT_simple.m ├── PCC_optimizer_DA_KKT_simple_EVPI.m ├── PCC_optimizer_DA_KKT_simple_linear_powerflow.m ├── PCC_optimizer_DSO_w_DR.m ├── PCC_optimizer_full.m ├── PLOT_pg_of_fe.m ├── README.txt ├── RT_TSO_DSO.m ├── RT_fixed_DA_dispatch.m ├── RUN_PCC_optim.asv ├── RUN_PCC_optim.m ├── TSO_DSO_cooptim.m ├── case_24TSO_3DSO.m ├── case_24TSO_3DSO_mod.m ├── case_24TSO_3DSO_mod2.m ├── case_2DSO_9bus.m ├── casedata_3busTSO_9busDSO.m ├── casedata_6bus.m ├── casedata_6bus_1scen.m ├── conventional_market_clearing.m ├── find_overlap.m ├── hline.m ├── interpolate_cbrewer.m ├── market_clearing_DA_PF.m ├── market_clearing_DA_SCEN.m ├── read_me ├── run_DA_powerflow.m ├── run_insample_optim.m ├── run_insample_optim_EVPI.m ├── run_insample_optim_VSS.m ├── run_outofsample_optim.m ├── scenario_generation.m ├── scenario_generator.m └── submit_gamsjob.sh └── online_appendix.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TSO-DSO_coordination 2 | Online appendix for the paper submitted to EJOR. 3 | -------------------------------------------------------------------------------- /matlab_code/DA_market_KKT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DA_market_KKT.m -------------------------------------------------------------------------------- /matlab_code/DA_market_clearing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DA_market_clearing.m -------------------------------------------------------------------------------- /matlab_code/DA_market_clearing_PF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DA_market_clearing_PF.m -------------------------------------------------------------------------------- /matlab_code/DA_market_clearing_SCEN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DA_market_clearing_SCEN.m -------------------------------------------------------------------------------- /matlab_code/DA_powerflow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DA_powerflow.m -------------------------------------------------------------------------------- /matlab_code/DSO_lookahead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DSO_lookahead.m -------------------------------------------------------------------------------- /matlab_code/DSO_lookahead_KKT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/DSO_lookahead_KKT.m -------------------------------------------------------------------------------- /matlab_code/Data_Reader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/Data_Reader.m -------------------------------------------------------------------------------- /matlab_code/OOS_validation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/OOS_validation.m -------------------------------------------------------------------------------- /matlab_code/PCC_optim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optim.m -------------------------------------------------------------------------------- /matlab_code/PCC_optim_EVPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optim_EVPI.m -------------------------------------------------------------------------------- /matlab_code/PCC_optimizer_DA_KKT_simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optimizer_DA_KKT_simple.m -------------------------------------------------------------------------------- /matlab_code/PCC_optimizer_DA_KKT_simple_EVPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optimizer_DA_KKT_simple_EVPI.m -------------------------------------------------------------------------------- /matlab_code/PCC_optimizer_DA_KKT_simple_linear_powerflow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optimizer_DA_KKT_simple_linear_powerflow.m -------------------------------------------------------------------------------- /matlab_code/PCC_optimizer_DSO_w_DR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optimizer_DSO_w_DR.m -------------------------------------------------------------------------------- /matlab_code/PCC_optimizer_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PCC_optimizer_full.m -------------------------------------------------------------------------------- /matlab_code/PLOT_pg_of_fe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/PLOT_pg_of_fe.m -------------------------------------------------------------------------------- /matlab_code/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/README.txt -------------------------------------------------------------------------------- /matlab_code/RT_TSO_DSO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/RT_TSO_DSO.m -------------------------------------------------------------------------------- /matlab_code/RT_fixed_DA_dispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/RT_fixed_DA_dispatch.m -------------------------------------------------------------------------------- /matlab_code/RUN_PCC_optim.asv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/RUN_PCC_optim.asv -------------------------------------------------------------------------------- /matlab_code/RUN_PCC_optim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/RUN_PCC_optim.m -------------------------------------------------------------------------------- /matlab_code/TSO_DSO_cooptim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/TSO_DSO_cooptim.m -------------------------------------------------------------------------------- /matlab_code/case_24TSO_3DSO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/case_24TSO_3DSO.m -------------------------------------------------------------------------------- /matlab_code/case_24TSO_3DSO_mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/case_24TSO_3DSO_mod.m -------------------------------------------------------------------------------- /matlab_code/case_24TSO_3DSO_mod2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/case_24TSO_3DSO_mod2.m -------------------------------------------------------------------------------- /matlab_code/case_2DSO_9bus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/case_2DSO_9bus.m -------------------------------------------------------------------------------- /matlab_code/casedata_3busTSO_9busDSO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/casedata_3busTSO_9busDSO.m -------------------------------------------------------------------------------- /matlab_code/casedata_6bus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/casedata_6bus.m -------------------------------------------------------------------------------- /matlab_code/casedata_6bus_1scen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/casedata_6bus_1scen.m -------------------------------------------------------------------------------- /matlab_code/conventional_market_clearing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/conventional_market_clearing.m -------------------------------------------------------------------------------- /matlab_code/find_overlap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/find_overlap.m -------------------------------------------------------------------------------- /matlab_code/hline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/hline.m -------------------------------------------------------------------------------- /matlab_code/interpolate_cbrewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/interpolate_cbrewer.m -------------------------------------------------------------------------------- /matlab_code/market_clearing_DA_PF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/market_clearing_DA_PF.m -------------------------------------------------------------------------------- /matlab_code/market_clearing_DA_SCEN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/market_clearing_DA_SCEN.m -------------------------------------------------------------------------------- /matlab_code/read_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/read_me -------------------------------------------------------------------------------- /matlab_code/run_DA_powerflow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/run_DA_powerflow.m -------------------------------------------------------------------------------- /matlab_code/run_insample_optim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/run_insample_optim.m -------------------------------------------------------------------------------- /matlab_code/run_insample_optim_EVPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/run_insample_optim_EVPI.m -------------------------------------------------------------------------------- /matlab_code/run_insample_optim_VSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/run_insample_optim_VSS.m -------------------------------------------------------------------------------- /matlab_code/run_outofsample_optim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/run_outofsample_optim.m -------------------------------------------------------------------------------- /matlab_code/scenario_generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/scenario_generation.m -------------------------------------------------------------------------------- /matlab_code/scenario_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/scenario_generator.m -------------------------------------------------------------------------------- /matlab_code/submit_gamsjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/matlab_code/submit_gamsjob.sh -------------------------------------------------------------------------------- /online_appendix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alherm7/TSO-DSO_coordination/HEAD/online_appendix.pdf --------------------------------------------------------------------------------