Hi all,
I just found out this python module, and it seems like it has
sophisticated capabilities to solve PDEs.
I would like to ask a question about the solution of an elliptic
equation. Instead of going through the documentation and spending quite
much time, I would like to ask it from here. I only need to solve an
equation and, really, time is very valuable for me now because i should
solve this equation in a very short time.
And, this is the equation;
( d**2 P / d**2 x ) + A * ( d**2 / d**2 z ) + f ( x ) * P = g ( x )
here 'P' is the field variable, 'z' and 'x' are coordinates in two
dimensions. 'f' and 'g' are defined functions, so they can be considered
as constants like 'A'. 'd' is differential operator.
Is this module capable of solving this elliptic differential equation?
If so, which module should I use, how should I define the equation. Any
kind of code example will be appreciated.
Thanks a lot in advance.
BD