package event
The event
package contains example applications for event oriented
simulation models.
- Alphabetic
- By Inheritance
- event
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
BankModel
extends Model
The
BankModel
class defines a simple Event-Scheduling model of a Bank where service is provided by one teller and models an M/M/1 queue. -
class
BankModel2
extends Model
The
BankModel2
class defines a simple Event Graph model of a Bank where service is provided by one teller and models an M/M/1 queue. -
class
CallCenterModel
extends Model
The
CallCenterModel
class defines a simple Event-Scheduling model of a Call Center where service is provided by one tele-service representative and models an M/M/1/1 queue. -
class
CallCenterModel2
extends Model
The
CallCenterModel2
class defines a simple Event Graph model of a Call Center where service is provided by one tele-service representative and models an M/M/1/1 queue. -
class
MachineModel
extends Model
The
MachineModel
class defines an Event-Scheduling model of a two-stage manufacturing process, which consists of two machines in series M1 and M2.
Value Members
-
object
Bank
extends App with Modelable
The
Bank
object defines a particular scenario under which to execute the Bank model.The
Bank
object defines a particular scenario under which to execute the Bank model.- See also
scalation.event.ModelTest for another example of test code. > run-main apps.event.Bank
-
object
Bank2
extends App with Modelable
The
Bank2
object defines a particular scenario under which to execute the Bank model.The
Bank2
object defines a particular scenario under which to execute the Bank model. It is the same asBank
, except that causal links are added to enable the model to be animated as an Event Graph.- See also
scalation.event.ModelTest for another example of test code. > run-main apps.event.Bank2
-
object
CallCenter
extends App with Modelable
The
CallCenter
object defines a particular scenario under which to execute the Call Center model.The
CallCenter
object defines a particular scenario under which to execute the Call Center model.- See also
scalation.event.ModelTest for another example of test code. > run-main apps.event.CallCenter
-
object
CallCenter2
extends App with Modelable
The
CallCenter2
object defines a particular scenario under which to execute the Call Center model.The
CallCenter2
object defines a particular scenario under which to execute the Call Center model. It is the same asCallCenter
, except that causal links are added to enable the model to be animated as an Event Graph.- See also
scalation.event.ModelTest for another example of test code. > run-main apps.event.CallCenter2
-
object
Machine
extends App with Modelable
The
Machine
object defines a particular scenario under which to execute the Machine model.The
Machine
object defines a particular scenario under which to execute the Machine model.- See also
scalation.event.ModelTest for another example of test code. > run-main apps.event.Machine