summaryrefslogtreecommitdiff
path: root/1655/CH4/EX4.15.9/Example_4_15_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1655/CH4/EX4.15.9/Example_4_15_9.sce')
-rwxr-xr-x1655/CH4/EX4.15.9/Example_4_15_9.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1655/CH4/EX4.15.9/Example_4_15_9.sce b/1655/CH4/EX4.15.9/Example_4_15_9.sce
new file mode 100755
index 000000000..300892f8f
--- /dev/null
+++ b/1655/CH4/EX4.15.9/Example_4_15_9.sce
@@ -0,0 +1,13 @@
+// Example 4.15.9 page 4.41
+
+clc;
+clear;
+
+RSW=0.0012; //relative spectral width
+lamda=0.85d-6; //wavelength
+L=1; //distance in km (assumed)
+M=100; //material dispersion parameter in ps/nm/km (assumed)
+
+sigma_lamda=RSW*lamda;
+sigmaM=sigma_lamda*L*M*10^6; //computing rms pulse broadning.
+printf("\nRMS pulse broadning is %.3f ns/km.",sigmaM);