Currently I have a stock of Grade 1 learners. The stock is arrayed so that Gr1_learners[..] = {10,10}
means that there are 10 high performing learners and 10 low performing learners in this stock. These learners progress to Grade 2 so that Gr2_learners[..] = {20,0}
are the first graders having progressed after one year and some intervention improved all the learners to high performing.
My idea is to create learners as agents and place them in the stocks. Then Gr1_learners = 20
is a stock with 20 agents, half in state high_performing
, and half in state low_performing
. They progress, a state change is triggered so that Gr2_learners = 20
is then a stock with 20 agents, all in state high_performing
and none in state low_performing
.
Is this possible?