Датотека:Light wave harmonic diagram.svg

Оригинална датотека(SVG датотека, номинално 426 × 331 пиксела, величина: 172 kB)

Опис измене

Опис
English: The harmonics of lightwaves drawn to scale, showing how the different waves interact with each other. The λ/2 (1/2 wavelength) harmonics are perfectly in sync with each other, but all other colors in the visual spectrum fall between λ and λ/2. Wavelengths that are separated by λ/4 are opposites, falling across from each other on the color wheel. (ie: Red is opposite of green, orange is opposite of blue, and yellow is opposite of violet.) Image was generated using Tikz and the resulting PDF was converted to SVG.
Датум
Извор Сопствено дело
Аутор Rubber Duck ()
SVG genesis
InfoField
 
The SVG code is valid.
 
This vector image was created with LaTeX.
Translate this file

Ова SVG датотека користи уграђени текст који се може лако превести на ваш језик. Више детаља. За SVG слике можете користити [toolforge:svgtranslate/File:Light_wave_harmonic_diagram.svglink ову страницу] како бисте је превели на ваш језик.

Изворни код
InfoField

SVG code

Source code
\documentclass[12pt,border=1pt,tikz,class=scrartcl]{standalone}
\usepackage[latin1]{inputenc}
\usepackage{xcolor}
\usepackage{pgfplots}
\pagestyle{empty}
\begin{document}
\noindent
\begin{tikzpicture}[
label1/.style = {text width=5em,font=\tiny,align=left}
]
\node [font=\bfseries,text centered] at (4,-.5) {Light Harmonics};
\node [label1] at (-1,-1)   {650nm -- Red};
\node [label1] at (-1,-1.5) {607nm -- Orange};
\node [label1] at (-1,-2)   {578nm -- Yellow};
\node [label1] at (-1,-2.5) {520nm -- Green};
\node [label1] at (-1,-3)   {487nm -- Blue};
\node [label1] at (-1,-3.5) {475nm -- Indigo};
\node [label1] at (-1,-4)   {405nm -- Violet};
\node [label1] at (-1,-4.5) {325nm -- UV};
\begin{scope}[domain=0:10,samples=300]
	\draw [red] 	plot (\x,{-1+	sin(\x*500)r/400});
	\draw [orange] 	plot (\x,{-1.5+	sin(\x*535.42)r/400});
	\draw [yellow] 	plot (\x,{-2+	sin(\x*562.285)r/400});
	\draw [green] 	plot (\x,{-2.5+	sin(\x*625)r/400});
	\draw [blue] 	plot (\x,{-3+	sin(\x*667.35)r/400});
	\draw [color={rgb:red,75;green,0;blue,130}] 	plot (\x,{-3.5+	sin(\x*684.2)r/400});
	\draw [violet] 	plot (\x,{-4+	sin(\x*802.47)r/400});
	\draw [violet!60!black] 	plot (\x,{-4.5+	sin(\x*1000)r/400});
\end{scope}
\draw [black] (-1,-4.75) -- ++(10,0);
\node [text centered,font=\small] at (4,-5.1) {Harmonics of red light in relation to other colors};
\node [label1] at (-.5,-5.5)	{$\lambda$/14 --};
\node [label1] at (-.5,-6) 	{$\lambda$/8 --};
\node [label1] at (-.5,-6.5) 	{$\lambda$/4 --};
\node [label1] at (-.5,-7) 	{$\lambda$/3 --};
\node [label1] at (-.5,-7.5) 	{$\lambda$/2.67 --};
\node [label1] at (-.5,-8) 	{$\lambda$/2.5 --};
\node [label1] at (-.5,-8.5) 	{$\lambda$/2 --};
\begin{scope}[domain=0:10,samples=300]
	\draw[red]	plot (\x, {-5.5+	sin(\x*500)r/400});
	\draw[orange]	plot (\x, {-5.5+	sin(\x*535.42)r/400});
	\draw[red]	plot (\x, {-6+		sin(\x*500)r/400});
	\draw[yellow]	plot (\x, {-6+		sin(\x*562.285)r/400});
	\draw[red]	plot (\x, {-6.5+	sin(\x*500)r/400});
	\draw[green]	plot (\x, {-6.5+	sin(\x*625)r/400});
	\draw[red]	plot (\x, {-7+		sin(\x*500)r/400});
	\draw[blue]	plot (\x, {-7+		sin(\x*667.35)r/400});
	\draw[red]	plot (\x, {-7.5+	sin(\x*500)r/400});
	\draw [color={rgb:red,75;green,0;blue,130}] 	plot (\x,{-7.5+	sin(\x*684.2)r/400});
	\draw[red]	plot (\x, {-8+		sin(\x*500)r/400});
	\draw [violet] 	plot (\x, {-8+		sin(\x*802.47)r/400});
	\draw[red]	plot (\x, {-8.5+	sin(\x*500)r/400});
	\draw [violet!60!black] 	plot (\x,{-8.5+	sin(\x*1000)r/400});
