You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modelica allows to define a package as a single file, e.g.
package MyPackagemodel MyFirstModelReal x(start=0, fixed=true);
equationder(x) =1;
end MyFirstModel;
model MySecondModelReal x(start=0, fixed=true);
equationder(x) =2;
end MySecondModel;
end MyPackage;
In such a file the "Check Model" feature returns the error message
Error: Cannot instantiate HHmodelica.Modular due to class specialization PACKAGE.
It would be nice to be able to select from a dropdown menu to check either MyFirstModel or MySecondModel and not just the whole package.
The text was updated successfully, but these errors were encountered:
CSchoel
changed the title
Allow to choose which model to check in Multi-Model file
Allow to choose which model to check in multi-model file
Oct 22, 2019
Modelica allows to define a package as a single file, e.g.
In such a file the "Check Model" feature returns the error message
It would be nice to be able to select from a dropdown menu to check either
MyFirstModel
orMySecondModel
and not just the whole package.The text was updated successfully, but these errors were encountered: