Skip to content

Commit

Permalink
Replace original wording of [Branin1967] by wording of modelica#3830
Browse files Browse the repository at this point in the history
  • Loading branch information
christiankral committed Jun 6, 2021
1 parent 9301a7a commit c5ef27b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Modelica/Electrical/Analog/Lines/TLine1.mo
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ model TLine1
parameter SI.Resistance Z0(start=1)
"Characteristic impedance";
parameter SI.Time TD(start=1) "Transmission delay";
SI.Voltage er(start=0) "Reflected voltage wave";
SI.Voltage es(start=0) "Incident voltage wave";
SI.Voltage es(start=0) "Voltage source of forward travelling wave";
SI.Voltage er(start=0) "Voltage source of reflected wave";
equation
assert(Z0 > 0, "Z0 has to be positive");
assert(TD > 0, "TD has to be positive");
Expand Down
4 changes: 2 additions & 2 deletions Modelica/Electrical/Analog/Lines/TLine2.mo
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ model TLine2
"Characteristic impedance";
parameter SI.Frequency F(start=1) "Frequency";
parameter Real NL(start=1) "Normalized length";
SI.Voltage er(start=0) "Reflected voltage wave";
SI.Voltage es(start=0) "Incident voltage wave";
SI.Voltage es(start=0) "Voltage source of forward travelling wave";
SI.Voltage er(start=0) "Voltage source of reflected wave";
protected
parameter SI.Time TD=NL/F;
equation
Expand Down
4 changes: 2 additions & 2 deletions Modelica/Electrical/Analog/Lines/TLine3.mo
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ model TLine3
extends Modelica.Electrical.Analog.Interfaces.TwoPort;
parameter SI.Resistance Z0(start=1) "Natural impedance";
parameter SI.Frequency F(start=1) "Frequency";
SI.Voltage er(start=0) "Reflected voltage wave";
SI.Voltage es(start=0) "Incident voltage wave";
SI.Voltage es(start=0) "Voltage source of forward travelling wave";
SI.Voltage er(start=0) "Voltage source of reflected wave";
protected
parameter SI.Time TD=1/F/4;
equation
Expand Down

0 comments on commit c5ef27b

Please sign in to comment.