﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2762	Process crashed -- Simulation process exited with code 0	rfranke@…	Willi Braun	"The model listed below uses the same variables as outputs and states (like some models from the MSL, see Modelica.Blocks.Continuous.Integrator).

Opened and simulated with OMEdit, the compilation raises a lot of warnings and  the simulation crashes. 

The observation has been made with the current nightly build 1.9.1+dev (r21649).

{{{
within ;
model DIC ""Double Integrator Continuous-time""
  parameter Real p = 1 ""gain for input"";
  parameter Real y1_start = 1 ""start value for first state"";
  parameter Real y2_start = 0 ""start value for second state"";
  input Real u(start = -2);
  output Real y1, y2;
initial equation
  y1 = y1_start;
  y2 = y2_start;
equation
  der(y1) = p*u;
  der(y2) = y1;
end DIC;
}}}"	defect	closed	high	1.9.1	Code Generation	trunk	fixed	simulation crash	Adrian Pop
