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 /3440/CH14/EX14.3/Ex14_3.sce | |
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 '3440/CH14/EX14.3/Ex14_3.sce')
-rw-r--r-- | 3440/CH14/EX14.3/Ex14_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3440/CH14/EX14.3/Ex14_3.sce b/3440/CH14/EX14.3/Ex14_3.sce new file mode 100644 index 000000000..a3e08bf06 --- /dev/null +++ b/3440/CH14/EX14.3/Ex14_3.sce @@ -0,0 +1,14 @@ +clc
+
+w=20//m
+q=1.6*10^-19
+t=60//sec
+nx=2.85*10^19
+disp(nx,"nx in ions/cm^3") //havent solved in textbook
+d=5*10^14//ions/cm^2
+Q=d*%pi*(20/2)^2
+disp(Q,"Q in ions is= ")
+I=(q*Q)/t
+disp(I,"I in A is= ")
+
+
|