Modia.jl icon indicating copy to clipboard operation
Modia.jl copied to clipboard

Modeling and simulation of multidomain engineering systems

Results 52 Modia.jl issues
Sort by recently updated
recently updated
newest added

It would be nice to have a `delay` function. This needs dynamic access to variable history.

Could you put your preferred method of attribution on the home page? (In bibtex format would be nice!) Thx.

Following the issue ![#88](https://github.com/ModiaSim/Modia.jl/issues/88) opened by me, previously it was possible to do something like this: ```julia @model test begin c = Var(start = 0.0) @equations begin 0 * der(c)...

Hi, I'm having an issue when connecting an ideal diode in my circuit. When I connect the diode in Modia, I get an error about the number of equations and...

Would a pull request be accepted to clean up logging and unify under Memento.jl or Logging.jl? Right now there is a mix of ModiaLog and println usage, which can make...

Julia has been accepted as part of this program. This might be a good opportunity for a student to work on Modia if there's a good proposal and willing mentor....

The following nonsensical code seems to spawn an infinite derivative tower out of Pantelides for N>=2: ```julia using Modia # N = 5 Type5() = Var(T=Float64, size=(5,)) # doesn't seem...

I found this when trying to create the MNWE for #90. When executing the following model, a BoundsError results. ```julia using Modia @model OutOfBounds begin dummy = Var(size=(2,)) @equations begin...

Hi, Since I updated Modia and ModiaMath, some code that I had does not work now. What my code did was: ```julia NC = 2 NX = 13 @model model...

When defining e.g. a Parameter, a comment can be added as follows: ``` height = Parameter(1.0, info="Height of pulse") ``` I propose supporting the following additional syntax as part of...