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/CH2/EX2.25 | |
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/CH2/EX2.25')
-rwxr-xr-x | 2102/CH2/EX2.25/exa_2_25.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2102/CH2/EX2.25/exa_2_25.sce b/2102/CH2/EX2.25/exa_2_25.sce new file mode 100755 index 000000000..fb21807bf --- /dev/null +++ b/2102/CH2/EX2.25/exa_2_25.sce @@ -0,0 +1,13 @@ +// Exa 2.25
+clc;
+clear;
+close;
+// Given data
+q=1.6*10^-19;// in C
+miu_n= 0.18;// in m^2/v-s
+N_D= 10^21;// per m^3
+N_A= 5*10^20;// per m^3
+N_deshD= N_D-N_A;// per m^3
+n=N_deshD;// per m^3
+sigma= q*n*miu_n;// in (Ωm)^-1
+disp(sigma,"Conductivity of the silicon sample in (Ωm)^-1 is : ")
|