Schematics

These are general overviews of the processes we use to simulate erosion and to determine the most vulnerable areas of the coastline. We use a 2D array to represent plots of land.

To simulate erosion, we do the following:

  • Iterate down each column.
  • If the value is greater than 0...
    • Check each of its neighboring coasts.
    • Subtract some constant $a$ if there is water in the row above the cell.
    • Subtract some smaller constant $b$ for each neighboring column containing water.

Here is how one timestep would look on this table, setting $a = 0.2$ and $b = 0.1$.