diff options
Diffstat (limited to '1826/CH10/EX10.5')
-rwxr-xr-x | 1826/CH10/EX10.5/ex10_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1826/CH10/EX10.5/ex10_5.sce b/1826/CH10/EX10.5/ex10_5.sce new file mode 100755 index 000000000..c8ecdab32 --- /dev/null +++ b/1826/CH10/EX10.5/ex10_5.sce @@ -0,0 +1,11 @@ +// Example 10.5, page no-270
+clear
+clc
+ni=2.15*10^13//cm^-3
+mue=3900//cm^2/V-s
+muh=1900
+e=1.6*10^-19//C
+sig=ni*e*(mue+muh)
+r=1/sig
+
+printf("The conductivity of intrinsic Ge is %.2f *10^-2 /ohm-cm\n The intrinsic resistivity is %.0f Ohm-cm",sig*10^2,r)//answers not matching with book's ans.
|