diff options
Diffstat (limited to '3547/CH2/EX2.11/Ex2_11.sce')
-rw-r--r-- | 3547/CH2/EX2.11/Ex2_11.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3547/CH2/EX2.11/Ex2_11.sce b/3547/CH2/EX2.11/Ex2_11.sce new file mode 100644 index 000000000..7e3958625 --- /dev/null +++ b/3547/CH2/EX2.11/Ex2_11.sce @@ -0,0 +1,36 @@ +// Example no.2.11
+// To find a)length of DCF b)power at the output of DCF c)gain of amplifier
+// Page no.80
+
+clc;
+clear;
+
+// Given data
+LTF=80; // Length of transmission fiber
+beta2TF=-21; // Dispersion of transmission fiber in ps^2/km
+beta2DCF=130; // Dispersion of DCF in ps^2/km
+Pin=2*10^(-3); // Input power of transmission fiber in W
+DCFloss=0.5; // Losses of DCF in dB/km
+TFloss=0.2; // Losses of TF in dB/km
+spliceloss=0.5; // Splice loss in dB
+
+// a)To find length of DCF
+LDCF=(-beta2TF*LTF)/beta2DCF; // Length of DCF in km
+
+// Displaying the result in command window
+printf('\n Length of DCF = %0.1f km',LDCF);
+
+// b)To find power at the output of DCF
+PindBm=10*log10(Pin/10^(-3)); // Input power of transmission fiber in dBm
+Totalloss=TFloss*LTF+DCFloss*LDCF+spliceloss; // Total loss in fiber in dB
+PoutdBm=PindBm-Totalloss; // Output power of DCF in dBm
+
+// Displaying the result in command window
+printf('\n Output power of DCF = %0.2f dBm',PoutdBm);
+
+// c)To find gain of amplifier
+gain=Totalloss; // gain of amplifier
+
+// Displaying the result in command window
+printf('\n Gain of amplifier = %0.2f dBm',gain);
+
|