Page 1 of 1

Show the Simulation Run

Posted: Thu Nov 24, 2011 10:59 pm
by drees
Is there anyway to show, as you can in vensim, the name of the simulation run you are seting up. At this stage when you load runs the name of that run is not visible. Is there a way of doing this?

Thanks

David

Re: Show the Simulation Run

Posted: Fri Nov 25, 2011 7:47 am
by Administrator
Add some text to the screen, and in it enter

Code: Select all

Runname = @RUNNAME@
The @RUNNAME@ will be replaced with the current run name.

You can also use

Code: Select all

@RUNNAMENOPATH@
and the following to display the runs that are currently loaded.

Code: Select all

@RUN0@
@RUN1@
...
@RUNn@

Re: Show the Simulation Run

Posted: Sat Nov 26, 2011 10:27 pm
by drees
Thanks

David