Skip to main content

numerics - Variation of heat equation with guessed initial condition


Hi I am trying to solve a variation of the heat equation with interaction terms and external source -- actually it's the Schrödinger-Newton equation if that's more familiar to you. \begin{align} i \dot \psi & = -\nabla^2 \psi + \psi \phi_N + |\psi|^2\psi, \cr \nabla^2 \phi_N & = |\psi|^2, \end{align}



The boundary condition is that $\psi, \phi$ both vanish at large radius and its first derivative vanishes at zero:


\begin{align} \frac{d \psi}{d r}(0,t) &= 0, \cr \psi(\infty,t) &= 0, \cr \frac{d \phi}{d r}(0,t) &= 0, \cr \phi(\infty,t) &= 0. \end{align}


The exact form of initial condition is not known and the requirement is the wave function being real at t=0, it vanishes at $r$ being large. Since NDSolve requires an explicit initial condition, I've been trying the following code with a guessed initial condition:


\begin{align} \psi(r,0) &= (1+r) \mathrm{e}^{-r}, \cr \phi(r,0) &=\phi_0(r), \end{align} where $\phi_0(r)$ is the solution of $\nabla^2 \phi = (1+r)^2 \mathrm{e}^{-2r}$, with $\frac{d \phi_0}{d r} (0) = 0$, and $\phi_0(\infty) = 0$.


So far I haven't got much success to run the code. The kernel complains about zero differential order(pdord), inconsistency (ibcinc), insufficient number of boundary conditions (bcart), unable to continue with complex values (mconly), and unable to find initial conditions that satisfy (icfail). Is there any way to solve it with NDSolve?


tmpψinitial[r_] := (1 + r)*E^(-r)
tmpϕinitial[rr_] := DSolveValue[{D[ϕ[r], r, r] == (1 + r)^2* E^(-2 r),(D[ϕ[r], r] /. r -> 0) == 0, ϕ[rEnd0] == 10^-4}, ϕ[r], r] /. r -> rr
rStart0 = 0.01;
rEnd0 = 5;
epsilon=10^-5;


eqn = {-I*D[ψ[r, t], t] - 1/2*(D[ψ[r, t], r, r]
+ 2/r*D[ψ[r, t], r]) + ψ[r, t]*ψ[r, t]* Conjugate[ψ[r, t]] + ψ[r, t]*ϕ[r, t] == 0
, 2/r*D[ϕ[r, t], r] + D[ϕ[r, t], r, r] == Conjugate[ψ[r, t]]*ψ[r, t]};

ic = {ψ[r, 0] == tmpψinitial[r], ϕ[r, 0] == tmpϕinitial[r]};
bc = {(D[ψ[r, t], r] /. r -> rStart0)== epsilon
, (D[Ï•[r, t], r]/. r -> rStart0) == epsilon
, ψ[rEnd0, t] == epsilon
, Ï•[rEnd0, t] == epsilon};


sol = NDSolveValue[Flatten@{eqn, ic, bc}, {ψ, ϕ}, {r, rStart0, rEnd0}, {t, 0, 10}, MaxSteps -> 10^6]

Answer



ibcinc warning isn't a big deal here, because the i.c. and b.c. are almost consistent. The hard part is pdord warning. (bcart, mconly and icfail are probably by-products of it. )


pdord pops up because the equation system doesn't explicitly contain derivative of $\phi$ with respect to $t$, and several previous questions in this site suggest that, NDSolve just can't directly handle this type of problem well at the moment (probably due to the not-strong-enough DAE solver). So we need to transform the equation a bit to help NDSolve to use an ODE solver to solve it.


We first separate real and imaginary part of the equation because Conjugate turns out to be hard to handle in later step:


rStart0 = 1/100;
rEnd0 = 5;
epsilon = 0(*1/10^5*);


tmpψinitial[r_] := (1 + r) E^-r
tmpϕinitial[r_] =
DSolve[{D[Ï•[r], r, r] == (1 + r)^2 E^(-2 r), (D[Ï•[r], r] /. r -> 0) ==
epsilon, Ï•[rEnd0] == epsilon}, Ï•[r], r][[1, 1, -1]];


