DRThiele Posted April 29, 2016 Share Posted April 29, 2016 I need to set up a server or (preferably) workstation to mimic an autoclave wherein: 1 three entities need to be "loaded" into the autoclave before processing can start 2 all three entities are visible in the processing queue 3 all 3 entities are processed and "unloaded" at the same time I've been able to achieve 1 & 2 but not 3. My preference would be to have entities accumulate in the input queue before three are loaded, processed and unloaded together Thanks Link to comment Share on other sites More sharing options...
GFleurquin Posted April 29, 2016 Share Posted April 29, 2016 An "on entered" process which makes entities wait until there are 3 in the queue + a server of capacity 3 could make what you want, I think. Link to comment Share on other sites More sharing options...
DRThiele Posted April 30, 2016 Author Share Posted April 30, 2016 Thanks ~ this is the approach I've been using but it only achieves 1 & 2. Entities are release separately no mater where I apply the "Wait" process Link to comment Share on other sites More sharing options...
GFleurquin Posted May 2, 2016 Share Posted May 2, 2016 I am not sure I understand "released separately". Your 3 entities are processed and then released separately, this is the classic behaviour in a server. But if your server has a capacity =3 and the entities entered it at the same time, they should be released separately but at the same time. If not, there might be a problem in either your capacity, processing time or the "wait" logic... Link to comment Share on other sites More sharing options...
JBeltran Posted May 2, 2016 Share Posted May 2, 2016 An alternative approach might be using a combiner upstream to the WS to create a fictional entity, let's call it "block", which contains all 3 objects. This way, the workstation process a single entity (the block). All 3 original entities enter and leave the WS at the same time, obviously. Downstream the Ws, you can split the block into its 3 original entities, and it's all done. Meilleures salutations, Link to comment Share on other sites More sharing options...
Recommended Posts