phannebohm

Results 23 comments of phannebohm

Conceptually, should this also extend to chains of more than two operator records like `C->D->E->C`? (`->` represents a constructor, so the described scenario is `C->D->C`)

> Change looks good, but we need the CLA issue clarified. No problem, except how do I sign? :sweat_smile: I'm with the university of applied sciences in Bielefeld, they may...

The model contains these two equations: ```modelica tube.fluidInlet.h = if tube.inlet.m_flow > 0.0 then massFlowSource.steam_a.h_outflow else tube.inlet.h_outflow; tube.inlet.h_outflow = tube.fluidInlet.h; // this is explicitly written in the model ``` or...

> For example when you have `y = foo()`, we know which dimensionality `y` has according to its declaration; hence, we can derive which size the output of `foo` must...

There has been some good progress since I opened this issue. Now all models reach the compilation stage and almost all simulate. I updated the description and removed the verification...

ClaRa_dev and ClaRa are pretty much the same now.

> [ClaRa](https://libraries.openmodelica.org/branches/master/ClaRa/ClaRa.html) should test the latest released version (currently [1.8.1](https://github.com/xrg-simulation/ClaRa-official/releases)), while [ClaRa_dev](https://libraries.openmodelica.org/branches/master/ClaRa_dev/ClaRa_dev.html) should test the HEAD revision on the master branch. They now correctly point to different versions. Thanks for...

> I would suggest to improve the hybrid solver by always limiting initial guess values with the min and max attributes. #12201 changes the behavior so that iteration variables are...

Currently only hybrid. But I will look at it again and try to find a better place to do the clamping. I'd prefer to do it at a single place...

I think in the NB we transform `time > t0` to `sample(t0, 'inf')` so it should already be handled efficiently. Of course it would be great to have proper runtime...