question

Steven avatar image
0 Likes"
Steven asked Steven edited

How to obtain the simulation data after executing go() in script console?

Dear all,

When using go () to run the model in the script console, I want to get the simulation output data immediately. The details are as follows: before executing FlexScript, Table("Result")[9][1] is 699.

1646616270851.png

After executing FlexScript, the printed table ("result") [9] [1] is still 699 instead of the new value 517.

1646616386389.png

I found that FlexScript will execute the next code immediately after executing go(), regardless of whether the simulation ends or not. Is there any way to get the simulation results in the code after go()?

I've been troubled by this problem for several days. This is my model, Mymodel.fsm

Please help me, thanks.@Phil BoBo @Ben Wilson


FlexSim 20.1.3
flexscriptmodel runoutput data
1646616270851.png (52.2 KiB)
1646616386389.png (55.3 KiB)
mymodel.fsm (260.4 KiB)
· 4
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Phil BoBo avatar image
0 Likes"
Phil BoBo answered Steven edited

The simulation is not run entirely within the call to the go() command.

The go() command sets a variable in the program that tells it to start processing simulation events. The event processing does not happen in-line within the execution of that FlexScript function.

If you want a callback when your model is finished, then you need to add code somewhere else that fires when your model is finished. 'When your model is finished' will depend on the model. It is up to you to determine when that is and where your code should go. Perhaps in a user event at a specific time, you should stop the model and record the results.

· 7
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.