Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
23 | reyssat | 1 | |
2 | !if $special_parm!=$empty |
||
2407 | bpr | 3 | !changeto lang/help.$moduclass_lang/$special_parm.phtml |
23 | reyssat | 4 | !endif |
5 | |||
1438 | bpr | 6 | !read adm/title.phtml 3\ |
7 | \ |
||
3929 | bpr | 8 | Severity levels of worksheets |
23 | reyssat | 9 | <p> |
10 | The server computes two averages for the work of each participant on each |
||
11 | sheet: a percentage of points obtained with respect to the number of points |
||
3929 | bpr | 12 | required, and the quality of points obtained on the exercises of the worksheet. |
23 | reyssat | 13 | Let x be the percentage and y the quality, both scaled proportionally |
14 | to values between 0 and 1. Here are the formulas for the computation of the |
||
15 | grades. |
||
5917 | bpr | 16 | </p> |
17 | $table_header |
||
3929 | bpr | 18 | $table_hdtr<th>Level</th><th>Formula</th><th>Explanation</th></tr> |
19 | $table_tr<td align="center">0</td><td align="center">$scoremax max(x,y) |
||
20 | </td><td>Very lenient: maximum between percentage and quality.</td></tr> |
||
21 | $table_tr<td align="center">1</td><td align="center">$scoremax x |
||
22 | </td><td>Quality is not taken into account. You get maximum of grade |
||
23 | once all the required work is done.</td></tr> |
||
24 | $table_tr<td align="center">2</td><td align="center">$scoremax x y<sup>0.3</sup> |
||
25 | </td><td>Quality has only slight effect over the grade. |
||
26 | $table_tr<td align="center">3</td><td align="center">$scoremax x y<sup>0.5</sup> |
||
27 | </td><td>More effect of quality.</td></tr> |
||
28 | $table_tr<td align="center">4</td><td align="center">$scoremax x y |
||
29 | </td><td>To have a grade of $scoremax, you must gather all required points |
||
30 | (100%) without making any error (quality=10).</td></tr> |
||
31 | $table_tr<td align="center">5</td><td align="center">$scoremax x<sup>2</sup> y |
||
32 | </td><td>Unfinished work is over-punished.</td></tr> |
||
33 | $table_tr<td align="center">6</td><td align="center">$scoremax x<sup>2</sup> y<sup>2</sup> |
||
34 | </td><td>Any mistake is over-punished.</td></tr> |
||
5917 | bpr | 35 | $table_end |
23 | reyssat | 36 | |
3571 | bpr | 37 | Remark : For level 0 and 1, if the quality of points is less than 1 for an |
38 | exercise, the percentage of points obtained |
||
39 | become 0% for this exercise when x is computed ; if the quality of points is betwwen 1 and 2, |
||
40 | the percentage of points obtained for this exercise is divided by 2 |
||
41 | when x is computed. |