summaryrefslogtreecommitdiff
path: root/2129/CH1/EX1.23.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2129/CH1/EX1.23.2
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 '2129/CH1/EX1.23.2')
-rwxr-xr-x2129/CH1/EX1.23.2/ex1_23_2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2129/CH1/EX1.23.2/ex1_23_2.sce b/2129/CH1/EX1.23.2/ex1_23_2.sce
new file mode 100755
index 000000000..86a6055df
--- /dev/null
+++ b/2129/CH1/EX1.23.2/ex1_23_2.sce
@@ -0,0 +1,19 @@
+//Exa 1.23.2
+clc;
+clear;
+close;
+// Given data
+l = 1;// in m
+d = 1;// in cm
+d = d * 10^-2;// in m
+W = 1;// in mm
+W = W * 10^-3;// in m
+A = d * W;// in m^2
+I= 1;// in Amp
+B = 1;// Tesla
+V_H = 0.074 * 10^-6;// in Volts
+Sigma = 5.8 * 10^7;// in mho/m
+R_H = (V_H * A)/(B*I*d);// in m^3/c
+disp(R_H,"The hall coefficient in m^3/c is");
+Mu = Sigma * R_H;// in m^2/volt.sec
+disp(Mu,"The mobility of electrons in copper in m^2/volt-sec is ");