Opened 6 years ago

Last modified 6 years ago

#5370 new discussion

Modelica compiler should issue warnings when clocked equations appear outside of the when equations — at Initial Version

Reported by: anonymous Owned by: somebody
Priority: high Milestone: 2.0.0
Component: Backend Version:
Keywords: synchronous Cc:

Description

While working with clocked equations I found that its to easy to turn continuous equations into clocked ones by mistake due to clock inference.

I think it would be much easy to debug such situations if Modelica compiler print warning for synchronous equations appearing outside of the clocked when equations, except for connect equations and equations with synchronous sample operator.

model Example
  Real x, y, z;
equations
  x = sample(time, Clock(0.1)); //no warnings
  when Clock()
    y = x;
  end when;
  z = z; // print warning
end Example;

Change History (0)

Note: See TracTickets for help on using tickets.