Hello,
A model has several orders with different request amount and different product types.
Processors needs to setup while changing product type.
I try to arrange process schedule of orders to minimize total process.
For example, three products and three processors with different cycle time:
Order:
ItemA : 200
ItemB : 100
ItemC : 150
Solution 1:
ProcA-ItemA*200
ProcB-ItemB*100
ProcC-ItemC*150
Solution 2:
ProcA-ItemA*100
ProcB-ItemA*100
ProcC-ItemB*100
ProcA-ItemC*50
ProcB-ItemC*50
ProcC-ItemC*50
Is it possible way to make this as variable for OptQuest, so I may get best solution about how to schedule process?