Hello,
I use scheduled source in my model and I have pointer labels here. When I copy and paste the names of these labels from a different file, the label format turns to string. Is there any way to solve this problem?
Thank you.
Hello,
I use scheduled source in my model and I have pointer labels here. When I copy and paste the names of these labels from a different file, the label format turns to string. Is there any way to solve this problem?
Thank you.
The pointers are to objects in your 'from' model. They do not exist in the target model in the same memory location so you'll need to write a script to find them and reassign them.
You just need to find the table in the scheduled source and then read and write values from that. The easiest way is to use the sampler from the script window to sample a cell in your arrival table.
Then the script is something like this:
Table t=Model.find("Tools/ProcessFlow/ProcessFlow/Source>variables/arrivals"); for (int n=t.numRows;n>0;n--){ Object o=Model.find(t[n]["Object"]); if (o) t[n]["Object"]=o; }
Thank you for your reply. Yes, I guessed that the solution was script but I didn't know how to express it, can you help me?
13 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