diff options
Diffstat (limited to '3740/CH3/EX3.6/Ex3_6.sce')
-rw-r--r-- | 3740/CH3/EX3.6/Ex3_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3740/CH3/EX3.6/Ex3_6.sce b/3740/CH3/EX3.6/Ex3_6.sce new file mode 100644 index 000000000..ae6adf851 --- /dev/null +++ b/3740/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,15 @@ +//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 3.5
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+nOmega=1.5019;//refractive index corresponding to the ray of frequency Omega
+n2Omega=1.4802;//refractive index corresponding to the ray of frequency 2*Omega
+Lambda0=0.8e-6;//vacuum wavelength at the fundamental frequency in m
+
+lc=Lambda0/(4*(nOmega-n2Omega));//Coherence length in m
+mprintf("\n lc = %.1e m",lc);//The answers vary due to round off error
+
|