summaryrefslogtreecommitdiff
path: root/2825/CH2/EX2.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2825/CH2/EX2.10
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2825/CH2/EX2.10')
-rwxr-xr-x2825/CH2/EX2.10/Ex2_10.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2825/CH2/EX2.10/Ex2_10.sce b/2825/CH2/EX2.10/Ex2_10.sce
new file mode 100755
index 000000000..c6add5430
--- /dev/null
+++ b/2825/CH2/EX2.10/Ex2_10.sce
@@ -0,0 +1,17 @@
+//Ex2_10 Pg-91
+clc
+
+e=1.6*10^(-19) //electron charge
+un=700 //mobility of silicon
+n=10^17 //concentration of phosphorous atoms
+sigma=e*un*n //conductivity
+printf("Conductivity = %.1f (ohm-cm)^-1",sigma)
+res=sigma^(-1) //resistivity
+printf("\n Resistivity = %.4f ohm-cm",res)
+Rh=-(e*n)^(-1) //hall coefficient
+printf("\n Hall coefficient = %.1f cm^3/C",Rh)
+Ix=10^-3
+Bz=10^(-5)
+x=10^(-2)
+Vh=(Ix*Bz*Rh)/x
+printf("\n Hall Volage = %.1f uV",Vh*10^6)