Skeda:Surface integral illustration.svg

Page contents not supported in other languages.
Nga Wikipedia, enciklopedia e lirë

Dokument origjinal(skedë SVG, fillimisht 512 × 348 pixel, madhësia e skedës: 20 KB)

Kjo skedë është prej Wikimedia Commons dhe mund të përdoret nga projekte të tjera. Përshkrimi në këtë skedë në këtë faqe nuk është treguar më poshtë. Shko tek faqja përshkruese në Commons Shko tek faqja përshkruese në Commons

Përmbledhje

Përshkrimi
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.
Data 11 dhjetor 2014
Burimi Own work based on: Surface integral illustration.png & SVG - Export of figures
Autori McMetrox
Leja
(Ripërdor këtë skedë)
Unë, krijuesi i kësaj pune, e publikoj këtu në bazë të licensës në vijim:
Creative Commons CC-Zero Kjo skedë është bërë e mundur nën Creative Commons CC0 1.0 Universal Public Domain Dedication.
Personi që lidhi një punë me këtë vepër ia ka dedikuar punën public domain duke shmangur të gjitha të drejtat e tij apo të saj për punën në mbarë botën nën ligjin e të drejtës së autorit, duke përfshirë të gjitha të drejtat e lidhura dhe fqinje, deri në masën e lejuar me ligj. Ju mund ta kopjoni, modifikoni, shpërndani dhe të kryeni pune, madje edhe për qëllime komerciale, të gjitha pa kërkuar leje.

Versione tjera
png
SVG genesis
InfoField
 
The SVG code is valid.
 
This diagram was created with MATLAB.
Kodi burimor
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');

Captions

Add a one-line explanation of what this file represents
surface integral

Items portrayed in this file

përshkruan

11 dhjetor 2014

Historiku skedës

Shtypni mbi një datë/kohë për ta parë skedën siç ishte atëherë.

Data/KohaMiniaturëPërmasatPërdoruesiKoment
e tanishme12 dhjetor 2014 02:36Miniaturë për versionin duke filluar nga 12 dhjetor 2014 02:36512 × 348 (20 KB)McMetroxReduced file size
12 dhjetor 2014 01:50Miniaturë për versionin duke filluar nga 12 dhjetor 2014 01: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...

Këto faqe lidhen tek kjo skedë:

Përdorimi global i skedës

Kjo skedë përdoret nga Wiki të tjera në vijim:

Metadata