mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 17:06:14 +01:00
12 lines
182 B
Text
12 lines
182 B
Text
|
class System
|
||
|
Real x; // MB in buffer
|
||
|
Real u; // input pulse
|
||
|
initial equation
|
||
|
x = 3;
|
||
|
u = 0;
|
||
|
equation
|
||
|
when sample(0, 1) then
|
||
|
u = 1 - pre(u);
|
||
|
end when;
|
||
|
der(x) = 2*u - 2.0;
|
||
|
end System;
|