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/CH3/EX3.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/CH3/EX3.5')
-rw-r--r-- | 374/CH3/EX3.5/35.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/374/CH3/EX3.5/35.sci b/374/CH3/EX3.5/35.sci new file mode 100644 index 000000000..99c81cf8d --- /dev/null +++ b/374/CH3/EX3.5/35.sci @@ -0,0 +1,12 @@ +//chapter 3 example 5//
+clc
+clear
+//wavelength of single mode fibre=l,attenuation=A,core diameter of fibre=d,laser sourcr bandwidth=BW,threshold optical power for brillouin=Pb,threshold optical power for raman scattering=Pr//
+d=6;//in micrometer//
+l=1.3;//in micrometer//
+A=0.5;//in db per km//
+BW=0.6//in GHz//
+Pb=(4.4*(10^-3))*(d^2)*(l^2)*(A*BW)*1000;//in watts//
+printf("\n threshold optical power for brillouin=%f mW.\n",Pb);
+Pr=(5.9*(10^-2))*(d^2)*l*A;
+printf("\n threshold optical power for raman scattering=%f W.\n",Pr);
\ No newline at end of file |