CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
AllenDowney

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: AllenDowney/ModSimPy
Path: blob/master/notebooks/chap03.ipynb
Views: 531
Kernel: Python 3

Modeling and Simulation in Python

Chapter 3

Copyright 2017 Allen Downey

License: Creative Commons Attribution 4.0 International

# Configure Jupyter so figures appear in the notebook %matplotlib inline # Configure Jupyter to display the assigned value after an assignment %config InteractiveShell.ast_node_interactivity='last_expr_or_assign' # import functions from the modsim library from modsim import * # set the random number generator np.random.seed(7)

More than one State object

Here's the code from the previous chapter, with two changes:

  1. I've added DocStrings that explain what each function does, and what parameters it takes.

  2. I've added a parameter named state to the functions so they work with whatever State object we give them, instead of always using bikeshare. That makes it possible to work with more than one State object.

def step(state, p1, p2): """Simulate one minute of time. state: bikeshare State object p1: probability of an Olin->Wellesley customer arrival p2: probability of a Wellesley->Olin customer arrival """ if flip(p1): bike_to_wellesley(state) if flip(p2): bike_to_olin(state) def bike_to_wellesley(state): """Move one bike from Olin to Wellesley. state: bikeshare State object """ state.olin -= 1 state.wellesley += 1 def bike_to_olin(state): """Move one bike from Wellesley to Olin. state: bikeshare State object """ state.wellesley -= 1 state.olin += 1 def decorate_bikeshare(): """Add a title and label the axes.""" decorate(title='Olin-Wellesley Bikeshare', xlabel='Time step (min)', ylabel='Number of bikes')

And here's run_simulation, which is a solution to the exercise at the end of the previous notebook.

def run_simulation(state, p1, p2, num_steps): """Simulate the given number of time steps. state: State object p1: probability of an Olin->Wellesley customer arrival p2: probability of a Wellesley->Olin customer arrival num_steps: number of time steps """ results = TimeSeries() for i in range(num_steps): step(state, p1, p2) results[i] = state.olin plot(results, label='Olin')

Now we can create more than one State object:

bikeshare1 = State(olin=10, wellesley=2)
bikeshare2 = State(olin=2, wellesley=10)

Whenever we call a function, we indicate which State object to work with:

bike_to_olin(bikeshare1)
bike_to_wellesley(bikeshare2)

And you can confirm that the different objects are getting updated independently:

bikeshare1
bikeshare2

Negative bikes

In the code we have so far, the number of bikes at one of the locations can go negative, and the number of bikes at the other location can exceed the actual number of bikes in the system.

If you run this simulation a few times, it happens often.

bikeshare = State(olin=10, wellesley=2) run_simulation(bikeshare, 0.4, 0.2, 60) decorate_bikeshare()

We can fix this problem using the return statement to exit the function early if an update would cause negative bikes.

def bike_to_wellesley(state): """Move one bike from Olin to Wellesley. state: bikeshare State object """ if state.olin == 0: return state.olin -= 1 state.wellesley += 1 def bike_to_olin(state): """Move one bike from Wellesley to Olin. state: bikeshare State object """ if state.wellesley == 0: return state.wellesley -= 1 state.olin += 1

Now if you run the simulation again, it should behave.

bikeshare = State(olin=10, wellesley=2) run_simulation(bikeshare, 0.4, 0.2, 60) decorate_bikeshare()

Comparison operators

The if statements in the previous section used the comparison operator ==. The other comparison operators are listed in the book.

It is easy to confuse the comparison operator == with the assignment operator =.

Remember that = creates a variable or gives an existing variable a new value.

x = 5

Whereas == compares two values and returns True if they are equal.

x == 5

You can use == in an if statement.

if x == 5: print('yes, x is 5')

But if you use = in an if statement, you get an error.

# If you remove the # from the if statement and run it, you'll get # SyntaxError: invalid syntax #if x = 5: # print('yes, x is 5')

Exercise: Add an else clause to the if statement above, and print an appropriate message.

Replace the == operator with one or two of the other comparison operators, and confirm they do what you expect.

Metrics

Now that we have a working simulation, we'll use it to evaluate alternative designs and see how good or bad they are. The metric we'll use is the number of customers who arrive and find no bikes available, which might indicate a design problem.

First we'll make a new State object that creates and initializes additional state variables to keep track of the metrics.

bikeshare = State(olin=10, wellesley=2, olin_empty=0, wellesley_empty=0)

Next we need versions of bike_to_wellesley and bike_to_olin that update the metrics.

def bike_to_wellesley(state): """Move one bike from Olin to Wellesley. state: bikeshare State object """ if state.olin == 0: state.olin_empty += 1 return state.olin -= 1 state.wellesley += 1 def bike_to_olin(state): """Move one bike from Wellesley to Olin. state: bikeshare State object """ if state.wellesley == 0: state.wellesley_empty += 1 return state.wellesley -= 1 state.olin += 1

Now when we run a simulation, it keeps track of unhappy customers.

run_simulation(bikeshare, 0.4, 0.2, 60) decorate_bikeshare()

After the simulation, we can print the number of unhappy customers at each location.

bikeshare.olin_empty
bikeshare.wellesley_empty

Exercises

Exercise: As another metric, we might be interested in the time until the first customer arrives and doesn't find a bike. To make that work, we have to add a "clock" to keep track of how many time steps have elapsed:

  1. Create a new State object with an additional state variable, clock, initialized to 0.

  2. Write a modified version of step that adds one to the clock each time it is invoked.

Test your code by running the simulation and check the value of clock at the end.

bikeshare = State(olin=10, wellesley=2, olin_empty=0, wellesley_empty=0, clock=0)
# Solution goes here
# Solution goes here
# Solution goes here

Exercise: Continuing the previous exercise, let's record the time when the first customer arrives and doesn't find a bike.

  1. Create a new State object with an additional state variable, t_first_empty, initialized to -1 as a special value to indicate that it has not been set.

  2. Write a modified version of step that checks whetherolin_empty and wellesley_empty are 0. If not, it should set t_first_empty to clock (but only if t_first_empty has not already been set).

Test your code by running the simulation and printing the values of olin_empty, wellesley_empty, and t_first_empty at the end.

# Solution goes here
# Solution goes here
# Solution goes here
# Solution goes here