diff options
Diffstat (limited to '3754/CH10/EX10.22/10_22.sce')
-rw-r--r-- | 3754/CH10/EX10.22/10_22.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH10/EX10.22/10_22.sce b/3754/CH10/EX10.22/10_22.sce new file mode 100644 index 000000000..8887d9828 --- /dev/null +++ b/3754/CH10/EX10.22/10_22.sce @@ -0,0 +1,15 @@ +clear//
+
+//Variables
+
+p = 9 * 10**-3 //Resistivity (in ohm-meter)
+up = 0.03 //Mobility (in meter-square per volt-second)
+
+//Calculation
+
+sig = 1/p //Conductivity (in per ohm-meter)
+RH = up / sig //Hall coefficient (in cubic-meter per Coulomb)
+
+//Result
+
+printf("\n Value of Hall-coefficient is %0.3f m**3/C.",RH)
|