diff options
Diffstat (limited to '3755/CH8/EX8.12')
-rw-r--r-- | 3755/CH8/EX8.12/Ex8_12.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3755/CH8/EX8.12/Ex8_12.sce b/3755/CH8/EX8.12/Ex8_12.sce new file mode 100644 index 000000000..046ebb3ae --- /dev/null +++ b/3755/CH8/EX8.12/Ex8_12.sce @@ -0,0 +1,17 @@ +clear
+//
+//
+//
+
+//Variable declaration
+rho=0.00912; //resistivity(ohm m)
+RH=3.55*10^-4; //hall coefficient(m^3/C)
+B=0.48; //flux density(Wb/m^2)
+
+//Calculation
+sigma=1/rho;
+theta_H=atan(sigma*B*RH); //hall angle(radian)
+theta_H=theta_H*180/%pi ; //hall angle(degrees)
+
+//Result
+printf("\n hall angle is %0.4f degrees",theta_H)
|