diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH1/EX1.25 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.25')
-rw-r--r-- | 1319/CH1/EX1.25/1_25.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1319/CH1/EX1.25/1_25.sce b/1319/CH1/EX1.25/1_25.sce new file mode 100644 index 000000000..6ff58b51a --- /dev/null +++ b/1319/CH1/EX1.25/1_25.sce @@ -0,0 +1,32 @@ +//To find current in the 600 turn exciting coil
+
+clc;
+clear;
+
+N=600;
+mr=800;
+m0=4*%pi*(10^-7);
+
+phi=100*(10^-6);// Flux in air gap
+
+l1=10*(10^-2);
+l2=18*(10^-2);
+lg=2*(10^-3); // Air gap length
+Ac=(6.25)*(10^-4);// Central limb area
+As=3*(10^-4);// Side limb area
+
+Ra=lg/(m0*Ac);
+Ri=l1/(mr*m0*Ac);
+
+R=l2/(m0*mr*As);
+
+Rt=Ra+Ri; // Total reluctacne of the central limb
+
+AT1=Rt*phi; // MMF or Ampere turns for the central limb
+AT2=R*phi/2; // MMF, Two identical limbs hence flux becomes half and only one limb is considered
+
+AT=AT1+AT2;//Total MMF
+
+I=AT/N; // Current in the 600 turns
+
+printf('The current flowing in the 600 turns exciting coil = %g A\n',I)
|