How do I use ResQty() Function?

Returns the number of units of a specific resource that the current entity owns. You can use RESQTY() to determine the amount of time necessary to process an entity based on the number of units of a resource the entity owns.

Example

The example below demonstrates the use of RESQTY() to adjust the processing time for an entity based on the number of resources available to process it. Once a Plane arrives at a passenger gate, it captures a certain number of resources named BH (Baggage Handlers). Operation logic at the gate determines how many BH resources have been captured and, accordingly, how long it will take to service the Plane. The more Baggage Handlers a Plane captures, the less time it takes to service it.

IF FREEUNITS(BH)>=5 THEN {GET 5 BH}
ELSE
{
GET FREEUNITS(BH) BH
}
TIME(45/RESQTY(BH) min)

Functions

Was this article helpful?

Related Articles

Go to Top