Group Abstract Group Abstract

Message Boards Message Boards

0
|
7.1K Views
|
6 Replies
|
2 Total Likes
View groups...
Share
Share this post:

Get the solution of the following differential equation?

Posted 8 years ago
Attachments:
POSTED BY: Yoon Young Jin
6 Replies

DSolve is symbolical solver and can't find solution to yours PDE. Maybe you can try a NDSolve a numerical solver. At first you must assign for all unknown parameters a numerical values.

POSTED BY: Mariusz Iwaniuk
Posted 8 years ago

Thanks. I'll try to solve it.

POSTED BY: Yoon Young Jin

The function phi1[x] is not defined in the boundary conditions:

bc3 := phi2[x, 0] == vs - phi1[x]
bc4 := phi2[x, l] == vs + vd - phi1[x]
Posted 8 years ago

Thanks. I'll try to solve it.

POSTED BY: Yoon Young Jin

I'll give you a very similar case

In[1]:= s = 
 DSolveValue[{v''[x] == -2*a, v[0] == v0, v[x0] == v0}, v, x]


Out[1]= Function[{x}, v0 - a x^2 + a x x0]

In[2]:= bc = {u[x, 0] == u0 + s[x], u[x, y0] == u1 + s[x], 
   u[0, y] == 0, u[x0, y] == 0};
leqn = Laplacian[u[x, y], {x, y}] == 0;

In[4]:= sol = 
 FullSimplify[
  DSolveValue[{leqn, bc}, u[x, y], {x, y}, Assumptions -> x0 > 0]]

Out[4]= Inactive[Sum][(
 4 Csch[(\[Pi] y0 K[1])/x0] Sin[1/2 \[Pi] K[1]]^2 Sin[(\[Pi] x K[1])/
   x0] ((2 a x0^2 + \[Pi]^2 (u1 + v0) K[1]^2) Sinh[(\[Pi] y K[1])/
      x0] + (2 a x0^2 + \[Pi]^2 (u0 + v0) K[1]^2) Sinh[(\[Pi] (-y + 
         y0) K[1])/x0]))/(\[Pi]^3 K[1]^3), {K[1], 1, \[Infinity]}]
Posted 8 years ago

Thank you. However, Due to my lack of knowledge, I do not know what's wrong.

POSTED BY: Yoon Young Jin
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard