Lecture 20
November 11, 2024
Text: VSRIKRISH to 22333
Some relevant questions:
Source: EPA
Want to model flows between waste sources and sinks (disposal sites).
Variable | Definition |
---|---|
Waste produced at source |
|
Capacity of disposal |
|
Waste transported from source |
This network representation takes into account the graph structure of the system, but nothing else.
What else might we need?
To complete the model, need:
Three disposal options:
What are our decision variables?
Variable | Definition |
---|---|
Waste transported from city |
|
Residual waste transported from disposal |
|
Operational status (on/off) of disposal |
What are some components of total system cost?
Variable | Definition |
---|---|
Cost of transporting waste from source |
|
Distance between source |
Variable | Definition |
---|---|
Fixed costs of operating disposal |
|
Variable cost of disposing waste at disposal |
Is this expression for disposal costs right?
The prior expression is only correct if all disposal facilities are operating.
The option to not operate disposal facility
Facility | Fixed Cost ($/yr) | Tipping Cost ($/Mg) | Recycling Cost ($/Mg recycled) |
---|---|---|---|
WTE | 900,000 | 60 | – |
MRF | 400,000 | 5 | 35 |
LF | 700,000 | 40 | – |
MRF Recycling Rate: 40%
Fixed Costs: $900,000/yr
Tipping Cost: $60/Mg handled
Total WTE Cost ($/day):
Recycling: 40%, $35/Mg recycled
Fixed Costs: $400,000/yr
Tipping Cost: $5/Mg handled
Total MRF Cost ($/day):
Fixed Costs: $700,000/yr
Tipping Cost: $40/Mg handled
Total LF Cost ($/day):
Transportation Cost: $1.50/Mg-km
Total Tranportation Cost ($/day):
Combining the transportation and disposal costs and simplifying:
City 1:
City 2:
Recycling Rate: 40%
WTE Residual Ash: 20%
WTE:
MRF:
LF:
Some solvers allow you to directly translate indicator constraints into JuMP. For example,
implements
Not all frameworks support this type of syntax. So what can we do?
Use a “big-M” reformulation:
where
After putting this all into JuMP (you know how!), optimal objective is $26,879/day.
Another example: power flow modeling through a transmission network.