Solving partial differential equation numerically

Click For Summary
SUMMARY

This discussion focuses on numerically solving a first-order partial differential equation (PDE) using finite differences. The user defines the function f(x,y) = sin(x-y) and constructs the PDE ∂f/∂x + ∂f/∂y = 0 with specified boundary conditions. The user employs centered differences and equal spacings to derive a set of equations but encounters a singular matrix when attempting to solve the linear system. The discussion highlights the importance of proper numerical methods and boundary conditions in solving PDEs.

PREREQUISITES
  • Understanding of partial differential equations (PDEs)
  • Familiarity with finite difference methods
  • Knowledge of boundary value problems
  • Experience with linear algebra and matrix operations
NEXT STEPS
  • Study finite difference methods for first-order PDEs
  • Learn about boundary conditions in numerical PDE solutions
  • Explore techniques for handling singular matrices in linear systems
  • Investigate the numerical solution of second-order PDEs for comparison
USEFUL FOR

Mathematicians, physicists, and engineers interested in numerical methods for solving partial differential equations, particularly those focusing on finite difference techniques and boundary value problems.

Telemachus
Messages
820
Reaction score
30
Hi there. I am trying to self teach how to solve partial differential equations numerically using finite differences. I know this is a complex field, that requires much more knowledge of the theory than what I actually know, but anyway I wanted to try.

Anyway, I've tried to build my own differential equation, probably naively. I wanted to solve a first order partial differential equation, so I thought of taking the function:

##f(x,y)=sin(x-y)##

And then, taking derivatives I build the differential equation:

##\displaystyle \frac{\partial f(x,y)}{\partial x}+\frac{\partial f(x,y)}{\partial y}=0##, and I considered the interval ##0\leq x \leq 1, 0\leq y \leq 1##

Then I considered the boundary conditions ##f(0,y)=\sin(-y)##, ##f(1,y)=\sin(1-y)##,##f(x,0)=\sin(x)## and ##f(x,1)=\sin(x-1)##.I think that everything is correct until here, but I'm not sure, if anything is wrong please tell me.

Then I considered centered differences (I needed for centered difference to have the previous and forward steps in the equation, in order to propagate the solution from the boundaries). I've considered equal spacings in the y and x directions, with ##x_i=i\Delta x=ih##, ##y_j=j\Delta y=j h##, and ##h=\frac{1}{N+1}##, with N being the number of interior points in each axis, being ##(x_0,y_j),(x_{N+1},y_j)## and ##(x_i,y_0),(x_i,y_{N+1})## the points situated at the boundaries of the domain.

Under this conditions I've arrived to the set of equations:

##u_{i+1,j}-u_{i-1,j}+u_{i,j+1}-u_{i,j-1}=0##

Where I thought that ##u_{i,j}\sim f(x_i,y_j)##

Then the discretized version of the boundary conditions would look like: ##u_{0,j}=\sin(-jh)##, ##u_{N+1,j}=\sin(1-jh)##, ##u_{i,0}=\sin(ih)## and ##u_{i,N+1}=\sin(ih-1)##.

But when I build the matrix and solve the linear system I get the result that the matrix is singular. So what would be the correct approach to this problem?
 
Technology news on Phys.org
Yes, but those are second order. I was interested in solving a first order partial differential equation. Is anything wrong with the problem I set up? is it just that the numerical approach isn't proper for this equation or I did something else wrong?
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 21 ·
Replies
21
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K
Replies
31
Views
4K
  • · Replies 11 ·
Replies
11
Views
3K