
blockMultiSwitch
Set Boolean expression that is associated with the first active input signal
Information
The block has a vector of Boolean input signals u[nu] and a vector of
(time varying) Boolean expressions expr[:]. The output signal y is
set to expr[i], if i is the first element in the input vector u that is true. If all input signals are
false, y is set to parameter "y_default" or to pre(y) depending on the parameter use_pre_as_default:
// Conceptual equation (not valid Modelica)
i = 'first element of u[:] that is true';
y = if i==0 then if use_pre_as_default then pre(y) else y_default else expr[i];
Parameters
| Type | Name | Default | Description |
| Boolean | use_pre_as_default | true | set true to hold last value as default (y_default = pre(y)) |
| Boolean | y_default | false | Default value of output y if all u[i] = false |
| Integer | nu | 0 | Number of input connections |
Components
| Type | Name | Default | Description |
| Boolean[nu] | expr | fill(false, nu) | y = if u[i] then expr[i] else y_default (time varying) |