Opened 18 years ago

Closed 11 years ago

#118 closed defect (fixed)

Plotting tool data management

Reported by: lgoehler Owned by: lgoehler
Priority: critical Milestone:
Component: Backend Version:
Keywords: Cc: lgoehler, adrpo

Description


Change History (2)

comment:1 Changed 18 years ago by lgoehler

If the plot command is called twice within a *.mos file with different arguments
the plots show the the same curves.

comment:2 Changed 11 years ago by sjoelund.se

  • Component set to Backend
  • Resolution set to fixed
  • Status changed from new to closed

Fixed with the new OMPlot tool:

loadString("model M
  Real x,y;
equation
  der(x) = 1;
  der(y) = time;
end M;");getErrorString();
simulate(M);getErrorString();
plot(x);getErrorString();
plot(y);getErrorString();
Note: See TracTickets for help on using tickets.