summaryrefslogtreecommitdiff
path: root/1730/CH3/EX3.12/Exa3_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1730/CH3/EX3.12/Exa3_12.sce')
-rwxr-xr-x1730/CH3/EX3.12/Exa3_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1730/CH3/EX3.12/Exa3_12.sce b/1730/CH3/EX3.12/Exa3_12.sce
new file mode 100755
index 000000000..064e187ee
--- /dev/null
+++ b/1730/CH3/EX3.12/Exa3_12.sce
@@ -0,0 +1,15 @@
+//Exa3.12
+clc;
+clear;
+close;
+// given data
+e=1.6*10^-19;// in coulomb
+Resistivity=9*10^-3;// in ohm-m
+R_H=3.6*10^-4;// in m^3 coulomb^-1 (Hall Coefficient)
+sigma=1/Resistivity;
+rho=1/R_H;
+n=rho/e;
+disp("Density of charge carriers is : "+string(n)+" /m^3");
+miu=sigma*R_H;
+disp("Mobility is : "+string(miu)+" m^2/V-s");
+