summaryrefslogtreecommitdiff
path: root/3763/CH4/EX4.8/Ex4_8.sce
blob: ea5e23a803aaa28d51d1da1580681cde4476881b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear
//
//
//

//Variable declaration
i=10**-2    //current(ampere)
A=0.01*0.001     //area(m**2)
RH=3.66*10**-4   //hall coefficient(m**3/coulomb)
Bz=0.5     //magnetic induction(weber/m**2)

//Calculation
Jx=i/A     
Ey=RH*Bz*Jx    
Vy=Ey*i      //voltage appeared(V)

//Result
printf("\n voltage appeared is %0.3f  mV",Vy*10**3)