summaryrefslogtreecommitdiff
path: root/2288/CH2/EX2.20.3/ex2_20_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2288/CH2/EX2.20.3/ex2_20_3.sce')
-rwxr-xr-x2288/CH2/EX2.20.3/ex2_20_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2288/CH2/EX2.20.3/ex2_20_3.sce b/2288/CH2/EX2.20.3/ex2_20_3.sce
new file mode 100755
index 000000000..0dbe2403e
--- /dev/null
+++ b/2288/CH2/EX2.20.3/ex2_20_3.sce
@@ -0,0 +1,15 @@
+//Exa 2.20.3
+clc;
+clear;
+close;
+//Given data
+R = 9 * 10^-3;// in ohm-m
+R_H = 3.6 * 10^-4;// in m^3
+e = 1.6 * 10^-19;// in C
+Sigma = 1/R;// in (ohm-m)^-1
+Rho = 1/R_H;// in coulomb/m^3
+n = Rho/e;// in /m^3
+disp(n,"Density of charge carriers in per m^3 is");
+Mu = Sigma * R_H;// in m^2/v-s
+disp(Mu,"Mobility of charge carriers in m^2/V-s is");
+