diff options
Diffstat (limited to '2708/CH3/EX3.2')
-rwxr-xr-x | 2708/CH3/EX3.2/ex_3_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2708/CH3/EX3.2/ex_3_2.sce b/2708/CH3/EX3.2/ex_3_2.sce new file mode 100755 index 000000000..3b0dd302b --- /dev/null +++ b/2708/CH3/EX3.2/ex_3_2.sce @@ -0,0 +1,8 @@ +//Example 3.2 // Refractive index of glass
+clc;
+clear;
+//given data :
+i=%pi/3;// incidence angle in radian
+//reflected and refracted rays are perpendicular to each other
+u=tan(i);//Refractive index
+disp(u,"Refractive index of glass")
|