Ejemplo n.º 1
0
 public QueueObserver(Simulation mySimulation, string name) : base(mySimulation, name)
 {
     queueLength          = new Variable <int>(this);
     queueLengthStatistic = new WeightedStatistic("QueueLength");
     meanQueueLength      = new Statistic("meanQueueLength");
     stdQueueLength       = new Statistic("stdQueueLength");
 }
Ejemplo n.º 2
0
 public OptimiserObserver(Simulation mySimulation, string name) : base(mySimulation, name)
 {
     queueLength          = new Variable <int>(this);
     QueueLengthStatistic = new WeightedStatistic("QueueLength");
 }
Ejemplo n.º 3
0
 public DispatcherObserver(Simulation mySimulation) : base(mySimulation)
 {
     queueLength          = new Variable <int>(this);
     queueLengthStatistic = new WeightedStatistic("Dispatcher queue length");
 }
Ejemplo n.º 4
0
 public TotalQueueObserver(Simulation mySimulation) : base(mySimulation)
 {
     queueLength          = new Variable <int>(this);
     queueLengthStatistic = new WeightedStatistic("QueueLength");
 }
Ejemplo n.º 5
0
 public ServerPoolObserver(Simulation sim) : base(sim)
 {
     nrOfJobs          = new Variable <int>(this);
     nrOfJobsStatistic = new WeightedStatistic("Number of jobs per serverpool");
 }