diff options
Diffstat (limited to '2444/CH1/EX1.8/ex1_8.sce')
-rwxr-xr-x | 2444/CH1/EX1.8/ex1_8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2444/CH1/EX1.8/ex1_8.sce b/2444/CH1/EX1.8/ex1_8.sce new file mode 100755 index 000000000..e9ac7f5bb --- /dev/null +++ b/2444/CH1/EX1.8/ex1_8.sce @@ -0,0 +1,19 @@ +// Exa 1.8
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+rho = 0.5;// in ohm-m
+J = 100;// in A/m^2
+miu_e = 0.4;// in m^2/V-s
+e = 1.6*10^-19;// in C
+sigma = 1/rho;
+E = J/sigma;
+v = miu_e*E;// in m/s
+disp(v,"The drift velocity in m/s is");
+D = 10;// distance of travel in µm
+D = D * 10^-6;// in m
+// Time taken by electron
+t= D/v;// time taken in second
+disp(t,"The time taken in second is");
|