Solve differential equations in Python.

Saved in:
Bibliographic Details
Imprint:[Place of publication not identified] : APMonitor.com, 2021.
Description:1 online resource (25 minutes)
Language:English
Subject:
Format: E-Resource Video Streaming Video
URL for this record:http://pi.lib.uchicago.edu/1001/cat/bib/13697807
Hidden Bibliographic Details
Other authors / contributors:Knowledgemotion Ltd., film distributor.
APMonitor.com, publisher.
Digital file characteristics:video file
Notes:Title from resource description page (viewed March 22, 2022).
In English.
Summary:Differential equations are solved in Python with the Scipy.integrate package using function ODEINT. ODEINT requires three inputs: y = odeint(model, y0, t)model: Function name that returns derivative values at requested y and t values as dydt = model(y,t) y0: Initial conditions of the differential states t: Time points at which the solution should be reported. Additional internal points are often calculated to maintain accuracy of the solution but are not reported.