diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /848/CH11/EX11.10/Example11_10.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '848/CH11/EX11.10/Example11_10.sce')
-rwxr-xr-x | 848/CH11/EX11.10/Example11_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/848/CH11/EX11.10/Example11_10.sce b/848/CH11/EX11.10/Example11_10.sce new file mode 100755 index 000000000..9d047bd02 --- /dev/null +++ b/848/CH11/EX11.10/Example11_10.sce @@ -0,0 +1,21 @@ +//clear//
+//Caption: Upper bound on input optical signal power
+//Example11.10
+//page 415
+clear;
+clc;
+close;
+etta = 0.65; //Quantum efficiency
+nsp = 2; // population inversion between two levels
+R =50; //load resistance inohms
+Lambda = 1550e-09; //operating wavelength in meters
+T = 300; //room temperature in kelvins
+kB = 1.38054e-23; //boltzmann's constant
+h = 6.6256e-34; //plank's constant
+C = 3e08; //free space velocity in m/s
+V = C/Lambda; //frequency in Hz
+q = 1.602e-19; //charge in columbs
+Ps_in = kB*T*h*V/(R*nsp*(etta^2)*(q^2));
+disp(Ps_in*1e06,'Upper bound on input optical signal power in micro watts Ps_in=')
+//Result
+//Upper bound on input optical signal power in micro watts Ps_in = 489.81635
|