Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 41
1
% Note to reader: lines beginning with the '%' character are
2
% 'comments' to you, the human reader of this code, and are
3
% ignored by the LaTeX compiler.
4
5
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6
% An example paper for Modern Physics Lab at Duquesne University
7
% Edited by Michael Huster, Ph. D.
8
% Feb. 2016
9
%
10
% Based on:
11
% = A Minimal Example for MIT Junior Lab Student Reports =
12
% Available from
13
% http://web.mit.edu/8.13/www/Samplepaper/simple-zipped/
14
%
15
% Last Updated July 23, 2014
16
%
17
% Adapted from the American Physical Societies REVTeK-4.1 Pages
18
% at http://publish.aps.org
19
%
20
% ADVICE TO STUDENTS: Each time you write a paper, start with this
21
% template and save under a new filename. If you want to do
22
% something more complicated than what is shown in this minimal
23
% example, see the full Junior Lab template available at:
24
% http://web.mit.edu/8.13/www/Samplepaper/sample-zipped/
25
% Furthermore, the present document contains a minimum of
26
% comments, advice, and explanation. The full template contains
27
% much more explanation of how to use LaTeX commands.
28
%
29
% Using pdflatex, images must be either PNG, GIF, JPEG or PDF.
30
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31
32
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33
% = PREAMBLE =
34
% The preamble of a LaTeX document is the set of commands that
35
% precede the \begin{document} line. It sets up the style of
36
% the document.
37
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38
% Include all of the packages
39
\documentclass[aps,twocolumn,secnumarabic,balancelastpage,
40
amsmath,amssymb,nofootinbib,floatfix]{revtex4-1}
41
42
\usepackage{graphicx} % tools for importing graphics
43
\usepackage[colorlinks=true]{hyperref} % this package should be added
44
% after all others.
45
% usage: \url{http://web.mit.edu/8.13}
46
47
48
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49
% And now, begin the document...
50
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51
52
\begin{document}
53
54
\title{Photoelectric Effect}
55
\author{Canyon Pratt, Jenna Mittal, Nick Willich}
56
\email{prattc@duq.edu, mittalj@duq.edu, willichn@duq.edu}
57
\date{\today}
58
\affiliation{Duquesne University Department of Physics}
59
60
% NOTE: \begin{something} ALWAYS has to be paired with \end{something}
61
\begin{abstract}
62
The photoelectric effect is the emission of electrons when light shines on a material. These emitted electrons can be referred to as photo electrons. To simulate the photoelectric effect, 10 various LED's with differing wavelengths were put into a circuit with a teensy arduino and values for the current and the voltage were obtained. These values were then plotted in order to obtain a slope of Planck's constant.
63
\end{abstract}
64
65
% execute the title command
66
\maketitle
67
68
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
69
% NOTE: Sections are automatically numbered.
70
% Also there is no \begin, nor \end
71
% By The Way, an empty line makes a new paragraph.
72
\section{Introduction}
73
74
In 1905 Albert Einstein released his revolutionary paper on the photoelectric effect, which stated that when light shines on a material, electrons are emitted. This electron emission is due to electrons being dislodged by the impingement of photons reaching a certain threshold frequency.
75
76
The photoelectric effect can be tested by using a teensy arduino, 10 LED's of varying wavelengths, and a 10 kilo-ohm resistor. By wiring these components together and using an arduino program, one can observe that an LED with a certain wavelength reaches a threshold frequency in which photons are created. Through motion, electrons are able to create current which can activate an LED with a threshold current. Once the threshold current has been reached, the LED then begins emitting light. These threshold currents can be measured using a teensy to take data as electrons are being emitted.
77
78
79
\section{Problem and Relevant Theory}
80
81
The main problem of this lab was to find graphically, the value of Planck'S constant. This was done throughout the relevant theories and formula relation wavelength, energy and frequency. This relation between energies and frequency is known as Planck's Relation as shown in Equation 1, where $E$, $h$, and $f$, are energy, Planck's Constant and frequency respectively.
82
\begin{equation}
83
E=hf
84
\end{equation}
85
With this applied to the basics of wavelength as shown in Equation 2 where $c$ is the speed of light, it is easy to relate how wavelength can effect frequency and in turn effect energy.
86
\begin{equation}
87
f= \frac{c}{\lambda}
88
\end{equation}
89
This final relation can be represented by Equation 3.
90
\begin{equation}
91
E=h\frac{c}{\lambda}
92
\end{equation}
93
Thus we have the direct relationship through the use of the Planck Relation. This relationship between frequency and wavelength to energy allows us to take a look at multiple LED's (Light Emitting Diode) and see how the voltage and current relates to specified wavelengths. This is done through the use of Arduino components and python programming. These graphical representations of multiple wavelength LED's allows the final plot between voltage and frequency to be made. The relation between the turn on voltage and the frequency allows a ling of best fit to be produced graphically and the slope defined. From the Planck Relation this slope should be equivalent to Planck's Constant.
94
% NOTE: for standalone numbered equations, use begin{equation} style
95
% Also note the \label{eq:your-label}
96
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
97
\section{Experimental Sketch and Salient Details}
98
The experimental apparatus used consists of a teensy arduino circuit, allowing a computer program to easily record, measure, and plot the data of 10 LED’s of differing wavelengths as shown in Fig. 2. While the hardware played an important role in being able to obtain values for calculating Planck’s constant, both the Arduino and Python programs were essential in being able to measure and graph the values received from the hardware. In order to obtain values and plot them on Python, both Arduino and Python had to be connected by a common serial port which would allow values from the Adruino program to be transferred into a .csv file on Python, which then can be used to create graphs.
99
100
\begin{figure}[hbt]
101
\includegraphics[width=\linewidth]{circuit}
102
\caption{This is a schematic of the main apparatus. Here the LED position was changed out for multiple LED's to be tested. The teensy arduino program could then record the measurements to be represented graphically in a python program as shown in FIG. 2.
103
\cite{Dr. Michael Huster}.
104
\label{fig:samplefig}}
105
\end{figure}
106
\begin{figure}[htb]
107
\includegraphics[width=\linewidth]{LED-850}
108
\caption{This is the graphical representation of the 850 nm wavelength LED data obtained from the arduino circuit.
109
%\cite{}.
110
\label{fig:samplefig}}
111
\end{figure}
112
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
113
\section{Data Presentation and Error Analysis}
114
115
When the data points for the 850 nm LED are plotted, the graph is that of an exponential growth curve (Fig. 2) which represents the current increasing with certain voltages. Using this information, Equation 3 can be used to find frequency and can then be plotted on a graph with respect to voltage (Fig. 3). When these points are plotted, the slope can then be measured using python. Our measured slope was $4.82x10^-15 eV$, which is close to the received value of Planck’s constant of $4.3x10^-15 eV$. This small discrepancy in values can mainly be attributed to human error, especially during calculations. Although the calculations were quite simple, rounding errors can easily be made because the necessary values are extremely small.
116
117
\begin{figure}[htb]
118
\includegraphics[width=\linewidth]{Volt-Freq}
119
\caption{This figure represents the turn on voltages for all tested LED's versus their respective frequencies. This was done creating a program on the collaborative source \textsc{CoCalc}, through the use of the python programming language.}
120
\label{fig:calibration}
121
\end{figure}
122
\begin{table}[h]
123
\caption{\label{tab:table1}This table represents the frequency and voltages of the respective LED wavelengths used for plotting of FIG. 3.}
124
\begin{ruledtabular}
125
\begin{tabular}{cccccc}
126
\lambda (nm) &Volt (V) &f ($10^{14}$Hz)&
127
\lambda (nm) &Volt (V) &f ($10^{14}$Hz)\\
128
\hline
129
405& 2.9654 & 7.4074 & 601 &1.8286 & 4.9917\\
130
430& 3.0803 & 6.9767 & 635 &1.7847 & 4.7244\\
131
470& 2.6495 & 6.3830 & 660 &1.7413 & 4.5454\\
132
505& 2.4889 & 5.9406 & 660 &1.6472 & 4.5454\\
133
535& 2.6295 & 5.6075 & 700 &1.8580 & 4.2857\\
134
570& 1.8849 & 5.2632 & 850 &1.2625 & 3.5294\\
135
\end{tabular}
136
\end{ruledtabular}
137
\end{table}
138
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
139
\section{Conclusions}
140
141
The obtained value of Planck’s constant was $4.82356995762x 10^15eV$, which was very similar to the accepted value regardless of the small variation of values. By conducting this experiment, a deeper understanding of the photoelectric effect, Planck’s constant, circuitry, and programming were obtained during the implementation of this experiment. % for the quality of your results in the conclusion.
142
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143
\begin{acknowledgments} We all gratefully acknowledge each other in the completion of this experiment. Also, Dr. Michael Huster for his impeccable and superior help in performing the experiment as well as the assistance with the programming involved.
144
\end{acknowledgments}
145
146
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
147
% Place all of the references you used to write this paper in a file
148
% with the same name as following the \bibliography command
149
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
150
151
\bibliography{simple-paper}
152
153
154
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
155
\end{document}
156
157