From 0164130ba275f7462617a5e13e162fd016f808cd Mon Sep 17 00:00:00 2001 From: Matt Bartos Date: Sun, 9 Jul 2023 12:05:46 -0500 Subject: [PATCH] Update README.md Add num_iter argument to example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adf24e6..505756c 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ with Simulation(superlink, Q_in=Q_in, H_bc=H_bc) as simulation: # While simulation time has not expired... while simulation.t <= simulation.t_end: # Step model forward in time - simulation.step(dt=dt) + simulation.step(dt=dt, num_iter=1) # Record internal depth and flow states simulation.record_state() # Print progress bar