Two chains each consisting of three masses are placed side-by-side in a fluid.
The masses in Chain A are connected by two ideal springs; the masses in Chain B are connected by two perfectly rigid rods. An impulse is applied to Chain A on the mass marked with an arrow, imparting the mass with an initial speed v 0 . The masses in the chain oscillate and eventually come to rest as the fluid exerts a drag force F drag = − b x ˙ on them.
The same impulse is then applied to the marked mass in the rigid chain. Which chain is farthest from its initial position after they come to rest?
Details & Assumptions
import numpy import matplotlib.pyplot as plt k=1 #spring constant N=10000 #number of time steps b=.5 #drag coefficient DT=.005 #time step def stepup(x,v): Dv=[None]*3 Dx=[None]*3 #Apply Euler's method to compute the velocity changes over DT Dv[0] = DT*(k*(x[1]-x[0]-1)-b*v[0]) Dv[1] = DT*(k*(x[2]-x[1]-1) -k*(x[1]-x[0]-1)-b*v[1]) Dv[2] = DT*(-k*(x[2]-x[1]-1)-b*v[2]) #Apply Euler's method to compute the position changes over DT Dx[0] = DT*v[0] Dx[1] = DT*v[1] Dx[2] = DT*v[2] return [x+Dx,v+Dv] def simulate(): #Arrays to track the motion of masses springMass1=[None]*N springMass2=[None]*N springMass3=[None]*N #Initial values: first index is mass 1, second is mass 2, third is mass 3 xSpring = numpy.array([0.0,1.0,2.0]) vSpring = numpy.array([1.0,0.0,0.0]) for i in range(N): springMass1[i]=xSpring[0] springMass2[i]=xSpring[1] springMass3[i]=xSpring[2] [xSpring,vSpring]=stepup(xSpring,vSpring) T=numpy.arange(0,N*DT,DT) plt.plot(T,springMass1) plt.plot(T,springMass2) plt.plot(T,springMass3) plt.savefig("springChain.png") simulate()
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
One can solve this by looking at what happens to the momenta of the chains: (1) both chains start with the same total momentum. (2) for both chains the (total) momentum is governed by the same differential equation. It follows from (1) and (2) that at any given time the centres of mass of both chains move at the same speed and therefore have traveled the same distance.
Lets look at the details:
Both chains have the same initial momentum. This is traight from Newton's second law:
F Δ t = Δ p
Impulse F Δ t is equal to change of momentum Δ p . Our chains start from rest so the impulse is equal to the starting momentum of either one of them.
Now consider what happens to the total momentum of the chain with springs:
p s p r i n g = m x ˙ 1 + m x ˙ 2 + m x ˙ 3 = m ( x ˙ 1 + x ˙ 2 + x ˙ 3 )
The total momentum of the chain changes only due to the drag forces acting on the three masses. We do not need to consider the forces from the springs - these cannot change the total momentum of the chain, they only redistribute the momentum between the masses. (Feel free to check for yourself, effects of these forces on the total momentum cancel out.) The total drag force for the spring chain is:
F s p r i n g = − b ( x ˙ 1 + x ˙ 2 + x ˙ 3 )
But the right side is proportional to the total momentum of the chain, so we can rewrite it as:
F s p r i n g = − m b p s p r i n g
Using the second law we get:
p ˙ s p r i n g = − m b p s p r i n g
The same line of reasoning can be repeated for the rigid chain again arriving at the same equation:
p ˙ r i g i d = − m b p r i g i d
So momenta of both chains have the same starting value and follow the same differential equation. Since both chains have the same total mass then velocities of their centres-of-mass must be the same at any given time from the initial impulse. And if they had the same velocities at all times they must travel the same distance.
There are two observations to be made:
The above argument only works for identical masses and F d r a g ∼ x ˙ . If the drag force is proportional to any other power of velocity than 1 it fails and one actually has to solve the differential equations.
The chains start with the same total momenta but their starting energies are different. The spring chain starts with 3 times the energy of the rigid chain but looses it more quickly because of the "uncoordinated" motions of the individual masses.
Here's my code. Only one structure is required. The rigid system is the limit of the flexible system as the spring constant tends toward infinity. As it turns out, you get about a third of a meter of travel regardless of the spring constant.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
Problem Loading...
Note Loading...
Set Loading...
In either case, if T 1 is the tension in the first rod/spring and T 2 the tension in the second rod/spring, and if x , y , z are the positions of the three masses, then m x ¨ m y ¨ m z ¨ = − b x ˙ + T 1 = − b y ˙ − T 1 + T 2 = − b z ˙ − T 2 so that m ( x ¨ + y ¨ + z ¨ ) + b ( x ˙ + y ˙ + z ˙ ) = 0 Suppose that the applied impulse is I . In either system, we have x = − ℓ , y = 0 , and z = ℓ initially.
In the case of the sprung system, we have x ˙ = m I , y ˙ = z ˙ = 0 initially. Thus we have e m b t ( x ˙ + y ˙ + z ˙ ) = m I and hence x + y + z = b I ( 1 − e − m b t ) . Letting t → ∞ (when the system is at rest we have x = y − ℓ , z = y + ℓ ) we see that the final value of y is 3 b I . The sprung system moves a distance of 3 b I .
In the case of the rigid system, the initial velocities are x ˙ = y ˙ = z ˙ = 3 m I . Thus e m b t ( x ˙ + y ˙ + z ˙ ) = m I and hence x + y + z = b I ( 1 − e − m b t ) . Throughout the motion we have x = y − ℓ , z = y + ℓ , and so y = 3 b I ( 1 − e − m b t ) . Thus the final value of y is 3 b I .
The rigid system moves the same distance as the sprung system.