Soubor:Surface integral illustration.svg

Obsah stránky není podporován v jiných jazycích.
Z Wikiknih

Původní soubor(soubor SVG, nominální rozměr: 512 × 348 pixelů, velikost souboru: 20 KB)

Tento soubor pochází z Wikimedia Commons a mohou ho používat ostatní projekty. Níže jsou zobrazeny informace, které obsahuje jeho tamější stránka s popisem souboru.

Popis

Popis
English: The definition of surface integral relies on splitting the surface into small surface elements. Figure 1: The definition of surface integral relies on splitting the surface into small surface elements. Each element is associated with a vector dS of magnitude equal to the area of the element and with direction normal to the element and pointing outward.
Datum 11. prosince 2014
Zdroj Vlastní tvorba založená na: Surface integral illustration.png & SVG - Export of figures
Autor McMetrox
Svolení
(Užití tohoto souboru)
Já, držitel autorských práv k tomuto dílu, ho tímto zveřejňuji za podmínek následující licence:
Creative Commons CC-Zero Tento soubor byl uvolněn pomocí Creative Commons CC0 1.0 Universal Public Domain Dedication.
Osoba, která toto dílo označila tímto dokumentem, dílo uvolnila do public domain tím, že se celosvětově vzdala všech autorských práv ke svému dílu včetně všech souvisejících a příbuzných zákonných práv, které k dílu má, v rozsahu umožněném zákonem. Můžete toto dílo rozmnožovat, upravovat, rozšiřovat či provozovat, i pro komerční účely, vše bez nutnosti žádat o svolení.

Další verze
png
SVG vývoj
InfoField
 
Zdrojový kód tohoto SVG je validní.
 
Tento vektorový obrázek byl vytvořen programem MATLAB
Zdrojový kód
InfoField

MATLAB code

% An illustration of the surface integral.
% It shows how a surface is split into surface elements.
 
function main()
 
% the function giving the surface and its gradient
   f=inline('10-(x.^2+y.^2)/15', 'x', 'y');
 
   BoxSize=5; % surface dimensions are 2*BoxSize x 2*BoxSize
   M = 10; % M x M = the number of surface elements into which to split the surface
   N=10;  % N x N = number of points in each surface element
   spacing = 0.1; % spacing between surface elements
   H=2*BoxSize/(M-1); % size of each surface element
   gridsize=H/N;      % distance between points on a surface element 
 
   figure(1); clf; hold on; axis equal; axis off;
 
   for i=1:(M-1)
	  for j=1:(M-1)
		 Lx = -BoxSize + (i-1)*H+spacing; Ux = -BoxSize + (i  )*H-spacing;
		 Ly = -BoxSize + (j-1)*H+spacing; Uy = -BoxSize + (j  )*H-spacing;
 
%        calc the surface element
		 XX=Lx:gridsize:Ux; 
		 YY=Ly:gridsize:Uy;
		 [X, Y]=meshgrid(XX, YY);
		 Z=f(X, Y);
 
%        plot the surface element
		 surf(X, Y, Z, 'FaceColor','red', 'EdgeColor','none', ...
			  'AmbientStrength', 0.3, 'SpecularStrength', 1, 'DiffuseStrength', 0.8);
 
	  end
   end
 
 
   view (-18, 40);                     % viewing angle 
   %camlight headlight; lighting phong; % make nice lightning 
 
%  save to file
   plot2svg('Surface_integral_illustration.svg');

Popisky

Přidejte jednořádkové vysvětlení, co tento soubor představuje
surface integral

Položky vyobrazené v tomto souboru

zobrazuje

Historie souboru

Kliknutím na datum a čas se zobrazí tehdejší verze souboru.

Datum a časNáhledRozměryUživatelKomentář
současná12. 12. 2014, 00:36Náhled verze z 12. 12. 2014, 00:36512 × 348 (20 KB)McMetroxReduced file size
11. 12. 2014, 23:50Náhled verze z 11. 12. 2014, 23:50512 × 348 (39 KB)McMetrox{{Information |Description ={{en|1=The definition of surface integral relies on splitting the surface into small surface elements. Figure 1: The definition of surface integral relies on splitting the surface into small surface elements. Each element...

Tento soubor používá následující stránka:

Globální využití souboru

Tento soubor využívají následující wiki:

Metadata