diff options
Diffstat (limited to '3638/CH18/EX18.5/Ex18_5.sce')
-rw-r--r-- | 3638/CH18/EX18.5/Ex18_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3638/CH18/EX18.5/Ex18_5.sce b/3638/CH18/EX18.5/Ex18_5.sce new file mode 100644 index 000000000..b1d849bf0 --- /dev/null +++ b/3638/CH18/EX18.5/Ex18_5.sce @@ -0,0 +1,13 @@ +//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999
+//Example 18.5
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+//given
+V=2.64e-4;//Verdet constant for silica in deg/A
+N=30;//Number of turns of fiber
+I=1;//Current through the fiber in A
+
+Theta=V*N*I;//Corresponding rotation of plane of polarization in deg
+mprintf("\n Theta= %.2e deg",Theta);
|