rfranke
rfranke
Encountering the problem with missing `-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15` as well. Somehow the automatic detection does not work anymore.
It might already help to clean up the solver options / reorganize OMEdit menus to highlight the most important choices and seperate them from expert / experimental options -- or...
Nonlinear solvers might be a good example for the usefulness of some automatic attempts. Here is exemplarily how it would look like for today's library coverage tests: for PowerSystems and...
The bulk of changes in PR #7689 are for the management of solver settings and related interface definitions. This appears as overhead to some extend and can hopefully be reduced...
Here is an example. ```modelica model FMIFilterTest input Real u; Integer id(start = 0); protected Real p = 1; Real xc(start = 0); Real xd(start = 0); equation der(xc) =...
The ModelStructure appears to be using the indices of filtered variables, e.g. 3 for u: ``` ... ``` @arun3688 How do you achieve this mapping from all variables to filtered...
@adrpo, @casella, @arun3688 from my side everything is ready for 1.24 beta1. Fortunately #12854 was easy to fix. Regarding this ticket: as the mapping of variable indices works for ModelStructure,...
Looking good now. The reported problems appear solved. Thank you!
Here is a good example. The trunk version of `Modelica.Fluid.Examples.PumpingSystem` logs the below nonlinear equation system with unknowns `der(pumps.medium.T)` and `der(pumps.medium.p)` (with `-d=dumpSimCode`). Both unknowns have nominal value 1. The...
PR #7817 automates this for the Cpp runtime. Code generation is certainly not the best place for such tweaks. I did also have a look into BackEnd and SimCode, but...