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 /2102/CH1/EX1.5 | |
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 '2102/CH1/EX1.5')
-rwxr-xr-x | 2102/CH1/EX1.5/exa_1_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2102/CH1/EX1.5/exa_1_5.sce b/2102/CH1/EX1.5/exa_1_5.sce new file mode 100755 index 000000000..7a9a6e85b --- /dev/null +++ b/2102/CH1/EX1.5/exa_1_5.sce @@ -0,0 +1,18 @@ +// Exa 1.5
+clc;
+clear;
+close;
+// Given data
+format('v',13)
+e= 1.6*10^-19;// in C
+ni= 1.5*10^16;
+miu_n= 0.13;
+miu_p= 0.05;
+atomicDensity= 5*10^28;//atomic density of Si in /m^3
+C= 1/(2*10^8);// concentration
+N_D= atomicDensity*C;// in /m^3
+n=N_D;
+p= ni^2/N_D;// in /m^3
+sigma= e*(n*miu_n+p*miu_p);// in s/m
+disp(sigma,"Conductivity of the extrinsic semiconductor in s/m is : ")
+
|