Numerically solving coupled DEs?

  • Context: Graduate 
  • Thread starter Thread starter gyver
  • Start date Start date
  • Tags Tags
    Coupled
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
gyver
Messages
1
Reaction score
0
Hi folks!

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

[tex] \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.[/tex]

where [tex]\tau_b[/tex], [tex]\tau_c[/tex] and [tex]D[/tex] 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 [tex]P_b[/tex] and [tex]\tau_w[/tex] take?