diff options
Diffstat (limited to '2672/CH4/EX4.16/Ex4_16.sce')
-rwxr-xr-x | 2672/CH4/EX4.16/Ex4_16.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2672/CH4/EX4.16/Ex4_16.sce b/2672/CH4/EX4.16/Ex4_16.sce new file mode 100755 index 000000000..5b759f461 --- /dev/null +++ b/2672/CH4/EX4.16/Ex4_16.sce @@ -0,0 +1,14 @@ +//Example 4_16
+clc;
+clear;
+close;
+format('v',7);
+//given data :
+V=1;//V
+L=10;//m
+tau=10^-14;//s
+e=1.6*10^-19;//C///Charge on electron
+m=0.02*9.1*10^-31;//kg//effective mass of electron
+E0=V/L;//V/m
+v0=e*E0*tau/m;//m/s
+disp(v0,"Drift Velocity(ms^-1)")
|