reservoirflow.models.Model.run#

Model.run(**kwargs)#

Solve multiple timesteps.

Attention

This method is not available until the model is compiled using model.compile().

Once the model is compiled, the documentation of the assigned solution can be accessed using one of the following methods:

>>> help(model.run) # or help(model.solution.run)
>>> print(model.run.__doc__) # or print(model.solution.run.__doc__)