diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2720/CH2/EX2.19.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2720/CH2/EX2.19.1')
-rwxr-xr-x | 2720/CH2/EX2.19.1/ex2_19_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2720/CH2/EX2.19.1/ex2_19_1.sce b/2720/CH2/EX2.19.1/ex2_19_1.sce new file mode 100755 index 000000000..75f052f6b --- /dev/null +++ b/2720/CH2/EX2.19.1/ex2_19_1.sce @@ -0,0 +1,16 @@ +//Exa 2.19.1
+clc;
+clear;
+close;
+//Given data
+l= 0.50*10^-2;// width of ribbon in m
+d= 0.10*10^-3;// thickness of ribbon in m
+A= l*d;// area of ribbon in m^2
+B = 0.8;// in Tesla
+D = 10.5;//density in gm/cc
+I = 2;// in amp
+q = 1.6 * 10^-19;// in C
+n=6*10^28;// number of elec. per m^3
+V_H = ( I * B * d)/(n * q * A);// in volts
+disp(V_H,"The hall Voltage produced in volts is");
+
|