{ "cells": [ { "cell_type": "markdown", "source": [ "# Add time series to `System`" ], "metadata": {} }, { "cell_type": "markdown", "source": [ "**Originally Contributed by**: Clayton Barrows" ], "metadata": {} }, { "cell_type": "markdown", "source": [ "## Introduction" ], "metadata": {} }, { "cell_type": "markdown", "source": [ "An example of how to parse add time series data to a `System` using [PowerSystems.jl](github.com/NREL-SIIP/PowerSystems.jl)\n", "\n", "For example, a `System` created by [parsing a MATPOWER file](https://nbviewer.jupyter.org/github/NREL-SIIP/SIIPExamples.jl/blob/master/notebook/2_PowerSystems_examples/parse_matpower.ipynb)\n", "doesn't contain any time series data. So a user may want to add time series to the `System`\n", "### Dependencies\n", "Let's use the 5-bus dataset we parsed in the MATPOWER example" ], "metadata": {} }, { "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[ Info: extending matpower format with data: areas 1x3\n", "[ Info: extending matpower format with data: gen_name 7x4\n", "[ Info: extending matpower format by appending matrix \"gen_name\" in to \"gen\"\n", "[ Info: reversing the orientation of branch 6 (4, 3) to be consistent with other parallel branches\n", "[ Info: the voltage setpoint on generator 4 does not match the value at bus 4\n", "[ Info: the voltage setpoint on generator 1 does not match the value at bus 1\n", "[ Info: the voltage setpoint on generator 5 does not match the value at bus 10\n", "[ Info: the voltage setpoint on generator 2 does not match the value at bus 1\n", "[ Info: the voltage setpoint on generator 3 does not match the value at bus 3\n", "[ Info: removing 1 cost terms from generator 4: [4000.0, 0.0]\n", "[ Info: removing 1 cost terms from generator 1: [1400.0, 0.0]\n", "[ Info: removing 1 cost terms from generator 5: [1000.0, 0.0]\n", "[ Info: removing 1 cost terms from generator 2: [1500.0, 0.0]\n", "[ Info: removing 3 cost terms from generator 6: Float64[]\n", "[ Info: removing 3 cost terms from generator 7: Float64[]\n", "[ Info: removing 1 cost terms from generator 3: [3000.0, 0.0]\n", "┌ Info: Constructing System from Power Models\n", "│ data[\"name\"] = \"nesta_case5_pjm\"\n", "└ data[\"source_type\"] = \"matpower\"\n", "[ Info: Reading bus data\n", "[ Info: Reading generator data\n", "[ Info: Reading branch data\n", "┌ Warning: Rate 1200.0 MW for bus2-bus3-i_4 is larger than the max expected in the range of (min = 134.0, max = 145.0).\n", "└ @ PowerSystems ~/.julia/packages/PowerSystems/61h6O/src/utils/IO/branchdata_checks.jl:148\n", "┌ Warning: Rate 200.0 MW for bus1-bus2-i_1 is larger than the max expected in the range of (min = 134.0, max = 145.0).\n", "└ @ PowerSystems ~/.julia/packages/PowerSystems/61h6O/src/utils/IO/branchdata_checks.jl:148\n", "┌ Warning: Rate 200.0 MW for bus1-bus4-i_2 is larger than the max expected in the range of (min = 134.0, max = 145.0).\n", "└ @ PowerSystems ~/.julia/packages/PowerSystems/61h6O/src/utils/IO/branchdata_checks.jl:148\n", "┌ Warning: Rate 200.0 MW for bus4-bus5-i_7 is larger than the max expected in the range of (min = 134.0, max = 145.0).\n", "└ @ PowerSystems ~/.julia/packages/PowerSystems/61h6O/src/utils/IO/branchdata_checks.jl:148\n", "┌ Warning: Rate 1000.0 MW for bus1-bus5-i_3 is larger than the max expected in the range of (min = 134.0, max = 145.0).\n", "└ @ PowerSystems ~/.julia/packages/PowerSystems/61h6O/src/utils/IO/branchdata_checks.jl:148\n", "[ Info: Reading branch data\n", "[ Info: Reading DC Line data\n", "[ Info: Reading storage data\n" ] }, { "output_type": "execute_result", "data": { "text/plain": "System\n======\nSystem Units Base: SYSTEM_BASE\nBase Power: 100.0\nBase Frequency: 60.0\n\nComponents\n==========\nNum components: 30\n\n\u001b[1m9×3 DataFrame\u001b[0m\n\u001b[1m Row \u001b[0m│\u001b[1m ConcreteType \u001b[0m\u001b[1m SuperTypes \u001b[0m\n\u001b[1m \u001b[0m│\u001b[90m String \u001b[0m\u001b[90m String \u001b[0m\n─────┼────────────────────────────────────────────────────────────────\n 1 │ Arc Topology <: Component <: Infrast…\n 2 │ Area AggregationTopology <: Topology …\n 3 │ Bus Topology <: Component <: Infrast…\n 4 │ Line ACBranch <: Branch <: Device <: …\n 5 │ LoadZone AggregationTopology <: Topology …\n 6 │ PhaseShiftingTransformer ACBranch <: Branch <: Device <: …\n 7 │ PowerLoad StaticLoad <: ElectricLoad <: St…\n 8 │ RenewableDispatch RenewableGen <: Generator <: Sta…\n 9 │ ThermalStandard ThermalGen <: Generator <: Stati…\n\u001b[36m 1 column omitted\u001b[0m\n\nTimeSeriesContainer\n===================\nComponents with time series data: 0\nTotal StaticTimeSeries: 0\nTotal Forecasts: 0\n", "text/html": [ "

System

\n", "

Base Power: 100.0

\n", "

Components

\n", "

Num components: 30

\n", "

9 rows × 3 columns

ConcreteTypeSuperTypesCount
StringStringInt64
1ArcTopology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any6
2AreaAggregationTopology <: Topology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any1
3BusTopology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
4LineACBranch <: Branch <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
5LoadZoneAggregationTopology <: Topology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any1
6PhaseShiftingTransformerACBranch <: Branch <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any2
7PowerLoadStaticLoad <: ElectricLoad <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any3
8RenewableDispatchRenewableGen <: Generator <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any2
9ThermalStandardThermalGen <: Generator <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
\n", "\n", "

TimeSeriesContainer

\n", "

Components with time series data: 0

\n", "

Total StaticTimeSeries: 0

\n", "

Total Forecasts: 0

\n", "

Resolution: 0 seconds

\n" ] }, "metadata": {}, "execution_count": 1 } ], "cell_type": "code", "source": [ "using SIIPExamples\n", "using PowerSystems\n", "using JSON3\n", "\n", "pkgpath = dirname(dirname(pathof(SIIPExamples)))\n", "include(joinpath(pkgpath, \"test\", \"2_PowerSystems_examples\", \"02_parse_matpower.jl\"))" ], "metadata": {}, "execution_count": 1 }, { "cell_type": "markdown", "source": [ "### Define pointers to time series files\n", "For example, if we want to add a bunch of time series files, say one for each load and\n", "one for each renewable generator, we need to define pointers to each .csv file containing\n", "the time series in the following format (PowerSystems.jl also supports a CSV format for this file)" ], "metadata": {} }, { "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[\n", " {\n", " \"component_name\": \"SolarBusC\",\n", " \"normalization_factor\": 1,\n", " \"name\": \"max_active_power\",\n", " \"scaling_factor_multiplier_module\": \"PowerSystems\",\n", " \"data_file\": \"./gen/Renewable/PV/da_solar5.csv\",\n", " \"resolution\": 3600,\n", " \"module\": \"PowerSystems\",\n", " \"category\": \"Generator\",\n", " \"scaling_factor_multiplier\": \"get_max_active_power\",\n", " \"simulation\": \"DAY_AHEAD\",\n", " \"type\": \"SingleTimeSeries\"\n", " },\n", " {\n", " \"component_name\": \"WindBusA\",\n", " \"normalization_factor\": 1,\n", " \"name\": \"max_active_power\",\n", " \"scaling_factor_multiplier_module\": \"PowerSystems\",\n", " \"data_file\": \"./gen/Renewable/WIND/da_wind5.csv\",\n", " \"resolution\": 3600,\n", " \"module\": \"PowerSystems\",\n", " \"category\": \"Generator\",\n", " \"scaling_factor_multiplier\": \"get_max_active_power\",\n", " \"simulation\": \"DAY_AHEAD\",\n", " \"type\": \"SingleTimeSeries\"\n", " },\n", " {\n", " \"component_name\": \"bus2\",\n", " \"normalization_factor\": 1,\n", " \"name\": \"max_active_power\",\n", " \"scaling_factor_multiplier_module\": \"PowerSystems\",\n", " \"data_file\": \"./load/da_load5.csv\",\n", " \"resolution\": 3600,\n", " \"module\": \"PowerSystems\",\n", " \"category\": \"ElectricLoad\",\n", " \"scaling_factor_multiplier\": \"get_max_active_power\",\n", " \"simulation\": \"DAY_AHEAD\",\n", " \"type\": \"SingleTimeSeries\"\n", " },\n", " {\n", " \"component_name\": \"bus3\",\n", " \"normalization_factor\": 1,\n", " \"name\": \"max_active_power\",\n", " \"scaling_factor_multiplier_module\": \"PowerSystems\",\n", " \"data_file\": \"./load/da_load5.csv\",\n", " \"resolution\": 3600,\n", " \"module\": \"PowerSystems\",\n", " \"category\": \"ElectricLoad\",\n", " \"scaling_factor_multiplier\": \"get_max_active_power\",\n", " \"simulation\": \"DAY_AHEAD\",\n", " \"type\": \"SingleTimeSeries\"\n", " },\n", " {\n", " \"component_name\": \"bus4\",\n", " \"normalization_factor\": 1,\n", " \"name\": \"max_active_power\",\n", " \"scaling_factor_multiplier_module\": \"PowerSystems\",\n", " \"data_file\": \"./load/da_load5.csv\",\n", " \"resolution\": 3600,\n", " \"module\": \"PowerSystems\",\n", " \"category\": \"ElectricLoad\",\n", " \"scaling_factor_multiplier\": \"get_max_active_power\",\n", " \"simulation\": \"DAY_AHEAD\",\n", " \"type\": \"SingleTimeSeries\"\n", " }\n", "]" ] } ], "cell_type": "code", "source": [ "FORECASTS_DIR = joinpath(base_dir, \"forecasts\", \"5bus_ts\")\n", "fname = joinpath(FORECASTS_DIR, \"timeseries_pointers_da.json\")\n", "open(fname, \"r\") do f\n", " JSON3.@pretty JSON3.read(f)\n", "end" ], "metadata": {}, "execution_count": 2 }, { "cell_type": "markdown", "source": [ "### Read and assign time series to `System` using these parameters." ], "metadata": {} }, { "outputs": [ { "output_type": "execute_result", "data": { "text/plain": "System\n======\nSystem Units Base: SYSTEM_BASE\nBase Power: 100.0\nBase Frequency: 60.0\n\nComponents\n==========\nNum components: 30\n\n\u001b[1m9×3 DataFrame\u001b[0m\n\u001b[1m Row \u001b[0m│\u001b[1m ConcreteType \u001b[0m\u001b[1m SuperTypes \u001b[0m\n\u001b[1m \u001b[0m│\u001b[90m String \u001b[0m\u001b[90m String \u001b[0m\n─────┼────────────────────────────────────────────────────────────────\n 1 │ Arc Topology <: Component <: Infrast…\n 2 │ Area AggregationTopology <: Topology …\n 3 │ Bus Topology <: Component <: Infrast…\n 4 │ Line ACBranch <: Branch <: Device <: …\n 5 │ LoadZone AggregationTopology <: Topology …\n 6 │ PhaseShiftingTransformer ACBranch <: Branch <: Device <: …\n 7 │ PowerLoad StaticLoad <: ElectricLoad <: St…\n 8 │ RenewableDispatch RenewableGen <: Generator <: Sta…\n 9 │ ThermalStandard ThermalGen <: Generator <: Stati…\n\u001b[36m 1 column omitted\u001b[0m\n\nTimeSeriesContainer\n===================\nComponents with time series data: 5\nTotal StaticTimeSeries: 5\nTotal Forecasts: 0\nResolution: 60 minutes\n", "text/html": [ "

System

\n", "

Base Power: 100.0

\n", "

Components

\n", "

Num components: 30

\n", "

9 rows × 3 columns

ConcreteTypeSuperTypesCount
StringStringInt64
1ArcTopology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any6
2AreaAggregationTopology <: Topology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any1
3BusTopology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
4LineACBranch <: Branch <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
5LoadZoneAggregationTopology <: Topology <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any1
6PhaseShiftingTransformerACBranch <: Branch <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any2
7PowerLoadStaticLoad <: ElectricLoad <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any3
8RenewableDispatchRenewableGen <: Generator <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any2
9ThermalStandardThermalGen <: Generator <: StaticInjection <: Device <: Component <: InfrastructureSystemsComponent <: InfrastructureSystemsType <: Any5
\n", "\n", "

TimeSeriesContainer

\n", "

Components with time series data: 5

\n", "

Total StaticTimeSeries: 5

\n", "

Total Forecasts: 0

\n", "

Resolution: 60 minutes

\n" ] }, "metadata": {}, "execution_count": 3 } ], "cell_type": "code", "source": [ "add_time_series!(sys, fname)\n", "sys" ], "metadata": {}, "execution_count": 3 }, { "cell_type": "markdown", "source": [ "---\n", "\n", "*This notebook was generated using [Literate.jl](https://github.com/fredrikekre/Literate.jl).*" ], "metadata": {} } ], "nbformat_minor": 3, "metadata": { "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.6.0" }, "kernelspec": { "name": "julia-1.6", "display_name": "Julia 1.6.0", "language": "julia" } }, "nbformat": 4 }