Closed
Description
The block is extended from ComplexSIMO:
extends Modelica.ComplexBlocks.Interfaces.ComplexSIMO(final nout=m);
As such it inherits the useConjugateInput boolean parameter. The equations for the block, however, use u rather than uInternal, so the parameter has no effect. The solution is either to extend the block to use uInternal, or pass final useConjugateInput = false in the extends statement.
The same issue exists with SymmetricalComponents, though there the parameter is a boolean vector.