diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /377/CH8/EX8.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '377/CH8/EX8.3')
-rw-r--r-- | 377/CH8/EX8.3/8_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/377/CH8/EX8.3/8_3.sce b/377/CH8/EX8.3/8_3.sce new file mode 100644 index 000000000..76e8f07e6 --- /dev/null +++ b/377/CH8/EX8.3/8_3.sce @@ -0,0 +1,9 @@ +disp("n=σ/(e*μd)");
+a=5.9*10^7; //say σ=a
+b=3.2*10^-3; //say μd=b
+e=1.6*10^-19;
+d=8.5*10^28;
+n=a/(e*b);
+printf('\n The value of n is %f*10^29 m^-3',n*10^-29);
+c=n/d; //say d=concentration of copper atoms and c=avg. no. of electrons/atom
+printf('\n The average number of electrons/atom is %1.2f',c);
\ No newline at end of file |