diff options
Diffstat (limited to '3665/CH8/EX8.15')
-rw-r--r-- | 3665/CH8/EX8.15/Ex8_15.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3665/CH8/EX8.15/Ex8_15.sce b/3665/CH8/EX8.15/Ex8_15.sce new file mode 100644 index 000000000..4ebdcb9af --- /dev/null +++ b/3665/CH8/EX8.15/Ex8_15.sce @@ -0,0 +1,15 @@ +clc//
+//
+//
+
+//Variable declaration
+RH=3.66*10^-4; //hall coefficient(m^3/coulomb)
+I=10^-2; //current(amp)
+B=0.5; //magnetic field(wb/m^2)
+t=1*10^-3; //thickness(m)
+
+//Calculation
+VH=RH*I*B*10^3/t; //hall voltage(mV)
+
+//Result
+printf("\n hall voltage is %0.3f mV",VH)
|