summaryrefslogtreecommitdiff
path: root/1319/CH1/EX1.26
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH1/EX1.26
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 '1319/CH1/EX1.26')
-rw-r--r--1319/CH1/EX1.26/1_26.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/1319/CH1/EX1.26/1_26.sce b/1319/CH1/EX1.26/1_26.sce
new file mode 100644
index 000000000..b5d736627
--- /dev/null
+++ b/1319/CH1/EX1.26/1_26.sce
@@ -0,0 +1,36 @@
+// Find the current required to develop a flux of 1.6 mWb
+
+clc;
+clear;
+
+B=1;
+H=900;
+m0=4*%pi*(10^-7);
+mr=B/(m0*H);
+
+//lengths
+lg=1*(10^-3);// Air gap
+lc=24*(10^-2);// Central Limb
+la=60*(10^-2);// Side limbs
+
+//area
+A=4*4*(10^-4);
+
+phi=1.6*(10^-3); // Flux
+
+//Reluctances
+Ra=lg/(m0*A); // Air gap
+Rc=lc/(m0*mr*A);// Central limb
+Rs=la/(m0*mr*A);// One side limbs
+
+//mmf
+AT1=(Ra+Rc)*phi; // Central limb
+AT2=Rs*phi/2;// One of the side limb
+AT=AT1+AT2; // Total
+
+N=680;//Turns
+
+I=AT/N;
+
+printf('The current the current required to produce a total flux of 1.6 mWb = %g A\n',I)
+