Farmer decisions about land use

MtM ABM description

Author

David O’Sullivan

Published

February 19, 2025

The decision sequence followed by farmers each time step is shown below.

flowchart TB
  A((START))
  F{Any<br>loss-making<br>holdings?}
  G["<span style='font-family:monospace'>options</span> &larr; {}"]
  H{Farm<br>losing money<br>overall?}
  I[Add possible<br>all of farm land use<br>changes to <span style="font-family:monospace;">options</span>]
  J[Add possible<br>per holding land use<br>changes to <span style="font-family:monospace;">options</span>]
  K[Choose among choices<br>in  <span style="font-family:monospace;">options</span>]
  L[<span style='color:red;'>Consider<br>interventions</span>]
  N{More<br>farmers?}
  Z((END))
  A --> F
  F -->|Y| G
  F -->|N| L
  subgraph "Consider land use"
  G --> H
  H -->|Y| I
  H -->|N| J
  I --> J
  J --> K
  end
  K --> N
  L --> N
  N -->|Y| F
  N -->|N| Z
  click L "05-farmer-decisions-interventions.html" "Click for details"

Consideration of land use change occurs if any holdings on the farm are loss-making. Consideration of land use change precludes making any management interventions this model time step, regardless of whether or not land use changes are made. Because most interventions reduce profitability this can be understood as a response to tough times: if some parts of a farm are loss-making then it is unlikely a farmer will respond by making costly changes anywhere on the farm.

Once the ‘Consider land use’ sequence is entered, the next decision point is to ask if the farm is losing money in aggregate (i.e., summed across all holdings). If so, then whole-farm land use change is added to the list of possibilities. If not this option is ignored, and only single holding land use change on the loss-making holdings are added to the list of possibilities.

The list of possible land use changes is a series of triples

[affected-holdings, new-land-use, probability]

The whole-farm land use change options will list all holdings in the current land use as affected-holdings.

One of these options is randomly drawn with relative probability given by its probability, and then it is implemented with that probability. This means that if all the options are low probability then any of them might be drawn, but it remains unlikely to be implemented. If one option has a higher probability than the others it is more likely to be drawn, but if its probability is low, it is still unlikely to happen. (A similar procedure is followed for management interventions under consideration, see this explanation.)

Probabilities are calculated based on the values in the ./data/market/<scenario>/conversion-probabilities.csv file. For non-succession triggered whole-farm conversions the probability of conversion may be optionally ‘down-weighted’ by the proportion of the land area of the farm that is losing money.

Important changes to this procedure that should be considered are the impact of policy settings, farmer dispositions, the effect of recent changes on similar farms, and the relative profitability of different land uses. Policy settings and land use profitability can probably be folded into the conversion probabilities of a scenario, but farmer disposition and peer-farmer behaviours would required additional code.

Date Changes
2025-02-19 Initial post.