├── .github └── workflows │ ├── pomato_testing.yml │ └── python-package.yml ├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── NEWS.md ├── README.md ├── codecov.yml ├── docs ├── Makefile ├── _autodoc │ ├── pomato.POMATO.rst │ ├── pomato.data.DataManagement.rst │ ├── pomato.data.DataWorker.rst │ ├── pomato.data.Results.rst │ ├── pomato.data.rst │ ├── pomato.fbmc.FBMCModule.rst │ ├── pomato.fbmc.rst │ ├── pomato.grid.GridModel.rst │ ├── pomato.grid.GridTopology.rst │ ├── pomato.grid.rst │ ├── pomato.market_model.MarketModel.rst │ ├── pomato.market_model.rst │ ├── pomato.tools.rst │ ├── pomato.visualization.Dashboard.rst │ ├── pomato.visualization.FBDomainPlots.rst │ ├── pomato.visualization.Visualization.rst │ └── pomato.visualization.rst ├── _static │ ├── custom.css │ ├── files │ │ ├── chance_constrained_costs.html │ │ ├── dashboard.gif │ │ ├── de_doc.json │ │ ├── fbmc.html │ │ ├── fbmc_cc.html │ │ ├── ieee_doc.json │ │ ├── market_result.png │ │ ├── market_result_dispatch.html │ │ ├── model_structure.json │ │ ├── nrel_doc.json │ │ ├── pomato_defence_plain_final.pdf │ │ ├── redispatch.png │ │ └── redispatch_geoplot.html │ └── graphics │ │ ├── pomato.png │ │ ├── pomato_150png.png │ │ ├── pomato_2.png │ │ ├── pomato_200.png │ │ ├── pomato_480.png │ │ ├── pomato_logo_small.png │ │ ├── pomato_overview.png │ │ └── pomato_space.png ├── conf.py ├── getting_started.rst ├── index.rst ├── input_model_data.rst ├── installation.rst ├── line_parameters.rst ├── make.bat ├── model_formulation.rst ├── model_functionality.rst ├── model_structure.rst ├── options.rst ├── reference.rst ├── requirements.txt └── running_pomato.rst ├── examples ├── data_input │ ├── DE_2020.zip │ ├── nrel_118_high_res.xlsx │ ├── nrel_118_high_res.zip │ ├── nrel_118_medium_res.xlsx │ ├── nrel_118_medium_res.zip │ ├── nrel_118_original.xlsx │ ├── nrel_118_original.zip │ ├── nrel_118_original │ │ ├── availability_da.csv │ │ ├── availability_rt.csv │ │ ├── data_structure.csv │ │ ├── demand_el_da.csv │ │ ├── demand_el_rt.csv │ │ ├── lines.csv │ │ ├── nodes.csv │ │ ├── plants.csv │ │ └── zones.csv │ ├── pglib_opf_case118_ieee.m │ ├── pglib_opf_case118_ieee.mat │ └── pglib_opf_case118_ieee_coordinates.CSV ├── profiles │ ├── de.json │ ├── ieee118.json │ └── nrel118.json ├── run_pomato_cc.py ├── run_pomato_de.ipynb ├── run_pomato_de.py ├── run_pomato_fbmc.py ├── run_pomato_ieee.ipynb └── run_pomato_ieee.py ├── pomato ├── __init__.py ├── _installation │ ├── add_gurobi.jl │ ├── julia_install_dev.jl │ ├── julia_install_from_git.jl │ ├── julia_update.jl │ └── manage_julia_env.py ├── data │ ├── __init__.py │ ├── data.py │ ├── model_structure.json │ ├── results.py │ └── worker.py ├── fbmc │ ├── __init__.py │ └── fbmc_module.py ├── grid │ ├── __init__.py │ ├── grid_model.py │ └── grid_topology.py ├── julia_daemon.jl ├── market_model │ ├── __init__.py │ └── market_model.py ├── pomato.py ├── tools.py └── visualization │ ├── __init__.py │ ├── dashboard.py │ ├── fbmc_domain.py │ ├── geoplot_functions.py │ └── visualization.py ├── readthedocs.yml ├── requirements.txt ├── setup.py └── tests ├── test_data.py ├── test_data ├── create_nrel_results.py ├── nrel_cbco_indices.csv ├── nrel_cbco_table.csv ├── opf_market │ ├── Alpha.csv │ ├── CC_LINE_MARGIN.csv │ ├── COST_CURT.csv │ ├── COST_EX.csv │ ├── COST_G.csv │ ├── COST_H.csv │ ├── COST_INFEASIBILITY_EL.csv │ ├── COST_INFEASIBILITY_ES.csv │ ├── COST_INFEASIBILITY_H.csv │ ├── COST_REDISPATCH.csv │ ├── CURT.csv │ ├── D_es.csv │ ├── D_hs.csv │ ├── D_ph.csv │ ├── EB_nodal.csv │ ├── EB_zonal.csv │ ├── EX.csv │ ├── F_DC.csv │ ├── G.csv │ ├── G_RES.csv │ ├── H.csv │ ├── H_RES.csv │ ├── INFEASIBILITY_CC_LINES.csv │ ├── INFEASIBILITY_EL_NEG.csv │ ├── INFEASIBILITY_EL_POS.csv │ ├── INFEASIBILITY_ES.csv │ ├── INFEASIBILITY_H_NEG.csv │ ├── INFEASIBILITY_H_POS.csv │ ├── INJ.csv │ ├── L_es.csv │ ├── L_hs.csv │ ├── misc_results.json │ └── optionfile.json ├── opf_redispatch │ ├── Alpha.csv │ ├── CC_LINE_MARGIN.csv │ ├── COST_CURT.csv │ ├── COST_EX.csv │ ├── COST_G.csv │ ├── COST_H.csv │ ├── COST_INFEASIBILITY_EL.csv │ ├── COST_INFEASIBILITY_ES.csv │ ├── COST_INFEASIBILITY_H.csv │ ├── COST_REDISPATCH.csv │ ├── CURT.csv │ ├── D_es.csv │ ├── D_hs.csv │ ├── D_ph.csv │ ├── EB_nodal.csv │ ├── EB_zonal.csv │ ├── EX.csv │ ├── F_DC.csv │ ├── G.csv │ ├── G_RES.csv │ ├── H.csv │ ├── H_RES.csv │ ├── INFEASIBILITY_CC_LINES.csv │ ├── INFEASIBILITY_EL_NEG.csv │ ├── INFEASIBILITY_EL_POS.csv │ ├── INFEASIBILITY_ES.csv │ ├── INFEASIBILITY_H_NEG.csv │ ├── INFEASIBILITY_H_POS.csv │ ├── INJ.csv │ ├── L_es.csv │ ├── L_hs.csv │ ├── misc_results.json │ └── optionfile.json ├── scopf_market │ ├── Alpha.csv │ ├── CC_LINE_MARGIN.csv │ ├── COST_CURT.csv │ ├── COST_EX.csv │ ├── COST_G.csv │ ├── COST_H.csv │ ├── COST_INFEASIBILITY_EL.csv │ ├── COST_INFEASIBILITY_ES.csv │ ├── COST_INFEASIBILITY_H.csv │ ├── COST_REDISPATCH.csv │ ├── CURT.csv │ ├── D_es.csv │ ├── D_hs.csv │ ├── D_ph.csv │ ├── EB_nodal.csv │ ├── EB_zonal.csv │ ├── EX.csv │ ├── F_DC.csv │ ├── G.csv │ ├── G_RES.csv │ ├── H.csv │ ├── H_RES.csv │ ├── INFEASIBILITY_CC_LINES.csv │ ├── INFEASIBILITY_EL_NEG.csv │ ├── INFEASIBILITY_EL_POS.csv │ ├── INFEASIBILITY_ES.csv │ ├── INFEASIBILITY_H_NEG.csv │ ├── INFEASIBILITY_H_POS.csv │ ├── INJ.csv │ ├── L_es.csv │ ├── L_hs.csv │ ├── misc_results.json │ └── optionfile.json ├── uniform_market │ ├── Alpha.csv │ ├── CC_LINE_MARGIN.csv │ ├── COST_CURT.csv │ ├── COST_EX.csv │ ├── COST_G.csv │ ├── COST_H.csv │ ├── COST_INFEASIBILITY_EL.csv │ ├── COST_INFEASIBILITY_ES.csv │ ├── COST_INFEASIBILITY_H.csv │ ├── COST_REDISPATCH.csv │ ├── CURT.csv │ ├── D_es.csv │ ├── D_hs.csv │ ├── D_ph.csv │ ├── EB_nodal.csv │ ├── EB_zonal.csv │ ├── EX.csv │ ├── F_DC.csv │ ├── G.csv │ ├── G_RES.csv │ ├── H.csv │ ├── H_RES.csv │ ├── INFEASIBILITY_CC_LINES.csv │ ├── INFEASIBILITY_EL_NEG.csv │ ├── INFEASIBILITY_EL_POS.csv │ ├── INFEASIBILITY_ES.csv │ ├── INFEASIBILITY_H_NEG.csv │ ├── INFEASIBILITY_H_POS.csv │ ├── INJ.csv │ ├── L_es.csv │ ├── L_hs.csv │ ├── misc_results.json │ └── optionfile.json ├── uniform_redispatch │ ├── Alpha.csv │ ├── CC_LINE_MARGIN.csv │ ├── COST_CURT.csv │ ├── COST_EX.csv │ ├── COST_G.csv │ ├── COST_H.csv │ ├── COST_INFEASIBILITY_EL.csv │ ├── COST_INFEASIBILITY_ES.csv │ ├── COST_INFEASIBILITY_H.csv │ ├── COST_REDISPATCH.csv │ ├── CURT.csv │ ├── D_es.csv │ ├── D_hs.csv │ ├── D_ph.csv │ ├── EB_nodal.csv │ ├── EB_zonal.csv │ ├── EX.csv │ ├── F_DC.csv │ ├── G.csv │ ├── G_RES.csv │ ├── H.csv │ ├── H_RES.csv │ ├── INFEASIBILITY_CC_LINES.csv │ ├── INFEASIBILITY_EL_NEG.csv │ ├── INFEASIBILITY_EL_POS.csv │ ├── INFEASIBILITY_ES.csv │ ├── INFEASIBILITY_H_NEG.csv │ ├── INFEASIBILITY_H_POS.csv │ ├── INJ.csv │ ├── L_es.csv │ ├── L_hs.csv │ ├── misc_results.json │ └── optionfile.json └── unsupported_inputformat.xyz ├── test_fbmc.py ├── test_grid_model.py ├── test_grid_topology.py ├── test_integration.py ├── test_market.py ├── test_pomato.py └── test_visualization.py /.github/workflows/pomato_testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/.github/workflows/pomato_testing.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_autodoc/pomato.POMATO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.POMATO.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.data.DataManagement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.data.DataManagement.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.data.DataWorker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.data.DataWorker.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.data.Results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.data.Results.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.data.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.fbmc.FBMCModule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.fbmc.FBMCModule.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.fbmc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.fbmc.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.grid.GridModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.grid.GridModel.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.grid.GridTopology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.grid.GridTopology.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.grid.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.market_model.MarketModel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.market_model.MarketModel.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.market_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.market_model.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.tools.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.visualization.Dashboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.visualization.Dashboard.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.visualization.FBDomainPlots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.visualization.FBDomainPlots.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.visualization.Visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.visualization.Visualization.rst -------------------------------------------------------------------------------- /docs/_autodoc/pomato.visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_autodoc/pomato.visualization.rst -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | table { 2 | font-family: arial; 3 | } -------------------------------------------------------------------------------- /docs/_static/files/chance_constrained_costs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/chance_constrained_costs.html -------------------------------------------------------------------------------- /docs/_static/files/dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/dashboard.gif -------------------------------------------------------------------------------- /docs/_static/files/de_doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/de_doc.json -------------------------------------------------------------------------------- /docs/_static/files/fbmc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/fbmc.html -------------------------------------------------------------------------------- /docs/_static/files/fbmc_cc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/fbmc_cc.html -------------------------------------------------------------------------------- /docs/_static/files/ieee_doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/ieee_doc.json -------------------------------------------------------------------------------- /docs/_static/files/market_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/market_result.png -------------------------------------------------------------------------------- /docs/_static/files/market_result_dispatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/market_result_dispatch.html -------------------------------------------------------------------------------- /docs/_static/files/model_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/model_structure.json -------------------------------------------------------------------------------- /docs/_static/files/nrel_doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/nrel_doc.json -------------------------------------------------------------------------------- /docs/_static/files/pomato_defence_plain_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/pomato_defence_plain_final.pdf -------------------------------------------------------------------------------- /docs/_static/files/redispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/redispatch.png -------------------------------------------------------------------------------- /docs/_static/files/redispatch_geoplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/files/redispatch_geoplot.html -------------------------------------------------------------------------------- /docs/_static/graphics/pomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_150png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_150png.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_2.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_200.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_480.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_logo_small.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_overview.png -------------------------------------------------------------------------------- /docs/_static/graphics/pomato_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/_static/graphics/pomato_space.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/input_model_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/input_model_data.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/line_parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/line_parameters.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/model_formulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/model_formulation.rst -------------------------------------------------------------------------------- /docs/model_functionality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/model_functionality.rst -------------------------------------------------------------------------------- /docs/model_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/model_structure.rst -------------------------------------------------------------------------------- /docs/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/options.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/running_pomato.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/docs/running_pomato.rst -------------------------------------------------------------------------------- /examples/data_input/DE_2020.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/DE_2020.zip -------------------------------------------------------------------------------- /examples/data_input/nrel_118_high_res.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_high_res.xlsx -------------------------------------------------------------------------------- /examples/data_input/nrel_118_high_res.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_high_res.zip -------------------------------------------------------------------------------- /examples/data_input/nrel_118_medium_res.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_medium_res.xlsx -------------------------------------------------------------------------------- /examples/data_input/nrel_118_medium_res.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_medium_res.zip -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original.xlsx -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original.zip -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/availability_da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/availability_da.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/availability_rt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/availability_rt.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/data_structure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/data_structure.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/demand_el_da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/demand_el_da.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/demand_el_rt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/demand_el_rt.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/lines.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/nodes.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/plants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/nrel_118_original/plants.csv -------------------------------------------------------------------------------- /examples/data_input/nrel_118_original/zones.csv: -------------------------------------------------------------------------------- 1 | index 2 | R1 3 | R2 4 | R3 5 | -------------------------------------------------------------------------------- /examples/data_input/pglib_opf_case118_ieee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/pglib_opf_case118_ieee.m -------------------------------------------------------------------------------- /examples/data_input/pglib_opf_case118_ieee.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/pglib_opf_case118_ieee.mat -------------------------------------------------------------------------------- /examples/data_input/pglib_opf_case118_ieee_coordinates.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/data_input/pglib_opf_case118_ieee_coordinates.CSV -------------------------------------------------------------------------------- /examples/profiles/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/profiles/de.json -------------------------------------------------------------------------------- /examples/profiles/ieee118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/profiles/ieee118.json -------------------------------------------------------------------------------- /examples/profiles/nrel118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/profiles/nrel118.json -------------------------------------------------------------------------------- /examples/run_pomato_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_cc.py -------------------------------------------------------------------------------- /examples/run_pomato_de.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_de.ipynb -------------------------------------------------------------------------------- /examples/run_pomato_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_de.py -------------------------------------------------------------------------------- /examples/run_pomato_fbmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_fbmc.py -------------------------------------------------------------------------------- /examples/run_pomato_ieee.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_ieee.ipynb -------------------------------------------------------------------------------- /examples/run_pomato_ieee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/examples/run_pomato_ieee.py -------------------------------------------------------------------------------- /pomato/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/__init__.py -------------------------------------------------------------------------------- /pomato/_installation/add_gurobi.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/_installation/add_gurobi.jl -------------------------------------------------------------------------------- /pomato/_installation/julia_install_dev.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/_installation/julia_install_dev.jl -------------------------------------------------------------------------------- /pomato/_installation/julia_install_from_git.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/_installation/julia_install_from_git.jl -------------------------------------------------------------------------------- /pomato/_installation/julia_update.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/_installation/julia_update.jl -------------------------------------------------------------------------------- /pomato/_installation/manage_julia_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/_installation/manage_julia_env.py -------------------------------------------------------------------------------- /pomato/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/data/__init__.py -------------------------------------------------------------------------------- /pomato/data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/data/data.py -------------------------------------------------------------------------------- /pomato/data/model_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/data/model_structure.json -------------------------------------------------------------------------------- /pomato/data/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/data/results.py -------------------------------------------------------------------------------- /pomato/data/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/data/worker.py -------------------------------------------------------------------------------- /pomato/fbmc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/fbmc/__init__.py -------------------------------------------------------------------------------- /pomato/fbmc/fbmc_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/fbmc/fbmc_module.py -------------------------------------------------------------------------------- /pomato/grid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/grid/__init__.py -------------------------------------------------------------------------------- /pomato/grid/grid_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/grid/grid_model.py -------------------------------------------------------------------------------- /pomato/grid/grid_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/grid/grid_topology.py -------------------------------------------------------------------------------- /pomato/julia_daemon.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/julia_daemon.jl -------------------------------------------------------------------------------- /pomato/market_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/market_model/__init__.py -------------------------------------------------------------------------------- /pomato/market_model/market_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/market_model/market_model.py -------------------------------------------------------------------------------- /pomato/pomato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/pomato.py -------------------------------------------------------------------------------- /pomato/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/tools.py -------------------------------------------------------------------------------- /pomato/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/visualization/__init__.py -------------------------------------------------------------------------------- /pomato/visualization/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/visualization/dashboard.py -------------------------------------------------------------------------------- /pomato/visualization/fbmc_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/visualization/fbmc_domain.py -------------------------------------------------------------------------------- /pomato/visualization/geoplot_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/visualization/geoplot_functions.py -------------------------------------------------------------------------------- /pomato/visualization/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/pomato/visualization/visualization.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_data/create_nrel_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/create_nrel_results.py -------------------------------------------------------------------------------- /tests/test_data/nrel_cbco_indices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/nrel_cbco_indices.csv -------------------------------------------------------------------------------- /tests/test_data/nrel_cbco_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/nrel_cbco_table.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/Alpha.csv: -------------------------------------------------------------------------------- 1 | t,p,Alpha 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/CC_LINE_MARGIN.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,CC_LINE_MARGIN 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_CURT.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_EX.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_G.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_H.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_INFEASIBILITY_EL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_INFEASIBILITY_EL.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_INFEASIBILITY_ES.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_INFEASIBILITY_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_INFEASIBILITY_H.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/COST_REDISPATCH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/COST_REDISPATCH.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/CURT.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/D_es.csv: -------------------------------------------------------------------------------- 1 | t,p,D_es 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/D_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,D_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/D_ph.csv: -------------------------------------------------------------------------------- 1 | t,p,D_ph 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/EB_nodal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/EB_nodal.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/EB_zonal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/EB_zonal.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/EX.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/F_DC.csv: -------------------------------------------------------------------------------- 1 | t,dc,F_DC 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/G.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/G_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/G_RES.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/H.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/H_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/H_RES.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_CC_LINES.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,INFEASIBILITY_CC_LINES 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_EL_NEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/INFEASIBILITY_EL_NEG.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_EL_POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/INFEASIBILITY_EL_POS.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- 1 | t,p,INFEASIBILITY_ES 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_H_NEG.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_NEG 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/INFEASIBILITY_H_POS.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_POS 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/INJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/INJ.csv -------------------------------------------------------------------------------- /tests/test_data/opf_market/L_es.csv: -------------------------------------------------------------------------------- 1 | t,p,L_es 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/L_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,L_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_market/misc_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/misc_results.json -------------------------------------------------------------------------------- /tests/test_data/opf_market/optionfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_market/optionfile.json -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/Alpha.csv: -------------------------------------------------------------------------------- 1 | t,p,Alpha 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/CC_LINE_MARGIN.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,CC_LINE_MARGIN 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_CURT.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_EX.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_G.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_H.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_INFEASIBILITY_EL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_INFEASIBILITY_EL.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_INFEASIBILITY_ES.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_INFEASIBILITY_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_INFEASIBILITY_H.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/COST_REDISPATCH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/COST_REDISPATCH.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/CURT.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/D_es.csv: -------------------------------------------------------------------------------- 1 | t,p,D_es 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/D_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,D_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/D_ph.csv: -------------------------------------------------------------------------------- 1 | t,p,D_ph 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/EB_nodal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/EB_nodal.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/EB_zonal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/EB_zonal.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/EX.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/F_DC.csv: -------------------------------------------------------------------------------- 1 | t,dc,F_DC 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/G.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/G_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/G_RES.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/H.csv: -------------------------------------------------------------------------------- 1 | t,p,H 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/H_RES.csv: -------------------------------------------------------------------------------- 1 | t,p,H 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_CC_LINES.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,INFEASIBILITY_CC_LINES 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_EL_NEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/INFEASIBILITY_EL_NEG.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_EL_POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/INFEASIBILITY_EL_POS.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- 1 | t,p,INFEASIBILITY_ES 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_H_NEG.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_NEG 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INFEASIBILITY_H_POS.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_POS 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/INJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/INJ.csv -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/L_es.csv: -------------------------------------------------------------------------------- 1 | t,p,L_es 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/L_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,L_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/misc_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/misc_results.json -------------------------------------------------------------------------------- /tests/test_data/opf_redispatch/optionfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/opf_redispatch/optionfile.json -------------------------------------------------------------------------------- /tests/test_data/scopf_market/Alpha.csv: -------------------------------------------------------------------------------- 1 | t,p,Alpha 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/CC_LINE_MARGIN.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,CC_LINE_MARGIN 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_CURT.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_EX.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_G.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_H.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_INFEASIBILITY_EL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_INFEASIBILITY_EL.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_INFEASIBILITY_ES.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_INFEASIBILITY_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_INFEASIBILITY_H.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/COST_REDISPATCH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/COST_REDISPATCH.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/CURT.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/D_es.csv: -------------------------------------------------------------------------------- 1 | t,p,D_es 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/D_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,D_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/D_ph.csv: -------------------------------------------------------------------------------- 1 | t,p,D_ph 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/EB_nodal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/EB_nodal.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/EB_zonal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/EB_zonal.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/EX.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/F_DC.csv: -------------------------------------------------------------------------------- 1 | t,dc,F_DC 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/G.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/G_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/G_RES.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/H.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/H_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/H_RES.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_CC_LINES.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,INFEASIBILITY_CC_LINES 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_EL_NEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/INFEASIBILITY_EL_NEG.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_EL_POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/INFEASIBILITY_EL_POS.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- 1 | t,p,INFEASIBILITY_ES 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_H_NEG.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_NEG 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INFEASIBILITY_H_POS.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_POS 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/INJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/INJ.csv -------------------------------------------------------------------------------- /tests/test_data/scopf_market/L_es.csv: -------------------------------------------------------------------------------- 1 | t,p,L_es 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/L_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,L_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/scopf_market/misc_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/misc_results.json -------------------------------------------------------------------------------- /tests/test_data/scopf_market/optionfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/scopf_market/optionfile.json -------------------------------------------------------------------------------- /tests/test_data/uniform_market/Alpha.csv: -------------------------------------------------------------------------------- 1 | t,p,Alpha 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/CC_LINE_MARGIN.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,CC_LINE_MARGIN 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_CURT.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_EX.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_G.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_H.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_INFEASIBILITY_EL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_INFEASIBILITY_EL.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_INFEASIBILITY_ES.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_INFEASIBILITY_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_INFEASIBILITY_H.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/COST_REDISPATCH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/COST_REDISPATCH.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/CURT.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/D_es.csv: -------------------------------------------------------------------------------- 1 | t,p,D_es 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/D_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,D_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/D_ph.csv: -------------------------------------------------------------------------------- 1 | t,p,D_ph 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/EB_nodal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/EB_nodal.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/EB_zonal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/EB_zonal.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/EX.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/F_DC.csv: -------------------------------------------------------------------------------- 1 | t,dc,F_DC 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/G.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/G_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/G_RES.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/H.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/H_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/H_RES.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_CC_LINES.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,INFEASIBILITY_CC_LINES 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_EL_NEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/INFEASIBILITY_EL_NEG.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_EL_POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/INFEASIBILITY_EL_POS.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- 1 | t,p,INFEASIBILITY_ES 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_H_NEG.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_NEG 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INFEASIBILITY_H_POS.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_POS 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/INJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/INJ.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_market/L_es.csv: -------------------------------------------------------------------------------- 1 | t,p,L_es 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/L_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,L_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_market/misc_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/misc_results.json -------------------------------------------------------------------------------- /tests/test_data/uniform_market/optionfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_market/optionfile.json -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/Alpha.csv: -------------------------------------------------------------------------------- 1 | t,p,Alpha 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/CC_LINE_MARGIN.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,CC_LINE_MARGIN 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_CURT.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_EX.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_G.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_H.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_INFEASIBILITY_EL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_INFEASIBILITY_EL.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_INFEASIBILITY_ES.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_INFEASIBILITY_H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_INFEASIBILITY_H.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/COST_REDISPATCH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/COST_REDISPATCH.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/CURT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/CURT.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/D_es.csv: -------------------------------------------------------------------------------- 1 | t,p,D_es 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/D_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,D_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/D_ph.csv: -------------------------------------------------------------------------------- 1 | t,p,D_ph 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/EB_nodal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/EB_nodal.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/EB_zonal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/EB_zonal.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/EX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/EX.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/F_DC.csv: -------------------------------------------------------------------------------- 1 | t,dc,F_DC 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/G.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/G_RES.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/G_RES.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/H.csv: -------------------------------------------------------------------------------- 1 | t,p,H 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/H_RES.csv: -------------------------------------------------------------------------------- 1 | t,p,H 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_CC_LINES.csv: -------------------------------------------------------------------------------- 1 | t,co,cb,INFEASIBILITY_CC_LINES 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_EL_NEG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/INFEASIBILITY_EL_NEG.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_EL_POS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/INFEASIBILITY_EL_POS.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_ES.csv: -------------------------------------------------------------------------------- 1 | t,p,INFEASIBILITY_ES 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_H_NEG.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_NEG 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INFEASIBILITY_H_POS.csv: -------------------------------------------------------------------------------- 1 | t,ha,INFEASIBILITY_H_POS 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/INJ.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/INJ.csv -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/L_es.csv: -------------------------------------------------------------------------------- 1 | t,p,L_es 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/L_hs.csv: -------------------------------------------------------------------------------- 1 | t,p,L_hs 2 | -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/misc_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/misc_results.json -------------------------------------------------------------------------------- /tests/test_data/uniform_redispatch/optionfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_data/uniform_redispatch/optionfile.json -------------------------------------------------------------------------------- /tests/test_data/unsupported_inputformat.xyz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_fbmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_fbmc.py -------------------------------------------------------------------------------- /tests/test_grid_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_grid_model.py -------------------------------------------------------------------------------- /tests/test_grid_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_grid_topology.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_market.py -------------------------------------------------------------------------------- /tests/test_pomato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_pomato.py -------------------------------------------------------------------------------- /tests/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richard-weinhold/pomato/HEAD/tests/test_visualization.py --------------------------------------------------------------------------------