diff options
Diffstat (limited to '3828/CH11/EX11.3/Ex11_3.sce')
-rw-r--r-- | 3828/CH11/EX11.3/Ex11_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3828/CH11/EX11.3/Ex11_3.sce b/3828/CH11/EX11.3/Ex11_3.sce new file mode 100644 index 000000000..f82611cde --- /dev/null +++ b/3828/CH11/EX11.3/Ex11_3.sce @@ -0,0 +1,15 @@ +//Chapter 11 : Free Electron Theory Of Metals + +clear; + +//Variable declaration +rho=1.54*10**-8 //resistivity +n=5.8*10**28 //electron density +e=1.602*10**-19 //charge on electron +m=9.1*10**-31 //Mass of electron + +//Calculations +tau=m/(n*(e**2)*rho)/10**-14 + +//Result +mprintf("Relaxation time= %1.2f*10**-14 seconds",tau) |