How do I calculate the individual interactions between two links of a chain?

  • Thread starter Thread starter ComputerPsi
  • Start date Start date
  • Tags Tags
    Chain Movement
AI Thread Summary
The discussion focuses on simulating the two-dimensional movement of a chain of rigid rods under specific conditions, such as no gravity and constant mass for each link. The primary goal is to understand the individual interactions between two links when one is moved, including the energy transfer and directional effects on the second link. Participants discuss the necessary physics formulas, including the equations for the center of mass coordinates, velocities, and kinetic energy for both translational and rotational motion. Clarifications are made regarding the length of the rods and the calculation of kinetic energy, with emphasis on the correct interpretation of variables. The conversation highlights the complexity of modeling such interactions and the need for precise mathematical formulations.
ComputerPsi
Messages
24
Reaction score
0
I want to simulate the (probably chaotic) two dimensional movement of a chain, given that there is no gravity, and all of the links of the chain have some constant mass. Additionally, there is an assumption that the chain cannot collapse - all of the links of the chain will always be touching at their tips. Basically, one would move one side of the chain up and down and observe how this affects the rest of the chain.

I am trying to find some type of physics formulas that allow me to understand the individual interactions between two links of a chain. After one link moves at a certain degree into some direction with some energy, how much energy, in what direction will go into the second link? How will the first link be affected from the second link being connected to it? etc..
I'm not very interested in a formula that describes the chain as a whole. Instead I'm interested in the specific interaction between two links of the chain.

Does anybody know the generic names for these formulas, or some place that references them?

Thank you,
Ven
 
Physics news on Phys.org
Each link is a rigid rod having three degrees of freedom (2 translational and 1 rotational). Let (x_{k}, y_{k}) be the Cartesian coordinates of the CM of the kth rod and \theta_{k} is the angle the rod's axis builds with the positive x-axis. Therefore, the left and right ends of the kth rod have coordinates:

<br /> x_{l k} = x_{k} - l \, \cos{\theta_{k}}<br />

<br /> y_{l k} = y_{k} - l \, \sin{\theta_{k}}<br />

<br /> x_{r k} = x_{k} + l \, \cos{\theta_{k}}<br />

<br /> y_{r k} = y_{k} + l \, \sin{\theta_{k}}<br />

But, the left end of the (k+1)st rod is the same as the right end of the kth rod, so we have the relation:

<br /> x_{k + 1} - l \, \cos{\theta_{k + 1}} = x_{k} + l \, \cos{\theta_{k}} \Rightarrow x_{k + 1} - x_{k} = l \, \left( \cos{\theta_{k}} + \cos{\theta_{k +1}} \right)<br />

<br /> y_{k + 1} - l \, \sin{\theta_{k + 1}} = y_{k} + l \, \sin{\theta_{k}} \Rightarrow y_{k + 1} - y_{k} = l \, \left( \sin{\theta_{k}} + \sin{\theta_{k +1}} \right)<br />

Knowing the coordinates of the left hand end of the 0th rod:

<br /> x_{l 0} = x_{0} - l \, \cos{\theta_{0}} \Rightarrow x_{0} = x_{l 0} + l \, \cos{\theta_{0}}<br />

<br /> y_{l 0} = y_{0} - l \, \ain{\theta_{0}} \Rightarrow y_{0} = y_{l 0} + l \, \sin{\theta_{0}}<br />

We can get the CM coordinates of the kth rod as:

<br /> x_{k} = x_{l 0} + 2 \, l \, \sum_{j = 0}^{k - 1}{\cos{\theta_{j}}} + l \, \cos{\theta_{k}}, \; k \ge 1<br />

<br /> y_{k} = y_{l 0} + 2 \, l \, \sum_{j = 0}^{k - 1}{\sin{\theta_{j}}} + l \, \sin{\theta_{k}}, \; k \ge 1<br />

The velocities of the CM of the kth rod are:

<br /> \dot{x}_{k} = \dot{x}_{l 0} - 2 \, l \, \sum_{j = 0}^{k - 1}{\dot{\theta}_{j} \, \sin{\theta_{j}}} - l \, \dot{\theta}_{k} \, \sin{\theta_{k}}, \; k \ge 1<br />

<br /> \dot{y}_{k} = \dot{y}_{l 0} + 2 \, l \, \sum_{j = 0}^{k - 1}{\dot{\theta}_{j} \, \cos{\theta_{j}}} + l \, \dot{\theta}_{k} \, \cos{\theta_{k}}, \; k \ge 1<br />

Thus, the kinetic energy of the translational motion is:

<br /> T_{\mathrm{trans}} = \frac{M}{2} \, \sum_{i = 0}^{N - 1}{\left(\dot{x}^{2}_{i} + \dot{y}^{2}_{i}\right)}<br />

Substitute the upper equations and do some regrouping of terms! I suppose you want to consider the non-trivial case when there is more than 1 rod.

Added to this kinetic energy, there is also the kinetic energy due to rotational motion of each rod. The moment of inertia of each rod is:

<br /> I_{0} = \frac{M \, L^{2}}{12}<br />

<br /> T_{\mathrm{rot}} = \frac{I_{0}}{2} \, \sum_{i = 0}^{N - 1}{\dot{\theta}^{2}_{i}}<br />

If there is no potential energy due to the change in the configuration of the chain and there is no potential energy due to external fields, then the total Lagrangian of the system is:

<br /> L = T_{\mathrm{trans}} + T_{\mathrm{rot}}<br />

and the equations of motion are:

<br /> \frac{d}{dt} \left( \frac{\partial L}{\partial \dot{\theta}_{k}}\right) - \frac{\partial L}{\partial \theta_{k}} = 0, 0 \le k \le N - 1<br />

<br /> \frac{d}{dt} \left( \frac{\partial L}{\partial \dot{x}_{l 0}}\right) - \frac{\partial L}{\partial x_{l 0}} = 0<br />

<br /> \frac{d}{dt} \left( \frac{\partial L}{\partial \dot{y}_{l 0}}\right) - \frac{\partial L}{\partial y_{l 0}} = 0<br />
 
Wow. Thank you Dickfore for that input. I've started to look at the top part of the equations.. it's a lot to take in, but I'll figure it out due some time.
For now I just have one small question to confirm what I have been thinking about for the top formulas:
The variable l. That's the length of each rod, correct?

Thanks,
Ven
 
...After thinking about it, it seems (X, Y) represent the "center" of each rod and the variable l is actually 1/2 of the length of each rod. Is this correct?
 
Dickfore said:
Thus, the kinetic energy of the translational motion is:

<br /> T_{\mathrm{trans}} = \frac{M}{2} \, \sum_{i = 0}^{N - 1}{\left(\dot{x}^{2}_{i} + \dot{y}^{2}_{i}\right)}<br />

How did you get this? Especially the M / 2 part..
 
Kinteric energy is:

<br /> T = \frac{1}{2} \, M \, v^{2}<br />

where

<br /> v^{2} = v^{2}_{x} + v^{2}_{y}<br />

is the speed of the CM squared.

You are right about the previous post, the length of the rod is actually 2 l, making the formula for the moment of inertia of each rod (with respect to an axis passing through the CM):

<br /> I_{0} = \frac{M L^{2}}{3}<br />
 
Back
Top