I want to plot 1100(r[t]-14) vs θ[t]. How can I plot the functions of r[t] and θ[t] from NDsolve? This is my code to find r[t] and θ[t]:
m = 81;
g = 9.81;
h = 12;
l = 15;
d = 15;
a = (d - h) \[Pi]/180;
s = NDSolve[{(m*g*
Sin[\[Theta][t]]) - (m*(r''[t] - r[t] ((\[Theta]'[t])^2))) ==
1100 (r[t] - 14), g*Cos[\[Theta][t]] ==
r[t]*\[Theta]''[t] + 2*r'[t]*\[Theta]'[t], \[Theta][0] ==
ArcSin[a/l], \[Theta]'[0] == 0, r[0] == 15, r'[0] == 0}, {r, \[Theta]}, {t, 0, 100}]
And this is code that I use to make the plot:
ParametricPlot[ Evaluate[{1100*(r[t] - 14), \[Theta][t]} /. s], {t, 0, 2}, PlotPoints -> 200]

NDSolve, all parameters used need to have numerical values. $\endgroup$mandaandl. One can guess thatg=9.81assuming we are on earth. So if you want to use NDSolve, it will not work without these parameters having a numerical value. You are the only person who knows what these should be. $\endgroup$