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 /1952/CH6/EX6.12/Ex6_12.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 '1952/CH6/EX6.12/Ex6_12.sce')
-rwxr-xr-x | 1952/CH6/EX6.12/Ex6_12.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1952/CH6/EX6.12/Ex6_12.sce b/1952/CH6/EX6.12/Ex6_12.sce new file mode 100755 index 000000000..dcfdfe576 --- /dev/null +++ b/1952/CH6/EX6.12/Ex6_12.sce @@ -0,0 +1,8 @@ +// chapter 6 , Example6.12 , pg 177
+n=5.8*10^28 // electron concentration (in /m^3)
+e=1.6*10^-19 // charge of electron (in C)
+rho=1.54*10^-8 //resistivity of metal (in ohm*m)
+M=9.11*10^-31 //mass of electron (in Kg)
+T=M/(n*e^2*rho) //relaxation time
+printf("Relaxation time(in s)")
+disp(T)
|