Unevaluated[
eqn = {-I*D[ψ[r, t], t] -
1/2*(D[ψ[r, t], r, r] + 2/r*D[ψ[r, t], r]) + ψ[r, t]*ψ[r, t]*
Conjugate[ψ[r, t]] + ψ[r, t]*ϕ[r, t] == 0,

2/r*D[Ï•[r, t], r] + D[Ï•[r, t], r, r] ==
Conjugate[ψ[r, t]]*ψ[r, t]};

ic = {ψ[r, 0] == tmpψinitial[r], ϕ[r, 0] == tmpϕinitial[r]};
bc = {(D[ψ[r, t], r] /. r -> rStart0) ==
epsilon, (D[ϕ[r, t], r] /. r -> rStart0) == epsilon, ψ[rEnd0, t] ==
epsilon, Ï•[rEnd0, t] ==
epsilon};] /. {ψ -> (psiR[#, #2] + I psiI[#, #2] &), ϕ -> (phiR[#, #2] +
I phiI[#, #2] &)};



systemnew = {repart, impart} = ComplexExpand@Map[#, {eqn, ic, bc}, {3}] & /@ {Re, Im};

Next we add derivative with respect to t to the 2nd equation:


addD = MapAt[D[#, t] &, #, {1, 2}] &;
{eqnfinal, icfinal, bcfinal} = Transpose[addD /@ systemnew];

Still, NDSolve isn't able to handle eqnfinal (I believe it's related to this problem), so we need to discretize the system to an ODE system all by ourselves. I'll use pdetoode for the task:


points = 25; domain = {rStart0, rEnd0}; grid = Array[# &, points, domain];
difforder = 4;

(* Definition of pdetoode isn't included in this post,
please find it in the link above. *)
ptoofunc = pdetoode[{psiR, psiI, phiR, phiI}[r, t], t, grid, difforder];

del = #[[2 ;; -2]] &;

ode = Map[del, ptoofunc[eqnfinal], {2}];

odeic = ptoofunc@icfinal;


odebc = With[{sf = 1}, Map[sf # + D[#, t] &, ptoofunc@bcfinal, {3}]];

tend = 10;

The last step is to solve the discretized system. Directly solving {ode, odeic, odebc} with NDSolve is OK, but when points becomes large (increasing points is perhaps the most efficient way for increasing precision in this case), the pre-processing inside NDSolve will become very slow (it internally use Solve to transform the system, for more information you may check this post), so, again, we need to transform the system by ourselves outside of NDSolve, with the help of CoeffcientArrays and LinearSolve, given the system is a linear system for derivatives with respect to t:


(* The following can be used but is slow: *)
(*
sollst = NDSolveValue[{ode, odeic, odebc},
Outer[#[#2] &, {psiR, psiI, phiR, phiI}, grid], {t, 0, tend},
Method -> {"EquationSimplification" -> "Solve"} ];

*)
(* More advanced but faster approach: *)
lhs = D[Flatten@Outer[#[#2][t] &, {psiR, psiI, phiR, phiI}, grid], t];
{b, m} = CoefficientArrays[Flatten[{ode, odebc}], lhs]; // AbsoluteTiming
rhs = LinearSolve[m, -b]; // AbsoluteTiming

sollst = NDSolveValue[{odeic, lhs == rhs // Thread},
Outer[#[#2] &, {psiR, psiI, phiR, phiI}, grid], {t, 0, tend},
Method -> {"EquationSimplification" -> "Solve"},
MaxSteps -> Infinity]; // AbsoluteTiming


sol = rebuild[#, grid, 2] & /@ sollst

label = {Re@ψ, Im@ψ, Re@ϕ, Im@ϕ};

Partition[Table[
Plot3D[sol[[i]][r, t], #, {t, 0, tend}, PlotRange -> All, PlotLabel -> label[[i]]] &@
Flatten@{r, domain}, {i, 4}], 2] // GraphicsGrid

Mathematica graphics



BTW, the following is a even more advanced but even faster approach to solve for sol:


varlst = Flatten@Outer[#[#2][t] &, {psiR, psiI, phiR, phiI}, grid];
varmid = Compile`GetElement[lst, #] & /@ Range@Length@varlst;
crhs = Compile[{{lst, _Real, 1}}, #,
RuntimeOptions -> "EvaluateSymbolically" -> False] &[
rhs /. Thread[varlst -> varmid]];
iclst = LinearSolve[#2, -#] & @@ CoefficientArrays[Flatten@odeic, varlst /. t -> 0];
solvector =
NDSolveValue[{vector[0] == iclst, vector'[t] == crhs@vector[t]}, vector, {t, 0, tend},
MaxSteps -> Infinity]; // AbsoluteTiming


sol = ListInterpolation[#, {grid, solvector["Coordinates"][[1]]}] & /@
Partition[Transpose@Developer`ToPackedArray@solvector["ValuesOnGrid"], points];

Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

equation solving - Invert and fit implicitly defined curve

I need to fit an implicitly defined curve. I thought I could get some data out of Solve , and then using FindFit . Therefore, I would like to find the relation the parametric curve defined by $F(x,y)=0$: Solve[-(1/2) + 1/2 (0.41202 BesselK[0, 0.1 Sqrt[x^2 + y^2]] + (0.101483 x BesselK[1, 0.1 Sqrt[x^2 + y^2]])/Sqrt[x^2 + y^2]) == 0, y] But I can't get an output: Solve was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Solve require exact input, providing Solve with an exact version of the system may help. >> Edit: In particular, I would like to fit the data coming from the curve with the expression of another curve, and not with a function $f(x)$. In particular, since this clearly looks like a cardioid , I would like it to fit to something like it. What other strategies could I try?

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...