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 /374/CH11/EX11.5 | |
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 '374/CH11/EX11.5')
-rw-r--r-- | 374/CH11/EX11.5/115.sci | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/374/CH11/EX11.5/115.sci b/374/CH11/EX11.5/115.sci new file mode 100644 index 000000000..c090f24dd --- /dev/null +++ b/374/CH11/EX11.5/115.sci @@ -0,0 +1,20 @@ +//chapter 11 example 5//
+clc
+clear
+//value of parameter=p,length of link=L,speed of light=c,wavelength=l,spectral width=dl,rise time=dtr//
+c=3*(10^8);//in mts per sec//
+l=830;//in nm//
+dl=40;//in nm//
+L=2.5*(10^3);//in mts//
+p=0.024;//value of parameter//
+dtmat=(-L*dl*p)/(c*l)*(10^9);
+dtmodal=(2.5*3.5);
+dtr=10;//in ns//
+dts=8;//in ns//
+g=sqrt((dts^2)+(dtr^2)+(dtmat^2)+(dtmodal^2));
+dtsys=1.1*g;
+printf("\n material dispersion delay time=%f m\n",dtsys)
+Btmax=(0.75/dtsys)*(10^9);
+printf("\n a)Btmax for RZ format=%f m\n",Btmax)
+Btmax1=(0.35/dtsys)*(10^9);
+printf("\n b)Btmax for NRZ format=%f m\n",Btmax1)
\ No newline at end of file |