Andreas
Andreas
Looks like the lexer has some trouble tokenizing the super long string that contains all the MSL models: ```julia "{[...],Modelica.Mechanics.Rotational.Sensors.RelAngleSensor,Modelica.Mechanics.Rotational.Sensors.RelSpeedSensor,Modelica.Mechanics.Rotational.Sensors.RelAccSensor,Modelica.Mechanics.Rotational.Sensors.TorqueSensor,Modelica.Mechanics.Rotational.Sensors.PowerSensor,Modelica.Mechanics.Rotational.Sensors.MultiSensor,Modelica.Mechanics.Rotational.Sources,Modelica.Mechanics.Rotational.Sources.Position,Modelica.Mechanics.Rotational.Sources.Speed,[...]}" ``` that is returned by omc. I guess it's simply...
Okay, I got a minimal example to showcase the error: ```julia julia> import OMJulia julia> OMJulia.Parser.parseOM("{A.M1,B.M2}") ERROR: OMJulia.Parser.LexerError("Error while lexing"}") ``` So it's not the length but that it's not...
@JKRT I'm struggling to update to Automa.jl v1.0. A new requirement is, that the regex language needs to be without any ambiguities, see https://biojulia.dev/Automa.jl/stable/tokenizer/#Token-disambiguation. So for example how to tell...
Similar issue for me. I have a freshly created account on Open VSX that says `You signed the Eclipse Foundation Open VSX Publisher Agreement now.` But both `ovsx` and the...
Sorry for the noise. Seems to be working now. Only needs quiet some time until it's working.
I try to create a new (or updated) version of a cross-compilation image for our FMUs and will add it to our OpenModelica Docker hub. I'll add a new repo...
Now we have a first version of an OpenModelica managed cross build image: https://github.com/OpenModelica/openmodelica-crossbuild We don't support macOS, since XCode and cross compiling for Apple is on shaky legal ground...
One way to fix this could be to change the zero crossing function a bit. For relations in `else if` we need to check if the previous case is `false`...
Btw. using ```Modelica model mwe Real v; Real aux; equation aux=sin(20*time); if time < 0.1 then v = 0; elseif aux < 0.5 then v = aux; else v =...
I'm not sure if I understand your comment. The point here is not that the zero crossing function itself is continuous or not, but that an event is triggered where...