diff options
Diffstat (limited to '1172/CH1/EX1.7/Example1_7.sce')
-rwxr-xr-x | 1172/CH1/EX1.7/Example1_7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1172/CH1/EX1.7/Example1_7.sce b/1172/CH1/EX1.7/Example1_7.sce new file mode 100755 index 000000000..9658a20dd --- /dev/null +++ b/1172/CH1/EX1.7/Example1_7.sce @@ -0,0 +1,17 @@ +clc
+//Given that
+mu=1.52// refractive index of plane glass prism
+theta=%pi/180// angle of prism
+y1=25// separation between slit and biprism in cm
+y2=175//separation between biprism and screen in cm
+lambda=0.000055// wavelength of incident light in cm
+beta=0.02//fringe width in cm
+//Sample Problem 7 Page No. 49
+printf("\n # Problem 7 # \n")
+printf(" \n Standard formula used \n beta= lambda*D/d. \n")
+D=y1+y2
+d= (D*lambda)/beta
+theta=d/(2*(mu-1)*y1)
+vertex_angle=180-(2*theta*180/%pi)
+printf("\n Vertex angle of biprism is %f degree.",vertex_angle)
+
|