I want to animate a Point moving on an ellipse, but the angle I need to use is a numerical solution from an epression. How can I get mathematica to just take the value from the animated nummerical solution and use it as a variable for my pointfunction? This is my Code and this way it does not work. I think I have to remove the Set-Brackets around my Value for Psi.
ρ = 1; ε := 0.8 ; T := 10 π curvE = ParametricPlot[{ρ/(1 - ε^2) Cos[ψ], ρ/Sqrt[1 - ε^2] Sin[ψ]}, {ψ, 0, 2 π}] Animate[FindRoot[{ψ - ε Sin[ψ] == 2 π t/T} /. ε -> 0.8 /. T -> 10 π, {ψ, 0}], {t, 0, 10 π}] Animate[Show[curvE, Graphics[{PointSize[Large], Red, Point[ Dynamic[{ρ/(1 - ε^2) Cos[FindRoot[{ψ - ε Sin[ψ] == 2 π t/T}, {ψ, 0}]], ρ/Sqrt[1 - ε^2] Sin[FindRoot[{ψ - ε Sin[ψ] == 2 π t/T}, {ψ, 0}]]}]]}]], {t, 0, 10 π, AppearanceElements -> None}] I would appreciate your help.