Subversion Repositories wimsdev

Rev

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