Migration
The ability to add spatial dynamics to LASER models is one of the features that makes the framework so powerful. There are multiple methods available for adding migration to your model, and the class you choose will depend on which features are important for your research question. Each of the migration models will distribute your population of agents among a set of nodes, with set distances between nodes, and utilize a matrix to define the connection between nodes. How agents or infectivity travels between the nodes (and which nodes they may travel to) will be determined by the specific migration model you choose.
Sequential migration matrix
Gravity model
The gravity model can be used to compute the migration of people between nodes located at specific distances, with migration rates proportional to population size and the distance between nodes. This type of migration is useful when you would like to add 2-dimensional movement of agents to nodes.
Functional form:
Where:
- \(M_{ij}\) = migration flow from origin i to destination j
- \(P_i, P_j\) = populations of origin and destination
- \(d_{ij}\) = distance between i and j
- \(k\) = Parameter: scaling constant
- \(a\) = Parameter: exponent for the population of the origin
- \(b\) = Parameter: exponent for the population of the destination
- \(c\) = Parameter: exponent for the distance
The following example demonstrates implementing the gravity model to calculate the number of migrants moving between nodes. Agents are randomly assigned to different migration paths.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | |
The competing destinations model
The competing destinations model extends the gravity model by incorporating the fact that nodes may not be independent, but instead may "compete" with each other for incoming agents. Some nodes may be more or less attractive than other nodes, regardless of their proximity to the origin node. There may be synergistic or antagonistic effects of nodes, creating specific networks and relationships among a series of nodes.
For example, in a “synergistic” version, perhaps migratory flow from Boston to Baltimore is higher than flow between two comparator cities of similar population and at similar distance, because the proximity of Washington, D.C. to Baltimore makes travel to Baltimore more attractive to Bostonians. This would be accounted for by a positive value of \(\delta\). On the other hand, this term may also be “antagonistic” if Washington is such an attractive destination that Bostonians eschew travel to Baltimore entirely; this would indicate a negative value of \(\delta\).
Functional form:
Stouffer's rank model
Stouffer argued that human mobility patterns do not respond to absolute distance directly, but only indirectly through the accumulation of intervening opportunities for destinations. Stouffer thus proposed a model with no distance-dependence at all, rather only a term that accounts for all potential destinations closer than destination \(j\); thus, longer-distance travel depends on the density of attractive destinations at shorter distances.
Mathematical formulation:
Define \(\Omega (i,j)\) to be the set of all locations \(k\) such that \(D_{i,k} \leq D_{i,j}\)
This presents us with the choice of whether or not the origin population \(i\) is included in \(\Omega\) - i.e., does the same "gravity" that brings others to visit a community reduce the propensity of that community's members to travel to other communities?
This Stouffer model does not include the impact from the local community:
The Stouffer variant model does include the impact of the local community:
To simplify the code, laser-core's implementation of the Stouffer model includes a parameter include_home.
Radiation model
The radiation model is a parameter-free model (up to an overall scaling constant for total migration flux), derived from arguments around job-related commuting. The radiation model overcomes limitations of the gravity model (which is limited to flow at two specific points and is proportional to the populations at source and destination) by only requiring data on population densities. It can describe situations in which outbound migration flux from origin to destination is enhanced by destination population and absorbed by the density of nearer destinations.
Mathematical formulation, whith \(\Omega\) defined as above in the Stouffer model:
We again use the parameter include_home to determine whether or not location \(i\) is to be included in \(\Omega(i,j)\).