Original file(SVG file, nominally 730 × 591 pixels, file size: 28 KB)

This is a file from the Wikimedia Commons. The description on its description page there is shown below.

Commons is a freely licensed media file repository. You can help.

Summary

Description

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.
Date
Source Own work using: Matlab, Gnuplot, Inkscape.
Author Alessio Damato; thanks to John wayman, he let me notice a mistake in the code.
SVG development
InfoField
 
The SVG code is valid.
 
This chart was created with Gnuplot.
 
This chart uses translateable embedded text.
Source code
InfoField
matlab code
res=2000; % resolution
sup=pi/2; % max angle to be used in the plot (in radians, less than pi)

phi=pi/2; % integration upper limit

% inizialization
T=zeros(1,res);

for i=1:res
    theta0=i*sup/res; % theta0 is the pendulum amplitude
    k = sin(theta0/2);
    F = @(t) 1./sqrt(1-(k*sin(t)).^2);
    T(i)=quad(F,0,phi); % numerical integration 
end

T = 2./pi.*T; % normalization
deg = 180/pi*sup*(1:res)./res; % conversion to degrees

% saving in the external file
temp = [deg; T];
temp = temp';
save -ascii 'pendulum_period.dat' temp;
Data
# set the output
set terminal svg
set output "pendulum_period.svg"

# axis properties
set yrange [0.99:1.08]
set xzeroaxis linetype -1 linewidth 0.5
set yzeroaxis linetype -1 linewidth 0.5
set xtics axis
set ytics axis
set key off

plot "pendulum_period.dat" using 1:2 with lines linewidth 2

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head 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.
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • 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.
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 2.5 Generic, 2.0 Generic and 1.0 Generic license.
You are free:
  • 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.
You may select the license of your choice.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

29 November 2006

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current19:54, 16 April 2007Thumbnail for version as of 19:54, 16 April 2007730 × 591 (28 KB)Alejo2083fixed mistake
13:48, 29 November 2006Thumbnail for version as of 13:48, 29 November 2006648 × 480 (24 KB)Alejo2083 {{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

The following page uses this file:

Global file usage

The following other wikis use this file: