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 /2045/CH1/EX1.3 | |
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 '2045/CH1/EX1.3')
-rwxr-xr-x | 2045/CH1/EX1.3/Ex1_3.pdf | bin | 0 -> 12529 bytes | |||
-rwxr-xr-x | 2045/CH1/EX1.3/Ex1_3.sce | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/2045/CH1/EX1.3/Ex1_3.pdf b/2045/CH1/EX1.3/Ex1_3.pdf Binary files differnew file mode 100755 index 000000000..8dcddd964 --- /dev/null +++ b/2045/CH1/EX1.3/Ex1_3.pdf diff --git a/2045/CH1/EX1.3/Ex1_3.sce b/2045/CH1/EX1.3/Ex1_3.sce new file mode 100755 index 000000000..8bbb0d2ae --- /dev/null +++ b/2045/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,19 @@ +//pagenumber 26 example 3
+clear
+ni=2.5*10^13;//per square centimetre
+moe=3800//square centimetre/velocity second
+mo1=1800;//square centimetre/velocity second
+num=4.51*10^22;//number of atoms
+q=1.6*10^-19;
+conduc=ni*q*(moe+mo1);
+num=num/10^7;
+impura=(ni^2)/num;
+ni=5*10^14;
+condu1=ni*q*moe;
+disp("conductivity = "+string((conduc))+"second per centimetre");
+disp("conductivity at extent of 1 impurity = "+string((condu1))+"second per centimetre");//there is mistake in book as 3.04s/cm
+conduc=num*q*mo1;
+disp("conductivity acceptor to extent of 1 impurity = "+string((conduc))+"second per centimetre");
+
+
+
|