All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class examples.warehouse.WareHouseSimulation

java.lang.Object
   |
   +----java.util.Observable
           |
           +----simula.simset.simulation.Simulation
                   |
                   +----examples.warehouse.WareHouseSimulation

public class WareHouseSimulation
extends Simulation
A versatile warehouse model


Variable Index

 o arr
Arrivals frequency
 o arrived
Arrived batches
 o iharea
Number of itemes transited for the warehouse
 o in1
Lower bound for incoming batches
 o in2
Upper boud for incoming batches
 o lastevent
Time of last arrive/departure
 o m
Storage space
 o n
Occuped storage space
 o out1
Lower bound for outgoing batches
 o out2
Upper bound for outgoing batches
 o rejected
Rejected batches
 o rem
Removal frequency
 o seed
Random generator seed
 o simperiod
Simulation length
 o worker
Process wich performs batch processing

Constructor Index

 o WareHouseSimulation()

Method Index

 o main(String[])
Start the simualtion, instantiating a new Simulation and launching the main program

Variables

 o arr
 public double arr
Arrivals frequency

 o rem
 public double rem
Removal frequency

 o iharea
 public double iharea
Number of itemes transited for the warehouse

 o lastevent
 public double lastevent
Time of last arrive/departure

 o simperiod
 public double simperiod
Simulation length

 o arrived
 public int arrived
Arrived batches

 o rejected
 public int rejected
Rejected batches

 o in1
 public int in1
Lower bound for incoming batches

 o in2
 public int in2
Upper boud for incoming batches

 o out1
 public int out1
Lower bound for outgoing batches

 o out2
 public int out2
Upper bound for outgoing batches

 o n
 public int n
Occuped storage space

 o m
 public int m
Storage space

 o seed
 public int seed
Random generator seed

 o worker
 public Removals worker
Process wich performs batch processing

Constructors

 o WareHouseSimulation
 public WareHouseSimulation()

Methods

 o main
 public static void main(String args[])
Start the simualtion, instantiating a new Simulation and launching the main program

Parameters:
args[] - Ignored
See Also:
Simulation, SimulationMain

All Packages  Class Hierarchy  This Package  Previous  Next  Index