I have a set of planar graphs I am using to model a landscape. I am trying to model fire propagation. So if say fire starts at node A, there is a chance that fire can propagate to all of A's adjacent nodes.
Currently I am trying to find a way to model fire propagation as a rumour/gossip model. So if fire starts at A, there is a chance that fire might propagate to say B, or C, which are adjacent to A. And then from B or C, fire can propagate to adjacent nodes as well.
It sounds like a model for infectious diseases but so far I have found very simplistic study on this.
Does anyone know or can give me directions where I can go to study more on this?
It sounds a bit like a Markov Chain model. Looking that up will help you understand the idea of transition matrices.
BUT using a Markov Chain approach will not adequately model your problem. In particular, a Markov Chain imagines the fire moving completely away from one of the nodes to a single other. That means that your transition matrix will not have some of the properties of a Markov Chain matrix.
I don't think that will be a problem. You will, however, have to think carefully about the probabilities of transfer when a node is surrounded by fire as opposed to when it just has one neighbour on fire.
One problem you will have is that the probabilities will become greater than 1 - you will have to check for entries greater than 1 and reduce to 1. That step makes some of the analysis trickier.
Having said that, expected time to reach a particular node etc should all work if you can calculated modified $M, M^2, M^3$ etc.