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 /2342/CH3/EX3.7 | |
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 '2342/CH3/EX3.7')
-rwxr-xr-x | 2342/CH3/EX3.7/EX3_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2342/CH3/EX3.7/EX3_7.sce b/2342/CH3/EX3.7/EX3_7.sce new file mode 100755 index 000000000..6aadfff8f --- /dev/null +++ b/2342/CH3/EX3.7/EX3_7.sce @@ -0,0 +1,18 @@ +// Exa 3.7
+format('v',9)
+clc;
+clear;
+close;
+// Given data
+Mu_e = 0.13;// in m^2/v-s
+Mu_h = 0.05;// in m^2/v-s
+Toh_h = 10^-6;// in s
+L = 100;// in µm
+L = L * 10^-6;// in m
+V = 2;// in V
+t_n =L^2/(Mu_e * V);// in s
+disp(t_n,"Electron transit time in seconds is");
+p_g = (Toh_h/t_n) * (1 + Mu_h/Mu_e);//photo conductor gain
+disp(p_g,"Photo conductor gain is");
+
+// Note: There is a calculation error to evaluate the value of t_n. So the answer in the book is wrong
|