User Portlet User Portlet

Otto Tronarp
Discussions
I have never used the build systems that comes with MSL so I don't know why their makefile doesn't build libModelicaExternalC. However, if you look at the autotools based one libModelicaExternalC consists of ModelicaFFT.c ModelicaInternal.c...
Right click in the animation window and select trace path and the part that you want to trace. Note, you are tracing the visualizer so if you want to trace the other end of something (like a cylinder or box) you might need to have a dummy visualizer...
As far as I know there are no Power block in the Modelica standard library, but it's trivial to roll your own: model PowerN extends Modelica.Blocks.Interfaces.SISO; parameter Integer n; ...
That seems to be a bug in Modelica 3.2.2 (https://github.com/modelica/Modelica/issues/2177). As a workaround you can switch to Modelica 3.2.1 (right-click on Modelica and select Version -> 3.2.1) or apply the patch from github to your local...
In general you can se such issues when using event generating functions with infinite number of transition points, like integer and mod, in combination with a model without dynamics (the Trapezoid block uses integer). As Neil mentioned, as soon as...
As workaround you can use the fact that sme's are actually zip files (currently, no guarantees for the future). So you can just unzip the .sme and you'll see that it contains a .mat file that you can open in SimulationCenter. I hope that helps, ...
Thank you, I can now reproduce this. The problem is that the "-" in the username is transformed into a "+" somewhere along the line so ModelCenter fails to find the SystemModeler kernel that it starts. I'll make sure that this is fixed for the next...
The real error looks like a code generation error, if you can share the model here (or send it to support) we can perhaps see if there is a workaround for it.
This looks like Windows and with SystemModeler 4.3 it's possible to configure the simulation to be built as a 64-bit application. However, the current version of ModelPlug was released before SystemModeler 4.3 and therefore it's supporting library...
There is some documentation of annotations in the Modelica By Example book that is shipped with SystemModeler: - [wsm:///ref/ModelicaByExample/behavior/equations/annotations/][1] -...