aboutsummaryrefslogtreecommitdiffstats
path: root/examples/minimal.modelica
blob: 85335a5f3243988683dfebea454c0188c04ee874 (plain)
1
2
3
4
5
6
model FirstOrder
  parameter Real c;
  Real x;
equation
  der(x) = -c*x;
end FirstOrder;