---+ The Transportation Problem in AMPL ---++ AMPL Formulation The formulation of the transportation problem is AMPL is a straighforward translation of the matehmatical programme for [[TransportationProblem][the transportation problem]]. The sets %${\cal S}$% and %${\cal D}$% are declared as =SUPPLY_NODES= and =DEMAND_NODES= respectively: <pre> set SUPPLY_NODES; set DEMAND_NODES; </pre> The supply %$s_i, i \in {\cal S}$% and demand %$d_j, j \in {\cal D}$% are declared as *integer* parameters: <pre> param Supply {SUPPLY_NODES} >= 0, integer; param Demand {DEMAND_NODES} >= 0, integer; </pre> The cost %$c_{ij}$% is declared over the =SUPPLY_NODES= and =DEMAND_NODES=: <pre> param Cost {SUPPLY_NODES, DEMAND_NODES}; </pre> Now, the mathematical proramme follows directly: <pre> var Flow {i in SUPPLY_NODES, j in DEMAND_NODES} >= 0, integer; minimize TotalCost: sum {i in SUPPLY_NODES, j in DEMAND_NODES} Cost[i, j] * Flow[i, j]; subject to UseSupply {i in SUPPLY_NODES}: sum {j in DEMAND_NODES} Flow[i, j] = Supply[i]; subject to MeetDemand {j in DEMAND_NODES}: sum {i in SUPPLY_NODES} Flow[i, j] = Demand[j]; </pre> Note that we assume the transportation is balanced. -- Main.MichaelOSullivan - 02 Apr 2008
This topic: OpsRes
>
WebHome
>
AMPLGuide
>
TransportationProblemInAMPL
Topic revision: r2 - 2008-04-02 - MichaelOSullivan
Copyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback