diff options
Diffstat (limited to '3710/CH6/EX6.1/Ex6_1.sce')
-rw-r--r-- | 3710/CH6/EX6.1/Ex6_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3710/CH6/EX6.1/Ex6_1.sce b/3710/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..9ce99c8a6 --- /dev/null +++ b/3710/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,17 @@ +//Example 6.1, Page Number 252
+//Mode locked Pulses
+clc;
+lw=1.1*(10**11) //Fluorescent Linewidth in Hertz
+l=0.1 //length of laser rod in meter
+n=1.8 //Refractive Index
+c=3*(10**8) //Speed of light in meters per second
+
+ms=c/(2*l*n) //ms is the mode seperation in hertz
+ps=1/ms //ps is the Pulse seperation in seconds
+Nm=lw/ms //Nm is the Number of modes oscillating
+pd=(1/Nm)*ps //pd is the pulse duration
+
+disp(ms,"The Mode Seperation in Hz is:")
+disp(Nm,"The Number of Modes Oscillating is:")
+disp(ps,"The Pulse Seperation in s is:")
+disp(pd,"The Pulse Duration in s is:")
|