Subversion Repositories wimsdev

Rev

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