How can we get outputs from a parameter variation experiment?
I added a parameter variation experiment to a simple stochastic discrete model (material arrivals, delays, materials
departure). The default experiment runs fine. But I need replications and the output in the form of mean values and
their confidence intervals. I can not use the data sets and plots I have on the simulation experiment. Do I have to
write code to get outputs form the parameter variation experiment? I hope not.
Pavel — 16.04.08
One of the simple variants is the following. Let suppose there is a histogram data in the model. Add a ‘plot’ and
‘dataset’ to a Parameter Variation Experiment. Then go to the advanced properties of the experiment and in ‘After
Simulation Run’ field type the code like the following:
dataset.add(dataset.size(),root.data.mean());
So you will see the dependence of mean values on iteration numbers.
I hope that this approach corresponds to your idea.