diff options
Diffstat (limited to '2102/CH1/EX1.4')
-rwxr-xr-x | 2102/CH1/EX1.4/exa_1_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2102/CH1/EX1.4/exa_1_4.sce b/2102/CH1/EX1.4/exa_1_4.sce new file mode 100755 index 000000000..ee7e91343 --- /dev/null +++ b/2102/CH1/EX1.4/exa_1_4.sce @@ -0,0 +1,14 @@ +// Exa 1.4
+clc;
+clear;
+close;
+// Given data
+format('v',13)
+ni= 2.5*10^19;
+q= 1.6*10^-19;// in C
+miu_n= 0.36;
+miu_p= 0.17;
+sigma= q*ni*(miu_n+miu_p);// in s/m
+rho= 1/sigma;// in Ωm
+disp(sigma,"The conductivity of Ge in s/m is ")
+disp(rho,"The resistivity of Ge in Ωm is : ")
|