diff options
Diffstat (limited to '3665/CH8/EX8.16/Ex8_16.sce')
-rw-r--r-- | 3665/CH8/EX8.16/Ex8_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3665/CH8/EX8.16/Ex8_16.sce b/3665/CH8/EX8.16/Ex8_16.sce new file mode 100644 index 000000000..e091c3455 --- /dev/null +++ b/3665/CH8/EX8.16/Ex8_16.sce @@ -0,0 +1,15 @@ +clc//
+//
+//
+
+//Variable declaration
+Vy=37*10^-6; //voltage(V)
+t=10^-3; //thickness(m)
+Bz=0.5; //magnetic field(wb/m^2)
+Ix=20*10^-3; //current(A)
+
+//Calculation
+RH=Vy*t/(Ix*Bz); //hall coefficient(m^3/coulomb)
+
+//Result
+printf("\n hall coefficient is %e C-1 m^3",RH)
|