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
-
arr
- Arrivals frequency
-
arrived
- Arrived batches
-
iharea
- Number of itemes transited for the warehouse
-
in1
- Lower bound for incoming batches
-
in2
- Upper boud for incoming batches
-
lastevent
- Time of last arrive/departure
-
m
- Storage space
-
n
- Occuped storage space
-
out1
- Lower bound for outgoing batches
-
out2
- Upper bound for outgoing batches
-
rejected
- Rejected batches
-
rem
- Removal frequency
-
seed
- Random generator seed
-
simperiod
- Simulation length
-
worker
- Process wich performs batch processing
-
WareHouseSimulation()
-
-
main(String[])
-
Start the simualtion, instantiating a new Simulation and launching the main program
arr
public double arr
- Arrivals frequency
rem
public double rem
- Removal frequency
iharea
public double iharea
- Number of itemes transited for the warehouse
lastevent
public double lastevent
- Time of last arrive/departure
simperiod
public double simperiod
- Simulation length
arrived
public int arrived
- Arrived batches
rejected
public int rejected
- Rejected batches
in1
public int in1
- Lower bound for incoming batches
in2
public int in2
- Upper boud for incoming batches
out1
public int out1
- Lower bound for outgoing batches
out2
public int out2
- Upper bound for outgoing batches
n
public int n
- Occuped storage space
m
public int m
- Storage space
seed
public int seed
- Random generator seed
worker
public Removals worker
- Process wich performs batch processing
WareHouseSimulation
public WareHouseSimulation()
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