चित्र:Elliptic orbit.gif
मुक्त ज्ञानकोश विकिपीडिया से
नेविगेशन पर जाएँ
खोज पर जाएँ
Elliptic_orbit.gif ((३०० × ३०० पिक्सेल, फ़ाइल का आकार: १८ KB, MIME प्रकार: image/gif), चक्रित, ७९ ढाँचे, ५.५ s)
File:Elliptic orbit.svg is a vector version of this file. It should be used in place of this GIF file when not inferior.
File:Elliptic orbit.gif → File:Elliptic orbit.svg
For more information, see Help:SVG.
|
rp | Periapsis' Radius |
---|---|
ra | Apoapsis' Radius |
सारांश
विवरणElliptic orbit.gif | Animation showing the motion of a small body (green) in an elliptic orbit around a much more massive body (blue). |
दिनांक | |
स्रोत | Own work. Rendered with PovRay-3.0, animated with gifsicle. |
लेखक | Brandir |
अनुमति (इस चित्र का पुनः उपयोग करना) |
Brandir put it under the GFCL and the CC-BY-SA |
दूसरे संस्करण |
|
लाइसेंस
मैं, इस कार्य का/की कॉपीराइट धारक, इसे निम्न लाइसेंसों के अंतर्गत प्रकाशित करता/करती हूँ:
इस दस्तावेज़ को Free Software Foundation द्वारा प्रकाशित GNU मुक्त प्रलेख लाइसेंस के संस्करण 1.2 या नए (बिना किसी अपरिवर्तनीय अनुभागों और अगले या पिछले आवरण के टेक्स्ट के) के अंतर्गत प्रतिलिपि बनाने, बाँटने और/या बदलने की अनुमति प्रदान की जाती है। इस लाइसेंस की एक प्रतिलिपि GNU मुक्त प्रलेख लाइसेंस नामक अनुभाग में शामिल है।http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
इस फ़ाइल को क्रिएटिव कॉमन्स श्रेय-समानसांझा 3.0 अनरिपोर्टेड लाइसेंस के अंतर्गत लाइसेंस किया गया है। | ||
| ||
This licensing tag was added to this file as part of the GFDL licensing update.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue |
इस फ़ाइल को क्रिएटिव कॉमन्स श्रेय-समानसांझा 2.5 स्पेन लाइसेंस के अंतर्गत लाइसेंस किया गया है।
- आप खुलकर:
- बाँट सकते हैं – रचना की प्रतिलिपि बना सकते हैं, बाँँट सकते हैं और संचारित कर सकते हैं
- रीमिक्स कर सकते हैं – कार्य को अनुकूलित कर सकते हैं
- निम्नलिखित शर्तों के अंतर्गत:
- श्रेय – यह अनिवार्य है कि आप यथोचित श्रेय प्रदान करें, लाइसेंस की कड़ी प्रदान करें, और अगर कोई बदलाव हुए हों तो उन्हें इंगित करें। आप ऐसा किसी भी उचित तरीके से कर सकते हैं, लेकिन किसी भी तरह उससे यह नहीं संकेत नहीं किया जाना चाहिए कि लाइसेंसधारी द्वारा आपको अथवा आपके इस प्रयोग का समर्थन किया जा रहा हो।
- समानसांझा – अगर आप इस रचना में कोई बदलाव करते हैं या इसपर आधारित कुछ रचित करते हैं तो आप अपने योगदान को सिर्फ इसी या इसके सामान किसी लाइसेंस के अंतर्गत बाँट सकते हैं।
आप अपना पसंद का लाइसेंस चुन सकते हैं।
POV-Ray Scene description
POV-ray image description:
/* -------------------------- Elliptical Orbit Animation -------------------------- Created 7 Mar. 2006 */ #include "colors.inc" //Orbit Definition #declare OrbitA=42.164; #declare OrbitE=0.7; //Scene constants #declare EarthRadius=6.356; #declare SatRadius=1.2; #declare OrbitWidth=0.3; #declare LineWidth=0.5/3; #declare Crosslength=1.5; #declare Textscale=9; #declare TextColor=rgb<0,0,0>; #declare PI=3.14159265359; //Variables #declare M=clock*360; #declare prevAnomaly=0; #declare Anomaly=0; #declare PI=3.14159265359; //Anomaly Determination - Solves the equation M=E-e*sin(E) by the iterative method #declare Index=0; #while (Index<20) #declare Anomaly=M*(PI/180)-OrbitE*sin(prevAnomaly); #declare prevAnomaly=Anomaly; #declare Index=Index+1; #end global_settings{ ambient_light 1 } light_source { <-50, 0, -70> color White } camera { orthographic location <OrbitA*OrbitE, 0, -10> look_at <OrbitA*OrbitE, 0, 0> up <0,100,0> right <100,0,0> } plane { <0, 0, 1>, 8 pigment {White} finish{ambient 1 brilliance 0} } //Earth sphere { <0, 0, 0>, EarthRadius pigment { Blue } finish{ ambient 0.3 brilliance 1.2 diffuse 0.8} } //Orbit torus{ OrbitA,OrbitWidth rotate x*90 pigment{ rgb<0.8,0,0> } finish{ ambient 1 brilliance 0 diffuse 0} scale sqrt(1-OrbitE*OrbitE)*y translate x*OrbitA*OrbitE no_shadow } //Sat sphere { <0, 0, -10>, SatRadius pigment { SeaGreen } finish{ ambient 1 brilliance 0 diffuse 0} no_shadow translate <OrbitA*(cos(Anomaly)+OrbitE),OrbitA*sqrt(1-OrbitE*OrbitE)*sin(Anomaly),0> } //Lines #declare crossBars= object{ union{ box{ <-LineWidth,-Crosslength,-LineWidth-7>, <LineWidth,Crosslength,LineWidth-7> } box{ <-Crosslength,-LineWidth,-LineWidth-7>, <Crosslength,LineWidth,LineWidth-7> } rotate z*45 pigment{ TextColor } finish{ ambient 1 brilliance 0 diffuse 0} no_shadow } } box{ <-OrbitA*(1-OrbitE),-LineWidth,-LineWidth-7>, <OrbitA*(1+OrbitE),LineWidth,LineWidth-7> pigment{ TextColor } finish{ ambient 1 brilliance 0 diffuse 0} no_shadow } object{ crossBars } object{ crossBars translate -x*OrbitA*(1-OrbitE) } object{ crossBars translate x*OrbitA*(1+OrbitE) } //Text union{ text { ttf "timesi.ttf" "r" 1, 0 } text { ttf "timesi.ttf" "p" 1, 0 scale 0.5 translate 0.2*x } pigment{ TextColor } finish{ ambient 1 brilliance 0 diffuse 0} scale Textscale translate <-(EarthRadius+0.3*(OrbitA*(1-OrbitE)-EarthRadius))-Textscale/4,Textscale/4,-7> no_shadow } union{ text { ttf "timesi.ttf" "r" 1, 0 } text { ttf "timesi.ttf" "a" 1, 0 scale 0.5 translate 0.2*x } pigment{ TextColor } finish{ ambient 1 brilliance 0 diffuse 0} scale Textscale translate <0.5*OrbitA*(1+OrbitE)-Textscale/4,Textscale/4,-7> no_shadow }
Items portrayed in this file
चित्रण
७ मार्च 2006
media type अंग्रेज़ी
image/gif
फ़ाइल का इतिहास
फ़ाइलका पुराना अवतरण देखने के लिये दिनांक/समय पर क्लिक करें।
दिनांक/समय | अंगूठाकार प्रारूप | आकार | प्रयोक्ता | प्रतिक्रिया | |
---|---|---|---|---|---|
वर्तमान | २३:००, ७ मार्च २००६ | ३०० × ३०० (१८ KB) | wikimediacommons>Brandir~commonswiki | {{Information| |Description = Animation showing the motion of a small body (green) in an Elliptic Orbit around a much more massive body (blue). |Source = Own work. Rendered with ''PovRay-3.0'', animated with ''gifsicle''. |Date = Created 7. Mar. 2006. |A |
फ़ाइल का उपयोग
निम्नलिखित पन्ने इस चित्र से जुडते हैं :