diff options
Diffstat (limited to '3669/CH5/EX5.10/10.sce')
-rw-r--r-- | 3669/CH5/EX5.10/10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3669/CH5/EX5.10/10.sce b/3669/CH5/EX5.10/10.sce new file mode 100644 index 000000000..00683decc --- /dev/null +++ b/3669/CH5/EX5.10/10.sce @@ -0,0 +1,13 @@ +
+//Variable declaration
+EF=5.5*1.602*10**-19; //fermi energy of silver(J)
+tow=3.97*10**-14; //relaxation time(s)
+m=9.11*10**-31; //mass(kg)
+
+//Calculation
+vf=sqrt(2*EF/m); //fermi velocity(m/s)
+lamda=vf*tow; //mean free path(m)
+
+//Result
+printf('fermi velocity is %0.3f *10**6 m/s \n',(vf/10**6))
+printf('mean free path is %0.3f *10**-8 m \n',(lamda*10**8))
\ No newline at end of file |