diff options
Diffstat (limited to '1730/CH3/EX3.1/Exa3_1.sce')
-rwxr-xr-x | 1730/CH3/EX3.1/Exa3_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1730/CH3/EX3.1/Exa3_1.sce b/1730/CH3/EX3.1/Exa3_1.sce new file mode 100755 index 000000000..eb7f1e22b --- /dev/null +++ b/1730/CH3/EX3.1/Exa3_1.sce @@ -0,0 +1,11 @@ +//Exa3.1
+clc;
+clear;
+close;
+// given data
+E=2.1;//in eV
+E=E*1.602*10^-19;// in J
+m=9.107*10^-31;// in kg (mass of electron)
+// Formula E=1/2*m*v^2
+v=sqrt(2*E/m);
+disp(" Velocity of electron at Fermi-level is : "+string(v)+" m/s")
\ No newline at end of file |