Double Pendulum Motion: Plotting theta2 vs Time

AI Thread Summary
The discussion focuses on a Python implementation of the Runge-Kutta fourth order method to simulate double pendulum motion. The user is concerned about the accuracy of their plot showing the angle of the second rod (theta2) versus time. They have shared a graph comparing both rod angles over time, seeking insights from others, particularly physicists. A key suggestion is to verify the conservation of total energy in the simulation to assess numerical accuracy. Ensuring energy conservation can help identify potential numerical issues in the model.
thespaceman
Messages
11
Reaction score
0
Hello all,
I have written a python code implementing the Runge-Kutta fourth order method for higher orders to approximate the motion of a double pendulum. The problem I am having is that my plot of theta2 (angle of second rod) Vs time looks a little off and I am curious if I have it correct.
Attached is a graph of both rod angles Vs time. The blue is the first rod and the green is the second rod. I figure the opinion of some physicists may be insightful. Thanks :)
-thespaceman
 

Attachments

  • DoublePendulum_N-1000000_1stIC.png
    DoublePendulum_N-1000000_1stIC.png
    15.1 KB · Views: 637
Physics news on Phys.org
It's not so easy to see just from the plot, whether there are numerical problems or not. A good check is, whether the total energy of the system remains conserved in the numerical simulation.
 
The rope is tied into the person (the load of 200 pounds) and the rope goes up from the person to a fixed pulley and back down to his hands. He hauls the rope to suspend himself in the air. What is the mechanical advantage of the system? The person will indeed only have to lift half of his body weight (roughly 100 pounds) because he now lessened the load by that same amount. This APPEARS to be a 2:1 because he can hold himself with half the force, but my question is: is that mechanical...
Some physics textbook writer told me that Newton's first law applies only on bodies that feel no interactions at all. He said that if a body is on rest or moves in constant velocity, there is no external force acting on it. But I have heard another form of the law that says the net force acting on a body must be zero. This means there is interactions involved after all. So which one is correct?
Thread 'Beam on an inclined plane'
Hello! I have a question regarding a beam on an inclined plane. I was considering a beam resting on two supports attached to an inclined plane. I was almost sure that the lower support must be more loaded. My imagination about this problem is shown in the picture below. Here is how I wrote the condition of equilibrium forces: $$ \begin{cases} F_{g\parallel}=F_{t1}+F_{t2}, \\ F_{g\perp}=F_{r1}+F_{r2} \end{cases}. $$ On the other hand...
Back
Top