I've been working with sympy and scipy, but can't find or figure out how to solve a system of coupled differential equations (non-linear, first-order).
So is there any way to solve coupled differential equations?
The equations are of the form:
V11'(s) = -12*v12(s)**2 v22'(s) = 12*v12(s)**2 v12'(s) = 6*v11(s)*v12(s) - 6*v12(s)*v22(s) - 36*v12(s)
with initial conditions for v11(s), v22(s), v12(s).
Differential equations are solved in Python with the Scipy. integrate package using function odeint or solve_ivp. 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.
For the numerical solution of ODEs with scipy, see scipy.integrate.solve_ivp
, scipy.integrate.odeint
or scipy.integrate.ode.
Some examples are given in the SciPy Cookbook (scroll down to the section on "Ordinary Differential Equations").
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With