Image:Heat eqn.gif

Un article de Wikipédia, l'encyclopédie libre.

Ci-dessous, retrouvez page de description du fichier provenant de Commons.
Description

Illustration of the en:Heat equation

Source

self-made with Matlab

Date

05:51, 23 November 2007 (UTC)

Author

Oleg Alexandrov

Permission
(Reusing this image)

PD-self, see below



Public domain I, the copyright holder of this work, hereby release it into the public domain. This applies worldwide.

In case this is not legally possible:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.


Afrikaans | Alemannisch | Aragonés | العربية | Asturianu | Български | Català | Česky | Cymraeg | Dansk | Deutsch | Eʋegbe | Ελληνικά | English | Español | Esperanto | Euskara | Estremeñu | فارسی | Français | Galego | 한국어 | हिन्दी | Hrvatski | Ido | Bahasa Indonesia | Íslenska | Italiano | עברית | Kurdî / كوردی | Latina | Lietuvių | Latviešu | Magyar | Македонски | Bahasa Melayu | Nederlands | ‪Norsk (bokmål)‬ | ‪Norsk (nynorsk)‬ | 日本語 | Polski | Português | Ripoarisch | Română | Русский | Shqip | Slovenčina | Slovenščina | Српски / Srpski | Svenska | ไทย | Tagalog | Türkçe | Українська | Tiếng Việt | Walon | ‪中文(简体)‬ | ‪中文(繁體)‬ | zh-yue-hant | +/-

[edit] MATLAB source code


% illustration of the heat equation
% Solve the heat equation using finite differences and Forward Euler
function main()

   % the number of data points. More points means prettier picture.
   N = 100;

   L = 2.5; % the box size is [-L, L] x [-L, L]
   
   XX = linspace(-L, L, N);
   YY = linspace(-L, L, N);
   [X, Y] = meshgrid(XX, YY);

   scale = 2;
   Z = get_step_function (N, scale, X, Y);

   CFL = 0.125; % Courant-Friedricks-Levy
   dx = XX(2)-XX(1);  dy = dx; % space grid
   dt = CFL*dx^2;

   plot_dt = 0.004; % plot every plot_dt iterations
 
   
% Solve the heat equation with zero boundary conditions
   T = 0:dt:1;
   iter = 0;
   frame_no = 0;
   for t=T

      % plot the current temperature distribution
      if floor(t/plot_dt) + 1 > frame_no
         
         frame_no = frame_no + 1
         
        % plot the surface
         figure(2); clf; 
         surf(X, Y, Z);
         
         %  make the surface beautiful
         shading interp; colormap autumn;
         
         % add in a source of light
         camlight (-50, 54);
         lighting phong;
   
         % viewing angle
         view(-40, 38);
      
         axis equal; axis off;
         axis([-L, L, -L, L, 0, scale])

         hold on; plot3(0, 0, 3.4, 'g*'); % a marker to help with cropping
         
         pause(0.1);
         %return
         
         file = sprintf('Movie_frame%d.png', 1000+frame_no); saveas(gcf, file) %save the current frame

         disp(file); %show the frame number we are at
      
         % cut at max_fr_no frames
         max_fr_no = 15; 
         if frame_no >= max_fr_no
            break
         end

      end

      % advance in time
      W = 0*Z;
      for i=2:(N-1)
         for j=2:(N-1)
            
            W(i, j) = Z(i, j) + dt * ( Z(i+1, j) + Z(i-1, j) + Z(i, j-1) + Z(i, j+1) - 4*Z(i, j))/dx^2;
            
         end
      end
      Z = W;

   end
   
   
% The gif image was creating with the command 
% convert -antialias -loop 10000  -delay 20 -compress LZW Movie_frame10* Heat_eqn.gif 
  
% get a function which is 1 on a set, and 0 outside of it
function Z = get_step_function(N, scale, X, Y)
   
   c = 2;
   d=-1;
   e=1;
   f=0.5;
   k=1.2;
   shift=10;
   
   Z = (c^2-(X/e-d).^2-(Y/f).^2).^2 + k*(c+d-X/e).^3-shift;
   
   Z = 1-max(sign(Z), 0);
   Z = scale*Z;


Historique du fichier

Cliquer sur une date et une heure pour voir le fichier tel qu’il était à ce moment-là

Date et heureDimensionsUtilisateurCommentaire
actuel23 novembre 2007 à 08:11199×140 (126 Kio)Oleg Alexandrov (Tweak, same license)
23 novembre 2007 à 07:51200×129 (112 Kio)Oleg Alexandrov ({{Information |Description=Illustration of the en:Heat equation |Source=self-made with Matlab |Date=~~~~~ |Author= Oleg Alexandrov |Permission=PD-self, see below |other_versions= }} {{PD-self}} ==MATLAB source code== <pre>)

La page ci-dessous contient cette image :