Packages

  • package root
    Definition Classes
    root
  • package scalation
    Definition Classes
    root
  • package activity

    The activity package contains classes, traits and objects for activity-oriented simulation models (for example, Petri Nets).

    The activity package contains classes, traits and objects for activity-oriented simulation models (for example, Petri Nets).

    Definition Classes
    scalation
  • package analytics

    The analytics package contains classes, traits and objects for analytics including clustering and prediction.

    The analytics package contains classes, traits and objects for analytics including clustering and prediction.

    Definition Classes
    scalation
  • package animation

    The animation package contains classes, traits and objects for 2D animation of simulation objects.

    The animation package contains classes, traits and objects for 2D animation of simulation objects.

    Definition Classes
    scalation
  • package calculus

    The calculus package contains classes with methods for computing derivatives, gradient vectors, Jacobian matrices, integrals and basic operators in Functional Analysis.

    The calculus package contains classes with methods for computing derivatives, gradient vectors, Jacobian matrices, integrals and basic operators in Functional Analysis.

    Definition Classes
    scalation
  • package dynamics

    The dynamics package contains classes, traits and objects for system dynamics simulations using Ordinary Differential Equations (ODEs).

    The dynamics package contains classes, traits and objects for system dynamics simulations using Ordinary Differential Equations (ODEs).

    Definition Classes
    scalation
  • package dynamics_pde

    The dynamics_pde package contains classes, traits and objects for system dynamics simulations using Partial Differential Equations 'PDE's.

    The dynamics_pde package contains classes, traits and objects for system dynamics simulations using Partial Differential Equations 'PDE's.

    Definition Classes
    scalation
  • package event

    The event package contains classes, traits and objects for event oriented simulation models (for example, event scheduling or event graphs).

    The event package contains classes, traits and objects for event oriented simulation models (for example, event scheduling or event graphs).

    Definition Classes
    scalation
  • CausalLink
  • Entity
  • Event
  • EventNode
  • Model
  • ModelTest
  • WaitQueue
  • package graphalytics

    The graphalytics package contains classes, traits and objects for graph analytics on Trees, 'DAG's and Directed Graphs.

    The graphalytics package contains classes, traits and objects for graph analytics on Trees, 'DAG's and Directed Graphs. It provides an implicit conversion when needed for converting doubles to vectors.

    Definition Classes
    scalation
  • package maxima

    The maxima package contains classes, traits and objects for optimization to find maxima.

    The maxima package contains classes, traits and objects for optimization to find maxima.

    Definition Classes
    scalation
  • package minima

    The minima package contains classes, traits and objects for optimization to find minima.

    The minima package contains classes, traits and objects for optimization to find minima.

    Definition Classes
    scalation
  • package model

    The model package contains a trait giving a template for models to follow.

    The model package contains a trait giving a template for models to follow.

    Definition Classes
    scalation
  • package moleculesampleapp
    Definition Classes
    scalation
  • package process

    The process package contains classes, traits and objects for process-oriented simulation models (for example, process-interaction).

    The process package contains classes, traits and objects for process-oriented simulation models (for example, process-interaction).

    Definition Classes
    scalation
  • package queueingnet

    The queueingnet package contains classes, traits and objects for solving simple queueing network problems.

    The queueingnet package contains classes, traits and objects for solving simple queueing network problems.

    Definition Classes
    scalation
  • package scala3d

    The scala3d package contains classes, traits and objects for for simple 3D graphics in scala, based upon javafx.

    The scala3d package contains classes, traits and objects for for simple 3D graphics in scala, based upon javafx. Its package object contains type aliases for 'javafx.geometry.Point3D' and all subclasses of 'javafx.scene.shape.Shape3D'.

    Definition Classes
    scalation
  • package state

    The state package contains classes, traits and objects for state-oriented simulation models (for example, Markov Chains).

    The state package contains classes, traits and objects for state-oriented simulation models (for example, Markov Chains).

    Definition Classes
    scalation
  • package tableau

    The tableau package contains classes for tableau oriented simulation models (similar to spreadsheet simulations).

    The tableau package contains classes for tableau oriented simulation models (similar to spreadsheet simulations).

    Definition Classes
    scalation

package event

The event package contains classes, traits and objects for event oriented simulation models (for example, event scheduling or event graphs).

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. event
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class CausalLink (label: String, director: Model, condition: () ⇒ Boolean, causedEvent: Event) extends Identifiable with Product with Serializable

    The CausalLink class provides casual links between events.

    The CausalLink class provides casual links between events. A causal link indicates that a "causing event" (from node) conditionally may triggers a "caused event" (to node).

    label

    the name/label of the causal link

    director

    the controller/scheduler that this causal link is a part of

    condition

    the condition under which the link is triggered

    causedEvent

    the event caused by this causal link

  2. case class Entity (iArrivalT: Double, serviceT: Double, director: Model) extends Product with Serializable

    The Entity class represents a single simulation entity for event-scheduling simulation.

    The Entity class represents a single simulation entity for event-scheduling simulation.

    iArrivalT

    the time from the last arrival

    serviceT

    the amount of time required for the entity's next service

    director

    the controller/scheduler that this event is a part of

  3. abstract class Event extends Identifiable with Ordered[Event]

    The Event class provides facilities for defining simulation events.

    The Event class provides facilities for defining simulation events. Subclasses of Event provide event-logic in their implementation of the 'occur' method. Note: unique identification is mixed in via the Identifiable trait.

  4. class EventNode extends Event

    The EventNode class provides facilities for representing simulation events graphically.

    The EventNode class provides facilities for representing simulation events graphically. It extends the Event class with animation capabilities. Note: unique identification is mixed in via the Identifiable trait in the Event superclass.

  5. class Model extends Modelable with Identifiable

    The Model class schedules events and implements the time advance mechanism for simulation model following the event-scheduling world view.

  6. case class WaitQueue (director: Model, ext: String = "", cap: Int = Int.MaxValue) extends Queue[Entity] with Product with Serializable

    The WaitQueue class is used to hold entities waiting for service and collect statistics on waiting times.

    The WaitQueue class is used to hold entities waiting for service and collect statistics on waiting times. When the queue is full, entities are 'barred' from entering the queue.

    director

    the controller/scheduler that this event is a part of

    ext

    the extension to distinguish the wait queues

    cap

    the capacity of the queue (defaults to unbounded)

Value Members

  1. object Entity extends Serializable

    The Entity companion object provides a counter for generating entity ids.

  2. object EventNode

    The EventNode companion object provides a method for making a prototype entity.

    The EventNode companion object provides a method for making a prototype entity. A prototype event or entity is thought to exist before the simulation starts.

  3. object ModelTest extends App

    The ModelTest object is used to test the Model class.

    The ModelTest object is used to test the Model class. > run-main scalation.event.ModelTest

Inherited from AnyRef

Inherited from Any

Ungrouped