Message Boards Message Boards

0
|
5263 Views
|
3 Replies
|
1 Total Likes
View groups...
Share
Share this post:

Solve the following nonlinear parabolic PDE with DSolve?

Posted 4 years ago

Hello,

I try to solve the following nonlinear parabolic PDE :

f_x = (-3/2) * a * f(x,t) * f_t + (1/4f) * f_{tt}

with Initial value condition f(0,x) = Sqrt(Tanh(x)).

The output of DSolve is just

DSolve[{-(3/2) f[x, t] *f^{0,1} [x,t] + (f^{0,2} [x,t] / 4 f[x,t]) -f^{0,1} [x,t] ==0,
 f(0,t) = Sqrt[Tanh[t]]}, f[x,t],{x,t} ] (there is no error).

Can anybody help me?

Thanks.

POSTED BY: Fabi An
3 Replies
Anonymous User
Anonymous User
Posted 4 years ago

If NDsolve cannot solve it you can try changing methods (option to NDsolve). "monte carlo" I think has a good chance of solving where other methods fail. Mathematica also comes with "equation trekker" you might find that useful.

Your pde is only using differential of y? You could see what happens if you give x a constant value.

You have at least one typo ... f(0,t) should be f[0,t]. I suspect also you have a second typo because your original equation indicates D[ f[x,t], x] on the left of the equality. You have (1/4f) and if you would clarify if you intended (1/4)f or (1/(4f)) since that "changes everything" (for solving by hand). (It would help if you mentioned what book or subject, title of chapter, so anyone can can help further without solving "a difficult problem" and later finding it was the wrong question please).

(Nonlinear ... there are system of PDE method, perturbation method, numerical, and (well, an endless list of table of solutions to every kind of nonlinear pde in CRC books), methods that require conditions and inside knowledge of the physics going on).

"“Practically all nonlinear PDEs must be solved by numerical methods, and, in fact, most realistic models in physics, chemistry, biology, and so forth, are nonlinear in nature”.

Excerpt From: Stanley J. Farlow. “Partial Differential Equations for Scientists and Engineers.” Apple Books. https://books.apple.com/us/book/partial-differential-equations-for-scientists-engineers/id490945639"

POSTED BY: Anonymous User

You should post your code, using the code sample icon.

POSTED BY: Frank Kampas
Posted 4 years ago

with a = 1

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

Group Abstract Group Abstract