diff options
Diffstat (limited to '1730/CH3/EX3.19/Exa3_19.sce')
-rwxr-xr-x | 1730/CH3/EX3.19/Exa3_19.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1730/CH3/EX3.19/Exa3_19.sce b/1730/CH3/EX3.19/Exa3_19.sce new file mode 100755 index 000000000..853fc63c8 --- /dev/null +++ b/1730/CH3/EX3.19/Exa3_19.sce @@ -0,0 +1,14 @@ +//Exa3.19
+clc;
+clear;
+close;
+// given data
+Resistivity=9.23*10^-3;// in ohm-m
+R_H=3.84*10^-4;//in m^3/C (Hall Coefficient)
+sigma=1/Resistivity;
+rho=1/R_H;
+e=1.6*10^-19;// in C (electron charge)
+n=rho/e;
+disp("Density of charge carriers is : "+string(n)+" /m^2");
+miu=sigma*R_H;
+disp("Mobility is : "+string(miu)+" m^2/V-s")
\ No newline at end of file |