﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6031	Ragged dimensions are not yet supported	lukas.koenemann@…	somebody	"Hello,
I want to produce an array of components. Each component exist of an array with size. Now I want to instanziate an array of component with different array sizes ""n"". OpenModelica says ""ragged dimensions are not yet supported.
Example
{{{
model test 
  model Dummy
    parameter Integer n;
    Real x[n] = 1:n;
  end Dummy;
  
  
  model M
    Dummy d[2](n={2, 3});
    Real x; // Added to show an access
  equation
    x = d[2].x[2];
  end M;
  M m;
end test;
}}}

Why is this not possible? Would be really usefull for my application."	defect	closed	high	1.16.0	New Instantiation		worksforme	ragged dimensions	
