Per Östlund
Per Östlund
> Something about this test. In model TestAll I have comment test //Pack.Tests.Eq.Test2 eq_test2;. Test2 and Test3 use the same model: expandable connector PinCN Pin pa[3]; end PinCN; Test3 connect...
You still need to fix the ModelicaCompliance test suite, just edit the [compliance.failures](https://github.com/OpenModelica/OpenModelica/blob/master/.CI/compliance.failures) file and remove the line for `ModelicaCompliance.Connections.Expandable.AugmentArray`.
> @perost can you please do some profiling and see where the bottleneck is? The issue as far as I know is that OMEdit calls `getModelInstance` on those operations, i.e....
> I wonder why OMC deduced type `Integer[0]` from `fill(0,0)`. Should it be `fill(0.0,0)`? OMC would normally convert it to `fill(0.0, 0)` automatically, but that's done after checking if the...
This was changed in Modelica 3.4, in prior versions the opening paragraph of 4.8 just stated: > Redeclaration of any of these types is an error, and the names are...
> @perost, can you please double-check and comment? Yes, `Medium.Liquid.density` and `Medium.Gas.density` both expect a `ThermodynamicState` record that looks like: ```Modelica record ThermodynamicState AbsolutePressure p; Temperature T; end ThermodynamicState; ```...
The model itself is perfectly valid and you can create the equivalent code in OMEdit if you just add classes manually with those names, but pasting it directly into OMEdit...
> I tried to run the model and in the version i get installed using > > ``` > installPackage(Buildings, "12.0.0-master", exactMatch=true); getErrorString(); > loadModel(Buildings); getErrorString(); > > setCommandLineOptions("-d=optdaedump,execstat");getErrorString(); >...
I did some profiling, and although I aborted it halfway because it would've taken many hours to finish I got some interesting results. One of the main culprits seem to...
#13707 improves the performance a bit, reducing the time on my machine from about 220s to 100s. I found that most of the `List.isMemberOnTrue` calls came from another `List` function,...