A plot of the ratio between the actual period of a pendulum and the approximate value obtained for small angles, as a function of the amplitude. According to Pendulum (mathematics), the oscillation period for small angles is given by:
while the actual period for any angle is given by:
where:
so the ratio is given by:
and this is the function plotted in the graph.
First, with the following Matlab code I created a file called pendulum_period.dat;
then, in order to plot it, I used the Gnuplot code.
This code creates a file called pendulum_period.svg. I heavily post-processed it with Inkscape.
res=2000;% resolutionsup=pi/2;% max angle to be used in the plot (in radians, less than pi)phi=pi/2;% integration upper limit% inizializationT=zeros(1,res);fori=1:restheta0=i*sup/res;% theta0 is the pendulum amplitudek=sin(theta0/2);F=@(t)1./sqrt(1-(k*sin(t)).^2);T(i)=quad(F,0,phi);% numerical integration endT=2./pi.*T;% normalizationdeg=180/pi*sup*(1:res)./res;% conversion to degrees% saving in the external filetemp=[deg;T];temp=temp';save-ascii'pendulum_period.dat'temp;
Data
# set the outputsetterminalsvgsetoutput"pendulum_period.svg"# axis propertiessetyrange[0.99:1.08]setxzeroaxislinetype-1linewidth0.5setyzeroaxislinetype-1linewidth0.5setxticsaxissetyticsaxissetkeyoffplot"pendulum_period.dat"using1:2withlineslinewidth2
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
{{Information |Description=The plot represents the ration between the period an oscillator and the approximated value obtained for small angles. According to the relative [http://en.wikipedia.org/wiki/Pendulum_%28mathematics%29 article on wikipedia], the