Skip to content

Commit eb5c01b

Browse files
authored
Fix ComplexPassThrough to operate on Complex signals (#2822)
1 parent 9e546f0 commit eb5c01b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modelica/ComplexBlocks.mo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2401,15 +2401,15 @@ value of the additional u index:</p>
24012401

24022402
model ComplexPassThrough
24032403
"Pass a Complex signal through without modification"
2404-
extends Modelica.Blocks.Interfaces.SISO;
2404+
extends Modelica.ComplexBlocks.Interfaces.ComplexSISO;
24052405
equation
24062406
y = u;
24072407
annotation (Icon(coordinateSystem(preserveAspectRatio=true, extent={{-100,
24082408
-100},{100,100}}), graphics={Line(points={{-100,0},{100,0}},
24092409
color={0,0,127})}),
24102410
Documentation(info="<html>
24112411
<p>
2412-
Passes a Complex signal through without modification. Enables signals to be read out of one bus, have their name changed and be sent back to a bus.
2412+
Passes a Complex signal through without modification. Enables signals to be read out of one bus, have their name changed and be sent back to a bus.
24132413
</p>
24142414
</html>"));
24152415
end ComplexPassThrough;

0 commit comments

Comments
 (0)