{{ block title }}
Result this round
{{ endblock }}
{{ block content }}
{% if player.round_number == 1 %}
You chose to vaccinate animals {{player.Cows_vacc}}
{% endif %}
{% if player.treatment_A == 1 or player.treatment_C == 1 %}
You chose sell {{player.Cows_sold_vacc}} vaccinated animals and {{player.Cows_sold_vacc}} non-vaccinated animals.
The revenue generated from selling animals is {{sale_revenue}} points
{% endif %}
{% if player.a_vacc == 0 and player.a_nvacc == 0 %}
You have no animals left in your herd.
Hence, you have no revenue generated from milk production or incurred any sickness cost.
{% endif %}
{% if player.a_vacc != 0 and player.a_nvacc != 0 %}
You have {{remaining_vacc}} vaccinated cows and {{remaining_nvacc}} non-vaccinated cows left in your herd.
You incurred a total maintenance cost of {{maintainance_cost}} points.
From the remaining non-vaccinated animals, {{sick_realised}} cow(s) actually fell sick.
To take care of {{sick_realised}} sick cows, you incurred a cost of {{sickness_exp}} points
and {{player.animal_lost}} cows died in this period.
Based on {{remaining_vacc}} vaccinated cows and {{remaining_nvacc}} non-vaccinated cows
you earned a revenue of {{milk_revenue}} points, generated from milk production.
{% endif %}
Thus considering all costs and streams of revenue if any, your household earnings are {{earning}}.
Variables | Number | Total |
---|---|---|
Payoff at round start | {{ player.payoff_round_start }} | |
Household expenses | - {{Constants.exp}} | |
Animals chosen to vaccinate | {{player.Cows_vacc}} | |
Total vaccination cost | {{player.Cows_vacc}} * {{Constants.fixed}} | - {{ total_vacc_cost}} |
Number of vaccinated cows sold | {{player.Cows_sold_vacc}} | |
Number of non-vaccinated cows sold | {{player.Cows_sold_nvacc}} | |
Number of vaccinated cows sold by husband | {{player.Cows_sold_vacc}} | |
Number of non-vaccinated cows sold by husband | {{player.Cows_sold_nvacc}} | |
Revenue generated from selling cows | {{sale_revenue}} | |
Number of cows that died | {{player.animal_lost}} | |
Number of vaccinated animals left | {{remaining_vacc}} | |
Number of non-vaccinated animals left | {{remaining_nvacc}} | |
Total Maintainence cost | - {{ maintainance_cost}} | |
Revenue generated from selling milk | {{ milk_revenue}} | |
Number of non-vaccinated animals that fell sick | {{sick_realised}} | |
Total Treatment/ Sickness cost | - {{sickness_exp}} | |
Total earnings in this round | {{player.payoff}} |