diff options
Diffstat (limited to '3411/CH15/EX7.1.u2/Ex7_1_u2.sce')
-rw-r--r-- | 3411/CH15/EX7.1.u2/Ex7_1_u2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3411/CH15/EX7.1.u2/Ex7_1_u2.sce b/3411/CH15/EX7.1.u2/Ex7_1_u2.sce new file mode 100644 index 000000000..a17e3227c --- /dev/null +++ b/3411/CH15/EX7.1.u2/Ex7_1_u2.sce @@ -0,0 +1,11 @@ +//Example 7_1_u2
+clc();
+clear;
+//To calculate the mean free path
+mn=0.26*0.91*10^-30
+un=1000*10^-4
+e=1.6*10^-19
+tc=(mn*un)/e
+vth=10^7
+meanfreepath=vth*tc*10^7 //units in nm
+printf("The mean free path is given by L=%.1f nm",meanfreepath)
|