blob: 8887d98288ecf02bfacc51e60f1fdd54776a1d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|