Exercise 1.10 (Production and inventory planning)

A company must deliver di units of its product at the end of the ith month. Material produced during a month can be delivered either at the end of the same month or can be stored as inventory and delivered at the end of a subsequent month; however, there is a storage cost of c1 dollars per month for each unit of product held in inventory. The year begins with zero inventory. If the company produces xi units in month i and xi+1 units in month i + 1, it incurs a cost of c2|xi+1 xi| dollars, reflecting the cost of switching to a new production level. Formulate a linear programming problem whose objective is to minimize the total cost of the production and inventory schedule over a period of twelve months. Assume that inventory left at the end of the year has no value and does not incur any storage costs.

Answers

We have to optimize two parameters: monthly production level xi, i = 1,,12, and the monthly inventory yi, i = 2,,12 (January inventory y1 is assumed to be zero by assumption).

PIC

Figure 1: Production scheme.

Our objective is to minimize the combined cost of production changes and the inventory storing

i=112c 2 |xi xi1| + i=212c 1yi

under the condition that the company is obligated to deliver a certain amount di of its products each month

(yi + xi) yi+1 = di,i = 1,,12

and no unit of product can be stored longer than one month

yi di,i = 1,,12.

These conditions result in the following optimization problem:

minimize i=112c2 |xi xi1| + i=212c1yi subject to(yi + xi) yi+1 = di i = 1,,12 yi di i = 1,,12 xi,yi 0 i = 1,,12.

To convert this into a linear optimization problem, we follow the procedure from the Exercise 1.5:

minimize i=112c2zi + i=212c1yi subject to(yi + xi) yi+1 = di i = 1,,12 yi di i = 1,,12 zi xi xi1 i = 1,,12 zi xi1 xi i = 1,,12 xi,yi,zi 0 i = 1,,12.
User profile picture
2022-02-09 23:28
Comments