diff options
Diffstat (limited to '2708/CH3/EX3.1')
-rwxr-xr-x | 2708/CH3/EX3.1/ex_3_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2708/CH3/EX3.1/ex_3_1.sce b/2708/CH3/EX3.1/ex_3_1.sce new file mode 100755 index 000000000..4120aaef6 --- /dev/null +++ b/2708/CH3/EX3.1/ex_3_1.sce @@ -0,0 +1,9 @@ +//Example 3.1 // Angle of Polarization
+clc;
+clear;
+//given data :
+u=1.54;//refractive index of glass
+i=atan(u);//incidence angle in radian
+r=%pi/2 -i;//refraction angle in radian brewester's law
+r=r*180/%pi;// to convert in degree
+disp(r,"angle of refraction in degree")
|