diff options
Diffstat (limited to '3753/CH5/EX5.15/Ex5_15.sce')
-rw-r--r-- | 3753/CH5/EX5.15/Ex5_15.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3753/CH5/EX5.15/Ex5_15.sce b/3753/CH5/EX5.15/Ex5_15.sce new file mode 100644 index 000000000..9e4a8dfb9 --- /dev/null +++ b/3753/CH5/EX5.15/Ex5_15.sce @@ -0,0 +1,19 @@ +//Example 5.15, Page number 5.32 + +clc;clear;close + +// variable declaration +L=10 // in km +n1=1.55 //unitless +delta=0.026//unitless +C=3*10**5 + +// Calculations +delta_T=(L*n1*delta)/C //unitless +B_W=10/(2*delta_T) // Hz/km + +// Result +printf("Total dispersion = %.1f ns",(delta_T/10**-9)) +printf("\nBandwidth length product = %.2f Hz-km",(B_W/10**5)) + +// Answer given in the text book is wrong" |