\end{scope}
\draw [black] (-1,-8.75) -- ++(10,0);
\node [text centered,font=\small] at (4,-9.1) {White light (all colors interfering with each other)};
\begin{scope}[domain=0:10,samples=300]
	\draw [red] 	plot (\x,{-9.5+	sin(\x*500)r/400});
	\draw [orange] 	plot (\x,{-9.5+	sin(\x*535.42)r/400});
	\draw [yellow] 	plot (\x,{-9.5+	sin(\x*562.285)r/400});
	\draw [green] 	plot (\x,{-9.5+	sin(\x*625)r/400});
	\draw [blue] 	plot (\x,{-9.5+	sin(\x*667.35)r/400});
	\draw [color={rgb:red,75;green,0;blue,130}] 	plot (\x,{-9.5+	sin(\x*684.2)r/400});
	\draw [violet] 	plot (\x,{-9.5+	sin(\x*802.47)r/400});
	\draw [violet!60!black] 	plot (\x,{-9.5+	sin(\x*1000)r/400});
\end{scope}
\end{tikzpicture}
\end{document}

Лиценцирање

Ја, носилац ауторских права над овим делом, објављујем исто под следећим лиценцама:
w:sr:Кријејтив комонс
ауторство делити под истим условима
Ова датотека је доступна под лиценцом Creative Commons Ауторство-Делити под истим условима 3.0 Unported.
Дозвољено је:
  • да делите – да умножавате, расподељујете и преносите дело
  • да прерађујете – да прерадите дело
Под следећим условима:
  • ауторство – Морате да дате одговарајуће заслуге, обезбедите везу ка лиценци и назначите да ли су измене направљене. Можете то урадити на било који разуман манир, али не на начин који предлаже да лиценцатор одобрава вас или ваше коришћење.
  • делити под истим условима – Ако измените, преобразите или доградите овај материјал, морате поделити своје доприносе под истом или компатибилном лиценцом као оригинал.
GNU head Дата је дозвола да се копира, дистрибуира и/или мења овај документ под условима ГНУ-ове лиценце за слободну документацију, верзије 1.2 или било које новије верзије коју објави Задужбина за слободни софтвер; без непроменљивих одељака и без текста на насловној и задњој страни. Текст лиценце можете прочитати овде.
Изаберите лиценцу по жељи.

Натписи

Укратко објашњење шта ова датотека представља/приказује

Ставке приказане у овој датотеци

приказује

6. април 2015

Историја датотеке

Кликните на датум/време да бисте видели тадашњу верзију датотеке.

Датум/времеМинијатураДимензијеКорисникКоментар
тренутна17:28, 19. септембар 2017.Минијатура за верзију на дан 17:28, 19. септембар 2017.426 × 331 (172 kB)Krishnavedalarecreated file with editable text using "latex" and "dvisvgm"
17:43, 22. април 2015.Минијатура за верзију на дан 17:43, 22. април 2015.427 × 331 (147 kB)Krishnavedalabetter rendering using "dvisvgm". unicode characters replaced by hand
21:40, 6. април 2015.Минијатура за верзију на дан 21:40, 6. април 2015.434 × 338 (295 kB)Krishnavedala{{Information |Description ={{en|1=The harmonics of lightwaves drawn to scale, showing how the different waves interact with each other. The λ/2 (1/2 wavelength) harmonics are perfectly in sync with each other, but all other colors in the visual sp...

Следећа страница користи ову датотеку:

Глобална употреба датотеке

Други викији који користе ову датотеку:

Метаподаци