summaryrefslogtreecommitdiff
path: root/3673/CH10/EX10.a.14
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3673/CH10/EX10.a.14
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 '3673/CH10/EX10.a.14')
-rw-r--r--3673/CH10/EX10.a.14/Example_a_10_14.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3673/CH10/EX10.a.14/Example_a_10_14.sce b/3673/CH10/EX10.a.14/Example_a_10_14.sce
new file mode 100644
index 000000000..97e5ed708
--- /dev/null
+++ b/3673/CH10/EX10.a.14/Example_a_10_14.sce
@@ -0,0 +1,26 @@
+//Example_a_10_14 page no:475
+clc;
+turn=700;
+mu_o=4*%pi*10^-7;
+mu_r=600;
+phi_g=1.8*10^-3;
+Ag=4*4&10^-4;
+Bg=(1.8*10^-3)/(16*10^-4);
+Ig=0.001;
+Hg=Bg/mu_o;
+mmf_gap=Hg*Ig;
+phi_c=1.8*10^-3;
+Ac=4*4*10^-4;
+Bc=1.125;
+Ic=0.24;
+Is=0.6;
+Hc=Bc/(mu_o*mu_r);
+mmf_central_limb=Hc*Ic;
+phi_s=(1/2)*phi_g;
+Bs=phi_s/(16*10^-4);
+Hs=Bs/(mu_o*mu_r);
+//calculating the mmf
+mmf_side_limb=Hs*Is;
+mmf_t=mmf_gap+mmf_central_limb+mmf_side_limb;
+current_required=mmf_t/turn;
+disp(current_required,"the required current is (in A)");