Datei:Scienta3.jpg
Aus testwiki
Zur Navigation springen
Zur Suche springen
Größe dieser Vorschau: 800 × 600 Pixel. Weitere Auflösungen: 320 × 240 Pixel | 640 × 480 Pixel | 1.024 × 768 Pixel | 1.280 × 960 Pixel | 1.600 × 1.200 Pixel.
Originaldatei (1.600 × 1.200 Pixel, Dateigröße: 243 KB, MIME-Typ: image/jpeg)
Diese Datei stammt aus Wikimedia Commons und kann von anderen Projekten verwendet werden. Die Beschreibung von deren Dateibeschreibungsseite wird unten angezeigt.
Beschreibung
| BeschreibungScienta3.jpg |
English: path of electrons in a spherical analyser, that are emitted in different angles, from the sample to the channel plate - simultanously measuring an angle range of -7° < theta < 7° with a Scienta (see File:Scienta2.jpg)
Deutsch: Flugbahn einiger Eletronen durch einen Kugelanalysator, die unter verschiedenen Winkeln emittiert werden. So kann simultan ein Winkelbereich von plusminus 7 Grad energieaufgelöst (siehe File:Scienta2.jpg) gemessen werden. |
| Datum | |
| Quelle | Eigenes Werk |
| Urheber | Saiht |
POVray script
// Schnitt durch ein PhotoelectronSpetroskopie Experiment
// by Matthias Kreier
#version 0.8;
global_settings { assumed_gamma 1.0 }
#default{ finish{ ambient 0.1 diffuse 0.9 }}
#include "colors.inc"
#include "textures.inc"
camera {
ultra_wide_angle
angle 30
location <30, 40, -35>
look_at <6, 12, 0>
}
//plane { <0, 1, 0>, -1 pigment { color Red } }
//plane { <0, 0, -1>, -50 pigment { color White} }
plane { <0.5, 1, -1>, -20 pigment { color LightGray} }
// ****** Linsensystem zur Fokussierung und Retardierung *******
#declare Linsensystem =
union{
difference{
union{
box{<-2.1,3.0,-2.1>,<2.1,3.2,2.1>}
box{<-2.1,3.4,-2.1>,<2.1,3.6,2.1>}
box{<-2.1,3.8,-2.1>,<2.1,4.0,2.1>}
box{<-2.1,6.8,-2.1>,<2.1,7.0,2.1>}
pigment { color Blue }
}
cylinder { < 0,2.9,0 > <0,7.1,0> 0.81 pigment { color Silver } }
cylinder { < 0,2.9,0 > <0,7.1,0> 2 pigment { color Silver } inverse }
}
difference{
union{
cylinder{ < 0,4.2,0 > <0,4.4,0> 2.1 }
cylinder{ < 0,4.3,0 > <0,6.5,0> 1.4 }
cylinder{ < 0,6.4,0 > <0,6.6,0> 2.1 }
cylinder{ < 0,7.2,0 > <0,7.4,0> 2.1 }
cylinder{ < 0,7.3,0 > <0,9.9,0> 1.4 }
cylinder{ < 0,9.8,0 > <0,10,0> 2.1 }
cylinder{ < 0,10.2,0 > <0,10.4,0> 2.1 }
cylinder{ < 0,10.3,0 > <0,11.2,0> 1.4 }
}
cylinder { < 0,4.1,0 > <0,11,0> 1.2 pigment { color Silver } }
cylinder { < 0,10.9,0 > <0,11.3,0> 0.8 pigment { color Silver } }
cylinder { < 0,4.1,0 > <0,11.3,0> 2 pigment { color Silver } inverse }
}
translate <0,1,0>
}
#declare Kugelanalysator =
union{
intersection{ // innere Kugel
difference{
sphere{<6,14,0>,4.2 texture{Polished_Chrome} }
sphere{<6,14,0>,4 pigment{color Blue} }
}
box{<1,14,0>,<11,19,5> pigment{color Red}}
}
intersection{ // äußere Kugel
difference{
sphere{<6,14,0>,8 pigment{color Blue} }
sphere{<6,14,0>,7.8 pigment{color Silver} }
}
box{<-3,14,0>,<15,23,9> pigment{color Red}}
}
difference{ // Herzog-Platte
cylinder { < 6,12.5,0 > < 6,13,0 > 9 pigment { color LightSteelBlue } }
cylinder { < 0,12.4,0>,<0,13.1,0> 1.1 pigment{color Silver}}
cylinder { < 12,12.4,0>,<12,13.1,0> 2.3 }
}
difference{
cylinder { < 12,12.5,0 > < 12,13.8,0 > 2.4 pigment { color Blue } }
cylinder { < 12,12.4,0> < 12,13.9,0> 2.2 pigment{color Silver}}
}
intersection{ // Eingangsspalte
union{
box {<-2,13.25,-2>,<2,13.35,2> pigment{color Blue} }
box {<-0.6,13.3,-2>,<0.6,13.75,2> pigment{color Blue} }
}
box {<-0.2,13.2,-2.1>,<0.2,14.1,2.1> pigment{color Silver} inverse}
}
intersection{ // Eingangsblenden
union{
cylinder { < 0,13.85,0 > < 0,13.9,0 > 2 pigment{color Blue} }
cylinder { < 0,13.1,0 > < 0,13.15,0 > 2 pigment{color Blue} }
}
box {<-0.15,13.0,-1>,<0.15,14.1,1> pigment{color Silver} inverse}
}
}
#declare Scienta =
union{
object { Linsensystem
pigment { color Blue }
}
object { Kugelanalysator }
rotate<0,0,0>
}
intersection{ // Linsensystem und Analysator entlang x aufgeschnitten
object { Scienta }
box{
<-3,2,0>, <15,23,9>
pigment{color Red}
}
rotate<0,0,0>
}
intersection{
union{
cylinder{<12,13.3,0> <12,13.8,0> 2 pigment{color CadetBlue}} // Channelplate
cylinder{<12,13.0,0> <12,13.2,0> 2 pigment{color Green}} // Phosphorplatte
}
box{ <9,10,-9>, <15,15,9> pigment{color rgbf <1,1,1,1>}}
}
difference{ // CCD Kamera
cylinder{<12,9.5,0> <12,11,0> 1.8 pigment{color CadetBlue}}
cylinder{<12,10 ,0> <12,11.1,0> 1.6 pigment{color Black}}
}
cylinder{<12,9.6,0> <12,8,0> 1.4 pigment{color CadetBlue}}
cylinder{<12,8.1,0> <12,5.5,0> 1.8 pigment{color CadetBlue}}
cone{<12,11,0> 1.6 <12,12.95,0> 2 texture{pigment{rgbf<1,1,0.75,0.97>}}}
cylinder{<10,13.8,0> <14,13.8,0> 0.03 pigment{color Black}}
cone{<13.8,13.8,0> 0.07 <14.1,13.8, 0> 0 pigment{color Black}}
cylinder{<12,13.8,-2> <12,13.8,2> 0.03 pigment{color Black}}
cone{<12,13.8,-1.8> 0.07 <12,13.8,-2.1> 0 pigment{color Black}}
// ************* Weg der Elektronen *********
#declare Elektron1 =
union{
intersection{
torus{ 6,0.03
rotate<90,0,0>
translate<6,14,0>
}
box{<-2,14,-2>,<13,23,2>}
}
cone { < 0,11,0 >, 0.06, <0,14.1,0>, 0.03 }
cylinder { < 0,5,0 > <0,11,0> 0.06 }
cone { < 0,0,0 >, 0, <0,5,0>, 0.06 }
}
#declare Elektron2 =
union{
intersection{
torus{ 6,0.03
rotate<90,9,0>
translate<6,14,0>
}
box{<-2,14,-2>,<13,23,2>}
}
cone { < 0,10.99,-0.7 >, 0.06, <0,14.1,1>, 0.03 }
cylinder { < 0,8.99,-0.7 > <0,11,-0.7> 0.06 }
cylinder { < 0,6.99,0.7 > <0,9,-0.7> 0.06 }
cylinder { < 0,5.49,0.7 > <0,7,0.7> 0.06 }
// cylinder { < 0,5.95,0.9 > <0,11,0.9> 0.06 }
cone { < 0,0,0 >, 0, <0,5.5,0.7>, 0.06 }
}
#declare Elektron3 =
union{
intersection{
torus{ 6,0.03
rotate<90,-10,0>
translate<6,14,0>
}
box{<-2,14,-2>,<13,23,2>}
}
cone { < 0,10.99,0.7 >, 0.06, <0,14.1,-1>, 0.03 }
cylinder { < 0,8.99,0.7 > <0,11,0.7> 0.06 }
cylinder { < 0,6.99,-0.7 > <0,9,0.7> 0.06 }
cylinder { < 0,5.49,-0.7 > <0,7,-0.7> 0.06 }
cone { < 0,0,0 >, 0, <0,5.5,-0.7>, 0.06 }
}
object{ Elektron1 pigment{color rgbf <1,1,0,0>} }
object{ Elektron2 pigment{color rgbf <1,0,0,0>} }
object{ Elektron3 pigment{color rgbf <0,1,0,0>} }
box{<-1.8,-0.2,-1.8>,<1.8,0,1.8> pigment{color LightSteelBlue}} // Sample
// einfallender Lichtstrahl He- oder Syncrotron
cylinder{
<-12,12,0> <1,-1,0> 0.5
texture{pigment{rgbf<1,1,0.6,0.7>}}
}
difference{
cylinder{ <-7.5,7.5.0> <-15,15,0> 1 }
cylinder{ <-7.4,7.4.0> <-13,13,0> 0.5 }
pigment { color LightBlue }
}
light_source {
<12, 18, -200>
color White
}
light_source {
// <0, 26, -20>
<30, 40, -35>
color White
}
light_source { // Rückseite beleuchten
<20, 30, 10>
color White
}
/*
light_source { // Kugel innen Licht
<9, 21, 1.5>
color White
}
*/
Lizenz
| Public domainPublic domainfalsefalse |
| Ich, der Urheberrechtsinhaber dieses Werkes, veröffentliche es als gemeinfrei. Dies gilt weltweit. In manchen Staaten könnte dies rechtlich nicht möglich sein. Sofern dies der Fall ist: Ich gewähre jedem das bedingungslose Recht, dieses Werk für jedweden Zweck zu nutzen, es sei denn, Bedingungen sind gesetzlich erforderlich. |
Kurzbeschreibungen
Ergänze eine einzeilige Erklärung, was diese Datei darstellt.
In dieser Datei abgebildete Objekte
Motiv
Einige Werte ohne einen Wikidata-Eintrag
15. Juni 2009
image/jpeg
Dateiversionen
Klicke auf einen Zeitpunkt, um diese Version zu laden.
| Version vom | Vorschaubild | Maße | Benutzer | Kommentar | |
|---|---|---|---|---|---|
| aktuell | 16:00, 15. Jun. 2009 | 1.600 × 1.200 (243 KB) | wikimediacommons>Saiht | {{Information |Description={{en|1=path of electrons in a spherical analyser, that are emitted in different angles, from the sample to the channel plate - simultanously measuring an angle range of -7° < theta < 7° with a Scienta}} {{de|1=Flugbahn einiger |
Dateiverwendung
Die folgende Seite verwendet diese Datei:
Abgerufen von „https://de.wiki.beta.math.wmflabs.org/wiki/Datei:Scienta3.jpg“