diff options
Diffstat (limited to '2183/CH7/EX7.12/Ex_7_12.sce')
-rwxr-xr-x | 2183/CH7/EX7.12/Ex_7_12.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2183/CH7/EX7.12/Ex_7_12.sce b/2183/CH7/EX7.12/Ex_7_12.sce new file mode 100755 index 000000000..e5234ec92 --- /dev/null +++ b/2183/CH7/EX7.12/Ex_7_12.sce @@ -0,0 +1,17 @@ +//Example 7.12 // Optical gain and hFE +clc; +clear; +close; +//given data : +h=6.63*10^-34; +c=3*10^8; +e=1.6*10^-19; +Ic=15*10^-3;// in A +P0=140*10^-6;// in W +lamda=1.3*10^-6;// in m +eta=45/100;// quantum efficiency +G0=(h*c*Ic)/(e*P0*lamda); +disp(G0,"The optical gain,G0 = ") +h_FE=G0/eta; +disp(h_FE,"hFE = ") +// answer is wrong in the textbook |