Chapter 17: Building Models with DisSModel¶
Part III — Discrete Spatial Modeling
Learning Objectives¶
By the end of this chapter you will be able to:
- Implement fire spread and SIR models on both substrates
- Compose multiple models in a single salabim environment
- Add visualization components without touching model logic
{note}
Keep domain simple here — save complexity for Ch 18.
In [ ]:
Copied!
# Standard imports — add chapter-specific imports below
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
# Standard imports — add chapter-specific imports below
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
Fire Spread Model (Vector)¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Fire Spread Model (Vector)
# Code for section: Fire Spread Model (Vector)
Fire Spread Model (Raster)¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Fire Spread Model (Raster)
# Code for section: Fire Spread Model (Raster)
SIR Spatial Epidemic Model¶
TODO: write content.
In [ ]:
Copied!
# Code for section: SIR Spatial Epidemic Model
# Code for section: SIR Spatial Epidemic Model
Composing Models¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Composing Models
# Code for section: Composing Models
Adding RasterMap and Map¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Adding RasterMap and Map
# Code for section: Adding RasterMap and Map
Exercises¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Exercises
# Code for section: Exercises
Further Reading¶
- TODO: add references.