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 /2534/CH4/EX4.4 | |
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 '2534/CH4/EX4.4')
-rwxr-xr-x | 2534/CH4/EX4.4/Ex4_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2534/CH4/EX4.4/Ex4_4.sce b/2534/CH4/EX4.4/Ex4_4.sce new file mode 100755 index 000000000..2612e9b13 --- /dev/null +++ b/2534/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,14 @@ +//Ex4_4
+clc
+A = 4*10^-6
+W = 1.5*10^-6
+apsilent_r = 16//for germanium
+apsilent_not = 8.85*10^-12//permitivity in vaccum
+disp("A = "+string(A)+"m_sq")//cross sectional are
+disp("W = "+string(W)+"m")//width of depletion layer
+disp("apsient_r = "+string(apsilent_r))//relative permittivity
+disp("CT = apsilent*A/W")//transition capacitance
+disp(" = "+string(apsilent_r*apsilent_not*A/W)+"F")
+
+
+// note: units given in textbook in the solution for cross sectional area and width are misprinted.
|