summaryrefslogtreecommitdiff
path: root/3836/CH14/EX14.2/Ex14_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3836/CH14/EX14.2/Ex14_2.sce')
-rw-r--r--3836/CH14/EX14.2/Ex14_2.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3836/CH14/EX14.2/Ex14_2.sce b/3836/CH14/EX14.2/Ex14_2.sce
new file mode 100644
index 000000000..973f2c9e6
--- /dev/null
+++ b/3836/CH14/EX14.2/Ex14_2.sce
@@ -0,0 +1,22 @@
+clear
+//
+//Initialization
+i=6 //current in ampere
+n=500 //turns
+l=0.4 //circumference
+uo=4*%pi*10**-7 //epsilon zero constant
+a=300*10**-6 //area
+
+//Calculation
+f=n*i //Magnetomotive Force
+h=f/l //magnetic field strength
+b=uo*h //magnetic induction
+phi=b*a //flux
+
+//Results
+printf("\n (a) Magnetomotive Force, H = %.2f ampere-turns",f)
+
+printf("\n (b) Magnetic Field Strength, H = %.2f A/m",h)
+
+printf("\n (c B = %.2f mT",b*10**3)
+printf("\n (d Toal Flux, phi = %.2f uWb",phi*10**6)