events
Model discrete events
Parent Section: component
Syntax
events whenEventPredicate
AssignmentList
end end
Description
events
begins the events section, which is terminated by an
end
keyword. The events
section in a component
file manages event updates. It is executed throughout the simulation.
The events
section can contain only when
clauses.
The when
clause serves to update the values of the event variables.
The syntax is
when EventPredicate var1 = expr1; var2 = expr2; ... end
EventPredicate
is an expression that defines when an event
occurs. It must be an expression of event data type, as described in Event Data Type and edge Operator.
The variables in the body of the when
clause must be declared as
event variables.
When the event predicate returns true, all the variables in the body of the
when
clause simultaneously get updated to the new values.
A when
clause can optionally have one or more
elsewhen
branches:
when EventPredicate var1 = expr1; var2 = expr2; ... elsewhen EventPredicate var1 = expr3; ... end
Note
The default else
branch in a when
clause is
illegal.
Syntax Rules
The following rules apply:
The order of
when
clauses does not matter.The order of the variable assignments in the body of a
when
clause does not matter because all updates happen simultaneously.A
when
clause cannot update an event variable more than once within the same assignments list.Two independent
when
clauses may not update the same event variable. You must use anelsewhen
branch to do this.The order of
elsewhen
branches matters. If multiple predicates become true at the same point in time, only the branch with the highest precedence is activated. The precedence of the branches in awhen
clause is determined by their declaration order. That is, thewhen
branch has the highest priority, while the lastelsewhen
branch has the lowest priority.
Version History
Introduced in R2016a