diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3506/CH9/EX9.1/exp_9_1.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3506/CH9/EX9.1/exp_9_1.sce')
-rw-r--r-- | 3506/CH9/EX9.1/exp_9_1.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3506/CH9/EX9.1/exp_9_1.sce b/3506/CH9/EX9.1/exp_9_1.sce new file mode 100644 index 000000000..2e377fad7 --- /dev/null +++ b/3506/CH9/EX9.1/exp_9_1.sce @@ -0,0 +1,20 @@ +//Optical Fiber communication by A selvarajan
+//example 9.1
+//OS=Windows XP sp3
+//Scilab version 5.5.1
+clc;
+clear all;
+lambda=1.3*1e-6//wavelength in m
+c=3*1e8//velocity of light in m/s
+SNRoutdB=30//signal to noise ratio at outputin dB
+SNRout=10^(SNRoutdB/10);//signal to noise ratio at output normal scale
+new=c/lambda;//frequency in Hz
+h=6.6e-34;//plancks constant
+P=0.5e-3;//Input power in W
+NFdB=4//noise figure in dB
+NF=10^(NFdB/10);//noise figure in normal scale
+SNRin=NF*SNRout//signal to noise ratio at input normal scale
+delta_Be=P/(2*h*new*SNRin);//receiver bandwidth in Hz
+mprintf('Signal to noise ratio at Input=%f',SNRin)
+mprintf('\nReciever bandwidth is=%fx10^14Hz',delta_Be/1e14);// division by 1e14 to convert the unit from Hz to 10^14 Hz
+// The answer given in textbook is wrong
|