diff options
Diffstat (limited to '2288/CH2/EX2.17.6/ex2_17_6.sce')
-rwxr-xr-x | 2288/CH2/EX2.17.6/ex2_17_6.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2288/CH2/EX2.17.6/ex2_17_6.sce b/2288/CH2/EX2.17.6/ex2_17_6.sce new file mode 100755 index 000000000..4ff9b0688 --- /dev/null +++ b/2288/CH2/EX2.17.6/ex2_17_6.sce @@ -0,0 +1,20 @@ +//Exa 2.17.6
+clc;
+clear;
+close;
+// Given data
+e = 1.6 * 10^-19;// in C
+n_i = 2 * 10^19;// in /m^3
+Mu_e = 0.36;// in m^2/v.s
+Mu_h = 0.17;// in m^2/v.s
+A = 1 * 10^-4;// in m^2
+V = 2;//in volts
+l = 0.3;// in mm
+l = l * 10^-3;// in m
+E=V/l;// in volt/m
+Sigma = n_i * e * (Mu_e + Mu_h);// in mho/m
+// J = I/A = Sigma * E
+I= Sigma*E*A;
+disp(I,"The current produced in a small germanium plate in amp is");
+
+
|