Skip to content

Commit

Permalink
Fix comparison signals
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Feb 15, 2024
1 parent c2f4e94 commit 0f95804
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 26 deletions.
30 changes: 15 additions & 15 deletions Modelica/Electrical/Analog/Examples/Lines/CompareLineTrunks.mo
Expand Up @@ -60,23 +60,23 @@ model CompareLineTrunks "Compares oLine and tLine splitting lines into trunks"
extent={{-10,10},{10,-10}},
rotation=-90)));
Basic.Ground ground2 annotation (Placement(transformation(extent={{-50,-70},{-30,-50}})));
Modelica.Electrical.Analog.Lines.TLine tLine1(Z0=z0, TD=td,
Modelica.Electrical.Analog.Lines.TLine tLine1(Z0=z0, TD=td,
er(start=0),
v2(start=0)) annotation (
Placement(transformation(extent={{-30,-40},{-10,-20}})));
Modelica.Electrical.Analog.Lines.TLine tline2(Z0=z0, TD=td,
Modelica.Electrical.Analog.Lines.TLine tLine2(Z0=z0, TD=td,
er(start=0),
v2(start=0)) annotation (
Placement(transformation(
origin={32,4},
extent={{-32,-44},{-12,-24}})));
Modelica.Electrical.Analog.Lines.TLine tline3(Z0=z0, TD=td,
Modelica.Electrical.Analog.Lines.TLine tLine3(Z0=z0, TD=td,
er(start=0),
v2(start=0)) annotation (
Placement(transformation(
origin={62,4},
extent={{-32,-44},{-12,-24}})));
Modelica.Electrical.Analog.Lines.TLine tline4(Z0=z0, TD=td,
Modelica.Electrical.Analog.Lines.TLine tLine4(Z0=z0, TD=td,
er(start=0),
v2(start=0)) annotation (
Placement(transformation(
Expand Down Expand Up @@ -116,17 +116,17 @@ equation
annotation (Line(points={{80,40},{90,40}}, color={0,0,255}));
connect(srcDistr.v, ramp.y) annotation (Line(points={{-52,-30},{-60,-30},{-60,
0},{-67,0}}, color={0,0,127}));
connect(tline2.n1, tLine1.n2) annotation (
connect(tLine2.n1, tLine1.n2) annotation (
Line(points={{0,-40},{-10,-40}}, color={0,0,255}));
connect(tline2.p1, tLine1.p2) annotation (
connect(tLine2.p1, tLine1.p2) annotation (
Line(points={{0,-20},{-10,-20}}, color={0,0,255}));
connect(tline3.n1, tline2.n2) annotation (
connect(tLine3.n1, tLine2.n2) annotation (
Line(points={{30,-40},{20,-40}}, color={0,0,255}));
connect(tline3.p1, tline2.p2) annotation (
connect(tLine3.p1, tLine2.p2) annotation (
Line(points={{30,-20},{20,-20}}, color={0,0,255}));
connect(tline4.n1, tline3.n2) annotation (
connect(tLine4.n1, tLine3.n2) annotation (
Line(points={{60,-40},{50,-40}}, color={0,0,255}));
connect(tline4.p1, tline3.p2) annotation (
connect(tLine4.p1, tLine3.p2) annotation (
Line(points={{60,-20},{50,-20}}, color={0,0,255}));
connect(srcLump.n, ground1.p)
annotation (Line(points={{-40,20},{-40,10}}, color={0,0,255}));
Expand All @@ -140,17 +140,17 @@ equation
annotation (Line(points={{-40,10},{70,10},{70,30}}, color={0,0,255}));
connect(ground1.p, R1.n)
annotation (Line(points={{-40,10},{90,10},{90,20}}, color={0,0,255}));
connect(tline4.p2, R2.p)
connect(tLine4.p2, R2.p)
annotation (Line(points={{80,-20},{90,-20}}, color={0,0,255}));
connect(tline4.n2, R2.n)
connect(tLine4.n2, R2.n)
annotation (Line(points={{80,-40},{90,-40}}, color={0,0,255}));
connect(srcDistr.n, ground2.p)
annotation (Line(points={{-40,-40},{-40,-50}}, color={0,0,255}));
connect(ground2.p, tline2.n2)
connect(ground2.p, tLine2.n2)
annotation (Line(points={{-40,-50},{20,-50},{20,-40}}, color={0,0,255}));
connect(ground2.p, tline3.n2)
connect(ground2.p, tLine3.n2)
annotation (Line(points={{-40,-50},{50,-50},{50,-40}}, color={0,0,255}));
connect(ground2.p, tline4.n2)
connect(ground2.p, tLine4.n2)
annotation (Line(points={{-40,-50},{80,-50},{80,-40}}, color={0,0,255}));
connect(ground2.p, tLine1.n2)
annotation (Line(points={{-40,-50},{-10,-50},{-10,-40}}, color={0,0,255}));
Expand Down
Expand Up @@ -11,4 +11,3 @@ signalExtrema3.y_min
signalExtrema3.y_max
signalExtrema3.t_min
signalExtrema3.t_max

Expand Up @@ -7,4 +7,3 @@ signalExtrema2.y_min
signalExtrema2.y_max
signalExtrema2.t_min
signalExtrema2.t_max

@@ -1,7 +1,7 @@
time
currentSensor1.y
currentSensor1.i
integrator1.y
der1.y
currentSensor2.y
currentSensor2.i
integrator2.y
der2.y

This file was deleted.

Expand Up @@ -43,4 +43,3 @@ inverter.ac.pin[6].i
currentSensor.i[1]
currentSensor.i[2]
currentSensor.i[3]

@@ -1,4 +1,3 @@
time
dcpm.iA
dcpm.w

@@ -1,4 +1,3 @@
time
dcpm.iA
dcpm.w

@@ -1,5 +1,5 @@
time
t_new.y
t_new.y[1]
d_t_new.y
trapezoid1.y
trapezoid2.y

0 comments on commit 0f95804

Please sign in to comment.