Solving Coupled PDEs Numerically with Unknown Functions u(x,y) and v(x,y)

  • Thread starter Thread starter MathNerd
  • Start date Start date
  • Tags Tags
    Pdes System
MathNerd
I have two unknown function namely u(x,y) and v(x,y). These functions are part of two coupled partial differential equations. I realize that it will be almost impossible to get a general solution seeing as one on the PDEs is non-linear. But given a set of boundary conditions I wish to solve for these unknown functions numerically. I don’t quite know how to go about this though, so any help would be appreciated. The equations are attached to this thread
 

Attachments

  • equations.gif
    equations.gif
    4.5 KB · Views: 735
Physics news on Phys.org
If I wanted to solve this numerically, I'd use a finite-timestep approach.

Remember:

\frac{\partial f(x)}{\partial x} \equiv \lim_{\Delta x \rightarrow 0}\frac{f(x+\Delta x)-f(x)}{\Delta x}

So: just make sure that your timestep \Delta x is small compared to the (expected) fluctuations in your solutions. In that case, you can re-write your equations in an iterative form (note that I used \Delta x=1):

f(n+1) = {\rm some\; function\; of}\; f(n)

which you can do for both of your functions. Now, you can start with your boundry values (for time n=0) and generate the solutions for n>0 with a computer. Computationally intensive, but that should be no problem for your equations...

Succes!
 
Last edited:
It looks to me as though this is a problem from complex analysis. Your second equation is the analyticity condition for a function of a complex variable. Perhaps the first equation is simply expressed in terms of that function.

dhris
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top