summaryrefslogtreecommitdiff
path: root/3836/CH14/EX14.2/Ex14_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3836/CH14/EX14.2/Ex14_2.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
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)