Magnetic_bubbles_getting_chased.png (800 × 600 piksel, ukuran berkas: 43 KB, tipe MIME: image/png )
Berkas ini berasal dari Wikimedia Commons dan mungkin digunakan oleh proyek-proyek lain. Deskripsi dari halaman deskripsinya ditunjukkan di bawah ini.
Ringkasan
Deskripsi Magnetic bubbles getting chased.png | This image shows how external fields (symbolized by small magnets left and right) working at an angle can "push" and "pull" domains, or "bubbles" in the orthomagnetic sheet of a magnetic bubble element. |
Tanggal | |
Sumber | Self-made, using the Persistence of Vision Raytracer |
Pembuat | Søren Peo Pedersen |
Izin
( Menggunakan kembali berkas ini ) |
GFDL-self |
Versi lainnya |
Lisensi
Saya, pemilik hak cipta dari karya ini, dengan ini menerbitkan berkas ini di bawah ketentuan berikut:
![]() |
Diizinkan untuk menyalin, mendistribusikan dan/atau memodifikasi dokumen ini di bawah syarat-syarat Lisensi Dokumentasi Bebas GNU , Versi 1.2 atau lebih baru yang diterbitkan oleh Free Software Foundation ; tanpa Bagian Invarian, tanpa Teks Sampul Depan, dan tanpa Teks Sampul Belakang. Salinan lisensi dimasukkan ke bagian yang berjudul Lisensi Dokumentasi Bebas GNU . http://www.gnu.org/copyleft/fdl.html GFDL GNU Free Documentation License true true |
![]() ![]() ![]() |
Berkas ini dilisensikan dengan lisensi Creative Commons Atribusi-BerbagiSerupa 3.0 Tanpa Adaptasi | |
|
||
Label lisensi ini ditambahkan pada berkas sebagai bagian dari pemutakhiran lisensi GFDL. http://creativecommons.org/licenses/by-sa/3.0/ CC BY-SA 3.0 Creative Commons Attribution-Share Alike 3.0 true true |
POV-Ray code
Below is the scene description for rendering the above image using the Persistence of Vision Raytracer:
/*
================================================
Chasing bubbles around with a pair of mangnets
------------------------------------------------
Created by Soren Peo Pedersen - see my user page
at http://da.wikipedia.org/wiki/Bruger:Peo
================================================
*/
#declare MagnetFont="arialbd.ttf" // Font for the "N" and "S" nomenclature on magnets
#declare NorthLtr="N"; // Letter to indicate north pole
#declare SouthLtr="S"; // Letter to indicate south pole
#declare MagLayerUp=pigment { // Gradient with white
gradient y // south pole side facing up
color_map {
[0.0 color rgb <1,0,0>]
[1.0 color rgb <1,1,1>]
}
scale .602
translate -.301
}
#declare MagLayerDn=pigment { // Gradient with red north
gradient y // pole side facing up
color_map {
[0.0 color rgb <1,1,1>]
[1.0 color rgb <1,0,0>]
}
scale .602
translate -.301
}
#declare MagPattern=pigment { // Defines the pattern of the domain gradients
object { // This time around, domains are circular (made with the cross-
merge { // section of a cylinder) in specific, non-random places:
cylinder {<-3.5,-1,-3>,<-3.5,1,-3>,.3} // Three bubbles at
cylinder {<-1,-1,-3.9>,<-1,1,-3.9>,.3} // left, "fleeing"
cylinder {<-2,-1,-2.7>,<-2,1,-2.7>,.3} // leftmost magnet
cylinder {<3,-1,-2>,<3,1,-2>,.3} // Three bubbles at
cylinder {<-1,-1,2>,<-1,1,2>,.3} // right, attracted
cylinder {<0,-1,-1>,<0,1,-1>,.3} // to rightmost magnet
}
pigment {MagLayerUp}
pigment {MagLayerDn}
}
}
#macro Arrow(Length) // Arrow of arbitrary length to "draw"
merge { // onto the surface of the sheet
box {<.4,0,-.1>,<Length-1,1,.1>}
difference {
box {<-1,0,-1>,<0,1,0> rotate <0,45,0> scale <3,1,1>}
plane {<1,0,0>,-1}
translate <Length,0,0>
}
}
#end
box {<-4,-.3,-4>,<4,.3,4> // The orthomagnetic sheet...
pigment {
object {
union { // Has a bunch of arrows associated with the domain "bubbles":
#object {Arrow(3) rotate <0,-80,0> translate <-3.5,0,-3>} // Arrows illustrating
#object {Arrow(3) rotate <0,-15,0> translate <-1,0,-3.9>} // the flight of bubbles
#object {Arrow(1.7) rotate <0,-45,0> translate <-2,0,-2.7>} // from left side
#object {Arrow(3.5) rotate <0,-80,0> translate <3,0,-2>} // Arrows illustrating
#object {Arrow(4) rotate <0,-15,0> translate <-1,0,2>} // the bubbles moving
#object {Arrow(5) rotate <0,-45,0> translate <0,0,-1>} // towards right side
}
pigment {MagPattern} // Red/white domain pattern goes underneath arrows
pigment {color rgb 0}
}
}
finish {ambient .5}
}
// Magnets to "squeeze" bubbles down in size:
box {<-4,3.5,-4>,<4,30,4> // The north pole above the sheet...
pigment {
object {
text {ttf MagnetFont,NorthLtr,3,0 // ... with the nomenclature
scale 10 translate <-3,4,-30> // for "north" on it's side
}
pigment {color rgbt <1,0,0,.8>}
pigment {color rgbt <1,1,1,.8>}
}
}
finish {ambient .5}
}
box {<-4,-79,-4>,<4,-4.5,4> // The south pole below the sheet...
pigment {
object {
text {ttf MagnetFont "S",3,0 // ... with the nomenclature
scale 10 translate <-3,-12,-30> // for "south" on it's side
}
pigment {color rgbt <1,1,1,.8>}
pigment {color rgbt <1,0,0,.8>}
}
}
finish {ambient .5}
}
#declare SmallMagnet=box {<-.99,-.3,-.3>,<.99,.3,.3> // Define one of the
pigment { // tiny magnets at the
gradient x // sides, pushing and
color_map { // pulling at the
[0.0 color rgb <1,0,0>] // domains.
[0.5 color rgb <1,0,0>]
[0.5 color rgb <1,1,1>]
[1.0 color rgb <1,1,1>]
}
scale 2
}
finish {ambient .5}
}
// Put tiny magnets at left and right, respectively:
#object {SmallMagnet rotate <0,0,-20> translate <-7,1,0> rotate <0,-45,0>}
#object {SmallMagnet rotate <0,0,20> translate <7,1,0> rotate <0,-45,0>}
background {color rgb 1} // White background
camera { // See the whole scene...
location <7,5,-10> // ... from this vantage point, ...
look_at <-.7,0,0> // ... looking towards this point.
}
light_source { // Light source some distance
<-100,150,-120> // to the left of the motif
color rgb 1
}
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
menggambarkan
Riwayat berkas
Klik pada tanggal/waktu untuk melihat berkas ini pada saat tersebut.
Tanggal/Waktu | Miniatur | Dimensi | Pengguna | Komentar | |
---|---|---|---|---|---|
terkini | 13 Desember 2007 22.05 |
![]() |
800 × 600 (43 KB) | {{Information |Description=This image shows how external fields (symbolized by small magnets left and right) working at an angle can "push" and "pull" domains, or "bubbles" in the orthomagnetic sheet of a magnetic bubble element. |Source=Self-made, using |
Penggunaan berkas
3 halaman berikut menggunakan berkas ini:
Penggunaan berkas global
Wiki lain berikut menggunakan berkas ini:
- Penggunaan pada da.wikipedia.org