-
-
Notifications
You must be signed in to change notification settings - Fork 48.7k
finding different diffraction parameters #11608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
6ae4a0f
9f4f139
0f22124
6be6606
80e4aaa
ed575a4
9468055
f3fbc60
4981ab9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import math | ||
|
||
def check_min_intensity(slit_width = 1,diff_angle=0, wavelength=100): | ||
""" | ||
Checks for the condition of minimum intensity in a diffraction pattern. | ||
|
||
Args: | ||
slit_width (float): The width of the slit in millimeters. | ||
diff_angle (float): The diffraction angle in radians. | ||
wavelength (float): The wavelength of light in nanometers. | ||
|
||
Returns: | ||
bool: True if minimum intensity is met, otherwise False. | ||
|
||
>>> check_min_intensity(4, 0.25, 300) | ||
False | ||
>>> check_min_intensity(1, 0.0001, 100) | ||
True | ||
""" | ||
wavelength *= 10**-6 | ||
n_val = round(slit_width*(diff_angle)/wavelength,5) | ||
r_val = (n_val-math.floor(n_val)==0) | ||
return r_val | ||
|
||
def check_max_intensity(slit_width=1,diff_angle=0,wavelength=100): | ||
|
||
""" | ||
Checks for the condition of maximum intensity in a diffraction pattern. | ||
|
||
Args: | ||
slit_width (float): The width of the slit in millimeters. | ||
diff_angle (float): The diffraction angle in radians. | ||
wavelength (float): The wavelength of light in nanometers. | ||
|
||
Returns: | ||
bool: True if maximum intensity is met, otherwise False. | ||
|
||
>>> check_max_intensity(1, 0.001, 100) | ||
False | ||
>>> check_max_intensity(1, 0.00005, 100) | ||
True | ||
""" | ||
wavelength *=10**-6 | ||
n_val = round(((2*slit_width*diff_angle)-wavelength)/(2*wavelength),4) | ||
r_val = (n_val-math.floor(n_val)==0) | ||
return r_val | ||
|
||
def intensity_single_slit(slit_width=1,diff_angle=0,wavelength=100): | ||
|
||
""" | ||
Computes the intensity for a single slit diffraction pattern. | ||
|
||
Args: | ||
slit_width (float): The width of the slit in millimeters. | ||
diff_angle (float): The diffraction angle in radians. | ||
wavelength (float): The wavelength of light in nanometers. | ||
|
||
Returns: | ||
str: The intensity of the diffraction pattern. | ||
|
||
>>> intensity_single_slit(1, 0.0005, 100) | ||
'0.9999999999177533 I0' | ||
""" | ||
beta = math.pi*slit_width*(math.sin(diff_angle)/wavelength) | ||
i_coeff = (math.sin(beta)/beta)**2 | ||
return f"{i_coeff} I0" | ||
|
||
def intensity_double_slit(path_diff=0,intensity_max="I0"): | ||
|
||
""" | ||
Computes the intensity for a double slit diffraction pattern. | ||
|
||
Args: | ||
path_diff (float): The path difference in the two waves. | ||
intensity_max (str or int): The maximum intensity. | ||
|
||
Returns: | ||
str or float: The intensity of the diffraction pattern. | ||
|
||
>>> intensity_double_slit(0, 1) | ||
4.0 | ||
>>> intensity_double_slit(0.001, 1) | ||
3.999999000000084 | ||
>>> intensity_double_slit(0) | ||
'4.0 I0' | ||
""" | ||
r_val = 4*intensity_max*(math.cos(path_diff/2))**2 if (type(intensity_max) is int) else f"{4*(math.cos(path_diff/2)**2)} I0" | ||
return r_val | ||
|
||
if(__name__=="__main__"): | ||
import doctest | ||
doctest.testmod() | ||
#pass | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please provide return type hint for the function:
check_min_intensity
. If the function does not return a value, please provide the type hint as:def function() -> None:
Please provide type hint for the parameter:
slit_width
Please provide type hint for the parameter:
diff_angle
Please provide type hint for the parameter:
wavelength