This function replicates the boolean input signal to an array of nout
identical output signals.
function booleanReplicator input Integer nout = 1 "Number of outouts"; input Boolean u "Boolean input signal"; output Boolean y[nout] "Boolean output signals"; end booleanReplicator;