קובץ:Defaut de surface cumules sur arete autre direction.png

תוכן הדף אינו נתמך בשפות אחרות.
מתוך ויקיפדיה, האנציקלופדיה החופשית

Defaut_de_surface_cumules_sur_arete_autre_direction.png(610 × 460 פיקסלים, גודל הקובץ: 36 ק"ב, סוג MIME‏: image/png)

ויקישיתוף זהו קובץ שמקורו במיזם ויקישיתוף. תיאורו בדף תיאור הקובץ המקורי (בעברית) מוצג למטה.

תקציר

תיאור
English: Intersection of two wavy surfaces, to illustrate the fact that the defects of both surfaces cumulate on the edge. The sinusoid waves represent the grooves due to a milling process.
Français : Intersection de deux surfaces ondulées, pour illustrer le fait que l'arête cumule les défauts des deux surfaces. Les ondulations sinusoïdales représentent des stries de fraisage.
תאריך יצירה
מקור נוצר על־ידי מעלה היצירה
יוצר Christophe Dang Ngoc Chan (Cdang (talk))
גרסאות אחרות

File:Defaut de surface cumules sur arete.png: grooves have a different orientation

File:Defaut de surface cumules sur arete autre direction autre vue.png: same plot, but with a different view angle

Scilab source

clear;

deff("[z] = f(x, y)", "z = 0.1*cos(2*%pi*y*5 + %pi/2)");
deff("[z] = g(x, y)", "z = 0.1*cos(2*%pi*x*5)");

function  [X1, Y1, Z1, X2, Y2, Z2] = generation(t, f, g)
taille = size(t, "*");
X1 = ones(taille,1)*t;
Y1 = X1';
Y2 = X1;
Z2 = 0.1 - Y1;

Z1 = f(X1, Y1);
for i = 1:taille
    for j = 1:taille
        if X1(i, j) <= (0.1 + 0.1*cos(2*%pi*Y1(i, j)*5))...
            then Z1(i, j) = %nan;
        end
    end
end

X2 = g(X1, Y1) + 0.1;

for i = 1:taille
    for j = 1:taille
        if Z2(i, j) >= -0.1*sin(2*%pi*Y2(i, j)*5)...
            then Z2(i, j) = %nan;
        end
    end
end
endfunction

// ***********************
// * Programme principal *
// ***********************

// ** Tracé des surfaces en nuances de gris

t = 0:3e-3:1;

[x, y, z, xx, yy, zz] = generation(t, f, g);

clf;

surf(x, y, z)
h1 = gce();
h1.thickness = 0;

surf(xx, yy, zz)
h2 = gce();
h2.thickness = 0;

cmap = 0.8*graycolormap(32) + 0.2;
xset("colormap", cmap)

// ** tracé des génératrices

t = 0:2e-2:1;

[x, y, z, xx, yy, zz] = generation(t, f, g);

param3d1(x, y, z)

param3d1(xx, yy, zz, theta = 190, alpha = 30)


// ** tracé de l'arête

y = 0:3e-3:1;
z = f(zeros(y), y);
x = g(y, zeros(y))+0.1;
param3d1(x, y, z, theta = 190, alpha = 30)
e = gce();
e.thickness = 3;

רישיון

אני, בעל זכויות היוצרים על היצירה הזאת, מפרסם אותה בזאת תחת הרישיונות הבאים:
GNU head מוענקת בכך הרשות להעתיק, להפיץ או לשנות את המסמך הזה, לפי תנאי הרישיון לשימוש חופשי במסמכים של גנו, גרסה 1.2 או כל גרסה מאוחרת יותר שתפורסם על־ידי המוסד לתוכנה חופשית; ללא פרקים קבועים, ללא טקסט עטיפה קדמית וללא טקסט עטיפה אחורית. עותק של הרישיון כלול בפרק שכותרתו הרישיון לשימוש חופשי במסמכים של גנו.
w:he:Creative Commons
ייחוס שיתוף זהה
הקובץ הזה מתפרסם לפי תנאי רישיונות קריאייטיב קומונז ייחוס-שיתוף זהה 3.0 לא מותאם, 2.5 כללי, 2.0 כללי ו־1.0 כללי.
הנכם רשאים:
  • לשתף – להעתיק, להפיץ ולהעביר את העבודה
  • לערבב בין עבודות – להתאים את העבודה
תחת התנאים הבאים:
  • ייחוס – יש לתת ייחוס הולם, לתת קישור לרישיון, ולציין אם נעשו שינויים. אפשר לעשות את זה בכל צורה סבירה, אבל לא בשום צורה שמשתמע ממנה שמעניק הרישיון תומך בך או בשימוש שלך.
  • שיתוף זהה – אם תיצרו רמיקס, תשנו, או תבנו על החומר, חובה עליכם להפיץ את התרומות שלך לפי תנאי רישיון זהה או תואם למקור.
הנכם מוזמנים לבחור את הרישיון הרצוי בעיניכם.

כיתובים

נא להוסיף משפט שמסביר מה הקובץ מייצג

פריטים שמוצגים בקובץ הזה

מוצג

היסטוריית הקובץ

ניתן ללחוץ על תאריך/שעה כדי לראות את הקובץ כפי שנראה באותו זמן.

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית15:37, 30 בינואר 2014תמונה ממוזערת לגרסה מ־15:37, 30 בינואר 2014‪460 × 610‬ (36 ק"ב)Cdangedge with a thick black line
12:57, 30 בינואר 2014תמונה ממוזערת לגרסה מ־12:57, 30 בינואר 2014‪460 × 610‬ (36 ק"ב)Cdang{{Information |Description={{en|1=Intersection of two wavy surfaces, to illustrate the fact that the defects of both surfaces cumulate on the edge. The sinusoid waves represent the grooves due to a milling process.}} {{fr|1=Intersection de deux surface...

אין בוויקיפדיה דפים המשתמשים בקובץ זה.