Chapter 41 REFLECTION AND REFRACTION OF PLANE WAVES AND PLANE SURFACES

Example 41.1 Angle between two refracted beams

In [2]:
from __future__ import division
import math
theta_1=30
n_qa=1.4702
theta2=math.degrees(math.asin(math.sin(theta_1*math.pi/180)/n_qa))
print("For 4000 A beam, theta_2 in degree= %.5f"%theta2)

theta_1=30
n_qa=1.4624
theta2=math.degrees(math.asin(math.sin(theta_1*math.pi/180)/n_qa))
print("For 5000 A beam, theta_2 in degree= %.5f"%theta2)
For 4000 A beam, theta_2 in degree= 19.88234
For 5000 A beam, theta_2 in degree= 19.99290

Example 41.4 Index of glass

In [3]:
from __future__ import division
import math
n=1/math.sin(45*math.pi/180)
print("Index reflection= %.5f"%n)
Index reflection= 1.41421

Example 41.5 Calculation of Angle

In [4]:
from __future__ import division
import math
n2=1.33
n1=1.50
theta_c=math.degrees(math.asin(n2/n1))
print("Angle theta_c in degree= %.5f"%theta_c)
print("Actual angle of indices = 45 is less than theta_ c, so there is no internal angle reflection")
print("Angle of refraction:")
x=n1/n2
theta_2=(math.asin(x*math.sin(45*math.pi/180))*180/math.pi)
print("Theta_2 in degree= %.5f"%theta_2)
Angle theta_c in degree= 62.45732
Actual angle of indices = 45 is less than theta_ c, so there is no internal angle reflection
Angle of refraction:
Theta_2 in degree= 52.89097