ملف:Surface integral illustration.svg

محتويات الصفحة غير مدعومة بلغات أخرى.
من ويكيبيديا، الموسوعة الحرة

الملف الأصلي(ملف SVG، أبعاده 512 × 348 بكسل، حجم الملف: 20 كيلوبايت)

ملخص

الوصف
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.
التاريخ ١١ ديسمبر ٢٠١٤
المصدر Own work based on: Surface integral illustration.png & SVG - Export of figures
المؤلف McMetrox
الترخيص
(إعادة استخدام هذا الملف)
أنا، صاحب حقوق التأليف والنشر لهذا العمل، أنشر هذا العمل تحت الرخصة التالية:
Creative Commons CC-Zero هذا الملف متوفر تحت ترخيص المشاع الإبداعي CC0 1.0 الحقوق العامة.
لقد وَضَعَ صاحب حقوق التَّأليف والنَّشر هذا العملَ في النَّطاق العامّ من خلال تنازُلِه عن حقوق العمل كُلِّها في أنحاء العالم جميعها تحت قانون حقوق التَّأليف والنَّشر، ويشمل ذلك الحقوق المُتَّصِلة بها والمُجاورة لها برمتها بما يتوافق مع ما يُحدده القانون. يمكنك نسخ وتعديل وتوزيع وإعادة إِنتاج العمل، بما في ذلك لأغراضٍ تجاريَّةٍ، دون حاجةٍ لطلب مُوافَقة صاحب حقوق العمل.

إصدارات أخرى
png
SVG منشأ الملف
InfoField
 
الشيفرة المصدرية لهذا الرسم المتجه صالحة.
 
هذا الرسم المتجهي أُنشئ بواسطة MATLAB
كود مصدري
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');

الشروحات

أضف شرحاً من سطر واحد لما يُمثِّله هذا الملف
surface integral

العناصر المصورة في هذا الملف

يُصوِّر

١١ ديسمبر 2014

تاريخ الملف

اضغط على زمن/تاريخ لرؤية الملف كما بدا في هذا الزمن.

زمن/تاريخصورة مصغرةالأبعادمستخدمتعليق
حالي00:36، 12 ديسمبر 2014تصغير للنسخة بتاريخ 00:36، 12 ديسمبر 2014512 × 348 (20 كيلوبايت)McMetroxReduced file size
23:50، 11 ديسمبر 2014تصغير للنسخة بتاريخ 23:50، 11 ديسمبر 2014512 × 348 (39 كيلوبايت)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...

الصفحة التالية تستخدم هذا الملف:

الاستخدام العالمي للملف

الويكيات الأخرى التالية تستخدم هذا الملف:

بيانات وصفية