diff options
Diffstat (limited to '1730/CH3/EX3.18/Exa3_18.sce')
-rwxr-xr-x | 1730/CH3/EX3.18/Exa3_18.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1730/CH3/EX3.18/Exa3_18.sce b/1730/CH3/EX3.18/Exa3_18.sce new file mode 100755 index 000000000..de16bcb0a --- /dev/null +++ b/1730/CH3/EX3.18/Exa3_18.sce @@ -0,0 +1,13 @@ +//Exa3.18
+clc;
+clear;
+close;
+// given data
+w=0.1;// in mm
+B_Z=0.6;// in T
+R_H=3.8*10^-4;// in m^3/C
+I=10;// in mA
+I=I*10^-3;//in A
+V_H=R_H*B_Z*I/w;// in V
+V_H=V_H*10^6;// in V
+disp("Hall voltage is : "+string(V_H)+" micro volt");
|