Numerically solving coupled DEs?

  • Thread starter Thread starter gyver
  • Start date Start date
  • Tags Tags
    Coupled
gyver
Messages
1
Reaction score
0
Hi folks!

I'm trying to (numerically) find a steady-state solution for N_b and N_w in the following set of coupled DEs using the software package Matlab:

<br /> \left{<br /> \begin{array}{l}<br /> \frac{\delta N_b}{\delta t} = P_b(N_b) - N_b \cdot \left( \frac{1}{\tau_b} - \frac{1}{\tau_c}D \right)\\<br /> \frac{\delta N_w}{\delta t} = \frac{N_b}{\tau_c} - \frac{N_w}{\tau_w(N_w)} - P_w(N_w)<br /> \end{array}<br /> \right.<br />

where \tau_b, \tau_c and D are constants. Which way would be the right one to go?
 
Last edited:
Physics news on Phys.org
Remove the dimensions and write a program to do RK4 unless this is just for a class in which case RK2 or Euler's with really small step is easier.
 
I'm don't know MatLab but I'd run two Runge Kutta 4th order (RK4) algorithms simultaneously, using the current values for Nb and Nw in each formula.
 
What form do P_b and \tau_w take?
 
Are there any good visualization tutorials, written or video, that show graphically how separation of variables works? I particularly have the time-independent Schrodinger Equation in mind. There are hundreds of demonstrations out there which essentially distill to copies of one another. However I am trying to visualize in my mind how this process looks graphically - for example plotting t on one axis and x on the other for f(x,t). I have seen other good visual representations of...

Similar threads

Back
Top