diff options
Diffstat (limited to '3543/CH4/EX4.21/Ex4_21.sce')
-rw-r--r-- | 3543/CH4/EX4.21/Ex4_21.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3543/CH4/EX4.21/Ex4_21.sce b/3543/CH4/EX4.21/Ex4_21.sce new file mode 100644 index 000000000..cfdec8df7 --- /dev/null +++ b/3543/CH4/EX4.21/Ex4_21.sce @@ -0,0 +1,19 @@ +// Example 4.21
+// Calculation of wavelength seperation between longitudinal modes.
+// Page no 486
+
+clc;
+clear;
+close;
+
+//Given data
+lambda=0.85; // Wavelength
+n1=3.6; // Refractive index of GaAs
+L=200*10^-6; // Length of cavity
+
+// Wavelength seperation between longitudinal modes.
+lambda1=((lambda)^2)*(10^-12)/(2*n1*L);
+lambda1=lambda1*10^9;
+
+//Displaying results in the command window
+printf("\n Wavelength seperation (in nm^2) = %0.1f ",lambda1);
|