﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1202	Initial equation is silently ignored	perob88	perob88	"In my interpretation the inital equations are not a suggestions, they \\are required to be fulfilled before starting the simuation. To silently \\ignore them has to be wrong as in the class below. 

The following class should require no further initialization but \\during simulation without specifying anything in model_init.txt all variables is initialized to zero. 
{{{class closedSystemWithInitialValues
  parameter Real pStart = 1e5 ""Atmospheric pressure"";
  parameter Real TStart = 300 ""Room temperature"";
  parameter Real V = 1e-3 ""One litre"";
  parameter Real R = 300 ""Mass Specific gas constant"";
  // States
  Real p; // Pressure of system
  Real T; // Temperature of system
  Real m; // Mass of system
equation
  p*V = m*R*T;
  der(m) = 0;
  der(T) = 0;
initial equation
  p = pStart;
  T = TStart;
end closedSystemWithInitialValues;}}}

 Specifying, start=xx,fixed=true works though..."	defect	closed	high				worksforme		perob88
