Changes between Initial Version and Version 1 of Ticket #6279


Ignore:
Timestamp:
2020-12-12T18:31:50Z (4 years ago)
Author:
Francesco Casella
Comment:

@ceraolo, the binding is not final, so it can still be changed at runtime.

Try with

model TestFMU 
  parameter Real K = 1;
  Modelica.Blocks.Interfaces.RealInput u;
  Modelica.Blocks.Interfaces.RealOutput y;
  Modelica.Blocks.Math.Gain gain1(final k = K / 2);
  Modelica.Blocks.Math.Gain gain(final k = 1);
equation
  connect(gain1.u, u);
  connect(gain1.y, gain.u);
  connect(gain.y, y);
end TestFMU;

Legend:

Unmodified
Added
Removed
Modified