దస్త్రం:Drum vibration mode02.gif

వికీపీడియా నుండి
Jump to navigation Jump to search

Drum_vibration_mode02.gif(252 × 169 పిక్సెళ్ళు, ఫైలు పరిమాణం: 200 KB, MIME రకం: image/gif, లూపులో పడింది, 19 ఫ్రేములు, 1.9క్ష)

వివరణ Illustration of vibrations of a drum.
తేదీ (UTC)
మూలం self-made with MATLAB
కర్త Oleg Alexandrov
ఇతర కూర్పులు Derivative works of this file:  Membrane-normal-modes.gif
 
This diagram was created with MATLAB.
Public domain నేను, ఈ కృతి యొక్క కాపీహక్కుదారుని, ఈ కృతిని సార్వజనీనం'గా విడుదల చేస్తున్నాను. ఇది ప్రపంచవ్యాప్తంగా వర్తిస్తుంది.
కొన్ని దేశాల్లో ఇది చట్టబద్ధంగా సాధ్యంకాకపోవచ్చు; అయితే:
ఈ కృతిని ఎటువంటి షరతులు లేకుండా, అట్టి షరతులు చట్టం వల్ల తప్పనిసరి అయితే తప్ప,
ఏ ఉద్దేశానికైనా ఉపయోగించుకునే హక్కును ఎవరికైనా నేను ప్రదానం చేస్తున్నాను.

Source code (MATLAB)

function main()

   k = 0; % k-th asimuthal number and bessel function
   p = 2; % p-th bessel root

   q=find_pth_bessel_root(k, p); 

   N=20; % used for plotting

   % Get a grid
   R1=linspace(0.0, 1.0, N); 
   Theta1=linspace(0.0, 2*pi, N);
   [R, Theta]=meshgrid(R1, Theta1);
   X=R.*cos(Theta);
   Y=R.*sin(Theta);

   T=linspace(0.0, 2*pi/q, N); T=T(1:(N-1));

   for iter=1:length(T);
      
      t = T(iter);
      Z=sin(q*t)*besselj(k, q*R).*cos(k*Theta);

      figure(1); clf; 
      surf(X, Y, Z);
      caxis([-1, 1]);
      shading faceted;
      colormap autumn;

      % viewing angle
      view(108, 42);
      
      axis([-1, 1, -1, 1, -1, 1]);
      axis off;

      H=text(0, -0.3, 1.4, sprintf('(%d, %d) mode', k, p), 'fontsize', 25);

      
      file=sprintf('Frame%d.png', 1000+iter);
      disp(sprintf('Saving to %s', file));
      print('-dpng',  '-zbuffer',  '-r100', file);

      pause(0.1);
   end

   % converted to gif with the command 
   % convert -antialias -loop 10000 -delay 10  -scale 50% Frame10* Drum_vibration_mode02.gif

function r = find_pth_bessel_root(k, p)

   % a dummy way of finding the root, just get a small interval where the root is
   
   X=0.5:0.5:(10*p+1); Y = besselj(k, X);
   [a, b] = find_nthroot(X, Y, p);

   X=a:0.01:b; Y = besselj(k, X);
   [a, b] = find_nthroot(X, Y, 1);

   X=a:0.0001:b; Y = besselj(k, X);
   [a, b] = find_nthroot(X, Y, 1);

   r=(a+b)/2;
   
function [a, b] = find_nthroot(X, Y, n)

   l=0;

   m=length(X);
   for i=1:(m-1)
      if ( Y(i) >= 0  & Y(i+1) <= 0 ) | ( Y(i) <= 0  & Y(i+1) >= 0 )
	 l=l+1;
      end

      if l==n
	 a=X(i); b=X(i+1);

	 %disp(sprintf('Error in finding the root %0.9g', b-a));
	 return;
      end
   end

   disp('Root not found!');

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

చిత్రణ

copyright status ఇంగ్లీష్

copyrighted ఇంగ్లీష్

MIME type ఇంగ్లీష్

image/gif

ఫైలు చరితం

తేదీ/సమయం ను నొక్కి ఆ సమయాన ఫైలు ఎలా ఉండేదో చూడవచ్చు.

తేదీ/సమయంనఖచిత్రంకొలతలువాడుకరివ్యాఖ్య
ప్రస్తుత11:12, 18 మార్చి 202311:12, 18 మార్చి 2023 నాటి కూర్పు నఖచిత్రం252 × 169 (200 KB)Dndnrmn1Reverted to version as of 06:25, 12 January 2008 (UTC)
04:44, 16 జనవరి 200804:44, 16 జనవరి 2008 నాటి కూర్పు నఖచిత్రం248 × 130 (191 KB)Oleg AlexandrovStrip caption, looks better like this
06:25, 12 జనవరి 200806:25, 12 జనవరి 2008 నాటి కూర్పు నఖచిత్రం252 × 169 (200 KB)Oleg Alexandrov
06:21, 12 జనవరి 200806:21, 12 జనవరి 2008 నాటి కూర్పు నఖచిత్రం253 × 194 (202 KB)Oleg Alexandrov{{Information |Description=Illustration of vibrations of a drum. |Source=self-made with MATLAB |Date=~~~~~ |Author= Oleg Alexandrov |Permission= |other_versions= }} {{PD-self}} ==Source code ([[:

కింది పేజీలలో ఈ ఫైలుకు లింకులు ఉన్నాయి:

సార్వత్రిక ఫైలు వాడుక

ఈ దస్త్రాన్ని ఈ క్రింది ఇతర వికీలు ఉపయోగిస్తున్నాయి:

"https://te.wikipedia.org/wiki/దస్త్రం:Drum_vibration_mode02.gif" నుండి వెలికితీశారు