diff options
Diffstat (limited to '3537/CH7/EX7.7/Ex7_7.sce')
-rw-r--r-- | 3537/CH7/EX7.7/Ex7_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3537/CH7/EX7.7/Ex7_7.sce b/3537/CH7/EX7.7/Ex7_7.sce new file mode 100644 index 000000000..6eecd99b9 --- /dev/null +++ b/3537/CH7/EX7.7/Ex7_7.sce @@ -0,0 +1,13 @@ +//Example 7_7
+clc();
+clear;
+//To calculate the dispersion and bandwidth length product
+L=10 //units in Km
+n=1.55
+delta=0.026
+C=3*10^5 //units in meter per second
+T=(L*n*delta)/C*10^9
+printf("The total dispersion is %.1f ns",T)
+l=1/(2*T*10^-9)*10
+printf("\nThe bandwidth length product is %.2f HZ-Km",l)
+//in text book answer is wrong as 7044*10^5 correct answer is 3722084.37
|