Is it possible to change the Task Executer as a fixed resource without changing its property
Thanks in Advance
Is it possible to change the Task Executer as a fixed resource without changing its property
Thanks in Advance
Might I ask what you are trying to achieve, so we can maybe propose a different solution?
An additional time at the start and end of a process could easily be implemented by using a Multiprocessor.
It sounds like you should be controlling the receiving and releasing in the object process flow of a BasicFR.
You could extend the processing time of an object using delayeventsofobject() but know that this delays all events - not just process finish (so if you had message or open input events scheduled, they'd also get delayed).
For those finding this post and wishing to swap one object with another you may find the copyattributes() function useful along with the more commonly used createcopy() - where the later has the option to replace the object which will preserve any pointers to it elsewhere in the model. Some attributes my not transfer successfully where the properties are incompatible.
Connections you may want to move yourself since then you can preserve the ranks at both ends of the connections (another reason to use pointer labels for references to other objects) - the same for Groups and process flow memberships. Here's a rough example for two objects 'old' and 'new':
connections(new).subnodes.clear(); while(connections(old).subnodes.length) connections(old).first.up=connections(new); if (old.attrs["Groups"]){ new.attrs.assert("Groups"); while(old.attrs["Groups"].subnodes.length) old.attrs["Groups"].first.up=new.attrs["Groups"]; } while(stored(old).subnodes.length) stored(old).first.up=stored(new);
14 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved