I want to plot the expression formed from numerically calculated Poisson integrals (aka fundamental solutions of heat equation). I can only get numerical values.
ODE system. We extract the solutions. They will serve as initial conditions in Poisson integrals. Then we choose parameter, some x and t and integration limits. After that we consctruct the expression. I need to plot and animate q for any x and t intervals. By this code I can only get numerical values.
s = NDSolve[{u'[x] == -3 W[x] + x, W'[x] == u[x] - W[x]^3, u[0] == -1,
W[0] == 1}, {u, W}, {x, 0, 200}]
G = First[u /. s]
g = First[W /. s]
\[Epsilon] = 1/10
T = -1/2
X = 10
p1 = -200
p2 = 200
Q1 = 1/( 2 Sqrt[Pi *((T) + 1)*(\[Epsilon])^(2)]) NIntegrate[
Exp[-(Abs[X - \[Xi]])^2/(4*((T) +
1)*(\[Epsilon])^(2))] g[\[Xi]] G[\[Xi]] \
(-1/(2*(\[Epsilon])^2)), {\[Xi], p1, p2}]
Q2 = 1/( 2 Sqrt[Pi *((T) + 1)*(\[Epsilon])^(2)]) NIntegrate[
Exp[-(Abs[X - \[Xi]])^2/(4*((T) +
1)*(\[Epsilon])^(2))] g[\[Xi]], {\[Xi], p1, p2}]
q = (-2 (\[Epsilon])^2 )*(Q1/Q2)
I think it should be very simple, but I am a newbie in Wolfram Mathematica, so I'm sorry if the question is too trivial. Hope to get help.
Attachments: