అసలు దస్త్రం(2,000 × 2,000 పిక్సెళ్ళు, ఫైలు పరిమాణం: 634 KB, MIME రకం: image/jpeg)

సారాంశం

వివరణ
Deutsch: Simuliertes Interferenzbild zweier punktförmiger Quellen mit gleicher Wellenlänge. Die Lagen der Quellen sind durch Kreuze gekennzeichnet, die Maxima beider Wellen durch farbige Kreise.
తేదీ
మూలం స్వంత కృతి
కర్త Dr. Schorsch 12:32, 19 Apr 2005 (UTC) (Dr. Schorsch (talk))

లైసెన్సింగ్

నేను, ఈ కృతి యొక్క కాపీహక్కుదారుని, దీన్ని ఇందుమూలముగా ఈ లైసెన్సుల క్రింద ప్రచురిస్తున్నాను:
GNU head ఈ కృతి యొక్క కర్తనైన నేను, ఇక నుండీ ఈ కృతిని కాపీ చేసుకోవడానికి, పంచి పెట్టడానికి మరియు/లేదా మార్పులు-చేర్పులు చేసుకోవడానికి GFDL, లైసెన్సు వెర్షను 1.2 లేదా దాని తరువాత స్వేచ్చా సాఫ్టువేరు ఫౌండేషను విడుదలచేసే ఏ GFDL లైసెన్సు ద్వారా నయినా అనుమతి ఇస్తున్నాను; ఈ కృతిలో మార్చకూడని బాగాలు లేవు, Front-Cover పాఠం లేదు, Back-Cover పాఠం లేదు. ఈ లైసెన్సు యొక్క పత్రం నకలును "జిఎన్‌యూ ఉచిత డాక్యుమెంటేషను లైసెన్సు" అని పిలుస్తున్న విభాగంలో ఉంది.
w:en:Creative Commons
ఆపాదింపు share alike
ఈ దస్త్రం క్రియేటివ్ కామన్స్ ఆపాదింపు-యథాతథ పంచుకోలు 3.0 అన్‌పోర్టెడ్, 2.5 సాధారణం, 2.0 సాధారణం, 1.0 సాధారణం లైసెన్సుల క్రింద లభ్యం.
ఇలా చేసేందుకు మీకు స్వేచ్ఛ ఉంది:
  • పంచుకోడానికి – ఈ కృతిని కాపీ చేసుకోవచ్చు, పంపిణీ చేయవచ్చు, ప్రసారమూ చేయవచ్చు
  • రీమిక్స్ చేయడానికి – కృతిని అనుకరించడానికి
క్రింది షరతులకు లోబడి:
  • ఆపాదింపు – సముచితమైన శ్రేయస్సును ఇవ్వాలి, లైసెన్సుకు లింకు ఇవ్వాలి, మార్పులేమైనా చేస్తే వాటిని సూచించాలి. అందుకు సముచితమైన పద్ధతి దేన్నైనా అవలంబించవచ్చు. కానీ మీకూ మీ వాడుకకూ హక్కుదారు అనుమతించారు అనే అర్థం వచ్చేటట్లుగా మాత్రం కాదు.
  • share alike – మీరు ఈ కృతిని అనుకరిస్తే, మారిస్తే, లేదా మెరుగుపరిస్తే తత్ఫలిత కృతిని ఇదే లైసెన్సు లేదా దీనికి అనుగుణ్యమైన లైసెన్సు క్రింద మాత్రమే పంపిణీ చేయాలి.
పైవాటిలో మీకు నచ్చిన లైసెన్సునును ఎంచుకోవచ్చు.

Source Code

This is the source code of the program I used to create this image. Click on “Show source code” to display it.

The following program is under the GNU General Public License (GPL).

GNU head

This work is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version. This work is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. See version 2 and version 3 of the GNU General Public License for more details.

; Program Written in IDL (Interactive Data Language)
; Free Interpreter availible at www.rsinc.com
; Written by Georg Wiora
; This Program is under the  GNU General Public License (GPL)  
;
; Create a display of interference patterns
; Save this text as file "Interference2.pro" to run it.
 
; Draw a circle
PRO circle,x,y,r,_REF_EXTRA=ex
  n=ULONG(!DPI*r) > 1
  phi = FINDGEN(n)/FLOAT(n)*2*!DPI
  x1 = r*COS(phi)+x
  y1 = r*SIN(phi)+y
  PLOTS,[x1,x1[0]],[y1,y1[0]],_STRICT_EXTRA=ex
END

