I have the following problem:
+----------------------+--------------+--------------+----------+ | Process time (hours) | +----------------------+--------------+--------------+----------+ | Product | Department A | Department B | Material | +----------------------+--------------+--------------+----------+ | Shirts | 2 | 1 | 2 | | Shorts | 2 | 3 | 1 | | Pants | 3 | 4 | 4 | +----------------------+--------------+--------------+----------+
I need to maximize the revenue, considering that each product is processed on both departments. Department A has 120 hours of capacity and department B has 160 hours. 90 yards of material are available for all processing.
Each shirt and short generates \$10 of revenue and each pants generates \$23.
I can create a variable for each product and department (like ShirtA, ShirtB, ShortA, etc.), but even though the result will be the revenue, I'd like to find out if it's possible to use output variables with the sum of each product (Shirt = ShirtA + ShirtB).