diff options
Diffstat (limited to '273/CH8/EX8.2/ex8_2sce.sce')
-rwxr-xr-x | 273/CH8/EX8.2/ex8_2sce.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/273/CH8/EX8.2/ex8_2sce.sce b/273/CH8/EX8.2/ex8_2sce.sce new file mode 100755 index 000000000..898637fc5 --- /dev/null +++ b/273/CH8/EX8.2/ex8_2sce.sce @@ -0,0 +1,14 @@ +clc;clear;
+//Example 8.2
+//Polarizer,calculation of angle
+
+//given values
+Io=1;//intensity of polarised light
+I1=Io/2;//intensity of beam polarised by first by first polariser
+I2=Io/3;//intensity of light polarised by second polariser
+
+
+ //calculation
+a=acos(sqrt(I2/I1));
+alpha=a*180/%pi;//conversion of angle into degree
+disp(alpha,'angle between characteristic directions (in degree) is');
\ No newline at end of file |