Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem 3 : Economic dispatch with network constraints In this problem, you will implement a solver to solve the economic dispatch problem with a general
Problem : Economic dispatch with network constraints
In this problem, you will implement a solver to solve the economic dispatch problem with a
general power network.
For a power network with buses and lines, the inputs of your solver include:
Network data:
Number of buses number of lines
Susceptances
Nodeedge incidence matrix
Flow capacities:
Generator data:
For convenience, we assume there is a generator at every bus. For a bus where
there is not actually a generator, we can simply set the corresponding generation
capacity to be zero.We work with quadratic generator costs:
We are given and
Minimum and maximum allowed generation level: and
Again, for buses without a generator, we have
Load data:
We work with inelastic loads and are given
Your solver should solve the economic dispatch problem with network constraints and
produce the outputs listed below:
Solver status: solved, infeasible or unbounded
Depending on the data, the problem may not have a welldefined solution. If it
has a finite solution the solver status reported should solved.
the problem does not have any feasible point, the solver status reported should
infeasible. the problem unbounded below the solver status
reported should unbounded.
Generator dispatch:
Phase angles:
Line flows:
Optimal cost:
Implement the solver described above Matlab any other language
Consider the IEEE bus test case shown below. The generator buses are
The load buses are Suppose ; all
generator minimum generation level and maximum generation level ; all loads
are ; all lines have susceptance except line which has susceptance ; all line
capacities are Solve the economic dispatch problem with this set inputs using
your solver and report the outputs. Need help determining these inputs in the code code: Ain npzeros # Nodeedge incidence matrix replace with actual data
b nparray # Flow capacities replace with actual data
c nparray # Generator costs replace with actual data
pmin npzerosn # Minimum generation level
pmax nparray n # Maximum generation level
l nparray # Load data
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started