simple harmonic motion https://www.scienceblogs.com/ en Spring Motion and Numerical Calculations https://www.scienceblogs.com/dotphysics/2008/10/16/spring-motion-and-numerical-calculations <span>Spring Motion and Numerical Calculations</span> <div class="field field--name-body field--type-text-with-summary field--label-hidden field--item"><p>Maybe you know I like numerical calculations, well I do. I think they are swell. [VPython](<a href="http://vpython.org">http://vpython.org</a>) is my tool of choice. In the post [Basics: Numerical Calculations](<a href="http://scienceblogs.com/dotphysics/2008/10/basics-numerical-calculations.php">http://scienceblogs.com/dotphysics/2008/10/basics-numerical-calculation…</a>) I used vpython and excel to do something simple. I will do that again today (in that this problem could also be solved analytically). However, there is one big difference. This problem has a non-constant forces. Suppose I have a mass that is connected by a spring to a wall. This mass-spring is sitting on a table with no friction. </p> <p>![Screenshot 27](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-272.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>There is a very interesting property of springs. The more you stretch them, the greater the force they exert (in the usual model of springs). This model works very well. </p> <p>![Screenshot 28](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-282.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>This is known as Hooke's law. I have written it as a scalar for simplicity. The "k" is called the spring constant. It is a measure of how "stiff" the spring is. The value "s" is the amount the spring is stretched. Typically, there is a minus sign in front of the ks to indicate that the force is in the opposite direction that the spring is stretched. Really, in a scalar equation this is rather silly to include (but everyone does anyway).</p> <p>**Question: What will the motion of the mass be like if I pull it back and then let go?**</p> <p>Although this can be determined analytically, I am going to first calculate this with vpython. I will try to show all the details so that you can reproduce this also. If you have not already installed [vpython](<a href="http://vpython.org">http://vpython.org</a>), do that now (don't cost nothing).</p> <!--more--><p> In the IDLE editor, enter the following:</p> <p>![Screenshot 30](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-301.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <ul> <li>The first line (it's two underscores, then future, then two more underscores) imports a better division than the standard python division.</li> <li>The next line imports all the vpython stuff. This lets you use functions like "sphere(), and vector()".</li> <li>The last import makes it so it is easy to create a graph.</li> </ul> <p><br /><br /></p> <p>Now you should save and run your program just to make sure everything is ok. If it is fine, you will get a yellow sphere. </p> <p>Ok, I trust it worked. Here is the plan for the program. </p> <ul> <li>Set up constants and set up stuff for the graph</li> <li>Make a loop</li> <li>In the loop, update the force (force of the spring depends on position)</li> <li>Use the force to update the momentum</li> <li>Update the position using the change in time and the momentum divided by the mass</li> <li>Update the graph</li> <li>Do the loop again....and again....</li> </ul> <p><br /><br /><br /> Note that I am only representing the ball, not the floor or wall or spring. Also, I am going to set up a weird spring. This spring is attached at the origin and as a zero natural length. This means that any displacement of the mass from the origin will result in a force proportional to that displacement. This is not realistic, but easy to calculate and it gets the point across. </p> <p>So, let me get started with the setup part:</p> <p>![Screenshot 31](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-311.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <ul> <li>I calculated the initial momentum as the mass times the vector(0,0,0) which is STILL the zero vector. However, this way I could easily go back and put the initial velocity as something else.</li> <li>ks is the spring constant</li> <li>I set the time interval to be small. If you have this too large, things don't work too well. It IS possible to fix this by changing the "recipe" a little, but I want it to look simple.</li> <li>posgraph sets up the graph that I will make</li> </ul> <p><br /><br /><br /> If you want, you can run the program (it won't do anything) to see if you have any syntax errors.</p> <p>It works? Ok, here is the rest of the program.</p> <p>![Screenshot 32](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-32.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <ul> <li>First thing, I changed the position of the mass to pos=(.5, 0, 0). If I didn't do this, it would never move because there would be no force to cause a change in momentum. Of course, it would work if I left it at the origin and gave it an initial momentum - try that.</li> <li>The fnet vector is just the opposite of the position from the origin of the mass (times some constant). If you want, you can make your mass go in any direction</li> <li>posgraph.plot puts a point on the graph. It plots the point at pos=(horizontal value, vertical value). In this case, I want time on the horizontal axis and just the x-component of the position of the mass.</li> </ul> <p><br /><br /><br /> Now run your program. It will happen fast because computers are fast (there is a way to slow down the motion, but I am too impatient for that). Hopefully, your program will produce a graph that looks like this:</p> <p>![Screenshot 34](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-341.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>This is probably more awesome than you realize. What function does this graph look like? If you had to guess? Does it kind of look like the cosine function? Why is that awesome? </p> <p>**What is cosine**</p> <p>The cosine function is simply the ratio of the sides a and c in the diagram below of a right triangle.</p> <p>![Screenshot 35](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-351.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Cosine is can also be explained as the projection of a radius of a circle onto one of the axes. </p> <p>![Screenshot 36](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-361.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>As the red line moves around the circle, the length of the green line changes. The ratio of the green line to the red line is the cosine of the angle of the red line. So, the sine and cosine functions are associated with triangles and circle (and ? - sorry, I just wanted to give a shout out to ?). Well, who cares. Obviously I care. I care because here in the program, do you see a circle? No. Do you see a triangle? No. Do you see ?? No. But, the program clearly produces a cosine function. I think that is awesome.</p> <p>Well, maybe the program is wrong. No, it's not wrong. You can easily set up an experiment and get similar data. Also, I can do this problem analytically and get the same answer.</p> <p>**Analytical Solution**</p> <p>For this solution, I will already assume that all motion takes place in the x-direction. So, I can write Newton's second law as:</p> <p>![Screenshot 37](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-371.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Where F<sub>x</sub> is the total force (there is only one in this case anyway). Please forgive me, but I am going to drop the "in the x-direction" notation since EVERYTHING is only in the x-direction. The force from the spring is:</p> <p>![Screenshot 38](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-381.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Remember that this spring has zero natural length, so the x position IS the "stretch". Putting this together, I get:</p> <p>![Screenshot 39](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-391.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Here I wrote acceleration as the second time derivative of position. If that is something completely foreign to you, don't worry - you will see this later maybe. Anyway, what I have here is a differential equation. How do you solve a differential equation? There are lots of strategies, but I find the best one is to guess. Yes, just guess a solution and see if it works. First, let me re-write the differential equation:</p> <p>![Screenshot 40](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-40.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>If you look at this equation, it says "take the derivative with respect to time twice and get something times the original function" (really, it says that, you might have to listen closely). Once function that does that is ....cosine. So, let me try the function:</p> <p>![Screenshot 41](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-41.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Where A and ? are constants. Let me take the first derivative:</p> <p> ![Screenshot 42](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-42.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>And now the second derivative:</p> <p>![Screenshot 43](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-43.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>So this means that:</p> <p>![Screenshot 44](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-44.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Well, does this agree with the numerical solution? One easy way to compare is the period. The period is:</p> <p>![Screenshot 46](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-46.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Using the values from the original situation:</p> <p>![Screenshot 47](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-47.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Is this what the numerical calculation gives also? I will add the following inside the while loop:</p> <p>![Screenshot 48](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-48.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>This should print the time if the position of the mass is near where it started. The output is:</p> <p>![Screenshot 49](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-49.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>So from this, the period is right around 1.256 seconds. They agree. I think this is an excellent example of how numerical calculations are really the same thing as analytical calculations. Ok, they are not the same, but they do the same thing.</p> </div> <span><a title="View user profile." href="/author/rallain" lang="" about="/author/rallain" typeof="schema:Person" property="schema:name" datatype="">rallain</a></span> <span>Thu, 10/16/2008 - 16:57</span> <div class="field field--name-field-blog-tags field--type-entity-reference field--label-inline"> <div class="field--label">Tags</div> <div class="field--items"> <div class="field--item"><a href="/tag/acceleration" hreflang="en">acceleration</a></div> <div class="field--item"><a href="/tag/content" hreflang="en">Content</a></div> <div class="field--item"><a href="/tag/forces" hreflang="en">forces</a></div> <div class="field--item"><a href="/tag/numerical" hreflang="en">numerical</a></div> <div class="field--item"><a href="/tag/physics" hreflang="en">Physics</a></div> <div class="field--item"><a href="/tag/python" hreflang="en">python</a></div> <div class="field--item"><a href="/tag/sho" hreflang="en">SHO</a></div> <div class="field--item"><a href="/tag/springs-0" hreflang="en">springs</a></div> <div class="field--item"><a href="/tag/basics" hreflang="en">basics</a></div> <div class="field--item"><a href="/tag/momentum" hreflang="en">momentum</a></div> <div class="field--item"><a href="/tag/numerical-calculation" hreflang="en">numerical calculation</a></div> <div class="field--item"><a href="/tag/simple-harmonic-motion" hreflang="en">simple harmonic motion</a></div> <div class="field--item"><a href="/tag/vpython" hreflang="en">vpython</a></div> </div> </div> <section> <article data-comment-user-id="0" id="comment-2245565" class="js-comment comment-wrapper clearfix"> <mark class="hidden" data-comment-timestamp="1224335864"></mark> <div class="well"> <strong></strong> <div class="field field--name-comment-body field--type-text-long field--label-hidden field--item"><p>Hi,</p> <p>I wrote a similar program last semester to illustrate a mass hanging from a spring fixed at the top end. I wonder if you might show less of your program so that students with a similar assignment aren't able to simply copy your version. That is the teacher in me thinking. Why are you too impatient to slow down the motion? It takes one really short line at the beginning of your loop.</p> <p>Sorry, I just had to tweak you on that. I really enjoy your blog and I have linked to you from my school website. I don't know if any of my students have checked your blog out yet, but I hope they do! Thanks again for the great writing!</p> </div> <drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=2245565&amp;1=default&amp;2=en&amp;3=" token="sVGOz55YtjVW4a4mEnozSxtuSd-b5-i5VX4NNnbHRQ0"></drupal-render-placeholder> </div> <footer> <em>By <a rel="nofollow" href="http://staff.wcasd.k12.pa.us/teachers/FPoodry/" lang="" typeof="schema:Person" property="schema:name" datatype="">Fran (not verified)</a> on 18 Oct 2008 <a href="https://www.scienceblogs.com/taxonomy/term/28788/feed#comment-2245565">#permalink</a></em> <article typeof="schema:Person" about="/user/0"> <div class="field field--name-user-picture field--type-image field--label-hidden field--item"> <a href="/user/0" hreflang="und"><img src="/files/styles/thumbnail/public/default_images/icon-user.png?itok=yQw_eG_q" width="100" height="100" alt="User Image" typeof="foaf:Image" class="img-responsive" /> </a> </div> </article> </footer> </article> <article data-comment-user-id="0" id="comment-2245566" class="js-comment comment-wrapper clearfix"> <mark class="hidden" data-comment-timestamp="1224458382"></mark> <div class="well"> <strong></strong> <div class="field field--name-comment-body field--type-text-long field--label-hidden field--item"><p>Actually, I don't think of it as a weird spring at all. I just think of it as an elastic medium, with forces due to a displacement field, and the simplest example is the simple harmonic oscillator. I just did this for my classes last week, showing how springs can be done using variable substitution to get the force in terms of displacement out of the integral.</p> <p>Plus, I never really put this together until I started teaching, but position is the less general quantity, a particular type of displacement, displacement from the origin. If you can grok displacement, it makes it a lot easier to avoid getting confused.</p> </div> <drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=2245566&amp;1=default&amp;2=en&amp;3=" token="oKVvmnmb0tTVPq_TE79LqwdEIuu53dMGesYVpzhrtXU"></drupal-render-placeholder> </div> <footer> <em>By <span lang="" typeof="schema:Person" property="schema:name" datatype="">agm (not verified)</span> on 19 Oct 2008 <a href="https://www.scienceblogs.com/taxonomy/term/28788/feed#comment-2245566">#permalink</a></em> <article typeof="schema:Person" about="/user/0"> <div class="field field--name-user-picture field--type-image field--label-hidden field--item"> <a href="/user/0" hreflang="und"><img src="/files/styles/thumbnail/public/default_images/icon-user.png?itok=yQw_eG_q" width="100" height="100" alt="User Image" typeof="foaf:Image" class="img-responsive" /> </a> </div> </article> </footer> </article> <article data-comment-user-id="0" id="comment-2245567" class="js-comment comment-wrapper clearfix"> <mark class="hidden" data-comment-timestamp="1235425019"></mark> <div class="well"> <strong></strong> <div class="field field--name-comment-body field--type-text-long field--label-hidden field--item"><p>A seconds pendulum is suspended from the roof of a lift. what will be the time period of pendulum if the lift is moving up with an acceleration of 2m/s^2?</p> </div> <drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=2245567&amp;1=default&amp;2=en&amp;3=" token="bRtfp3PdFShVTnzmhzVVtATm3d2NUobpvmq4MDqtXjY"></drupal-render-placeholder> </div> <footer> <em>By <span lang="" typeof="schema:Person" property="schema:name" datatype="">akash (not verified)</span> on 23 Feb 2009 <a href="https://www.scienceblogs.com/taxonomy/term/28788/feed#comment-2245567">#permalink</a></em> <article typeof="schema:Person" about="/user/0"> <div class="field field--name-user-picture field--type-image field--label-hidden field--item"> <a href="/user/0" hreflang="und"><img src="/files/styles/thumbnail/public/default_images/icon-user.png?itok=yQw_eG_q" width="100" height="100" alt="User Image" typeof="foaf:Image" class="img-responsive" /> </a> </div> </article> </footer> </article> </section> <ul class="links inline list-inline"><li class="comment-forbidden"><a href="/user/login?destination=/dotphysics/2008/10/16/spring-motion-and-numerical-calculations%23comment-form">Log in</a> to post comments</li></ul> Thu, 16 Oct 2008 20:57:42 +0000 rallain 107738 at https://www.scienceblogs.com Resonance and a Magic Trick https://www.scienceblogs.com/dotphysics/2008/10/04/resonance-and-a-magic-trick <span>Resonance and a Magic Trick</span> <div class="field field--name-body field--type-text-with-summary field--label-hidden field--item"><p>Magic tricks are cool. Especially when the trick is really physics. In this trick, I can make one of the four balls move more than the others. (When you watch the video, you will see why I am not a professional magician). You could set this up in a variety of ways. I state that if we (me and people around me) all work together with our mind and focus on the same ball, our brain waves can resonate with that ball and make it move. I let the people around me pick. In this video, I make the smallest two move.</p> <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Ii-wQVRgpNc&amp;hl=en&amp;fs=1" /><param name="allowFullScreen" value="true" /><embed src="http://www.youtube.com/v/Ii-wQVRgpNc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object><p> So, what is the trick? The trick is not a trick. It is not resonance with brain waves, but it is resonance.</p> <!--more--><p> Each one of those balls, if displaced, will oscillate at a particular frequency. For a pendulum, this frequency is:</p> <p>![Screenshot 22](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-22.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>Where *g* is the local gravitational field (9.8 N/kg or 9.8 m/s<sup>2</sup>) and *l* is the length of the pendulum. So, each ball has a different length and thus a different frequency that it will swing back and forth at. If you drive (shake) that pendulum at the frequency that it naturally swings, the amplitude of its oscillation will get bigger. You have already seen this effect and used it. I know you have. If you have ever pushed a child (or adult) on a swing, you know that you can't just push them when ever you want. If you wait and push while they are the top of their swing, you will increase the amplitude of the motion. This is resonance.</p> <p>So, in the magic trick, you just need to slightly shake the stick (like I said, I am not very good so you can probably notice that I am shaking it). If you shake at the frequency for one of the balls, its amplitude will increase. Well, how do you know what frequency? Do you have to calculate it before hand? No, just focus on the one you want to move and shake in sync with its motion.</p> <p>To take this idea a little further than it needs to go (isn't that what I always do?), I decided to model this situation. Modeling a pendulum with a moving point isn't nearly as easy as an oscillating spring with an oscillating point. Both can be used to demonstrate resonance. In my model (created in [vpython](<a href="http://www.vpython.org">http://www.vpython.org</a>)), I have 4 masses attached by springs to a moving wall. The four mass all have different masses. For a mass on a spring, the frequency of oscillation is:</p> <p>![Screenshot 23](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-23.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>In the case of the 4 masses with different length strings, the length changes and *g* does not. To make the situation similar, I will keep the spring constant (*k*) constant and change the mass. </p> <p>(Hopefully I will remember to talk about the oscillation of a spring - it is awesome on so many different levels)</p> <p>In this model, I have 4 different masses and each one has a particular "natural" frequency. If I shake the wall at the natural frequency of one of these masses (even if I shake it a little) the wall keeps pushing the mass at the right time making the amplitude larger. For the other masses, the pushes are not at the right time and they do not get bigger. Here is the position of the 4 masses when the wall oscillates at the frequency for mass 1:</p> <p>![Screenshot 24](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-24.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>The green line represents the position of mass 1. Note the black line is the position of the wall. It has a very small amplitude, but still produces significant motion in mass 1. The other masses still move, but they do not significantly increase in amplitude. What if I oscillate the wall at the frequency for mass 2?</p> <p>![Screenshot 25](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-25.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>And here are the graphs for resonance at the frequency for mass 3 and 4:</p> <p>![Screenshot 26](<a href="http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screenshot-26.jpg">http://scienceblogs.com/dotphysics/wp-content/uploads/2008/10/screensho…</a>)</p> <p>**The Trick**</p> <p>So the trick is to move that stick at a frequency that is the same as one of the oscillators. If you move it just a little (small amplitude) maybe people won't notice and think you are Harry Potter or something.</p> </div> <span><a title="View user profile." href="/author/rallain" lang="" about="/author/rallain" typeof="schema:Person" property="schema:name" datatype="">rallain</a></span> <span>Sat, 10/04/2008 - 16:12</span> <div class="field field--name-field-blog-tags field--type-entity-reference field--label-inline"> <div class="field--label">Tags</div> <div class="field--items"> <div class="field--item"><a href="/tag/demo" hreflang="en">demo</a></div> <div class="field--item"><a href="/tag/physics" hreflang="en">Physics</a></div> <div class="field--item"><a href="/tag/springs-0" hreflang="en">springs</a></div> <div class="field--item"><a href="/tag/magic" hreflang="en">magic</a></div> <div class="field--item"><a href="/tag/resonance" hreflang="en">resonance</a></div> <div class="field--item"><a href="/tag/simple-harmonic-motion" hreflang="en">simple harmonic motion</a></div> <div class="field--item"><a href="/tag/spring" hreflang="en">spring</a></div> <div class="field--item"><a href="/tag/demo" hreflang="en">demo</a></div> </div> </div> <section> <article data-comment-user-id="0" id="comment-2245518" class="js-comment comment-wrapper clearfix"> <mark class="hidden" data-comment-timestamp="1223230407"></mark> <div class="well"> <strong></strong> <div class="field field--name-comment-body field--type-text-long field--label-hidden field--item"><p>Mexico City Earthquake, 1985<br /> In the area of greatest damage in downtown Mexico City, some types of structures failed more frequently than others. In the highest damage category were buildings with six or more floors. Resonance frequencies of these buildings were similar to the resonance frequencies of the subsoil. Because of the "inverted pendulum effect" and unusual flexibility of Mexico City structures, upper floors swayed as much as one meter and frequently collapsed. Differential movements of adjacent buildings also resulted in damage.<br /> <a href="http://www.johnmartin.com/earthquakes/eqshow/647003_00.htm">http://www.johnmartin.com/earthquakes/eqshow/647003_00.htm</a></p> </div> <drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=2245518&amp;1=default&amp;2=en&amp;3=" token="bkQKNOVyWSURHzwD60IBgetQP24azapBcWH6MHDOLC8"></drupal-render-placeholder> </div> <footer> <em>By <span lang="" typeof="schema:Person" property="schema:name" datatype="">asdfas asdfasf (not verified)</span> on 05 Oct 2008 <a href="https://www.scienceblogs.com/taxonomy/term/28788/feed#comment-2245518">#permalink</a></em> <article typeof="schema:Person" about="/user/0"> <div class="field field--name-user-picture field--type-image field--label-hidden field--item"> <a href="/user/0" hreflang="und"><img src="/files/styles/thumbnail/public/default_images/icon-user.png?itok=yQw_eG_q" width="100" height="100" alt="User Image" typeof="foaf:Image" class="img-responsive" /> </a> </div> </article> </footer> </article> <article data-comment-user-id="0" id="comment-2245519" class="js-comment comment-wrapper clearfix"> <mark class="hidden" data-comment-timestamp="1251289478"></mark> <div class="well"> <strong></strong> <div class="field field--name-comment-body field--type-text-long field--label-hidden field--item"><p>Awesome magic trick tutorial. <a href="http://www.magicianschool.com">Learn free magic tricks</a> on our magic site and forum.</p> </div> <drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=2245519&amp;1=default&amp;2=en&amp;3=" token="XGgY6OTPBv7vdZz3Pp1RvniVOinEM2MBl3iZHruNol0"></drupal-render-placeholder> </div> <footer> <em>By <a rel="nofollow" href="http://www.magicianschool.com" lang="" typeof="schema:Person" property="schema:name" datatype="">magicfun (not verified)</a> on 26 Aug 2009 <a href="https://www.scienceblogs.com/taxonomy/term/28788/feed#comment-2245519">#permalink</a></em> <article typeof="schema:Person" about="/user/0"> <div class="field field--name-user-picture field--type-image field--label-hidden field--item"> <a href="/user/0" hreflang="und"><img src="/files/styles/thumbnail/public/default_images/icon-user.png?itok=yQw_eG_q" width="100" height="100" alt="User Image" typeof="foaf:Image" class="img-responsive" /> </a> </div> </article> </footer> </article> </section> <ul class="links inline list-inline"><li class="comment-forbidden"><a href="/user/login?destination=/dotphysics/2008/10/04/resonance-and-a-magic-trick%23comment-form">Log in</a> to post comments</li></ul> Sat, 04 Oct 2008 20:12:51 +0000 rallain 107726 at https://www.scienceblogs.com