Functions

How do I use a FREE Statement?

The free statement allows you to free a resource (or resources) used by the current entity. Syntax FREE [ quantity...

How do I use a GET Statement?

The Get statement enables an entity to obtain a resource. In addition to being short and easy to use for...

How do I use IF…THEN…ELSE Statement?

The if statement is used to test for a condition and then execute sections of logic based on whether that condition...

How do I use INC Statement?

The increment statement allows you to increment a variable or attribute’s value. It adds one (the default) or more to...

How do I use a JOINTLYGET Statement?

The JointlyGet statement enables an entity to obtain a resource. The JointlyGet performs the same function as the Get except...

How do I use NEWGRAPHIC Statement?

This statement allows you to change an entity’s graphic without changing the name of the entity. The NEWGRAPHIC statement will...

How do I use NEWNAME Statement?

This statement allows you to change the name of an entity along with its graphic so that model animation as...

How do I use PAUSE Statement?

Pauses the simulation and (optionally) displays a user-specified message. This pause allows you to examine the system in detail by...

How do I use REPORT Statement?

Calculates and reports the current statistics to the output database. This is useful to get a snapshot of the model...

How do I use STOP Statement?

Terminates the current replication and optionally displays a message. The simulation will then continue with the next replication. Use STOP...

How do I use TIME Statement?

The time statement allows you to require the entity to spend time at an activity and has the same effect...

How do I use WAIT UNTIL Statement?

Delays processing of the current logic until the Boolean expression is true. The rest of the model continues to process...

How do I use WHILE DO Statement?

Repeats logic or logic block continuously while a condition remains true. Syntax WHILE DOWHILE v_Var1 > 3 DO TIME(10 min)WHILE...
Go to Top