diff options
Diffstat (limited to '3822/CH1/EX1.3/Ex1_3.sce')
-rw-r--r-- | 3822/CH1/EX1.3/Ex1_3.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3822/CH1/EX1.3/Ex1_3.sce b/3822/CH1/EX1.3/Ex1_3.sce new file mode 100644 index 000000000..43510acb9 --- /dev/null +++ b/3822/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,20 @@ + +//Optoelectronics and Fiber Optics Communication by C.R. Sarkar and D.C. Sarkar
+//Example 1.3
+//OS = Windows 7
+//Scilab version 5.5.2
+
+clc;
+clear;
+
+//given
+n1=1.46;//refractive index of the core of W-step index fiber
+delta=0.02;//relative refractive index between the core and the cladding
+n2=n1-(delta*n1);//refractive index of the cladding
+NA=(((n1+n2)*(n1-n2))^0.5);//numerical aperture of the fiber
+thetac=asind(n2/n1);//critical angle at the core cladding interface
+phi=%pi*(NA^2);//solid acceptance angle in air for the fiber
+mprintf("\n Numerical Aperture is %.2f",NA);
+mprintf("\n Critical angle at the core-cladding interface is =%.2fdegrees",thetac);
+mprintf("\n Solid acceptance angle in air for the fiber is =%.2fradians",phi);
+//the answer vary due to rounding
|