diff options
Diffstat (limited to '3755/CH8/EX8.8/Ex8_8.sce')
-rw-r--r-- | 3755/CH8/EX8.8/Ex8_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3755/CH8/EX8.8/Ex8_8.sce b/3755/CH8/EX8.8/Ex8_8.sce new file mode 100644 index 000000000..926bc10a1 --- /dev/null +++ b/3755/CH8/EX8.8/Ex8_8.sce @@ -0,0 +1,15 @@ +clear
+//
+//
+//
+
+//Variable declaration
+a=4.28*10^-10; //side(m)
+e=1.6*10^-19; //charge of electron
+
+//Calculation
+n=2/(a^3);
+RH=-1/(n*e); //hall coefficient(m^3/C)
+
+//Result
+printf("\n hall coefficient is %0.3f *10^-9 m^3/C",RH*10^9)
|