Module containing functions and type definitions for modelling a Petri net in the TeSSLa language Functions for monitoring of the network can be found in module PetriNetMonitoring
Usage:
The petri net
1
--------p1
1 /
p0-------|t0|
\ 2
--------p2
can be modelled in the following way:
import PetriNetStructure
in: t0: Events[Int]
def petriNet =
addPlace("p0", 5, Some(10), true,
addPlace("p1", 6, Some(8), false,
addPlace("p2", 0, None, true,
addTransition("t0", Set.add(Set.empty,("p0", 1)), Set.add(Set.add(Set.empty,("p1", 1)),("p2", 2)), t0,
emptyNet))))
Thereby place p0 has initial capacity of 5, maximum capacity of 10 and uses fifo principle. Place p1 has initial capacity of 6, maximum capacity of 8 and uses lifo principle. Place p2 has initial capacity of 0, no maximum capacity and uses fifo principle.
PetriNet
Type for attributes of a place in the Petri net. Consisting of
Objects of this type can be generated with help of the functions in this module
Place
Type for names of places in the Petri net (alias of String)
PlaceAtt
Type for attributes of a place in the Petri net. Consisting of
Option[Int]
indicating the maximal capacity of a place in the net. None
if there is no maximal capacityTransition
Type for names of transitions in the Petri net (alias of String)
addPlace(name: Place, initial: Int, max: Option[Int], fifo: Bool, pn: PetriNet): PetriNet
Function for adding a new place to a Petri net.
addTransition(name: Transition, from: Set[(Place, Int)], to: Set[(Place, Int)], trigger: Events[Int], pn: PetriNet): PetriNet
Function for adding a new transition to a Petri net.
def addTransition(name: Transition, from: Set[(Place, Int)], to: Set[(Place, Int)], trigger: Events[Int], pn: PetriNet) : PetriNet = {
def completeTransitions = Set.union(Set.map(from, (el) => (el._1,-el._2)), to)
def newTransitions = Map.add(pn.transitions, name, {conn: completeTransitions, trig: trigger})
{
places = pn.places,
transitions = newTransitions
}
}
emptyNet: PetriNet
Constant for an empty Petri net