About
Developed by E. Behringer
This set of exercises guides the student to model the results of an experiment to determine the profile of a laser beam using a knife-edge technique. It requires the development of the model of the knife-edge profile, and fitting of the model profile to experimental data. Here, the computational tasks are handled by built-in functions of the computational tool being used to complete these exercises.
Subject Area | Waves & Optics |
---|---|
Level | Beyond the First Year |
Available Implementation | Python |
Learning Objectives |
Students who complete this set of exercises will be able to
|
Time to Complete | 120 min |
EXERCISE 1: THE TEM MODE: “LINE CUTS”
The irradiance (power per unit area) of a laser oscillating in the TEM mode can be expressed as
where is the maximum irradiance of the beam and is a parameter that describes the width (i.e., the spatial extent) of the beam. You can show that when , the locations at which are . Show that when and , the irradiance is and show that the above expression for the irradance is equivalent to
where the “scaled variables” and are defined as . We can relate this expression to the total power transmitted by the beam:
(a) Assume mW and mm to generate a line plot of the irradiance on the vertical axis versus on the horizontal axis for for different values of and .
(b) Repeat (a) but now plot the irradiance divided by the maximum irradiance for that particular value of (in other words, plot ) versus on the horizontal axis. Comment on the resulting plot.
#
# Beam_Profile_Exercise_1.py
#
# This file will generate a plot of
# the irradiance I(x,y) of the TEM00 Gaussian Mode of a laser
# as a function of scaled x for several different values of scaled y.
#
# This file will also generate a plot of
# the scaled irradiance I(x,y) of the TEM00 Gaussian Mode of a laser
# as a function of scaled x for several different values of scaled y.
#
# Written by:
#
# Ernest R. Behringer
# Department of Physics and Astronomy
# Eastern Michigan University
# Ypsilanti, MI 48197
# (734) 487-8799
#
# 20160628 ERB
#
from pylab import xlim,xlabel,ylim,ylabel,show,plot,figure,grid,legend
from numpy import linspace,exp,pi,zeros
# Generate scaled x and y values
max_xsc = 2.0 # maximum value of x position [mm]
min_xsc = -2.0 # minimum value of x position [mm]
Npts = 81
xsc = linspace(min_xsc,max_xsc,Npts) # array of scaled x values
ysc = [0.0,0.2,0.4,0.6,0.8,1.0]
# other inputs
w0 = 1.00 # beam width [mm]
P_0 = 1.00 # laser power [mW]
I_0 = 2.00*P_0/(pi*w0*w0) # maximum irradiance [mW/mm2]
# Set up array of irradiances
I = zeros((6,Npts))
for i in range(0,6):
I[i] = I_0 * exp(-2.0*(xsc*xsc + ysc[i]*ysc[i]))
# Generate the line plot of irradiance versus scaled x values
# for different scaled y values
figure()
# Here we plot unscaled I versus the scaled x for different scaled y values,
plot(xsc,I[0],'mo-',label='tildey=0.0',markevery=8)
plot(xsc,I[1],'bD-',label='tildey=0.2',markevery=4)
plot(xsc,I[2],'g>-',label='tildey=0.4',markevery=2)
plot(xsc,I[3],'ys-',label='tildey=0.6',markevery=5)
plot(xsc,I[4],color='#ffaa00',marker='^',linestyle='-',label='tildey=0.8',markevery=4)
plot(xsc,I[5],'r*-',label='tildey=1.0',markevery=3)
# Define the limits of the horizontal axis
xlim(min(xsc),max(xsc))
# Label the horizontal axis, with units
xlabel("tildex", size = 16)
# Define the limits of the vertical axis
ylim(min(I[0]),max(I[0]))
# Label the vertical axis, with units
ylabel("I [mW/mm2]", size = 16)
grid('on')
legend()
show()
# Generate the line plot of scaled I versus scaled x
figure()
# Here we plot scaled I versus scaled x for different scaled y values,
plot(xsc,I[0]/max(I[0]),'mo-',label='tildey=0.0',markevery=8)
plot(xsc,I[1]/max(I[1]),'bD-',label='tildey=0.2',markevery=4)
plot(xsc,I[2]/max(I[2]),'g>-',label='tildey=0.4',markevery=2)
plot(xsc,I[3]/max(I[3]),'ys-',label='tildey=0.6',markevery=5)
plot(xsc,I[4]/max(I[4]),color='#ffaa00',marker='^',linestyle='-',label='tildey=0.8',markevery=4)
plot(xsc,I[5]/max(I[5]),'r*-',label='tildey=1.0',markevery=3)
# Define the limits of the horizontal axis
xlim(min(xsc),max(xsc))
# Label the horizontal axis, with units
xlabel("tildex", size = 16)
# Define the limits of the vertical axis
ylim(0.0,1.0)
# Label the vertical axis, with units
ylabel("I/Imax,tildey", size = 16)
grid('on')
legend()
show()
Translations
Code | Language | Translator | Run | |
---|---|---|---|---|
![]() |
Credits
Fremont Teng; Loo Kang Wee
Sample Le
TEM00 MODE: “LINE CUTS” JavaScript Simulation Applet HTML5" resource. This resource is designed as an exercise for students to model and understand the intensity profile of a laser beam operating in the fundamental transverse electromagnetic mode (TEM00). It utilizes a JavaScript simulation applet and focuses on the "line cuts" technique to analyze the beam's irradiance distribution. The exercise aims to help students connect theoretical models with experimental observations.
Main Themes and Important Ideas/Facts:
- Objective of the Exercise: The primary goal of this set of exercises is to guide students in modeling an experiment that determines the profile of a laser beam using a knife-edge technique. Exercise 1 specifically focuses on understanding the irradiance profile of a TEM00 laser beam.
- TEM00 Mode Irradiance Equation: The exercise introduces the fundamental equation describing the irradiance (I(x, y)) of a laser oscillating in the TEM00 mode:
- (I ( x , y ) = I 0 exp [ − 2 ( x 2 + y 2 ) w 2 0 ]) (Equation 2) where (I_0) is the maximum irradiance, and (w_0) is the beam width parameter.
- Beam Width Parameter ((w_0)): The parameter (w_0) is defined as describing the "width (i.e., the spatial extent) of the beam." The exercise further clarifies that at (y = 0), the locations where the irradiance drops to half its maximum value ((I = I_0 / 2)), denoted as (x_{1/2}), are approximately (\pm 0.59 w_0).
- Scaled Variables: The exercise introduces the concept of "scaled variables" (\tilde{x} \equiv x / w_0) and (\tilde{y} \equiv y / w_0). Using these scaled variables, the irradiance equation can be simplified to a dimensionless form:
- (I ( x , y ) = I 0 exp [ − 2 ( x ~ 2 + y ~ 2 ) ]) (Equation 3) This scaling makes the equation more convenient for computational modeling.
- Relationship to Total Power: The irradiance is also related to the total power (P_0) transmitted by the beam:
- (I ( x , y ) = 2 P 0 π w 2 0 exp [ − 2 ( x ~ 2 + y ~ 2 ) ]) (Equation 4) This equation connects the irradiance profile to a measurable quantity, the total power of the laser beam.
- Computational Tasks: Exercise 1 involves computational tasks that are handled by built-in functions of the computational tool (presumably Python, as indicated in the "Available Implementation"). Students are expected to:
- Express the TEM00 mode profile equation in terms of scaled variables suitable for coding.
- Generate line plots of the irradiance (I) versus scaled position (\tilde{x}) for different values of scaled position (\tilde{y}).
- Generate line plots of the scaled irradiance (I / I_{max, \tilde{y}}) versus scaled position (\tilde{x}) for different values of scaled position (\tilde{y}).
- JavaScript Simulation Applet: The resource includes an embedded JavaScript simulation applet, allowing for interactive exploration of the laser beam profile. The provided iframe suggests that the simulation visualizes the TEM00 mode and likely facilitates the understanding of "line cuts."
- Python Implementation: The provided Python script ("Beam_Profile_Exercise_1.py") demonstrates how to generate the plots requested in Exercise 1. It uses libraries like pylab and numpy to define scaled x and y values, calculate irradiance based on the TEM00 mode equation, and generate line plots of both unscaled and scaled irradiance.
- Learning Objectives: Upon completing the set of exercises (including Exercise 1), students will be able to:
- Express the TEM00 mode equation using scaled variables.
- Produce line plots and contour plots of the scaled irradiance.
- Develop a model of the knife-edge profile of the laser beam.
- Fit the model to experimental data.
- Target Audience and Level: The exercise is designed for students "Beyond the First Year" in a "Waves & Optics" subject area, suggesting an undergraduate physics or engineering level.
- Time to Complete: Exercise 1 is estimated to take approximately 120 minutes to complete.
Quotes from the Source:
- "This set of exercises guides the student to model the results of an experiment to determine the profile of a laser beam using a knife-edge technique."
- "The irradiance (I) (power per unit area) of a laser oscillating in the TEM 00 mode can be expressed as (I ( x , y ) = I 0 exp [ − 2 ( x 2 + y 2 ) w 2 0 ])"
- "where the “scaled variables” (\tilde{x}) and (\tilde{y}) are defined as (\tilde{x} \equiv x / w_0)."
- "Students who complete this set of exercises will be able to express an equation predicting the profile of a laser oscillating in the TEM00 mode in terms of dimensionless (“scaled”) variables suitable for coding (Exercise 1);"
- "Students who complete this set of exercises will be able to produce both line plots and contour plots of the (scaled) irradiance of the beam versus (scaled) position(s) (Exercises 1 and 2);"
Additional Information:
- The resource is developed by E. Behringer.
- It is part of the PICUP (Partnership for Integration of Computation into Undergraduate Physics) project.
- The content is licensed under a Creative Commons Attribution-Share Alike 4.0 Singapore License.
- The webpage provides links to different versions of the exercise and other related resources, including numerous other physics and mathematics simulations developed under the Open Educational Resources / Open Source Physics @ Singapore initiative.
Conclusion:
The PICUP Laser Beam Profile Exercise 1 provides a comprehensive and computationally focused approach for students to understand the fundamental TEM00 mode of a laser beam. By introducing scaled variables and requiring students to generate plots using computational tools, the exercise encourages a deeper understanding of the mathematical model and its physical representation. The inclusion of a JavaScript simulation applet offers an interactive way to visualize the beam profile, complementing the analytical and computational aspects of the exercise. This resource appears valuable for undergraduate physics and engineering students studying optics and lasers.
Study Guide: TEM00 Laser Beam Profile
Overview
This study guide is designed to help you understand the properties of a laser beam operating in the TEM00 mode, specifically focusing on its irradiance profile as described in the provided materials. The exercises and simulations aim to explore the mathematical representation of this profile, the concept of scaled variables, and the relationship between irradiance, beam width, and total power.
Key Concepts
- TEM00 Mode: The fundamental transverse electromagnetic mode of a laser beam, characterized by a Gaussian irradiance profile.
- Irradiance (I): The power per unit area of the laser beam, typically measured in mW/mm².
- Maximum Irradiance (I₀): The highest irradiance at the center of the TEM00 beam.
- Beam Width (w₀): A parameter describing the spatial extent of the beam. A larger w₀ indicates a wider beam.
- Scaled Variables (x̃, ỹ):
- Dimensionless variables defined by dividing the spatial coordinates (x, y) by the beam width (w₀). These simplify the mathematical expressions and are useful for coding.
- Line Cuts: Plots of the irradiance profile along a line (e.g., at a constant y value) as a function of position.
- Knife-Edge Technique: An experimental method mentioned (but not detailed in Exercise 1) for determining the beam profile by measuring the power transmitted past a moving knife edge.
- Gaussian Profile: The bell-shaped curve that describes the irradiance distribution of the TEM00 laser mode.
Study Questions
- What is the physical quantity represented by irradiance, and what are its typical units in the context of laser beams?
- Describe the key characteristics of a laser beam operating in the TEM00 mode, focusing on its spatial irradiance distribution.
- Explain the significance of the parameter w₀ in the equation for the irradiance of a TEM00 laser beam. How does it relate to the physical size of the beam?
- What are scaled variables, and why are they introduced in the context of modeling the laser beam profile? Provide the definitions for the scaled x and y coordinates.
- Derive the value of x at which the irradiance (when y=0) drops to half of its maximum value (I₀/2) using the given equation. Explain the significance of this value in relation to the beam width w₀.
- Using the scaled irradiance equation, explain why plotting I/I_max,ỹ versus x̃ for different values of ỹ results in a set of curves that coincide.
- What is the relationship between the irradiance I(x, y) and the total power P₀ transmitted by the TEM00 laser beam, as given in the source material?
- Describe the purpose of the Python script "Beam_Profile_Exercise_1.py" provided in the source material. What kind of plots does it generate?
- Explain the steps involved in generating a line plot of irradiance versus scaled x for different scaled y values, as described in Exercise 1(a).
- What does plotting the scaled irradiance (I / I_max,ỹ) reveal about the fundamental shape of the TEM00 laser beam profile at different y positions?
Quiz
Answer the following questions in 2-3 sentences each.
- What does the term "TEM00 mode" signify for a laser beam's spatial profile? Describe its general shape.
- Define irradiance and its relevance to characterizing a laser beam. What units are typically used to measure it in this context?
- Explain the physical meaning of the beam width parameter, w₀, in the equation for TEM00 laser irradiance. How does it affect the beam's spatial extent?
- What is the purpose of using scaled variables (x̃ and ỹ) when describing the laser beam profile? Provide the mathematical definition of these variables.
- At what x-locations (when y=0) does the irradiance of a TEM00 laser beam drop to half of its maximum value? Express this in terms of w₀.
- According to the text, what percentage of the maximum irradiance (when y=0) is observed at x = w₀? Briefly explain how this value is derived.
- What relationship is established between the laser beam's irradiance I(x, y) and its total transmitted power P₀? Why is this relationship important?
- What type of plots are generated by the provided Python script, and what variables are represented on the axes of these plots?
- When plotting the irradiance I versus the scaled x coordinate (x̃) for different scaled y values (ỹ), how does the peak irradiance change with increasing ỹ? Explain why.
- What key observation can be made when plotting the scaled irradiance (I / I_max,ỹ) against the scaled x coordinate (x̃) for various ỹ values? What does this imply about the beam's fundamental shape?
Quiz Answer Key
- The TEM00 mode is the fundamental Gaussian mode of a laser beam, indicating a bell-shaped irradiance profile with the highest intensity at the center, gradually decreasing radially. It represents the simplest and most common type of laser beam.
- Irradiance (I) is the power per unit area of the laser beam, quantifying its intensity at a given point in space. It is crucial for understanding the beam's energy distribution and is typically measured in milliwatts per square millimeter (mW/mm²).
- The beam width parameter, w₀, characterizes the spatial extent of the laser beam. A larger w₀ signifies a wider beam, indicating that the irradiance decreases more slowly as you move away from the beam's center.
- Scaled variables (x̃ = x / w₀ and ỹ = y / w₀) are dimensionless coordinates obtained by normalizing the spatial coordinates by the beam width. They simplify the irradiance equation and make it easier to generalize the beam profile, particularly for computational modeling.
- When y=0, the irradiance drops to half its maximum value (I₀/2) at x = ± 0.59 w₀. These locations define the "half-width at half-maximum" of the Gaussian profile along the x-axis.
- At y = 0 and x = w₀, the irradiance is I = I₀ exp(-2) ≈ 0.135 * I₀. This shows that at a distance of one beam width from the center, the intensity has significantly decreased to about 13.5% of its peak value.
- The irradiance I(x, y) is related to the total power P₀ by the equation I ( x , y ) = (2 P₀ / (π w₀²)) exp [ − 2 ( x ~ ² + y ~ ² ) ]. This equation links the local intensity of the beam to its overall power and width.
- The Python script generates two main types of line plots: one showing the unscaled irradiance (I) versus the scaled x coordinate (x̃) for different scaled y values (ỹ), and another showing the scaled irradiance (I / I_max,ỹ) versus x̃ for the same ỹ values.
- When plotting unscaled irradiance (I) versus scaled x (x̃), the peak irradiance decreases as the scaled y value (ỹ) increases. This is because points farther from the beam's center (larger ỹ) have inherently lower irradiance due to the Gaussian profile.
- Plotting the scaled irradiance (I / I_max,ỹ) against scaled x (x̃) for different ỹ values results in a set of overlapping curves. This indicates that the fundamental shape of the TEM00 Gaussian irradiance profile remains the same at different y positions when scaled by the local maximum irradiance.
Essay Format Questions
- Discuss the importance of the TEM00 mode in laser applications. Explain the mathematical representation of its irradiance profile and the significance of the parameters involved (I₀ and w₀).
- Explain the concept of scaled variables in the context of laser beam profiling. How does the use of scaled variables simplify the analysis and modeling of the TEM00 laser beam irradiance? Illustrate with examples from the provided material.
- Describe the relationship between the local irradiance of a TEM00 laser beam and its total power. How does the beam width influence this relationship, and what are the implications for laser beam focusing and power density?
- The provided material outlines Exercise 1, focusing on "line cuts" of the TEM00 laser beam profile. Discuss how these line plots, both of unscaled and scaled irradiance, help in understanding the spatial distribution of intensity within the beam.
- The "About" section mentions using a "knife-edge technique" to determine the laser beam profile in subsequent exercises. Based on the information provided for Exercise 1, hypothesize how the data obtained from a knife-edge experiment could be used to infer the beam width (w₀) of a TEM00 laser.
Glossary of Key Terms
- Irradiance (I):
- Power per unit area, typically measured in Watts per square meter (W/m²) or milliwatts per square millimeter (mW/mm²), representing the intensity of an electromagnetic wave, such as a laser beam, at a given point.
- TEM00 Mode:
- The fundamental transverse electromagnetic mode of a laser resonator, characterized by a Gaussian spatial distribution of the electric field and thus a Gaussian irradiance profile in the beam cross-section. It has a single intensity peak at the center.
- Gaussian Beam:
- An electromagnetic beam whose transverse electric and magnetic field amplitude distributions are well approximated by a Gaussian function. Laser beams in the TEM00 mode are Gaussian beams.
- Beam Width (w₀):
- A parameter that characterizes the transverse size of a Gaussian beam at its waist (the point of smallest beam radius). It is typically defined as the radius at which the irradiance falls to 1/e² (approximately 13.5%) of its peak value. In this exercise, a slightly different definition related to the half-maximum points is also discussed.
- Maximum Irradiance (I₀):
- The highest value of irradiance in the laser beam profile, occurring at the center of the TEM00 mode (x=0, y=0).
- Scaled Variables:
- Dimensionless quantities obtained by dividing physical variables by a characteristic scale. In this context, the spatial coordinates (x, y) are scaled by the beam width (w₀) to yield dimensionless coordinates (x̃ = x / w₀, ỹ = y / w₀).
- Line Plot:
- A type of graph that displays data points connected by line segments, often used to show the relationship between two variables, such as irradiance versus position.
- Contour Plot:
- A graphical technique for representing a 3-dimensional surface by plotting constant z slices, known as contours or level sets, on a 2-dimensional format. It can be used to visualize the irradiance distribution in the x-y plane.
- Knife-Edge Technique:
- An experimental method used to measure the spatial profile of a laser beam. It involves scanning a sharp edge across the beam and measuring the transmitted power as a function of the knife-edge position. The derivative of this power with respect to position is proportional to the beam's intensity profile.
arning Goals
[text]
For Teachers
[text]
Research
[text]
Video
[text]
Version:
- https://www.compadre.org/PICUP/exercises/exercise.cfm?I=134&A=laser_beam_profile
- http://weelookang.blogspot.com/2018/06/laser-beam-profile-exercise-1-tem00.html
Other Resources
[text]
end faq
{accordionfaq faqid=accordion4 faqclass="lightnessfaq defaulticon headerbackground headerborder contentbackground contentborder round5"}
Frequently Asked Questions: PICUP Laser Beam Profile Exercise
- What is the primary goal of the "PICUP Laser Beam Profile EXERCISE 1"? This exercise aims to guide students in understanding and modeling the irradiance profile of a laser beam operating in the TEM00 mode. Specifically, it involves expressing the mathematical equation for this profile using scaled variables suitable for computational modeling, generating plots of the irradiance, and laying the groundwork for more advanced exercises involving knife-edge profiling and fitting to experimental data.
- What is the mathematical expression for the irradiance of a TEM00 laser beam, and what do the terms represent? The irradiance (I(x, y)) of a TEM00 laser beam is given by the equation (I(x, y) = I_0 \exp \left[ -2 \frac{(x^2 + y^2)}{w_0^2} \right]). In this equation, (I_0) represents the maximum irradiance (power per unit area) at the center of the beam, (x) and (y) are the spatial coordinates perpendicular to the direction of beam propagation, and (w_0) is the beam width parameter that characterizes the spatial extent of the beam.
- What are "scaled variables" in the context of this exercise, and why are they useful? Scaled variables, denoted as (\tilde{x}) and (\tilde{y}), are dimensionless quantities defined by dividing the spatial coordinates (x) and (y) by the beam width parameter (w_0) (i.e., (\tilde{x} \equiv x / w_0) and (\tilde{y} \equiv y / w_0)). Using scaled variables simplifies the expression for irradiance to (I(\tilde{x}, \tilde{y}) = I_0 \exp [-2 (\tilde{x}^2 + \tilde{y}^2)]), making it more general and convenient for coding and analysis as it removes the dependence on the specific value of the beam width.
- How is the total power of the laser beam related to its irradiance profile? The total power (P_0) transmitted by the laser beam is related to the irradiance (I(x, y)) by the equation (I(x, y) = \frac{2 P_0}{\pi w_0^2} \exp [-2 (\tilde{x}^2 + \tilde{y}^2)]). This equation shows that the irradiance is proportional to the total power and inversely proportional to the square of the beam width parameter, indicating that a wider beam or a lower power will result in lower irradiance at any given scaled position.
- What does plotting the irradiance (I) versus the scaled position (\tilde{x}) for different values of (\tilde{y}) reveal about the laser beam profile? Generating these line plots allows visualization of how the irradiance of the laser beam changes as a function of the scaled horizontal position ((\tilde{x})) at different scaled vertical positions ((\tilde{y})). These plots demonstrate the Gaussian shape of the TEM00 mode, showing that the irradiance is maximum at the center ((\tilde{x} = 0, \tilde{y} = 0)) and decreases exponentially as the distance from the center increases in either the (x) or (y) direction.
- What is the significance of plotting the scaled irradiance (I / I_{max, \tilde{y}}) versus the scaled position (\tilde{x})? Plotting the irradiance normalized by its maximum value for a specific (\tilde{y}) allows for a direct comparison of the beam's spatial profile at different vertical positions, independent of the absolute irradiance values. The resulting plots for different (\tilde{y}) values will overlap, indicating that the shape of the irradiance profile along the (x) direction remains Gaussian, and only the peak irradiance changes as (\tilde{y}) varies. This highlights the separability of the (x) and (y) dependence in the Gaussian profile.
- What computational tools are suggested or used in this exercise? The exercise utilizes a JavaScript simulation applet for interactive exploration. Additionally, the provided Python script (Beam_Profile_Exercise_1.py) demonstrates how to generate the described plots using the pylab and numpy libraries, indicating that Python is a suitable tool for completing such computational tasks.
- Beyond Exercise 1, what further investigations into laser beam profiles are mentioned? The "About" section indicates that this exercise is the first in a set of exercises. Subsequent exercises involve producing contour plots of the irradiance (Exercise 2), developing a model of the knife-edge profile of the laser beam (Exercise 3), and fitting this model to experimental data obtained using a knife-edge technique (Exercise 4). These further steps aim to provide a comprehensive understanding of experimentally determining a laser beam's profile.
- Details
- Written by Loo Kang Wee
- Parent Category: 06 Modern Physics
- Category: 04 Laser and Semi-conductors
- Hits: 7849