Modia.jl

StableThe MIT License

The Modia Tutorial provides an introduction to Modia. Modia is part of ModiaSim.

Modia is a Julia package for modeling and simulation of multidomain engineering systems described by differential equations, algebraic equations, and (space-discretized) partial differential equations. It shares many powerful features of the Modelica language, together with features not available in Modelica.

A user defines a model on a high level with model components (like an electrical resistance, a rotational inertia, a rod with heat transfer, a PI controller etc.) that are physically connected together. A model component is constructed by "expression = expression" equations. The defined model is symbolically transformed to ODE form dx/dt = f(x,t). For example, equations might be analytically differentiated, ODE states selected, linear equation systems numerically solved when evaluating the transformed model. From the transformed model a Julia function is generated that is used to simulate the model with integrators from DifferentialEquations. Simulation results can be plotted with ModiaPlot, that provides a convenient interface to GLMakie line plots.

Other packages from the Julia eco-systems that are specially supported:

  • Unitful to define and process physical units.
  • Measurements to perform simulations with uncertain parameters and initial values with linear propagation theory.
  • MonteCarloMeasurements to perform simulations with uncertain parameters and initial values with particle theory.

Installation

Modia and ModiaPlot are registered and are installed with (Julia >= 1.5 is required):

julia> ]add Modia, ModiaPlot

It is recommended to also add the following packages, in order that all tests and examples can be executed in your standard environment:

julia> ]add Measurements 
        add MonteCarloMeasurements
        add Distributions
        add Interpolations

Examples

The following equations describe a damped pendulum:

Pendulum-Equations

where phi is the rotation angle, omega the angular velocity, m the mass, L the rod length, d a damping constant, g the gravity constant and r the vector from the origin of the world system to the tip of the pendulum. These equations can be defined, simulated and plotted with (note, you can define models also without units, or remove units before the model is processed):

using Modia, ModiaPlot

Pendulum = Model(
   L = 0.8u"m",
   m = 1.0u"kg",
   d = 0.5u"N*m*s/rad",
   g = 9.81u"m/s^2",
   phi = Var(init = 1.57*u"rad"),
   w   = Var(init = 0u"rad/s"),
   equations = :[
          w = der(phi)
        0.0 = m*L^2*der(w) + d*w + m*g*L*sin(phi)
          r = [L*cos(phi), -L*sin(phi)]
   ]
)

pendulum1 = @instantiateModel(Pendulum)
simulate!(pendulum1, Tsit5(), stopTime = 10.0u"s", log=true)
plot(pendulum1, [("phi", "w"); "r"], figure = 1)

The result is the following plot:

Pendulum-Figure

Simulation and plotting of the pendulum with normally distributed uncertainty added to some parameters is performed in the following way:

using Measurements

PendulumWithUncertainties = Pendulum | Map(L = (0.8 ± 0.2)u"m",
                                           m = (1.0 ± 0.2)u"kg",
                                           d = (0.5 ± 0.2)u"N*m*s/rad")

pendulum2 =  @instantiateModel(PendulumWithUncertainties,
                               FloatType = Measurement{Float64})

simulate!(pendulum2, Tsit5(), stopTime = 10.0u"s")
plot(pendulum2, [("phi", "w"); "r"], figure = 2)

resulting in the following plot where mean values are shown with thick lines and standard deviations as area around the mean values.

PendulumWithUncertainty

Main Developers

License: MIT (expat)