- #1
Milsomonk
- 96
- 17
- TL;DR Summary
- Classifying ODE's and identifying solving techniques.
Good afternoon folks,
I have a pair of ODE's which I would like to solve. Firstly i'd want to correctly identify the problem and then find the best method for finding a solution.
\begin{align}
\frac{dP_{(z,t)}}{dz} &= An_{(z,t)}P_{(z,t)}-BP_{(z,t)} \\
\frac{dn_{(z,t)}}{dt} &= Cn_{(z,t)}P_{(z,t)}-DP_{(z,t)}-En_{(z,t)}
\end{align}
Where $$A,B,C,D,E$$ are constants.
I think I have correctly identified these as Non-Homogeneous, Non-linear ODE's. I'm not sure if they are coupled as their derivatives are wrt to different variables? as such I am not sure the best method to find a solution, is there a suitable solver in Python or Matlab?
Any ideas or guidance would be appreciated, I'm certainly not looking for a solution, just a hint or a nudge in the right direction. Many thanks in advance.
I have a pair of ODE's which I would like to solve. Firstly i'd want to correctly identify the problem and then find the best method for finding a solution.
\begin{align}
\frac{dP_{(z,t)}}{dz} &= An_{(z,t)}P_{(z,t)}-BP_{(z,t)} \\
\frac{dn_{(z,t)}}{dt} &= Cn_{(z,t)}P_{(z,t)}-DP_{(z,t)}-En_{(z,t)}
\end{align}
Where $$A,B,C,D,E$$ are constants.
I think I have correctly identified these as Non-Homogeneous, Non-linear ODE's. I'm not sure if they are coupled as their derivatives are wrt to different variables? as such I am not sure the best method to find a solution, is there a suitable solver in Python or Matlab?
Any ideas or guidance would be appreciated, I'm certainly not looking for a solution, just a hint or a nudge in the right direction. Many thanks in advance.