diff options
Diffstat (limited to '3763/CH4/EX4.8/Ex4_8.sce')
-rw-r--r-- | 3763/CH4/EX4.8/Ex4_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3763/CH4/EX4.8/Ex4_8.sce b/3763/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..ea5e23a80 --- /dev/null +++ b/3763/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,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) |