Skip to main content

differential equations - Need help in plotting a function with two variables in ODE


The solution of this ODE was given in this link


Here I am asking, if L is a function of tot, g, Z and tot depends on Z and g, which means I need to solve the ODE for each value of Z and g to get tot and then pass it to L function, after that Plot L.

I am not sure should I use ContourPlot or somethings els. Help please.


p[Z0_, g0_, k0_, R0_] := 
Block[{Z = Z0,
g = Rationalize[g0, 0],
k2 = Rationalize[k0, 0],
ϵ = 10^-4,
R = Rationalize[R0, 0]},
ps =
ParametricNDSolveValue[
{y''[r] + 2 y'[r]/r == k2 Sinh[y[r]],

y[ϵ] == y0, y'[ϵ] == 0,
WhenEvent[r == 1, y'[r] -> y'[r] + Z g]},
{y, y'}, {r, ϵ, R}, {y0},
Method -> "StiffnessSwitching",
WorkingPrecision -> 20];

sol = FindRoot[Last[ps[y0]][R], {y0, -1}, Evaluated -> False][[1, 2]];
tot = 4 π sol NIntegrate[r^2 Exp[-First[ps[sol]][r]], {r, 0, R}];
L= Z/g*tot;


ContourPlot[L, {g, 0.02, 0.06}, {Z, 500, 800}]]

Quiet[
Table[p[Z, g, 0.0002, 1.5], {g, 0.02, 0.06, .02},{Z, 500, 800, 200}]]

Answer



The desired contour plot can be obtained as follows. Begin with a slight modification to the code in the question.


p[Z0_, g0_, k0_, R0_] := Block[{Z = Z0, 
g = Rationalize[g0, 0], k2 = Rationalize[k0, 0], ϵ = 10^-4, R = Rationalize[R0, 0]},
ps = ParametricNDSolveValue[{y''[r] + 2 y'[r]/r == k2 Sinh[y[r]], y[ϵ] == y0, y'[ϵ] == 0,
WhenEvent[r == 1, y'[r] -> y'[r] + Z g]}, {y, y'[R]}, {r, ϵ], R}, {y0},

Method -> "StiffnessSwitching", WorkingPrecision -> 20];
sol = FindRoot[Last[ps[y0]], {y0, -1}, Evaluated -> False][[1, 2]];
tot = 4 π sol NIntegrate[r^2 Exp[-First[ps[sol]][r]], {r, ϵ, R}];
L = Z/g*tot]

Specifically, {y, y'} is replaced by {y, y'[R]} to save a bit of time, because the value of y' is needed only at r = R; a corresponding change is made in the first argument of FindRoot; the lower bound of NIntegrate is set to ϵ, because ps is undefined for smaller values of r; and ContourPlot is removed from within the definition of p.


The desired contour plot then is


ContourPlot[Quiet[p[Z, g, 0.0002, 1.5]], {g, 0.02, 0.06}, {Z, 500, 800}, 
PlotPoints -> {5, 4}, MaxRecursion -> 1, PlotLegends -> Automatic,
FrameLabel -> {g, Z}, ImageSize -> Large, LabelStyle -> {Bold, Black, 15}]


enter image description here


which takes about two minutes on my computer. The plotting can, however, be parallelized with equal resolution using


DistributeDefinitions[p];
tab = ParallelTable[Quiet[p[Z, g, 0.0002, 1.5]], {Z, 500, 800, 50}, {g, 0.02, 0.06, .005}];
ListContourPlot[tab, DataRange -> {{.02, .06}, {500, 800}}, PlotLegends -> Automatic,
FrameLabel -> {g, Z}, ImageSize -> Large, LabelStyle -> {Bold, Black, 15}]

which produces the same plot in 37 seconds. (My computer has six processors.) Finally, the table requested in the question is


Table[Quiet[p[Z, g, 0.0002, 1.5]], {g, 0.02, 0.06, .02}, {Z, 500, 800, 200}]

(* {{-3.41941*10^11, -6.80714*10^11}, {-3.51627*10^11, -6.9574*10^11},
{-3.55499*10^11, -7.0144*10^11}} *)

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[ ...

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...

Is there a way to do conditional matrix loop using 'continue'

I have the following: n = 3; m = 5; ww = RandomReal[{0, 0.1}, {n, n}]; uu = RandomReal[{0, 1}, {m, n}]; pp = RandomReal[{0, 1}, {n, n}]; ss = RandomInteger[{0, 5}, {m, n}]; Grid[{{"ww", "uu", "pp", "ss"}, {ww // TableForm, uu // TableForm, pp // TableForm, ss // TableForm}}, Spacings -> {5, 2}, Dividers -> All] where I would like to look at every element of matrix ss and produce a matrix tt , with zeroes at the locations in ss which have zeroes, and in all other positions do the following: tt = (-1/Subscript[ww, m]) Log[(1 - uu)/(Subscript[pp, m - 1])], where Subscript[ww, m] is the value at index of ww matrix and where Subscript[pp, m - 1] is the value at index-1 of pp matrix. So for example if the first value ever read from matrix ss happens to be 2, then value taken from matrix ww would be from the row 2, but from pp would be from row 1. Also how to tell difference between a 0 as a valid value from within the matrix elemen...