This blocks computes output y as sum of the
two input signals u1 and u2. Optionally, either input u1 or u2 or both inputs can be processed conjugate complex, when parameters useConjugateInput1 and useConjugateInput2 are true, respectively.
y = k1*u1Internal + k2*u2Internal;
Example parameters:
k1 = +2,k2 = -3,useConjugateInput1 = true,useConjugateInput2 = falseresult in the following equation:
y = 2 * Modelica.ComplexMath.conj(u1) - 3 * u2