﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4480	Initial conditions are not considered properly when applying Re-simulate	Christian Kral <dr.christian.kral@…>	Adeel Asghar	"Consider the following example
{{{
model ReSimulate
  Real x;
initial equation
  x=0;
equation
  der(x)=1;
end ReSimulate;
}}}

After the simulation of this example, an input field for the initial condition of the variable {{{x}}} appears in the Plotting tab. When I enter 1 and re-simulate, the result does not change. So obviously, the changed initial condition is not taken into account.

If instead the model
{{{
model ReSimulate
  Real x(start=0);
equation
  der(x)=1;
end ReSimulate;
}}}
is used, the change of the initial condition works just fine. "	defect	new	high	Future	OMEdit				Willi Braun Lennart Ochel
