blob: e091c3455e2f18918cf7797b0044506badcafd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc//
//
//
//Variable declaration
Vy=37*10^-6; //voltage(V)
t=10^-3; //thickness(m)
Bz=0.5; //magnetic field(wb/m^2)
Ix=20*10^-3; //current(A)
//Calculation
RH=Vy*t/(Ix*Bz); //hall coefficient(m^3/coulomb)
//Result
printf("\n hall coefficient is %e C-1 m^3",RH)
|