; Compute the interference
PRO Interference2
   ; Final Image Size
  siz=2000
  ; No display if larger than 800x1600 pixel
  pixmap=SIZ GT 800
  ; Wavelength in Pixel
  lambda=160
  ; Half distance of the sources
  dhalb = lambda

  ; Compute the distance of each point in an array from the
  ; center point: This is the phase of the signal
  d1 = SHIFT(DIST(siz*2,siz),siz,siz/2)
  ; Sinus of distace with 0 LE amplitude LE 2
  f = SIN(d1/lambda*2*!DPI)+1
  ; Compute Interference
  inter = SHIFT(f,-dhalb,0)+SHIFT(f,dhalb,0)
  ; Get maximum and minimum
  ma = MAX(inter,MIN=mi)
  ; Two colors are reserved for marking, the rest is gray scale
  ; Scale interference to byte range [0..253]
  inter = BYTE((TEMPORARY(inter)-mi)/(ma-mi)*253)

  ; Use lookup table to display
  DEVICE,DECOMPOSED=0
  ; Gray scale
  LOADCT,0
  ; Half length of center cross bars in pixel
  cs=30
  ; Half width of center cross bars in pixel
  cb=3
  
  ; Set mark for center
  ; Horizontal left
  inter[siz-dhalb-cs:siz-dhalb+cs, siz/2-cb:siz/2+cb] = 254
  ; Vertical left
  inter[siz-dhalb-cb:siz-dhalb+cb, siz/2-cs:siz/2+cs] = 254
  ; Horizontal right
  inter[siz+dhalb-cs:siz+dhalb+cs, siz/2-cb:siz/2+cb] = 255
  ; Vertical right
  inter[siz+dhalb-cb:siz+dhalb+cb, siz/2-cs:siz/2+cs] = 255

  ; Open a visible or invisible window (depends on pixmap flag)
  WINDOW,XSIZE=2*siz,YSIZE=siz,PIXMAP=pixmap
  ; Display the interference (only gray scale!)
  TV,inter
  ; Draw circles on maximum locations   
  FOR i=0,2.5*siz/lambda DO $
  BEGIN
    ; Maximum location left
    circle,siz-dhalb,siz/2,(i+0.25)*lambda,THICK=6,/DEVICE,COLOR=254
    ; Maximum location right
    circle,siz+dhalb,siz/2,(i+0.25)*lambda,THICK=6,/DEVICE,COLOR=255
  ENDFOR

  ; Colortable 0-253 as gray scake
  r = FINDGEN(256)/253*255
  g=r
  b=r
  ; 254 is green
  r[254]=0
  b[254]=0
  g[254]=255
  ; 255 is red
  r[255]=255
  b[255]=0
  g[255]=0

  ; Read image from display
  im=TVRD()
  ; Crop invalid borders
  im = im[siz/2:3*siz/2-1,*]

  ; Save as PNG with colortable
  WRITE_PNG,'Interference2.png',im,r,g,b
  ; Convert to truecolor and write JPEG
  imt = [[[r[im]]],[[g[im]]],[[b[im]]]]
  ; smooth image a little bit (saves bandwith in jpeg and is OK
  ; with high resolution)
  imt[*,*,0] = SMOOTH(imt[*,*,0],3,/EDGE_TRUNCATE)
  imt[*,*,1] = SMOOTH(imt[*,*,1],3,/EDGE_TRUNCATE)
  imt[*,*,2] = SMOOTH(imt[*,*,2],3,/EDGE_TRUNCATE)
  ; Write as jpeg
  WRITE_JPEG,'Interference2.jpg',TEMPORARY(imt),/PROGRESSIVE,$
             QUALITY=90, TRUE=3 
END

Captions

Add a one-line explanation of what this file represents
Simulated interference image of two point sources of equal wavelength and amplitude

Items portrayed in this file

చిత్రణ

interference ఇంగ్లీష్

copyright status ఇంగ్లీష్

copyrighted ఇంగ్లీష్

source of file ఇంగ్లీష్

original creation by uploader ఇంగ్లీష్

computer simulation ఇంగ్లీష్

ఫైలు చరితం

తేదీ/సమయం ను నొక్కి ఆ సమయాన ఫైలు ఎలా ఉండేదో చూడవచ్చు.

తేదీ/సమయంనఖచిత్రంకొలతలువాడుకరివ్యాఖ్య
ప్రస్తుత14:26, 19 ఏప్రిల్ 200514:26, 19 ఏప్రిల్ 2005 నాటి కూర్పు నఖచిత్రం2,000 × 2,000 (634 KB)Xorx
12:28, 19 ఏప్రిల్ 200512:28, 19 ఏప్రిల్ 2005 నాటి కూర్పు నఖచిత్రం2,000 × 2,000 (310 KB)XorxSimuliertes Interferenzbild zweier punktförmiger Quellen mit gleicher Wellenlänge. {{GFDL}}

కింది పేజీలలో ఈ ఫైలుకు లింకులు ఉన్నాయి:

సార్వత్రిక ఫైలు వాడుక

ఈ దస్త్రాన్ని ఈ క్రింది ఇతర వికీలు ఉపయోగిస్తున్నాయి:

మెటాడేటా

"https://te.wikipedia.org/wiki/దస్త్రం:Interferenz.jpg" నుండి వెలికితీశారు