summaryrefslogtreecommitdiff
path: root/3755/CH8/EX8.12/Ex8_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH8/EX8.12/Ex8_12.sce')
-rw-r--r--3755/CH8/EX8.12/Ex8_12.sce17
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)