mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-05-06 15:19:38 +02:00
Adapt to new bot structure
This commit is contained in:
parent
ff7e08ada9
commit
3f84e1d831
3414 changed files with 41525 additions and 709 deletions
14
legacy/Data/ingsw/0721_6/correct.txt
Normal file
14
legacy/Data/ingsw/0721_6/correct.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
<pre>
|
||||
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 - 1.0;
|
||||
end System;
|
||||
</pre>
|
1
legacy/Data/ingsw/0721_6/quest.txt
Normal file
1
legacy/Data/ingsw/0721_6/quest.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Un I/O buffer è alimentato da una componente che fornisce un input periodico di periodo 2 secondi. Durante la prima met<65> del periodo, l'input rate è 2MB/s mentre durante la seconda metà del periodo l'input rate è 0. Quindi l'input rate medio è di 1MB/s. L' I/O buffer, a sua volta, alimenta una componente che richiede (in media) 1MB/s. Quale dei seguenti modelli Modelica è un modello ragionevole per il sistema descritto sopra ?
|
14
legacy/Data/ingsw/0721_6/wrong1.txt
Normal file
14
legacy/Data/ingsw/0721_6/wrong1.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
<pre>
|
||||
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;
|
||||
</pre>
|
14
legacy/Data/ingsw/0721_6/wrong2.txt
Normal file
14
legacy/Data/ingsw/0721_6/wrong2.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
<pre>
|
||||
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 + 1.0;
|
||||
end System;
|
||||
</pre>
|
Loading…
Add table
Add a link
Reference in a new issue