diff options
Diffstat (limited to '2414/CH20/EX20.3/Ex20_3.sce')
-rwxr-xr-x | 2414/CH20/EX20.3/Ex20_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2414/CH20/EX20.3/Ex20_3.sce b/2414/CH20/EX20.3/Ex20_3.sce new file mode 100755 index 000000000..5eac89224 --- /dev/null +++ b/2414/CH20/EX20.3/Ex20_3.sce @@ -0,0 +1,12 @@ +clc;
+close();
+clear();
+//page no 620
+//prob no. 20.3
+theta_r=90; //degree
+ni=1.52; //refraction index for crown glass
+nr=1.00; //refraction index for air
+theta_i=asin(nr/ni*sin(theta_r*%pi/180)); //in radians
+mprintf('critical angle is %.2f degree',theta_i*180/%pi);
+//misprinted theta_r in the text
+//values are raunded up in the text
|