Rev 12101 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
7901 | bpr | 1 | !read adm/title.phtml 1\ |
1438 | bpr | 2 | \ |
3929 | bpr | 3 | Severity levels of worksheets |
7901 | bpr | 4 | |
11992 | guerimand | 5 | !set wims_backslash_insmath=yes |
6 | |||
9558 | bpr | 7 | !if $wims_user=supervisor |
23 | reyssat | 8 | <p> |
7720 | bpr | 9 | The server computes some averages for each sheet of each participant on each |
10 | sheet: the percentage I0 of points obtained with respect to the number 10*n of points |
||
11 | required, the average I1 of the n best scores, the minimum I2 of the n best scores |
||
12 | together with the quality Q of points obtained on the exercises of the worksheet. |
||
13 | </p><p> |
||
14 | Here are the formulas for the computation of the grades, according |
||
15 | to the teacher choice (severity level and indicator I). |
||
5917 | bpr | 16 | </p> |
7901 | bpr | 17 | |
18 | !reset table_center |
||
5917 | bpr | 19 | $table_header |
3929 | bpr | 20 | $table_hdtr<th>Level</th><th>Formula</th><th>Explanation</th></tr> |
6374 | bpr | 21 | $table_tr<td>0</td><td>$scoremax max(x,y) |
3929 | bpr | 22 | </td><td>Very lenient: maximum between percentage and quality.</td></tr> |
6374 | bpr | 23 | $table_tr<td>1</td><td>$scoremax x |
3929 | bpr | 24 | </td><td>Quality is not taken into account. You get maximum of grade |
25 | once all the required work is done.</td></tr> |
||
6374 | bpr | 26 | $table_tr<td>2</td><td>$scoremax x y<sup>0.3</sup> |
3929 | bpr | 27 | </td><td>Quality has only slight effect over the grade. |
6374 | bpr | 28 | $table_tr<td>3</td><td>$scoremax x y<sup>0.5</sup> |
3929 | bpr | 29 | </td><td>More effect of quality.</td></tr> |
6374 | bpr | 30 | $table_tr<td>4</td><td>$scoremax x y |
3929 | bpr | 31 | </td><td>To have a grade of $scoremax, you must gather all required points |
32 | (100%) without making any error (quality=10).</td></tr> |
||
6374 | bpr | 33 | $table_tr<td>5</td><td>$scoremax x<sup>2</sup> y |
3929 | bpr | 34 | </td><td>Unfinished work is over-punished.</td></tr> |
6374 | bpr | 35 | $table_tr<td>6</td><td>$scoremax x<sup>2</sup> y<sup>2</sup> |
3929 | bpr | 36 | </td><td>Any mistake is over-punished.</td></tr> |
5917 | bpr | 37 | $table_end |
23 | reyssat | 38 | |
7720 | bpr | 39 | Remark : For level 0 and 1, if the quality of points is less than 1 for an |
3571 | bpr | 40 | exercise, the percentage of points obtained |
7720 | bpr | 41 | become 0% for this exercise when x is computed ; if the quality of points is betwwen 1 and 2, |
3571 | bpr | 42 | the percentage of points obtained for this exercise is divided by 2 |
7720 | bpr | 43 | when I is computed. |
12101 | bpr | 44 | !read help/sheetscore.phtml |
7901 | bpr | 45 | !else |
46 | Pour cette feuille, votre enseignant a choisi le mode de calcul suivant |
||
47 | de la note. |
||
48 | Pour chacun des indicateurs suivants, on calcule la moyenne pour votre travail pour : |
||
49 | <ul> |
||
50 | <li> |
||
51 | !if $help_sw=0 |
||
52 | le quotient I des points cumulés par le nombre de points demandés 10*n |
||
53 | !endif |
||
54 | !if $help_sw=1 |
||
13838 | bpr | 55 | the mean I ot the n best grades, |
7901 | bpr | 56 | !endif |
57 | !if $help_sw=2 |
||
13838 | bpr | 58 | the minimum I of the n best grades. |
7901 | bpr | 59 | !endif |
60 | </li> |
||
61 | <li> |
||
62 | la qualité Q des points obtenus sur les exercices. |
||
63 | </li> |
||
64 | </ul> |
||
65 | |||
66 | Si la note de qualité est inférieure à 1 pour un exercice, |
||
67 | I est mis à 0 pour cet exercice ; |
||
68 | si la note de qualité est comprise entre 1 et 2, |
||
69 | I est divisé par 2 lors du calcul de la note de la feuille. |
||
70 | |||
71 | </p><p> |
||
72 | Ces moyennes sont ramenées entre 0 et 1 et |
||
73 | la note de la feuille est calculée comme |
||
74 | \($scoremax * $(list[$help_level+1;]) \) |
||
75 | !endif |
||
76 |