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 /147/CH13/EX13.1 | |
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 '147/CH13/EX13.1')
-rw-r--r-- | 147/CH13/EX13.1/Example13_1.sce | 31 | ||||
-rw-r--r-- | 147/CH13/EX13.1/Result13_1.txt | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/147/CH13/EX13.1/Example13_1.sce b/147/CH13/EX13.1/Example13_1.sce new file mode 100644 index 000000000..9a313909e --- /dev/null +++ b/147/CH13/EX13.1/Example13_1.sce @@ -0,0 +1,31 @@ +close();
+clear;
+clc;
+//number of turns 'N', leakage flux 'phi1', flux density in air gap 'Bg'
+N = 100;
+l1 = 0.40; //m
+l2 = l1/4;
+A1 = 10*10^(-4); //m^2
+A2 = A1/2;
+lg = 2*10^(-3); //m
+phi1 = 0.01 * 10^(-3); //Wb
+Bg = 0.6; //t
+uo = 4*%pi * 10^(-7);
+//for Bg corresponding value of
+Hg = Bg/uo; //A/m
+taug = Hg*lg;
+B1 = Bg;
+H1 = 100; //A/m
+tau1 = H1*(l1+l1);
+phig = Bg*A1;
+//total flux produced by coil 'phic'
+phic = phig+phi1;
+//flux density in l2 'B2'
+B2 = phic/A2; //T
+//for 'B2', corresponding 'H2'
+H2 = 410; //A/m
+tau2 = H2*l2;
+//total mmf 'tau'
+tau = taug + tau1 + tau2;
+I = tau/N; //A
+mprintf("Current I required = %0.2f A",I);
\ No newline at end of file diff --git a/147/CH13/EX13.1/Result13_1.txt b/147/CH13/EX13.1/Result13_1.txt new file mode 100644 index 000000000..763b85e33 --- /dev/null +++ b/147/CH13/EX13.1/Result13_1.txt @@ -0,0 +1 @@ +Current I required = 10.76 A
\ No newline at end of file |