mapa17 / breakfastclub

A multi-agent system based classroom simulation
MIT License
1 stars 2 forks source link

Adjust attention calculation #89

Closed mapa17 closed 5 years ago

mapa17 commented 5 years ago

Rescale the calculated value and maybe adjust the way that noise is included.

Because at the moment the formula is

attention = Math.Max((1.0 - classroom.noise) personality.conscientousness motivation *, 0.0)

And as noise gets better than 1.0 attention is 0.0.

mapa17 commented 5 years ago

Maybe instead of tuning only he formula, one has to change the way the aggregate is calculated. Because most of the students don't learn at a single point in time. So taking the mean over all students maybe makes less sense, and one should only calculate the mean for the actively studying students ...