Define variables
A, B, C = Amount of products
A, B and C processed.
AS , BS, CS = Amount of products
A, B and C Sold.
AB the amount of A used for production of B.
BC the amount of B used for production of C
R1, R2 and R3 amounts of raw
materials 1, 2 and 3 used.
Objective is to maximize profit.
Z = 100AS + 350BS + 500CS
- 50R1 - 20R2 - 40R3
Constraints describe conservation of flow
Process A:
|
AS + AB - A = 0
|
Process B:
|
BS + BC - B = 0
|
Process C:
|
CS - C = 0
|
RM 1:
|
A + B + 0.3C - R1 = 0
|
RM2
|
0.6B + 0.2C - R2 = 0
|
RM3
|
C - R3 = 0
|
A in B:
|
AB - 2B = 0
|
B in C:
|
BC - 1.2C = 0.
|
Simple upper bounds limit production
0 ¾ AS ¾ 100, 0 ¾ BS ¾ 150, 0 ¾ CS
¾ 200
Simple upper bounds imit raw material purchases
0 ¾ R1 ¾ 200, 0 ¾ R2 ¾ 150, 0 ¾ R3
¾ 200
|