Skip to main content

differential equations - Debugging NDSolve to see numerical values at each time-step


I wish to debug my NDSolve function and this is my first time using the Mathematica debugger. I have read around and attempted various different ways of debugging but I cannot figure it out. I want to be able to go step by step through NDSolve and see values for x[t], y[t], t, etc.. My code is as follows:


(* Define the \[Theta] terms via piecewise functions *)
\[Theta]North \
:= Piecewise[{{ArcTan[x[t] - L/2 , y[t] - H],

x[t] > L/2 && y[t] > H}, {ArcTan[x[t] - L/2, H - y[t]],
x[t] > L/2 && y[t] < H}, {ArcTan[L/2 - x[t], y[t] - H],
x[t] < L/2 && y[t] > H}, {ArcTan[L/2 - x[t], H - y[t]],
x[t] < L/2 && y[t] < H}}]


(* Define the force terms in the x and y directions using piecewise \
functions *)
Fnx :=
Piecewise[{{Cn*Abs[H - y[t]]*Cos[\[Theta]North]*Sign[L/2 - x[t]],

x[t] != L/2 && y[t] != H}, {Cn*(L/2 - x[t]), y[t] == H}, {0,
x[t] == L/2}}]
Fny := Piecewise[{{Cn*(H - y[t])*Sin[\[Theta]North],
y[t] != H && x[t] != L/2}, {Cn*(H - y[t]), x[t] == L/2}, {0,
y[t] == H}}]

(* Define frictional terms *)
Ffx := -B*Sign[x'[t]]
Ffy := -B*Sign[y'[t]]


solution =
NDSolve[{x''[t] == (1/M)*(Fnx + Ffx), y''[t] == (1/M)*(Fny + Ffy),
x[0] == x0, x'[0] == vx0, y[0] == y0, y'[0] == vy0}, {x, y, Fnx,
Fny, \[Theta]North}, {t, 0, simTime}];

Is there a way to peer inside of NDSolve one step at a time? (I hope so that is kind of the point of a debugger).


Edit 1: Adding Parameter values:


(* Define the constants for simulation *)
(* Define the size of the \
box *)

L = 5;
H = 5;
(* Define Spring Constant *)
Cn = 0.3;
(* Define initial conditions *)
x0 = 0;
y0 = 0;
vx0 = 0;
vy0 = 0;
(* Define magnitude of sliding friction *)

B = 0.1;
(* Define mass of object *)
M = 1;
(* Define the simulation length *)
simTime = 50;

Answer



The steps are stored in the InterpolatingFunction results. Here's a way to view five steps at a time:


stepdata = MapThread[
Function[{tt, xx, yy, xp, yp},
Block[{x, y, t},

x[t] = xx; x'[t] = xp;
y[t] = yy; y'[t] = yp;
{First@tt, {x[t], y[t]}, {x'[t], y'[t]}, θNorth, {Fnx,
Fny}} /. solution]
],
{x["Grid"], x["ValuesOnGrid"], y["ValuesOnGrid"],
x'["ValuesOnGrid"], y'["ValuesOnGrid"]} /. solution
];

Manipulate[

TableForm[
Map[Pane[#, {100, 40}] &, stepdata[[n ;; n + 4]], {2}],
TableHeadings -> {None,
HoldForm /@
Unevaluated@{First@t, {x[t], y[t]}, {x'[t], y'[t]}, θNorth, {Fnx, Fny}}}],
{n, 1, Length@stepdata - 4}]

Mathematica graphics


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