phannebohm
phannebohm
I currently only have version 2.3.0 of the library, so I cannot test this. @abuntrock could you have a look at the flat model and see what the `min` attribute...
Sorry is the idea to do that manually? It would be nice if the compiler did it for us. Especially when we have things like below so we don't have...
I think this is an appropriate MWE ```modelica model MWE Real x; equation der(x) = x; end MWE; ``` When generating the sparsity pattern, we lookup dependencies in a map,...
We might have fixed it with #13340. Let's see what the regressions say.
@casella this is alias removal, not actual tearing. If you have a linear equation with no more than two variables, it will be used for alias removal. Or at least...
I merged #12530 but had to exclude `DistributionSystemModelicaIndividual` from the working tests. Here is the [regression report](https://libraries.openmodelica.org/branches/history/newInst-newBackend/2024-07-16%2003:20:05..2024-07-17%2020:07:19.html). Almost 250 models don't simulate/verify anymore. I'm still not sure what exactly is...
Good news are, we are currently working on a resizable version of the Jacobian and therefore of the sparsity pattern for OpenSCALING. This will also fix wrong entries in the...
I cannot reproduce this issue. Running `Buildings.DHC.Loads.Heating.Examples.BuildingTimeSeriesWithETS` from Buildings v12.0.0-master with omc v1.25.0-dev-427-g59a56e520f-cmake simulates successfully and produces this equation for `buiWitETS.bui.facMulHea` ``` buiWitETS.bui.facMulHea = 2.2222222222222223e-4 * buiWitETS.bui.QHea_flow_nominal ``` However I...
> I'm a bit taken aback by what you state here. I thought that adjacency analysis for functions always assumed them as black-boxes, i.e., all outputs depend on all inputs....
~~The problem with FFT is that each output does depend on each input. I wonder if we can somehow exploit the "Fast" in FFT which makse O(n) into O(n log(n)).~~...