Package-level declarations

Types

Link copied to clipboard

Determines movable resource that is closest to the request location

Link copied to clipboard
data class DistanceData(val fromLoc: String, val toLoc: String, val distance: Double)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Determines movable resource that is furthest from the request location

Link copied to clipboard

A great circle spatial model represents the distance between two coordinates on the earth based on latitude and longitude. It provides an approximate distance of travelling along the great circle between the coordinates. The model implemented within the KSL allows for the adjustment of the distance based on circuity factor. The circuity factor will adjust the distance based on the mode of transport road or rail.

Link copied to clipboard

This rule sorts the resources such that this is ordered from least seized to most seized and then allocates the first element

This rule sorts the resources such that list is ordered from least to most utilized and then allocates the first element

Link copied to clipboard
Link copied to clipboard
open class MovableResource(parent: ModelElement, initLocation: LocationIfc, defaultVelocity: RandomIfc, name: String? = null) : Resource, MovableResourceIfc, MoveableResourceCIfc

A movable resource is a single unit capacity resource that resides within a spatial model and thus can be moved.

Link copied to clipboard

The default is to allocate all available from each resource until amount needed is met in the order in which the resources are listed within the list.

Link copied to clipboard

This rule will sort the list according to the comparator and then allocate the first element

Link copied to clipboard

Function to determine which movable resource should be allocated to a request. The function provides the location of the request to allow distance based criteria to be used.

Link copied to clipboard
Link copied to clipboard
open class MovableResourcePool(parent: ModelElement, movableResources: List<MovableResource>, defaultVelocity: RandomIfc, name: String? = null) : AbstractResourcePool<MovableResource> , VelocityIfc

A MovableResourcePool represents a list of movable resources from which resources can be selected to fill requests made by Entities.

Link copied to clipboard
class MovableResourcePoolWithQ(parent: ModelElement, movableResources: List<MovableResource>, defaultVelocity: RandomIfc, queue: RequestQ? = null, name: String? = null) : MovableResourcePool, VelocityIfc

A MovableResourcePool represents a list of MovableResource from which resources can be selected to fill requests made by Entities.

Link copied to clipboard

Returns a list of movable resources that are available for allocation. If the returned list is empty, this means that there were no movable resources available. It is important to note that the returned list may have more units available than requested. Resource allocation rules are used to select from the returned list to specify which of the list of resources may be allocated to meet the request. This rule selects all that are available.

Link copied to clipboard

Provides for a method to select movable resources from a list such that the returned list will contain movable resources that can satisfy the request or the list will be empty.

Link copied to clipboard
class MovableResourceWithQ(parent: ModelElement, initLocation: LocationIfc, defaultVelocity: RandomIfc, queue: RequestQ? = null, name: String? = null) : MovableResource, ResourceWithQCIfc

A movable resource is a single unit capacity resource that resides within a spatial model and thus can be moved.

Link copied to clipboard
Link copied to clipboard

This rule randomly picks from a list of movable resources that can satisfy the request.

Link copied to clipboard
class RectangularGridSpatialModel2D(width: Double = Double.MAX_VALUE, height: Double = Double.MAX_VALUE, numRows: Int = 1, numCols: Int = 1, upperX: Double = 0.0, upperY: Double = 0.0) : SpatialModel

Creates a grid in the 2D plane. The grid is based on the standard user coordinate system, with (x,y) = (0,0) being the upper left most corner point, with the x-axis going from left to right and the y-axis going from the top down

Link copied to clipboard
class SpatialElement(val modelElement: ModelElement, initLocation: LocationIfc = modelElement.spatialModel.defaultLocation, aName: String? = null, val observableComponent: ObservableComponent<SpatialElementIfc> = ObservableComponent()) : ObservableIfc<SpatialElementIfc> , SpatialElementIfc

Creates a spatial element associated with the spatial model at the location. A spatial element is something associated with a spatial model that has a location.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open class SpatialModelElement(parent: ModelElement, initLocation: LocationIfc, defaultVelocity: RandomIfc, aName: String? = null) : ProcessModel, SpatialElementIfc, VelocityIfc
Link copied to clipboard
interface VelocityIfc

Functions

Link copied to clipboard

Computes and assigns the distance to the provided location from the current location of the resource for each resource. The distance is assigned to the resource's sectionCriteria attribute. This mutates elements of the list.