diff options
Diffstat (limited to '3651/CH6/EX6.7/7.sce')
-rw-r--r-- | 3651/CH6/EX6.7/7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3651/CH6/EX6.7/7.sce b/3651/CH6/EX6.7/7.sce new file mode 100644 index 000000000..3353c9f57 --- /dev/null +++ b/3651/CH6/EX6.7/7.sce @@ -0,0 +1,15 @@ +//Variable declaration
+i=10**-2
+A=0.01*0.001
+RH=3.66*10**-4
+Bz=0.5
+
+//Calculations
+Jx=i/A
+Ey=RH*(Bz*Jx)
+Vy=Ey*0.01
+
+//Result
+printf('Jx = %0.3f ampere/m**2 \n',Jx)
+printf('Ey = %0.3f V/m \n',(Ey))
+printf('Vy = %0.3f mV \n',(Vy*10**3))
\ No newline at end of file |