Skip to content

Make parameter propagation in SingularTransformer final #4642

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ModelicaTest/Electrical/SingularTransformer.mo
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ model SingularTransformer
Modelica.Electrical.Analog.Basic.Ground ground2 annotation (Placement(
transformation(extent={{68,0},{88,20}})));
Modelica.Electrical.Analog.Basic.Transformer basicTransformer(
L1=L,
L2=L,
M=L,
final L1=L,
final L2=L,
final M=L,
i1(fixed=true)) annotation (Placement(transformation(extent={{-10,32},{10,52}})));
equation
connect(sineVoltage1.n, ground1.p)
Expand Down