Modia is a domain specific extension of Julia for modeling and simulation of physical systems.
Papers and presentations about Modia:
- Overview about Modia (ISoLA conference Oct. 2016; slides in pdf format).
- Overview and new features in Modia (12th International Modelica Conference, May 2017; slides in pdf format).
- New algorithms in Modia (12th International Modelica Conference, May 2017; slides in pptx and pdf format).
- Modia: A Domain Specific Extension of Julia for Modeling and Simulation (juliaCon 2017, June 2017; recording at YouTube and slides in pdf format).
Modia is designed to model and simulate physical systems (electrical, mechanical, thermo-dynamical, etc.) described by differential and algebraic equations. A user defines a model on a high level with model components (like a mechanical body, an electrical resistance, or a pipe) that are physically connected together. A model component is constructed by "expression = expression" equations. The defined model is symbolically processed (for example, equations might be analytically differentiated), JIT compiled and simulated with Sundials IDA solver with the KLU sparse matrix package. By this approach it's possible and convenient to build models with hundred thousands of equations describing the dynamics of a car, an airplane, a power plant, etc. and simulate them. The authors used previous experience from the design of the modeling language Modelica. Modia will also be used to design and evaluate features for future Modelica versions.
Component models are defined by @model
macros. Such models contain definition of variables with various attributes such as start values, min, max, SI unit, etc. An @equations
macro is used to define the equations of such a component. Coupling between components is expressed using a connect statement involving groups of variables. The semantics is either to constrain connected variables to be equal or to constrain a set of variables to sum to zero, for example to model Kirchhoff's current law.
Modia currently only runs with Julia version 0.6.x.
julia> Pkg.add("Modia")
using Modia
@model FirstOrder begin
x = Variable(start=1) # start means x(0)
T = Parameter(0.5) # Time constant
u = 2.0 # Same as Parameter(2.0)
@equations begin
T*der(x) + x = u # der() means time derivative
end
end;
result = simulate(FirstOrder, 2);
@show result["x"][end];
ModiaMath.plot(result, "x")
examples/CauerLowPassFilter.jl
include("$(Modia.ModiaDir)/examples/runexamples.jl")
include("$(Modia.ModiaDir)/test/runtests.jl")
The version released now is partial since certain prototype functionalities needs to be generalized and refactored. See below. Such prototype features are enabled by flags in the simulate command. See examples.
- Model instantiation (including handling of modifiers and extends)
- Model flattening
- Redeclarations
- Handling of T, size, start, state and flow attributes
- Size deduction of variables and equations
- Array equations
- Index reduction
- BLT
- Symbolic transformations of equations (solving, differentiating)
- Algebraic loop handling
- Logging of transformation steps
- Simulation with ModiaMath
- Alias handling
- Handle overdetermined equations
- Introduction of partial and block attribute to models
- Automatic state selection
- Arrays of components
- Complex data type
- Event handling
- Synchronous equations
- Sparse Jacobian handling
- Impulse handling
- API to dynamically change model topology
- More models converted from Modelica Standard Library
- Tearing of systems of equations
- Improved code generation for really large models
- Allowing change of parameters without recompilation
- Taking min and max attributes into account
- Handling of rotation matrices involved in algebraic loops
- Linearization
- ...