Package | Description |
---|---|
desmoj.extensions.applicationDomains.production |
Example model components for production system simulation.
|
Modifier and Type | Method and Description |
---|---|
Transportation |
SimpleTransporter.getTransportation()
Returns the
Transportation order this SimpleTransporter is
supposed to execute. |
Modifier and Type | Method and Description |
---|---|
boolean |
TransportJunction.cooperate(Transportation transportation)
This method is inherited from the class
WaitQueue and will
be overwritten here to use the more suitable method
transport(Transportation) . |
boolean |
TransportJunction.cooperate(Transportation transportation,
Condition cond)
This method is inherited from the class
WaitQueue and will
be overwritten here to use the more suitable method
transport(Transportation, Condition) . |
void |
SimpleTransporter.setTransportation(Transportation newTransportation)
Sets a new
Transportation order this SimpleTransporter is
supposed to carry out. |
boolean |
TransportJunction.transport(Transportation transportation)
This method is to be called from a
Transporter which wants
to transport goods as a master. |
boolean |
TransportTerminal.transport(Transportation transport)
This method is to be called from a
Transporter which wants
to transport goods. |
boolean |
TransportJunction.transport(Transportation transportation,
Condition cond)
This method is to be called from a
Transporter who wants
to transport goods which comply to a certain condition. |
boolean |
TransportTerminal.transport(Transportation transport,
Condition cond)
This method is to be called from a
Transporter who wants
to transport goods which comply to a certain condition. |
Constructor and Description |
---|
SimpleTransporter(Model owner,
java.lang.String name,
int minLoad,
int capac,
Transportation transport,
TransportJunction homeBase,
NumericalDist<?> returnTime,
boolean showInTrace)
Constructs a SimpleTransporter which will carry around goods in a
manufacturing system, from and to a certain
TransportJunction . |
SimpleTransporter(Model owner,
java.lang.String name,
int capac,
Transportation transport,
TransportJunction homeBase,
NumericalDist<?> returnTime,
boolean showInTrace)
Constructs a SimpleTransporter which will carry around goods in a
manufacturing system, from and to a certain
TransportJunction . |
TransportTerminal(Model owner,
java.lang.String name,
int numOfTransp,
int capac,
int minLoad,
NumericalDist<?> transportTimeStream,
NumericalDist<?> returnTime,
int mSortOrder,
int mQCapacity,
int sSortOrder,
int sQCapacity,
Transportation transportation,
boolean showInReport,
boolean showInTrace)
Constructor for a simple TransportTerminal where a given number of
SimpleTransporter s wait for goods to carry them to their
destination. |