diff options
Diffstat (limited to '3543/CH2/EX2.010/Ex2_10.sce')
-rw-r--r-- | 3543/CH2/EX2.010/Ex2_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3543/CH2/EX2.010/Ex2_10.sce b/3543/CH2/EX2.010/Ex2_10.sce new file mode 100644 index 000000000..6da717798 --- /dev/null +++ b/3543/CH2/EX2.010/Ex2_10.sce @@ -0,0 +1,21 @@ +// Example 2.10
+// Calculation of Cut off wavelength
+// Page no 482
+
+clc;
+clear;
+close;
+
+// Given data
+V=2.403; // Normalized frequency
+delta=0.25; // Refractive index of core
+n1=1.46; // Relative refractive index
+a=4.5*10^-6; // Radius of core
+
+// Cut off wavelenth
+lambda=(2*%pi*a*n1*(sqrt(2*delta)))/V;
+
+//Display result on command window
+printf("\n Cut off wavelenth(nm) = %0.0f ",lambda*10^8);
+
+// The answers vary due to round off error
|