Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 45a94e45036b4f2592a7e2c3922f90c7 > files > 382

adevs-doc-2.6-4.fc18.noarch.rpm

class Bounce
  Real x(start = 0.5);
  Real y(start = 0.5);
  parameter Real a = 1;
equation
  der(x) = if (y <= 1) then -a else a;
  der(y) = if (x >= 0) then a else -a;
end Bounce;